/* ===== Pegasus Copilot Marketing v7 — Ultra-Premium Luxury ===== */
/* Typography: Outfit (display) + DM Sans (body) — warm ivory with metallic gold accents */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    /* Surface palette — Rich Ivory */
    --dark-navy:     #FAF6EF;
    --dark-card:     #FFFFFF;
    --dark-elevated: #F5F0E8;
    --dark-border:   rgba(197,165,90,0.12);

    /* Light palette */
    --light-bg:      #FAF6EF;
    --light-card:    #FFFFFF;
    --light-border:  rgba(197,165,90,0.08);

    /* Text — obsidian hierarchy */
    --text-white:    #0F1B2D;
    --text-light-1:  #0F1B2D;
    --text-light-2:  #8B7E74;
    --text-dark-1:   #0F1B2D;
    --text-dark-2:   #4A5568;
    --text-dark-3:   #8B7E74;

    /* Accent — Pegasus Copilot metallic gold */
    --accent:        #C5A55A;
    --accent-hover:  #B8943F;
    --accent-glow:   rgba(197,165,90,0.25);
    --accent-soft:   rgba(197,165,90,0.10);
    --accent-gradient: linear-gradient(135deg, #B8943F, #D4AF5C, #E8D5A3, #D4AF5C, #B8943F);

    /* Status — muted luxury */
    --success:       #3D7A5A;
    --warning:       #C5A55A;
    --danger:        #9B3B3B;

    --radius:        10px;
    --radius-lg:     16px;
    --transition:    300ms ease;

    /* Fonts */
    --font-display:  'Outfit', system-ui, sans-serif;
    --font-body:     'DM Sans', system-ui, sans-serif;

    /* Luxury shadows */
    --shadow-card:   0 4px 24px rgba(197,165,90,0.06), 0 1px 3px rgba(0,0,0,0.04);
    --shadow-elevated: 0 8px 40px rgba(197,165,90,0.12), 0 2px 8px rgba(0,0,0,0.06);
}

html { scroll-behavior: smooth; }

::selection {
    background: rgba(197,165,90,0.3);
    color: #0F1B2D;
}

