*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --blue-900: #0f172a;
    --blue-800: #1e293b;
    --blue-700: #334155;
    --blue-600: #475569;
    --blue-500: #64748b;
    --blue-400: #94a3b8;
    --gold-500: #f5bd07;
    --gold-400: #fbbf24;
    --gold-600: #d97706;
    --green-500: #10b981;
    --green-600: #059669;
    --red-500: #ef4444;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--gray-50);
    -webkit-font-smoothing: antialiased;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    transition: background 0.3s, box-shadow 0.3s;
}

.header--transparent {
    background: rgba(13,34,71,0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header--scrolled {
    background: #0d2247 !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
    backdrop-filter: none;
}

.header--solid {
    background: #0d2247;
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* HAMBURGER */
.header__hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.header__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.header__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.open span:nth-child(2) { opacity: 0; }
.header__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0d2247;
    z-index: 99;
    padding: 24px;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.mobile-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mobile-nav a {
    display: block;
    padding: 14px 16px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background 0.2s, color 0.2s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: rgba(255,255,255,0.06);
    color: var(--white);
}

.mobile-nav__divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 8px 0;
}

.mobile-nav .btn {
    margin-top: 8px;
}

.header__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.header__logo:hover {
    opacity: 0.9;
}

.header__logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logog {
    vertical-align: middle;
    border-radius: 4px;
    width: 36px;
    height: 36px;
    display: inline-block;
    box-sizing: border-box;
    background: #808080;
    padding: 3px;
}

.logog div {
    width: 30px;
    height: 30px;
    display: inline-block;
    box-sizing: border-box;
    background: #f5bd07;
}

.logog div div {
    width: 30px;
    height: 4px;
    display: block;
    box-sizing: border-box;
    background: #808080;
    margin-top: 6px;
}

.header__logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.header__logo-text span { color: var(--gold-400); }

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.header__nav a:hover,
.header__nav a.active { color: var(--white); }

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    gap: 8px;
}

.btn--primary {
    background: var(--gold-500);
    color: var(--gray-900);
}

.btn--primary:hover {
    background: var(--gold-400);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245,158,11,0.4);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn--ghost:hover {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
}

.btn--white {
    background: var(--white);
    color: #0d2247;
}

.btn--white:hover {
    background: var(--gray-100);
    transform: translateY(-1px);
}

.btn--green {
    background: var(--green-500);
    color: var(--white);
}

.btn--green:hover {
    background: var(--green-600);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16,185,129,0.4);
}

.btn--blue {
    background: var(--blue-500);
    color: var(--white);
}

.btn--blue:hover {
    background: var(--blue-400);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.4);
}

.btn--outline {
    background: transparent;
    color: var(--gray-700);
    border: 1.5px solid var(--gray-200);
}

.btn--outline:hover {
    border-color: var(--gray-300);
    background: var(--gray-50);
}

.btn--lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius); }
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--block { width: 100%; }

/* ===== AUTH PAGES ===== */
.auth-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #1a3a6b 0%, #0d2247 100%);
    display: flex;
    flex-direction: column;
}

.auth-page__content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
}

.auth-card {
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-xl);
}

.auth-card__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.auth-card__subtitle {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 32px;
}

/* ===== FORM ELEMENTS ===== */
.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    color: var(--gray-800);
    transition: all 0.2s;
    outline: none;
    background: var(--white);
}

.form-control:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.form-control::placeholder { color: var(--gray-400); }

.form-link {
    color: var(--blue-500);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.form-link:hover {
    color: var(--blue-400);
    text-decoration: underline;
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.form-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--gray-400);
    font-size: 13px;
}

.form-divider::before, .form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.form-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--gray-500);
}

.form-footer a {
    color: var(--blue-500);
    text-decoration: none;
    font-weight: 600;
}

.form-footer a:hover { text-decoration: underline; }

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--blue-500);
}

.checkbox-group label {
    margin: 0;
    font-size: 14px;
    color: var(--gray-600);
}

/* ===== ALERTS ===== */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.alert--info { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.alert--success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert--warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.alert__icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* ===== CONFIRMATION CARD ===== */
.confirm-card { text-align: center; padding: 56px 48px; }

.confirm-card__icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
}

.confirm-card__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.confirm-card__text {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 8px;
    line-height: 1.6;
}

.confirm-card__hint {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 32px;
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section__header {
    text-align: center;
    margin-bottom: 56px;
}

.section__tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37,99,235,0.08);
    color: var(--blue-500);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.section__title .gold { color: var(--gold-500); }
