/* ==================================================================
   BUSINESS.CSS — уникальные стили для страницы «Для бизнеса»
   (Общие: хедер, футер, кнопки, .grid-3, .format-card, .icon-svg,
   @keyframes fadeUp, .section-title — в common.css)
   ================================================================== */

/* ===== ГЕРОЙ (с фоновой картинкой) ===== */
.hero {
    padding: 120px 0 80px;
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--color-cream);
    background-image: url('busss.jpg');
    background-size: cover;
    background-position: center;
    background-color: #d5cfc7;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 0;
    pointer-events: none;
}
.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}
.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}
.hero-content {
    width: 100%;
    text-align: left;
    margin: 0;
    padding: 0;
}
.hero-content .pre-title { opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease 0.3s forwards; margin-bottom: 12px; }
.hero-content .pre-title .label-mono { justify-content: flex-start; color: var(--color-gold-dark); }
.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #111;
    text-shadow: none;
    text-wrap: balance;
    text-align: left;
}
.hero-content h1 .gold { background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-content .tagline {
    font-family: var(--font-text);
    font-size: 1.3rem;
    font-weight: 500;
    color: #111;
    max-width: 700px;
    margin: 32px 0 36px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 0.7s forwards;
    text-shadow: none;
    text-align: left;
}
.hero-content .btn-group-primary {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 1.1s forwards;
    margin-bottom: 16px;
    justify-content: flex-start;
}
.hero-content .micro-cta { font-size: 0.95rem; color: #111; opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease 1.3s forwards; text-align: left; }
.hero-content .micro-cta a { color: var(--color-gold-dark); font-weight: 600; border-bottom: 1px dashed var(--color-gold); }
.hero-content .micro-cta a:hover { border-bottom-style: solid; border-color: var(--color-gold-dark); }

/* ===== ЦВЕТНЫЕ ЗАГОЛОВКИ ===== */
.gold-title { color: var(--color-gold-dark); }

/* ===== ИКОНКИ (дополнительные, помимо .icon-svg в common.css) ===== */
.icon-svg-sm {
    width: 24px;
    height: 24px;
    stroke: var(--color-gold-dark);
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    flex-shrink: 0;
}
.icon-check-circle {
    width: 32px;
    height: 32px;
    stroke: var(--color-gold-dark);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-right: 12px;
}
.icon-check-circle circle {
    stroke: var(--color-gold-dark);
    stroke-width: 1.5;
    fill: var(--color-gold-muted);
}
.icon-check-circle polyline {
    stroke: var(--color-gold-dark);
    stroke-width: 2;
    fill: none;
}

/* ===== АККОРДЕОН КЕЙСОВ ===== */
.cases-accordion { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.case-item {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    overflow: hidden;
    border-left: 6px solid var(--color-gold);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-smooth);
}
.case-item:hover { box-shadow: var(--shadow-md); }
.case-header {
    padding: 20px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.5);
    transition: background 0.2s;
    user-select: none;
}
.case-header:hover { background: rgba(255,255,255,0.8); }
.case-header h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--color-text-main); }
.case-header .case-label { font-family: var(--font-sub); font-size: 0.8rem; font-weight: 700; color: var(--color-gold-dark); text-transform: uppercase; letter-spacing: 0.5px; margin-right: 16px; }
.case-toggle { font-size: 1.4rem; font-weight: 300; color: var(--color-gold); transition: transform 0.25s; }
.case-item.open .case-toggle { transform: rotate(45deg); }
.case-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 28px;
    background: rgba(255,255,255,0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.case-item.open .case-body {
    max-height: 3000px;
    padding: 20px 28px 28px;
}
.case-body p { margin-bottom: 12px; line-height: 1.7; color: var(--color-gray-600); word-wrap: break-word; overflow-wrap: break-word; }
.case-body p:last-child { margin-bottom: 0; }
.case-body strong { color: var(--color-text-main); }

/* ===== БЛОК ДОВЕРИЯ ===== */
.trust-block {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: var(--radius-lg);
    padding: 40px 44px;
    box-shadow: var(--shadow-md);
    margin-top: 16px;
}
.trust-block p { font-size: 1.1rem; line-height: 1.7; color: var(--color-text-main); }
.trust-block .highlight { font-weight: 600; color: var(--color-gold-dark); }

/* ===== ЧТО ВЫ ПОЛУЧАЕТЕ ===== */
.get-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 20px; }
.get-item {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s var(--ease-smooth);
    display: flex;
    align-items: center;
    gap: 6px;
}
.get-item:hover { border-color: var(--color-gold); background: rgba(255,255,255,0.9); transform: translateY(-2px); }
.get-item .icon-check-circle { margin-right: 10px; }

/* ===== УСЛОВИЯ СОТРУДНИЧЕСТВА ===== */
.offer-cards { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 20px; }
.offer-card {
    flex: 1 1 220px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-md);
    transition: all 0.45s var(--ease-smooth);
    text-align: center;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--color-gold); }
.offer-card .icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold-muted);
    margin: 0 auto 16px;
    transition: all 0.4s var(--ease-smooth);
}
.offer-card:hover .icon-wrap {
    background: var(--gradient-gold);
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}
.offer-card:hover .icon-wrap .icon-svg { stroke: #ffffff; }
.offer-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 8px; }
.offer-card p { font-size: 0.95rem; color: var(--color-gray-600); line-height: 1.6; }

/* ===== СПИСКИ С ГАЛОЧКАМИ ===== */
.gold-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    width: 100%;
}
.gold-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-gray-600);
}
.gold-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-gold-dark);
    font-weight: 700;
    font-size: 1.2rem;
}
.gold-list li strong {
    color: var(--color-text-main);
}

/* ===== СПЕЦИАЛЬНЫЕ КАРТОЧКИ ЭТАПОВ ===== */
.work-step-card {
    text-align: left;
    align-items: flex-start;
}
.work-step-card .card-header,
.work-step-card .card-body {
    width: 100%;
    text-align: left;
}
.work-step-card .gold-list {
    width: 100%;
}
.work-step-card .gold-list li {
    padding-left: 28px;
}
.work-step-card .result-with-icon {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.work-step-card .result-with-icon svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.section-subtitle-left {
    text-align: left;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.text-left {
    text-align: left;
}
.text-left .section-subtitle {
    margin-left: 0;
    margin-right: 0;
}

/* ===== БЛОК ПРЕИМУЩЕСТВ ===== */
.benefits-final {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--color-gold-muted);
}
.benefits-final p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-gray-600);
    margin-bottom: 8px;
}
.benefits-final p strong {
    color: var(--color-text-main);
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-content h1 { font-size: 2.4rem; white-space: normal; }
    .hero-grid { align-items: flex-start; }
    .case-header { padding: 16px 20px; flex-wrap: wrap; }
    .case-header h4 { font-size: 1rem; width: 100%; margin-top: 4px; }
    .case-body { padding: 0 20px; }
    .case-item.open .case-body {
        padding: 16px 20px 24px;
        max-height: 9999px;
    }
    .trust-block { padding: 28px 20px; }
    .offer-card { flex: 1 1 100%; }
    .work-step-card { padding: 24px 20px; }
    .get-item { padding: 16px 18px; font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .format-card .card-body .result-highlight { font-size: 0.85rem; padding: 10px 14px; }
}