a { text-decoration-skip-ink: auto; color: #C5A55A; transition: color 0.3s ease; }
a:hover { color: #B8943F; }

body {
    font-family: var(--font-body);
    background: var(--dark-navy);
    color: var(--text-light-1);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== SCROLL ANIMATIONS — Performant ===== */
.reveal, .reveal-up, .reveal-left, .reveal-right, .reveal-scale, .reveal-blur {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal, .reveal-up { transform: translateY(24px); }
.reveal-left { transform: translateX(-24px); }
.reveal-right { transform: translateX(24px); }
.reveal-scale { transform: scale(0.97); }
.reveal-blur { transform: translateY(12px); }

.reveal.visible, .reveal-up.visible { opacity: 1; transform: translateY(0); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.reveal-blur.visible { opacity: 1; transform: translateY(0); }

/* Stagger items */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatSubtle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.08; }
    50% { opacity: 0.10; }
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== NAVBAR — Refined ===== */
.navbar {
    height: 68px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    background: rgba(250,246,239,0.92);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-bottom: 1px solid var(--dark-border);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-white);
    letter-spacing: -0.03em;
}

.logo img { height: 44px !important; width: auto !important; }

.nav-center {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-sep {
    width: 1px;
    height: 16px;
    background: var(--dark-border);
    flex-shrink: 0;
}

.btn-nav {
    padding: 7px 18px;
    font-size: 0.8rem;
}
.btn-nav:hover {
    box-shadow: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light-2);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
    letter-spacing: -0.01em;
}

.nav-link:hover { color: var(--text-white); }
.nav-link.active { color: var(--text-white); }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Nav button variants */
.nav-btn-login { border-color: rgba(197,165,90,0.3) !important; color: #B8943F !important; }
.nav-btn-demo { background: linear-gradient(135deg, #B8943F, #D4AF5C) !important; border: 1px solid transparent !important; color: #FFFFFF !important; }

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    padding: 8px 10px;
    cursor: pointer;
    color: var(--text-light-1);
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition);
}
.mobile-menu-btn:hover { background: rgba(197,165,90,0.06); }
.mobile-menu-btn span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--text-light-1);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
}
.mobile-nav-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,27,45,0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100%;
    background: var(--dark-card);
    border-left: 1px solid var(--dark-border);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav-drawer.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-drawer.open { display: block; }
.mobile-nav-close {
    align-self: flex-end;
    background: transparent;
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    padding: 6px 12px;
    color: var(--text-light-2);
    cursor: pointer;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: background var(--transition);
}
.mobile-nav-close:hover { background: rgba(197,165,90,0.06); }
.mobile-nav-link {
    display: block;
    text-decoration: none;
    color: var(--text-light-1);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: var(--radius);
    transition: background var(--transition);
    border: 1px solid transparent;
}
.mobile-nav-link:hover { background: var(--dark-elevated); }
.mobile-nav-link.active { color: var(--accent); background: var(--accent-soft); border-color: rgba(197,165,90,0.15); }
.mobile-nav-divider { height: 1px; background: var(--dark-border); margin: 8px 0; }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }

/* ===== BUTTONS — Refined ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid transparent;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, #B8943F, #D4AF5C);
    color: #FFFFFF;
    box-shadow: var(--shadow-card);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #C5A55A, #E8D5A3);
    box-shadow: var(--shadow-elevated);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: #B8943F;
    border-color: rgba(197,165,90,0.3);
}
.btn-ghost:hover {
    color: #0F1B2D;
    border-color: rgba(197,165,90,0.5);
    background: rgba(197,165,90,0.06);
}

.btn-ghost-dark {
    background: transparent;
    color: var(--text-dark-2);
    border-color: var(--light-border);
}
.btn-ghost-dark:hover { background: var(--light-bg); color: var(--text-dark-1); }

.btn-lg { padding: 14px 32px; font-size: 0.9375rem; border-radius: var(--radius-lg); }
.btn-secondary {
    background: rgba(15,27,45,0.04);
    color: var(--text-light-1);
    border-color: var(--dark-border);
}
.btn-secondary:hover {
    background: rgba(15,27,45,0.08);
    border-color: rgba(197,165,90,0.2);
    color: var(--text-white);
}

/* ===== SECTIONS ===== */
section { padding: 128px 0; }

.section-dark { background: var(--dark-navy); color: var(--text-light-1); }
.section-dark-2 { background: var(--dark-navy); color: var(--text-light-1); position: relative; border-top: none; border-bottom: none; }
.section-dark-2::before, .section-dark-2::after { content: ''; position: absolute; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(197,165,90,0.25), transparent); }
.section-dark-2::before { top: 0; }
.section-dark-2::after { bottom: 0; }
.section-light { background: var(--light-bg); color: var(--text-dark-1); }

.section-dark h2, .section-dark-2 h2 { color: var(--text-white); }
.section-light h2 { color: var(--text-dark-1); }
.section-dark p, .section-dark-2 p { color: var(--text-light-2); }
.section-light p { color: var(--text-dark-2); }

/* ===== TYPOGRAPHY — Outfit Display + DM Sans Body ===== */
h1, h2, h3 { font-family: var(--font-display); }

h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.04em;
    color: var(--text-white);
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    line-height: 1.08;
}

h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

p { font-size: 1rem; line-height: 1.7; }

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

.section-header p { margin-top: 16px; font-size: 1.05rem; color: var(--text-light-2); }

/* ===== BADGES — Refined chips ===== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--accent-soft);
    border: 1px solid rgba(197,165,90,0.15);
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--accent);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.section-badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--accent-soft);
    border: 1px solid rgba(197,165,90,0.12);
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-badge-dark { background: rgba(197,165,90,0.1); color: var(--accent); }

/* ===== HERO — Dramatic & Clean ===== */
.hero {
    padding: 160px 0 120px;
    text-align: center;
    background: var(--dark-navy);
    position: relative;
    overflow: hidden;
}