.section__title .blue { color: var(--blue-500); }
.section__title .green { color: var(--green-500); }

.section__desc {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== CONTENT PAGE ===== */
.content-page {
    min-height: 100vh;
    background: var(--gray-50);
    display: flex;
    flex-direction: column;
}

.content-page__hero {
    background: linear-gradient(180deg, #1a3a6b 0%, #0d2247 100%);
    padding: 120px 24px 60px;
    text-align: left;
    color: var(--white);
}

.content-page__hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.content-page__hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.content-page__body {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px;
    width: 100%;
}

/* ===== PRICING CARDS ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 36px 32px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
    border-color: var(--gold-500);
    box-shadow: var(--shadow-lg);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--gold-500);
    color: var(--gray-900);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(245,189,7,0.3);
}

.pricing-card__name {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.pricing-card__desc {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.6;
}

.pricing-card__price {
    font-size: 40px;
    font-weight: 800;
    color: #0d2247;
    margin-bottom: 4px;
}

.pricing-card--featured .pricing-card__price {
    color: var(--gold-600);
}

.pricing-card__price .currency { font-size: 20px; vertical-align: top; }
.pricing-card__price .period { font-size: 14px; font-weight: 500; color: var(--gray-400); }

.pricing-card__annual {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 28px;
}

.pricing-card__features {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.pricing-card__features li {
    font-size: 14px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card__features li::before {
    content: '•';
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(16,185,129,0.1);
    color: var(--green-500);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card__features li ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
    padding: 0;
}

.pricing-card__features li ul li {
    font-size: 13px;
    color: var(--gray-500);
    display: block;
    padding-left: 4px;
}

.pricing-card__features li ul li::before {
    display: none;
}

.pricing-card__features > li {
    align-items: flex-start;
}

.pricing-card__features > li::before {
    margin-top: 3px;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover { background: var(--gray-50); }

.faq-question .icon {
    font-size: 20px;
    color: var(--gray-400);
    transition: transform 0.3s;
}

.faq-item.open .faq-question .icon { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer__inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.feature-card__icon--blue { background: rgba(37,99,235,0.1); }
.feature-card__icon--gold { background: rgba(245,158,11,0.1); }
.feature-card__icon--green { background: rgba(16,185,129,0.1); }

.feature-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.feature-card__desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== STEPS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(to right, var(--blue-500), var(--gold-500));
    opacity: 0.15;
}

.step { text-align: center; position: relative; }

.step__number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d2247, #1a3a6b);
    color: var(--gold-400);
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(15,23,42,0.2);
    position: relative;
    z-index: 2;
}

.step__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.step__desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 260px;
    margin: 0 auto;
}

/* ===== WHO FOR (Target Audience) ===== */
.audience-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.audience-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--gray-700);
    transition: box-shadow 0.2s;
}

.audience-item:hover { box-shadow: var(--shadow); }