/* Ambient glow behind hero */
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(197,165,90,0.08) 0%, rgba(197,165,90,0.03) 40%, transparent 70%);
    pointer-events: none;
}
.hero::after { display: none; }

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: var(--text-white);
    margin-bottom: 28px;
}

.hero h1 .accent-text {
    background: linear-gradient(135deg, #B8943F, #D4AF5C, #E8D5A3, #D4AF5C, #B8943F);
    background-size: 200% auto;
    animation: shimmer 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    max-width: 540px;
    margin: 0 auto 28px;
    font-size: 1.125rem;
    color: var(--text-light-2);
    line-height: 1.75;
}

.hero-hook {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.01em;
    margin-top: 8px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FEATURES — Editorial blocks, not identical cards ===== */
.features-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 0;
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.feature-card,
[class^="feature-card-delay"] {
    background: transparent;
    border: none;
    border-right: 1px solid var(--dark-border);
    border-radius: 0;
    padding: 40px 32px;
    transition: background 0.3s ease;
    position: relative;
}

.feature-card:last-child { border-right: none; }

/* First card — hero treatment */
.feature-card:first-child {
    background: rgba(197,165,90,0.04);
    border-left: 4px solid var(--accent);
    border-right: 1px solid var(--dark-border);
    padding-left: 28px; /* compensate for left border */
}

.feature-card::before,
[class^="feature-card-delay"]::before { display: none; }

.feature-card:hover { background: rgba(197,165,90,0.03); }
.feature-card:first-child:hover { background: rgba(197,165,90,0.06); }

.feature-card.light { background: var(--light-card); border-color: var(--light-border); }
.feature-card.light:hover { background: var(--light-bg); }
.feature-card.light h3 { color: var(--text-dark-1); }
.feature-card.light p { color: var(--text-dark-2); }

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:first-child .feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #B8943F, #D4AF5C);
    color: #FFFFFF;
}

.feature-card:hover .feature-icon,
[class^="feature-card-delay"]:hover .feature-icon { transform: scale(1.05); }

.feature-icon.light { background: rgba(197,165,90,0.06); color: var(--accent); }

.feature-card h3, [class^="feature-card-delay"] h3 { color: var(--text-white); margin-bottom: 8px; font-family: var(--font-display); }
.feature-card:first-child h3 { font-size: 1.25rem; }
.feature-card p, [class^="feature-card-delay"] p { color: var(--text-light-2); font-size: 0.88rem; line-height: 1.7; }

/* ===== BENEFITS LIST ===== */
.benefits-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.benefit-item { display: flex; align-items: flex-start; gap: 12px; }
.benefit-check {
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(61,122,90,0.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
}
.benefit-check svg { color: var(--success); width: 13px; height: 13px; }
.benefit-item span { font-size: 0.9rem; color: var(--text-dark-2); }
.section-dark .benefit-item span { color: var(--text-light-2); }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }

.plan-card {
    background: var(--dark-card);
    border: 1px solid rgba(197,165,90,0.08);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    transition: border-color .35s ease, box-shadow .35s ease, transform .35s cubic-bezier(0.16,1,0.3,1);
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-card);
}
.plan-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(197,165,90,0.04) 0%, transparent 40%);
    opacity: 0;
    transition: opacity .35s;
}
.plan-card:hover::before { opacity: 1; }
.plan-card:hover {
    border-color: rgba(197,165,90,0.25);
    transform: translateY(-3px);
    box-shadow: var(--shadow-elevated);
}

.plan-card.light { background: var(--light-card); border-color: var(--light-border); }
.plan-card.popular {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), 0 4px 16px rgba(197,165,90,0.12);
}
.plan-card.popular:hover { box-shadow: 0 0 0 1px var(--accent), 0 8px 24px rgba(197,165,90,0.18); }

.plan-popular-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #B8943F, #D4AF5C); color: #FFFFFF;
    font-size: 0.68rem; font-weight: 700; font-family: var(--font-body);
    padding: 4px 14px; border-radius: 99px;
    white-space: nowrap; letter-spacing: 0.04em; text-transform: uppercase;

}


.plan-name { font-size: 1rem; font-weight: 700; font-family: var(--font-display); color: var(--text-white); margin-bottom: 6px; letter-spacing: -0.02em; }
.plan-card.light .plan-name { color: var(--text-dark-1); }
.plan-desc { font-size: 0.85rem; color: var(--text-light-2); margin-bottom: 20px; }
.plan-card.light .plan-desc { color: var(--text-dark-3); }

.plan-price {
    font-size: 2.25rem; font-weight: 800; font-family: var(--font-display);
    color: var(--text-white); margin-bottom: 24px; line-height: 1;
    padding-bottom: 24px; border-bottom: 1px solid var(--dark-border);
    letter-spacing: -0.04em;
}
.plan-card.light .plan-price { color: var(--text-dark-1); border-bottom-color: var(--light-border); }
.plan-price-unit { font-size: 0.8rem; font-weight: 400; font-family: var(--font-body); color: var(--text-light-2); }

.plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-light-2); }
.plan-card.light .plan-features li { color: var(--text-dark-2); }
.plan-features li svg { width: 14px; height: 14px; color: var(--success); flex-shrink: 0; }
.plan-card .btn { margin-top: auto; }

/* ===== ROLES GRID ===== */
.roles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.role-card { background: var(--dark-card); border: 1px solid rgba(197,165,90,0.08); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-card); transition: box-shadow 0.3s ease, border-color 0.3s ease; }
.role-card:hover { box-shadow: var(--shadow-elevated); border-color: rgba(197,165,90,0.15); }
.role-card h3 { color: var(--text-white); margin-bottom: 14px; }
.role-perms { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.role-perms li { font-size: 0.85rem; color: var(--text-light-2); display: flex; align-items: center; gap: 8px; }
.role-perms li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ===== FAQ ===== */
.faq-list { max-width: 660px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: var(--dark-card); border: 1px solid rgba(197,165,90,0.08);
    border-radius: var(--radius-lg); padding: 22px 24px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-card);
}
.faq-item:hover { border-color: rgba(197,165,90,0.2); }
.faq-item.light { background: var(--light-card); border-color: var(--light-border); }
.faq-q { font-weight: 600; font-size: 0.925rem; font-family: var(--font-display); color: var(--text-white); margin-bottom: 8px; }
.faq-item.light .faq-q { color: var(--text-dark-1); }
.faq-a { font-size: 0.875rem; color: var(--text-light-2); line-height: 1.7; }
.faq-item.light .faq-a { color: var(--text-dark-3); }