.audience-item__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(37,99,235,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(180deg, #1a3a6b 0%, #0d2247 100%);
    border-radius: 16px;
    padding: 64px 48px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin: 0 24px;
    max-width: 1152px;
    margin: 0 auto;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.cta-banner p {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info-item__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(37,99,235,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-info-item__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.contact-info-item__text {
    font-size: 14px;
    color: var(--gray-500);
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px;
}

/* ===== FOOTER ===== */
.footer {
    background: #0d2247;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px;
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copy {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

.footer__links {
    display: flex;
    gap: 24px;
}

.footer__links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 13px;
}

.footer__links a:hover { color: rgba(255,255,255,0.7); }

.footer__lang {
    display: flex;
    gap: 12px;
    margin-left: 24px;
    padding-left: 24px;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.footer__lang a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.footer__lang a:hover,
.footer__lang a.active { color: rgba(255,255,255,0.8); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header__logo-text { display: none; }
    .header__nav { display: none; }
    .header__actions {
        display: flex;
        gap: 8px;
        margin-left: auto;
        margin-right: 12px;
    }
    .header__actions .btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    .header__hamburger { display: flex; }
    .mobile-nav { display: flex; }
    .auth-card { padding: 32px 24px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 32px; }
    .steps-grid::before { display: none; }
    .audience-list { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .content-page__hero h1 { font-size: 28px; }
    .section__title { font-size: 28px; }
    .footer__inner { flex-direction: column; gap: 12px; text-align: center; }
    .footer__links { flex-wrap: wrap; justify-content: center; }
    .footer__lang { margin-left: 0; padding-left: 0; border-left: none; }
}

/* ===== INDEX PAGE ===== */

.hero {
    min-height: 100vh;
    background:
        radial-gradient(ellipse 60% 50% at 50% 40%, rgba(245, 189, 7, 0.06) 0%, transparent 70%),
        linear-gradient(180deg, #1a3a6b 0%, #0d2247 100%);
    display: flex;
    flex-direction: column;
}

.hero__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 120px 48px 40px;
    width: 100%;
}

.hero h1 {
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero__desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero .btn--primary {
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(245, 158, 11, 0.25);
}

.hero__scroll {
    text-align: center;
    padding: 24px 0 36px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero__scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 11px;
    position: relative;
}

.hero__scroll-mouse::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: var(--gold-500);
    border-radius: 2px;
    animation: scrollAnim 1.8s ease-in-out infinite;
}

@keyframes scrollAnim {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

.dark-section {
    padding: 96px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.dark-section--alt {
    background: rgba(255, 255, 255, 0.015);
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.dark-section--alt .dark-section__header,
.dark-section--alt .dark-cards,
.dark-section--alt .dark-steps,
.dark-section--alt .db-grid,
.dark-section--alt .dest-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.dark-section__header {
    text-align: center;
    margin-bottom: 56px;
}

.dark-section__tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(100, 116, 139, 0.12);
    color: var(--blue-400);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.dark-section__title {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: var(--white);
}

.dark-section__title .gold { color: var(--gold-400); }

.dark-section__desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.65;
}

.dark-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dark-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.dark-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-500), var(--gold-500));
    opacity: 0;
    transition: opacity 0.3s;
}

.dark-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.dark-card:hover::before { opacity: 1; }

.dark-card h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.dark-card p { font-size: 14px; color: rgba(255, 255, 255, 0.7); line-height: 1.7; }

.dark-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    counter-reset: ds;
    position: relative;
}

.dark-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 15%; right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.dark-step {
    counter-increment: ds;
    text-align: center;
    position: relative;
}

.dark-step::before {
    content: counter(ds);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: var(--gold-400);
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.5), 0 0 0 4px rgba(100, 116, 139, 0.1);
    position: relative;
    z-index: 1;
}

.dark-step h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.dark-step p { font-size: 14px; color: rgba(255, 255, 255, 0.7); line-height: 1.7; max-width: 280px; margin: 0 auto; }

.dark-cta-wrap {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.1) 0%, rgba(245, 189, 7, 0.04) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dark-cta {
    text-align: center;
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.dark-cta h2 { font-size: 30px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.dark-cta p { font-size: 16px; color: rgba(255, 255, 255, 0.7); margin-bottom: 28px; }
.dark-cta .btn--primary { padding: 16px 40px; font-size: 16px; border-radius: 10px; box-shadow: 0 4px 24px rgba(245, 158, 11, 0.25); }

.db-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
}

.db-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
}

.db-item:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }
.db-item__icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(100, 116, 139, 0.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.db-item__title { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.db-item__text { font-size: 14px; color: rgba(255, 255, 255, 0.7); line-height: 1.65; }

.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 720px;
    margin: 0 auto;
}

.dest-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.2s;
}

.dest-item:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.15); }
.dest-item:hover .dest-item__label { color: var(--white); }
.dest-item__label { font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, 0.85); transition: color 0.2s; }
.dest-item--gold { border-color: rgba(245, 158, 11, 0.3); background: rgba(245, 158, 11, 0.06); }
.dest-item--gold .dest-item__label { color: var(--gold-400); font-weight: 700; }

.light-wrap { background: var(--gray-50); }

.light-section {
    padding: 96px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.light-section__header { text-align: center; margin-bottom: 56px; }

.light-section__tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(100, 116, 139, 0.1);
    color: var(--blue-500);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.light-section__title { font-size: clamp(26px, 3.5vw, 36px); font-weight: 700; line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 12px; color: var(--gray-900); }
.light-section__title .gold { color: var(--gold-600); }
.light-section__desc { font-size: 16px; color: var(--gray-500); max-width: 500px; margin: 0 auto; line-height: 1.65; }

.light-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.light-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.light-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--blue-500), var(--gold-500)); opacity: 0; transition: opacity 0.3s; }
.light-card:hover { border-color: var(--gray-300); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.light-card:hover::before { opacity: 1; }
.light-card h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.light-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

.light-db-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 720px; margin: 0 auto; }

.light-db-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
}