/* ===== CTA SECTION — Luminous ===== */
.cta-section {
    text-align: center; padding: 140px 0;
    background: var(--dark-navy);
    border-top: none;
    position: relative; overflow: hidden;
}
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197,165,90,0.25), transparent);
}
.cta-section::before {
    content: '';
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 800px; height: 500px;
    background: radial-gradient(ellipse, rgba(197,165,90,0.08) 0%, rgba(197,165,90,0.03) 40%, transparent 70%);
    pointer-events: none;
    /* static ambient — no animation */
}
.cta-section h2 { color: var(--text-white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-section p { color: var(--text-light-2); margin-bottom: 40px; font-size: 1.05rem; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===== SECURITY ===== */
.security-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.security-item {
    display: flex; align-items: flex-start; gap: 14px;
    background: var(--dark-card); border: 1px solid rgba(197,165,90,0.08);
    padding: 22px; border-radius: var(--radius-lg);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-card);
}
.security-item:hover { border-color: rgba(197,165,90,0.15); box-shadow: var(--shadow-elevated); }
.security-icon {
    width: 40px; height: 40px; background: var(--accent-soft);
    border-radius: var(--radius); display: flex; align-items: center;
    justify-content: center; flex-shrink: 0; color: var(--accent);
}
.security-item h4 { font-size: 0.9rem; font-weight: 600; font-family: var(--font-display); color: var(--text-white); margin-bottom: 4px; }
.security-item p { font-size: 0.85rem; color: var(--text-light-2); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(240px, 360px)); gap: 12px; margin-bottom: 56px; justify-content: center; }
.contact-card { background: var(--dark-card); border: 1px solid rgba(197,165,90,0.08); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; transition: border-color 0.3s ease, box-shadow 0.3s ease; box-shadow: var(--shadow-card); }
.contact-card:hover { border-color: rgba(197,165,90,0.15); box-shadow: var(--shadow-elevated); }
.contact-icon { font-size: 1.5rem; margin-bottom: 14px; }
.contact-card h3 { color: var(--text-white); margin-bottom: 8px; }
.contact-card p { color: var(--text-light-2); font-size: 0.875rem; }

.contact-form { max-width: 540px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light-2); margin-bottom: 6px; font-family: var(--font-body); }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 12px 16px;
    border: 1px solid var(--dark-border); border-radius: var(--radius);
    font-size: 14px; font-family: var(--font-body);
    color: var(--text-light-1); background: var(--dark-card);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(197,165,90,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== FOOTER ===== */
.footer {
    padding: 72px 0 36px;
    background: #FAF6EF;
    border-top: 1px solid rgba(197,165,90,0.12);
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197,165,90,0.35), transparent);
}
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo img { height: 70px; }
.footer-brand .logo span { font-size: 1.6rem; color: #0F1B2D; }
.footer-brand p { margin-top: 14px; font-size: 0.85rem; color: #8B7E74; max-width: 260px; }
.footer-col-title { font-weight: 600; font-size: 0.7rem; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.08em; color: #C5A55A; margin-bottom: 16px; }
.footer-link { display: block; text-decoration: none; color: #8B7E74; font-size: 0.85rem; margin-bottom: 10px; transition: color 0.3s ease; }
.footer-link:hover { color: #0F1B2D; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(197,165,90,0.12); display: flex; justify-content: space-between; align-items: center; color: #8B7E74; font-size: 0.78rem; }

/* ===== VERIFY BOX ===== */
.verify-box { max-width: 440px; margin: 100px auto; padding: 48px 40px; background: var(--dark-card); border: 1px solid rgba(197,165,90,0.08); border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-card); }
.verify-icon { font-size: 2.5rem; margin-bottom: 24px; }
.verify-box h1 { font-size: 1.5rem; margin-bottom: 12px; color: var(--text-white); letter-spacing: -0.02em; }
.verify-box p { margin-bottom: 24px; color: var(--text-light-2); }

/* ===== LOGO BAR ===== */
.logo-bar { padding: 28px 0; background: var(--dark-navy); border-top: none; border-bottom: none; position: relative; }
.logo-bar::before, .logo-bar::after { content: ''; position: absolute; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(197,165,90,0.25), transparent); }
.logo-bar::before { top: 0; }
.logo-bar::after { bottom: 0; }
.logo-bar-inner { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.logo-bar-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light-2); white-space: nowrap; }
.logo-bar-companies { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
.logo-bar-company {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.82rem; font-weight: 600; color: var(--text-light-2);
    padding: 8px 16px; background: rgba(197,165,90,0.03);
    border: 1px solid var(--dark-border); border-radius: 10px;
    transition: all var(--transition);
}
.logo-bar-company:hover { border-color: rgba(197,165,90,0.2); color: var(--text-light-1); }

/* ===== HOW IT WORKS — Inline flow, no boxes ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    counter-reset: step-counter;
}
.steps-grid::before { display: none; }

.step-card, [class^="step-card-delay"] {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 32px;
    position: relative;
    border-left: 1px solid var(--dark-border);
    transition: none;
}
.step-card:first-child { border-left: none; padding-left: 0; }
.step-card:last-child { padding-right: 0; }

.step-card:hover, [class^="step-card-delay"]:hover {
    transform: none;
    box-shadow: none;
}

.step-number {
    width: auto; height: auto; background: none;
    border-radius: 0; display: inline-flex; align-items: baseline;
    font-size: 3rem; font-weight: 800;
    font-family: var(--font-display); color: var(--accent);
    margin-bottom: 16px; position: relative; z-index: 1;
    letter-spacing: -0.04em; line-height: 1;
    opacity: 0.4;
    transition: opacity 0.3s ease, color 0.3s ease;
}
.step-card:hover .step-number { opacity: 0.7; }
.step-card h3, [class^="step-card-delay"] h3 { color: var(--text-white); margin-bottom: 8px; font-family: var(--font-display); font-size: 1.1rem; }
.step-card p, [class^="step-card-delay"] p { color: var(--text-light-2); font-size: 0.88rem; line-height: 1.7; }

/* ===== FEATURE HIGHLIGHT (alternating) ===== */
.feature-highlight { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; padding: 64px 0; }
.feature-highlight + .feature-highlight { border-top: none; position: relative; }
.feature-highlight + .feature-highlight::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(197,165,90,0.25), transparent); }
.feature-highlight.reverse { direction: rtl; }
.feature-highlight.reverse > * { direction: ltr; }
.fh-text { position: relative; }
.fh-text .section-badge { margin-bottom: 14px; }
.fh-text h2 { margin-bottom: 14px; }
.fh-text p { color: var(--text-light-2); margin-bottom: 24px; line-height: 1.75; }
.fh-visual { background: var(--dark-card); border: 1px solid rgba(197,165,90,0.08); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.fh-visual-header { padding: 14px 18px; background: var(--dark-elevated); border-bottom: 1px solid var(--dark-border); display: flex; align-items: center; gap: 8px; }
.fh-visual-dot { width: 8px; height: 8px; border-radius: 50%; }
.fh-visual-body { padding: 18px; }
.fh-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-radius: 10px; background: var(--dark-elevated); border: 1px solid var(--dark-border); margin-bottom: 8px; font-size: 0.8rem; }
.fh-row:last-child { margin-bottom: 0; }
.fh-row-name { color: var(--text-light-1); font-weight: 500; }
.fh-row-date { color: var(--text-light-2); }
.fh-badge { padding: 3px 9px; border-radius: 99px; font-size: 0.7rem; font-weight: 600; }
.fh-badge-green { background: rgba(61,122,90,0.1); color: var(--success); }
.fh-badge-amber { background: rgba(197,165,90,0.1); color: var(--warning); }
.fh-badge-blue  { background: rgba(197,165,90,0.1); color: var(--accent); }
.fh-badge-red   { background: rgba(155,59,59,0.1); color: var(--danger); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.testimonial-card {
    background: var(--dark-card); border: 1px solid rgba(197,165,90,0.08);
    border-radius: var(--radius-lg); padding: 28px;
    display: flex; flex-direction: column; gap: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-card);
}
.testimonial-card:hover { border-color: rgba(197,165,90,0.2); box-shadow: var(--shadow-elevated); }
.testimonial-stars { display: flex; gap: 3px; color: var(--warning); font-size: 0.85rem; }
.testimonial-text { font-size: 0.9rem; color: var(--text-light-1); line-height: 1.7; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--dark-border); }
.testimonial-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 700; color: var(--accent); flex-shrink: 0; }
.testimonial-name { font-size: 0.85rem; font-weight: 600; font-family: var(--font-display); color: var(--text-white); }
.testimonial-role { font-size: 0.75rem; color: var(--text-light-2); }

/* ===== RESPONSIVE ===== */
/* ===== PLAN COMPARISON TABLE ===== */
.plan-compare {
    margin-top: 48px;
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.plan-compare-head {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 0;
    padding: 14px 24px;
    background: rgba(197,165,90,0.04);
    border-bottom: 1px solid var(--dark-border);
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light-2);
}
.plan-compare-head span:not(:first-child) { text-align: center; }
.plan-compare-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 0;
    padding: 12px 24px;
    border-bottom: 1px solid var(--dark-border);
    font-size: 0.85rem;
    color: var(--text-light-2);
    transition: background 0.15s ease;
}
.plan-compare-row:last-child { border-bottom: none; }
.plan-compare-row:hover { background: rgba(197,165,90,0.03); }
.plan-compare-row span:not(:first-child) { text-align: center; color: var(--text-light-2); }
.plan-compare-check { color: var(--success); }
.plan-compare-x { color: var(--text-light-2); opacity: 0.25; }

/* ===== TRUST LINE (inline, no boxes) ===== */
.trust-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 48px;
    padding-top: 40px;
    border-top: none;
    font-size: 0.82rem;
    color: var(--text-light-2);
    font-weight: 500;
    position: relative;
}
.trust-line::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(197,165,90,0.25), transparent); }
.trust-line-sep { width: 3px; height: 3px; border-radius: 50%; background: #C5A55A; opacity: 0.5; flex-shrink: 0; }

@media (max-width: 1024px) {
    .features-grid { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
    .feature-card { border-right: none !important; border-bottom: 1px solid var(--dark-border); }
    .feature-card:last-child { border-bottom: none; }
    .feature-card:first-child { border-left: 4px solid var(--accent); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .security-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 56px; }
    .roles-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .step-card { border-left: none !important; border-bottom: 1px solid var(--dark-border); padding: 24px 0 !important; }
    .step-card:last-child { border-bottom: none; }
    .feature-highlight { grid-template-columns: 1fr; gap: 36px; }
    .feature-highlight.reverse { direction: ltr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .plan-compare-head, .plan-compare-row { padding: 10px 16px; font-size: 0.8rem; }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }
    .nav-center { display: none; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hero { padding: 120px 0 80px; }
    section { padding: 80px 0; }
    h2 { font-size: 1.7rem; }
    .section-header { margin-bottom: 48px; }
}

@media (max-width: 640px) {
    .container { padding: 0 18px; }
    .navbar { padding: 0 18px; height: 60px; }
    h1 { font-size: clamp(2.2rem, 8vw, 2.8rem); }
    h2 { font-size: 1.5rem; }
    section { padding: 64px 0; }
    .section-header { margin-bottom: 40px; }
    .pricing-grid, .footer-content { grid-template-columns: 1fr; }
    .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .logo-bar-inner { gap: 20px; flex-direction: column; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .footer { padding: 48px 0 24px; }
    .feature-card, [class^="feature-card-delay"] { padding: 24px 20px; }
    .plan-card { padding: 28px 22px; }
    .hero-chips { gap: 8px; }
    .hero-chip { font-size: 0.74rem; padding: 6px 11px; }
    .verify-box { padding: 36px 24px; margin: 60px auto; }
    .faq-item { padding: 18px 20px; }
    .contact-card { padding: 28px 22px; }
    .cta-section { padding: 80px 0; }
    .trust-line { gap: 12px; font-size: 0.78rem; }
    .plan-compare-head, .plan-compare-row { grid-template-columns: 1.5fr 1fr 1fr; padding: 10px 14px; font-size: 0.78rem; }
}

@media (max-width: 640px) {
    .legal-print-btn { position: static; margin-bottom: 16px; }
}

@media (max-width: 400px) {
    .container { padding: 0 14px; }
    .navbar { padding: 0 14px; }
    h1 { font-size: 1.9rem; }
    .btn-lg { padding: 12px 24px; font-size: 0.9rem; }
    .hero-chip { font-size: 0.68rem; padding: 5px 9px; }
    .legal-content { padding: 36px 16px 60px; }
    .legal-content h1 { font-size: 1.6rem; }
    .feature-card-icon { width: 42px; height: 42px; }
    .feature-card-icon svg { width: 20px; height: 20px; }
    .contact-icon-wrap { width: 44px; height: 44px; }
    .legal-table { font-size: 0.75rem; }
}

.legal-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