.light-db-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.light-db-item__icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(100, 116, 139, 0.08); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.light-db-item__title { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.light-db-item__text { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

@media (max-width: 768px) {
    .hero__body { padding: 120px 24px 24px; }
    .hero h1 { font-size: 32px; letter-spacing: -0.5px; }
    .hero__desc { font-size: 16px; }
    .dark-section { padding: 64px 24px; }
    .light-section { padding: 64px 24px; }
    .dark-cards { grid-template-columns: 1fr; }
    .light-cards { grid-template-columns: 1fr; }
    .dark-steps { grid-template-columns: 1fr; gap: 32px; }
    .dark-steps::before { display: none; }
    .db-grid { grid-template-columns: 1fr; }
    .light-db-grid { grid-template-columns: 1fr; }
    .dest-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== USER MENU (header dropdown) ===== */
.user-menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-menu__greeting {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    white-space: nowrap;
}

.user-menu__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.2);
    transition: border-color 0.2s, transform 0.15s;
    user-select: none;
}

.user-menu__avatar:hover {
    border-color: var(--gold-400);
    transform: scale(1.05);
}

.user-menu__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
    min-width: 180px;
    padding: 6px 0;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-6px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.user-menu__dropdown.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.user-menu__dropdown a,
.user-menu__dropdown button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: background 0.15s;
}

.user-menu__dropdown a:hover,
.user-menu__dropdown button:hover {
    background: var(--gray-50);
    color: var(--gray-900);
}

.user-menu__dropdown hr {
    margin: 4px 0;
    border: none;
    border-top: 1px solid var(--gray-200);
}

.user-menu__dropdown svg { flex-shrink: 0; color: var(--gray-400); }

.header--scrolled .user-menu__greeting { color: var(--gray-700); }
.header--scrolled .user-menu__avatar {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
    border-color: rgba(0,0,0,0.1);
}

.mobile-nav__logout-btn {
    background: none;
    border: none;
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    color: rgba(255,255,255,0.7);
    text-align: left;
    width: 100%;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background 0.2s, color 0.2s;
}

.mobile-nav__logout-btn:hover {
    background: rgba(255,255,255,0.06);
    color: var(--white);
}

/* ===== DOWNLOAD PAGE ===== */
.body--dark { background: #0d2247; color: rgba(255,255,255,0.8); }

.download-hero {
    background:
        radial-gradient(ellipse 60% 50% at 50% 40%, rgba(245, 189, 7, 0.06) 0%, transparent 70%),
        linear-gradient(180deg, #1a3a6b 0%, #0d2247 100%);
    padding: 120px 24px 80px;
    text-align: center;
    color: var(--white);
}

.download-hero h1 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: var(--white);
}

.download-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.65;
}

.download-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold-500);
    color: #0d2247;
    font-size: 17px;
    font-weight: 700;
    padding: 18px 44px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(245, 189, 7, 0.35);
}

.download-btn:hover {
    background: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245, 189, 7, 0.45);
}

.download-btn svg { flex-shrink: 0; }

.download-meta {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

.download-sections {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px;
}

.download-section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.req-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 64px;
}

.req-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 24px 20px;
}

.req-item__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue-400);
    margin-bottom: 8px;
}

.req-item__value {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    counter-reset: step;
    margin-bottom: 64px;
}

.step-row {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    counter-increment: step;
}

.step-row:last-child { border-bottom: none; }

.step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: var(--gold-400);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(15,23,42,0.4);
}

.step-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

.step-content a { color: var(--gold-400); text-decoration: none; }
.step-content a:hover { text-decoration: underline; }

.download-cta {
    text-align: center;
    padding: 48px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
}

.download-cta h2 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.download-cta p { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 24px; }

.download-cta__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT PAGE ===== */
.contact-company__name {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.contact-company__address {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.7;
}

.validation-message {
    font-size: 12px;
    display: block;
    margin-top: 4px;
}

.alert__title {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.form-control--textarea { resize: vertical; }

.form-submit { margin-top: 10px; }

.validation-summary { margin-bottom: 20px; font-size: 14px; }

@media (max-width: 768px) {
    .req-grid { grid-template-columns: 1fr; }
    .download-sections { padding: 48px 24px; }
    .download-hero { padding: 100px 24px 60px; }
}

.content-page__body--narrow { max-width: 800px; }

/* ── PRICING PAGE ─────────────────────────────────────── */

.pricing-hero {
    background: linear-gradient(180deg, #1a3a6b 0%, #0d2247 100%);
    padding: 120px 24px 140px;
}

.pricing-hero__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-hero__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    text-align: left;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 820px;
    margin: -100px auto 0;
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.plan-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
}

.plan-card__badge-band {
    background: #2ecc71;
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 0;
    letter-spacing: 0.3px;
}

.plan-card__body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.plan-card__name {
    font-size: 22px;
    font-weight: 700;
    color: #1a2a4a;
    text-align: center;
    margin-bottom: 16px;
}

.plan-card__desc {
    font-size: 13px;
    color: #6b7a90;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 24px;
    min-height: 56px;
}

.plan-price {
    text-align: center;
    margin-bottom: 4px;
    line-height: 1;
}

.plan-price__currency {
    font-size: 20px;
    font-weight: 700;
    color: #1a2a4a;
    vertical-align: top;
    position: relative;
    top: 8px;
}

.plan-price__number {
    font-size: 56px;
    font-weight: 800;
    color: #1a2a4a;
    letter-spacing: -2px;
}

.plan-price__period {
    font-size: 13px;
    color: #8a96a8;
    text-align: center;
    margin-bottom: 24px;
}

.plan-price__period strong {
    font-weight: 700;
    color: #1a2a4a;
}

.plan-btn {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s;
    margin-bottom: 28px;
    cursor: pointer;
    letter-spacing: 0.8px;
}

.plan-btn--primary {
    background: #f5a623;
    color: #fff;
    border: none;
}

.plan-btn--primary:hover {
    background: #e6981c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
    color: #fff;
    text-decoration: none;
}

.plan-btn--outline {
    background: #f5a623;
    color: #fff;
    border: none;
}

.plan-btn--outline:hover {
    background: #e6981c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
    color: #fff;
    text-decoration: none;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eef1f5;
    font-size: 14px;
    color: #3a4a5e;
    line-height: 1.4;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li .fa {
    display: none !important;
}

.plan-features li::before {
    content: '✓';
    color: #2ecc71;
    font-weight: 700;
    font-size: 14px;
    margin-right: 10px;
    flex-shrink: 0;
}

.plan-features li .pull-right {
    margin-left: auto;
    font-weight: 700;
    color: #1a2a4a;
    text-align: right;
    float: none !important;
}

.plan-features li .pull-right b {
    font-size: 13px !important;
}

.plan-features li span {
    font-size: 14px;
}

.plan-features li ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: auto;
    text-align: right;
    float: none !important;
}

.plan-features li ul li {
    border-bottom: none;
    padding: 0;
    justify-content: flex-end;
}

.plan-features li ul li::before {
    display: none;
}

.plan-features li ul li b {
    font-size: 13px !important;
    float: none !important;
}

/* ── DISCOUNTS SECTION ─────────────────────────────────── */

.price-discounts {
    background: #fff;
    padding: 64px 24px;
    text-align: center;
}

.price-discounts__inner {
    max-width: 640px;
    margin: 0 auto;
}

.price-discounts__title {
    font-size: 28px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 28px;
    letter-spacing: -0.3px;
}

.price-discounts__list {
    list-style: none;
    display: inline-flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}

.price-discounts__list li {
    font-size: 15px;
    color: #4a5a6e;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-discounts__list li::before {
    content: '✓';
    color: #2ecc71;
    font-weight: 700;
    font-size: 14px;
}

/* ── PRICE FAQ SECTION ─────────────────────────────────── */

.price-faq-section {
    background: var(--gray-50);
    padding: 80px 24px;
}

.price-faq-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.price-faq-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: #1a2a4a;
    text-align: center;
    margin-bottom: 52px;
    letter-spacing: -0.4px;
}

.price-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 60px;
    margin-bottom: 64px;
}

.price-faq-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.price-faq-item p {
    font-size: 13px;
    color: #6b7a90;
    line-height: 1.75;
}

.price-faq-cta {
    text-align: center;
    padding: 48px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.price-faq-cta h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a2a4a;
    margin-bottom: 8px;
}

.price-faq-cta p {
    font-size: 14px;
    color: #6b7a90;
    margin-bottom: 28px;
    line-height: 1.6;
}

.price-faq-cta__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

@media (max-width: 768px) {
    .pricing-hero { padding: 100px 20px 120px; }
    .plan-grid { grid-template-columns: 1fr; max-width: 400px; }
    .price-discounts { padding: 48px 20px; }
    .price-faq-section { padding: 60px 20px; }
    .price-faq-grid { grid-template-columns: 1fr; }
    .price-faq-cta { padding: 32px 20px; }
    .price-faq-cta__actions { flex-direction: column; align-items: center; }
}


