/* RubanHR — Landing Page Styles */
:root {
    --primary:      #e69829;
    --primary-dark: #cb7c11;
    --primary-soft: #fff1dd;
    --accent:       #102b45;
    --accent-mid:   #1a3d5a;
    --accent-soft:  #e7eef6;
    --text-dark:    #1f2937;
    --text-mid:     #374151;
    --text-light:   #6b7280;
    --bg:           #f0f2f5;
    --white:        #ffffff;
    --radius:       10px;
    --radius-lg:    16px;
    --shadow-sm:    0 2px 8px rgba(0,0,0,.07);
    --shadow-md:    0 6px 24px rgba(0,0,0,.1);
    --shadow-lg:    0 12px 48px rgba(0,0,0,.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    font-size: 15px;
    line-height: 1.6;
}

/* ── Navbar ──────────────────────────────────────────── */
.wp-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: background .25s, box-shadow .25s, padding .25s;
}
.wp-nav.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
    padding: .65rem 0;
    backdrop-filter: blur(8px);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    transition: color .2s;
}
.wp-nav.scrolled .nav-brand { color: var(--accent); }
.nav-brand i { color: var(--primary); font-size: 1.6rem; }
.nav-brand span { color: var(--primary); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    transition: color .2s;
}
.wp-nav.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover, .wp-nav.scrolled .nav-links a:hover { color: var(--primary); }
.nav-ctas { display: flex; align-items: center; gap: .75rem; }
.btn-nav-ghost {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-size: .86rem;
    font-weight: 500;
    padding: .45rem .9rem;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,.3);
    transition: all .2s;
}
.wp-nav.scrolled .btn-nav-ghost {
    color: var(--text-mid);
    border-color: #d1d5db;
}
.btn-nav-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.wp-nav.scrolled .btn-nav-ghost:hover { background: var(--bg); color: var(--text-dark); }
.btn-nav-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    text-decoration: none;
    font-size: .86rem;
    font-weight: 700;
    padding: .5rem 1.1rem;
    border-radius: 8px;
    transition: opacity .2s;
    white-space: nowrap;
}
.btn-nav-primary:hover { opacity: .9; color: #fff; }
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 1.5rem;
}
.wp-nav.scrolled .nav-hamburger { color: var(--accent); }

/* ── Hero ────────────────────────────────────────────── */
.hero {
    background: linear-gradient(145deg, var(--accent) 0%, var(--accent-mid) 50%, #0d2035 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(230,152,41,.18) 0%, transparent 65%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute; bottom: -80px; left: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(230,152,41,.1) 0%, transparent 65%);
    pointer-events: none;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(230,152,41,.15);
    border: 1px solid rgba(230,152,41,.3);
    color: var(--primary);
    font-size: .78rem;
    font-weight: 700;
    padding: .3rem .9rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -.02em;
}
.hero h1 span { color: var(--primary); }
.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.7);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 480px;
}
.hero-ctas { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    text-decoration: none;
    font-size: .95rem;
    font-weight: 700;
    padding: .8rem 1.75rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    box-shadow: 0 4px 20px rgba(230,152,41,.35);
    transition: all .2s;
}
.btn-hero-primary:hover { opacity: .92; transform: translateY(-1px); color: #fff; }
.btn-hero-ghost {
    background: rgba(255,255,255,.08);
    color: #fff;
    text-decoration: none;
    font-size: .95rem;
    font-weight: 600;
    padding: .8rem 1.75rem;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,.2);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: all .2s;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.14); color: #fff; }
.hero-note { font-size: .8rem; color: rgba(255,255,255,.4); }
.hero-note i { color: var(--primary); }
.hero-perks {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: .5rem;
}
.hero-perk {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    color: rgba(255,255,255,.55);
}
.hero-perk i { color: var(--primary); }

/* Dashboard Mockup */
.hero-mockup {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0,0,0,.4);
}
.mock-topbar {
    background: rgba(255,255,255,.06);
    padding: .65rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.mock-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.mock-body { display: flex; }
.mock-sidebar {
    width: 130px;
    background: var(--accent);
    padding: .75rem .5rem;
    flex-shrink: 0;
}
.mock-brand {
    font-size: .72rem;
    font-weight: 800;
    color: #fff;
    padding: .3rem .4rem .6rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: .5rem;
}
.mock-brand span { color: var(--primary); }
.mock-nav-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .63rem;
    color: rgba(255,255,255,.5);
    padding: .35rem .5rem;
    border-radius: 5px;
    margin-bottom: .15rem;
}
.mock-nav-item.active {
    background: rgba(230,152,41,.18);
    color: var(--primary);
    border-left: 2px solid var(--primary);
}
.mock-nav-item i { font-size: .78rem; }
.mock-main {
    flex: 1;
    background: #f5f7fa;
    padding: .75rem;
    min-height: 260px;
}
.mock-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: .4rem; margin-bottom: .6rem; }
.mock-card {
    background: #fff;
    border-radius: 7px;
    padding: .5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.07);
}
.mock-card-val { font-size: .95rem; font-weight: 800; color: var(--text-dark); }
.mock-card-lbl { font-size: .52rem; color: var(--text-light); margin-top: .1rem; }
.mock-card-icon {
    width: 22px; height: 22px;
    border-radius: 5px;
    display: flex; align-items: center; justify-content: center;
    font-size: .62rem;
    margin-bottom: .3rem;
}
.mci-blue   { background: linear-gradient(135deg,#102b45,#1a3d5a); color:#fff; }
.mci-orange { background: linear-gradient(135deg,#e69829,#cb7c11); color:#fff; }
.mci-green  { background: linear-gradient(135deg,#16a34a,#15803d); color:#fff; }
.mock-table {
    background: #fff;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.07);
}
.mock-table-head {
    background: #f9fafb;
    padding: .35rem .6rem;
    font-size: .55rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .05em;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #f0f0f0;
}
.mock-table-row {
    padding: .35rem .6rem;
    font-size: .58rem;
    color: var(--text-dark);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #f8f8f8;
    align-items: center;
}
.mock-badge {
    display: inline-block;
    padding: .08rem .35rem;
    border-radius: 10px;
    font-size: .5rem;
    font-weight: 700;
}
.mb-green  { background: #dcfce7; color: #16a34a; }
.mb-orange { background: #fef3c7; color: #d97706; }
.mb-blue   { background: #e0f2fe; color: #0369a1; }

/* ── Section Base ───────────────────────────────────── */
.section { padding: 5rem 0; }
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section-label {
    display: inline-block;
    font-size: .73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--primary);
    margin-bottom: .75rem;
}
.section-title {
    font-size: 2.15rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: .75rem;
    letter-spacing: -.02em;
}
.section-title span { color: var(--primary); }
.section-sub {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.7;
}

/* ── Stats Bar ──────────────────────────────────────── */
.stats-bar {
    background: var(--accent);
    padding: 2.5rem 0;
}
.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2rem;
    text-align: center;
}
.stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}
.stat-lbl {
    font-size: .82rem;
    color: rgba(255,255,255,.6);
    margin-top: .35rem;
}

/* ── Features ───────────────────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.75rem;
    margin-top: 3.5rem;
}
.feature-card {
    background: var(--white);
    border: 1px solid #f0f0f0;
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: all .25s;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    opacity: 0;
    transition: opacity .25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 52px; height: 52px;
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}
.fi-orange { background: linear-gradient(135deg,#e69829,#cb7c11); color:#fff; }
.fi-blue   { background: linear-gradient(135deg,#102b45,#1a3d5a); color:#fff; }
.fi-green  { background: linear-gradient(135deg,#16a34a,#15803d); color:#fff; }
.fi-purple { background: linear-gradient(135deg,#7c3aed,#6d28d9); color:#fff; }
.fi-teal   { background: linear-gradient(135deg,#0891b2,#0e7490); color:#fff; }
.fi-red    { background: linear-gradient(135deg,#dc2626,#b91c1c); color:#fff; }
.feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: .5rem;
}
.feature-desc { font-size: .88rem; color: var(--text-light); line-height: 1.65; }
.feature-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: 1rem; }
.feature-tag {
    font-size: .7rem;
    font-weight: 600;
    padding: .15rem .5rem;
    border-radius: 20px;
    background: var(--primary-soft);
    color: var(--primary-dark);
}

/* ── India Compliance ───────────────────────────────── */
.compliance-section { background: var(--accent); padding: 5rem 0; }
.compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.compliance-items { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.compliance-item {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: all .2s;
}
.compliance-item:hover { background: rgba(255,255,255,.1); }
.compliance-item i {
    font-size: 1.5rem;
    color: var(--primary);
    display: block;
    margin-bottom: .5rem;
}
.compliance-item strong {
    display: block;
    font-size: .88rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: .2rem;
}
.compliance-item span { font-size: .77rem; color: rgba(255,255,255,.5); }
.compliance-visual {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.comp-visual-title {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--primary);
    margin-bottom: 1rem;
}
.comp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .65rem 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.comp-row:last-child { border-bottom: none; }
.comp-row-label { font-size: .82rem; color: rgba(255,255,255,.65); }
.comp-row-val { font-size: .88rem; font-weight: 700; color: #fff; }
.comp-row-val.positive { color: #4ade80; }
.comp-row-val.deduction { color: #f87171; }

/* ── Modules ────────────────────────────────────────── */
.modules-section { background: var(--bg); padding: 5rem 0; }
.module-groups { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 3rem; }
.module-group {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: box-shadow .2s;
}
.module-group:hover { box-shadow: var(--shadow-md); }

/* Collapsible header */
.module-group-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: 1.1rem 1.25rem;
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background .15s;
}
.module-group-header:hover { background: #fafafa; }
.module-group-header[aria-expanded="true"] { background: var(--primary-soft); }
.module-group-header[aria-expanded="true"] .module-group-title { color: var(--primary-dark); }
.mg-header-left { display: flex; align-items: center; gap: .7rem; }
.module-group-icon {
    width: 38px; height: 38px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.module-group-title { font-size: .88rem; font-weight: 800; color: var(--text-dark); line-height: 1.2; }
.module-count { font-size: .68rem; color: var(--text-light); margin-top: .1rem; }
.module-chevron {
    color: var(--text-light);
    font-size: .8rem;
    flex-shrink: 0;
    transition: transform .25s ease;
}
.module-group-header[aria-expanded="true"] .module-chevron { transform: rotate(180deg); }

/* Module list inside collapse */
.module-collapse { border-top: 1px solid #f0f0f0; }
.module-list { list-style: none; padding: .5rem 1.25rem .75rem; margin: 0; }
.module-list li {
    font-size: .78rem;
    color: var(--text-light);
    padding: .28rem 0;
    display: flex;
    align-items: center;
    gap: .4rem;
    border-bottom: 1px solid #f9fafb;
}
.module-list li:last-child { border-bottom: none; }
.module-list li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}
.module-plan-badge {
    font-size: .58rem;
    font-weight: 700;
    padding: .08rem .35rem;
    border-radius: 10px;
    margin-left: auto;
    white-space: nowrap;
}
.mpb-free    { background: #dcfce7; color: #16a34a; }
.mpb-starter { background: #e0f2fe; color: #0369a1; }
.mpb-pro     { background: var(--primary-soft); color: var(--primary-dark); }
.mpb-ent     { background: #f3e8ff; color: #7c3aed; }

/* Desktop: all panels open, chevron hidden */
@media (min-width: 769px) {
    .module-collapse          { display: block !important; height: auto !important; }
    .module-chevron           { display: none; }
    .module-group-header      { cursor: default; pointer-events: none; }
    .module-group-header[aria-expanded="true"] { background: var(--white); }
    .module-group-header[aria-expanded="true"] .module-group-title { color: var(--text-dark); }
}

/* ── Pricing ────────────────────────────────────────── */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem 0 3rem;
}
.toggle-label { font-size: .9rem; font-weight: 600; color: var(--text-light); }
.toggle-label.active { color: var(--text-dark); }
.toggle-switch {
    position: relative;
    width: 52px; height: 28px;
    cursor: pointer;
}
.toggle-switch input { display: none; }
.toggle-track {
    width: 100%; height: 100%;
    background: var(--accent);
    border-radius: 14px;
    transition: background .2s;
    display: block;
}
.toggle-thumb {
    position: absolute;
    top: 3px; left: 3px;
    width: 22px; height: 22px;
    background: var(--primary);
    border-radius: 50%;
    transition: transform .2s;
}
.toggle-switch input:checked ~ .toggle-thumb { transform: translateX(24px); }
.annual-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 20px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.5rem;
    align-items: stretch;
}
.pricing-card {
    background: var(--white);
    border: 2px solid #f0f0f0;
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    position: relative;
    transition: all .25s;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(230,152,41,.1);
}
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    padding: .25rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.pricing-plan { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-light); margin-bottom: .5rem; }
.pricing-price { font-size: 2.4rem; font-weight: 900; color: var(--text-dark); line-height: 1; margin-bottom: .25rem; }
.pricing-price sup { font-size: 1.1rem; font-weight: 700; vertical-align: top; margin-top: .5rem; display: inline-block; }
.pricing-price .period { font-size: .85rem; font-weight: 500; color: var(--text-light); }
.pricing-billing { font-size: .75rem; color: var(--text-light); margin-bottom: 1.5rem; min-height: 1.2rem; }
.pricing-limit { font-size: .83rem; color: var(--text-mid); font-weight: 600; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid #f0f0f0; }
.pricing-features { flex: 1; list-style: none; margin-bottom: 1.75rem; }
.pricing-features li {
    font-size: .82rem;
    color: var(--text-mid);
    padding: .35rem 0;
    display: flex;
    align-items: flex-start;
    gap: .55rem;
}
.pricing-features li i { color: #16a34a; flex-shrink: 0; margin-top: .1rem; }
.pricing-features li.disabled { color: #d1d5db; }
.pricing-features li.disabled i { color: #d1d5db; }
.btn-pricing {
    display: block;
    text-align: center;
    padding: .7rem;
    border-radius: 10px;
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
}
.btn-pricing-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}
.btn-pricing-primary:hover { opacity: .9; color: #fff; }
.btn-pricing-outline {
    border: 2px solid var(--accent);
    color: var(--accent);
}
.btn-pricing-outline:hover { background: var(--accent); color: #fff; }
.btn-pricing-dark {
    background: var(--accent);
    color: #fff;
}
.btn-pricing-dark:hover { background: var(--accent-mid); color: #fff; }

/* ── Comparison Table ───────────────────────────────── */
.comparison-section { background: var(--bg); padding: 5rem 0; }
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    font-size: .87rem;
}
.comparison-table th {
    padding: 1rem 1.25rem;
    font-weight: 700;
    font-size: .82rem;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
    white-space: nowrap;
}
.comparison-table th:first-child { text-align: left; width: 35%; }
.comparison-table th.wp-col {
    background: var(--primary-soft);
    color: var(--primary-dark);
}
.comparison-table td {
    padding: .8rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid #f5f5f5;
    color: var(--text-mid);
}
.comparison-table td:first-child { text-align: left; font-weight: 500; }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: #fafafa; }
.comp-yes { color: #16a34a; font-size: 1.1rem; }
.comp-no  { color: #d1d5db; font-size: 1.1rem; }
.comp-partial { color: #d97706; font-size: .8rem; font-weight: 600; }
.wp-highlight { background: rgba(230,152,41,.05); }

/* ── Testimonials ───────────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.testimonial-card {
    background: var(--white);
    border: 1px solid #f0f0f0;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem; right: 1.5rem;
    font-size: 4rem;
    color: var(--primary-soft);
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-stars { color: var(--primary); font-size: .85rem; margin-bottom: 1rem; }
.testimonial-text { font-size: .9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .88rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}
.ta-orange { background: linear-gradient(135deg,#e69829,#cb7c11); }
.ta-blue   { background: linear-gradient(135deg,#102b45,#1a3d5a); }
.ta-green  { background: linear-gradient(135deg,#16a34a,#15803d); }
.testimonial-name  { font-size: .88rem; font-weight: 700; color: var(--text-dark); }
.testimonial-role  { font-size: .75rem; color: var(--text-light); }

/* ── FAQ ────────────────────────────────────────────── */
.faq-section { background: var(--white); padding: 5rem 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.faq-card {
    border: 1px solid #f0f0f0;
    border-radius: var(--radius);
    overflow: hidden;
}
.faq-card .accordion-button {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--white);
    padding: 1.1rem 1.25rem;
}
.faq-card .accordion-button:not(.collapsed) { color: var(--primary); background: var(--primary-soft); box-shadow: none; }
.faq-card .accordion-button::after { filter: none; }
.faq-card .accordion-body { font-size: .87rem; color: var(--text-light); line-height: 1.7; padding: 1rem 1.25rem; border-top: 1px solid #f0f0f0; }

/* ── CTA Banner ─────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-mid) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(230,152,41,.15) 0%, transparent 60%);
}
.cta-section h2 { font-size: 2.4rem; font-weight: 900; color: #fff; margin-bottom: .75rem; letter-spacing: -.02em; }
.cta-section h2 span { color: var(--primary); }
.cta-section p { font-size: 1rem; color: rgba(255,255,255,.65); margin-bottom: 2.5rem; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────── */
.footer { background: #0b1f30; padding: 4rem 0 2rem; }
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-name { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: .5rem; }
.footer-brand-name span { color: var(--primary); }
.footer-brand-sub { font-size: .8rem; color: rgba(255,255,255,.35); margin-bottom: 1.25rem; }
.footer-desc { font-size: .83rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.5);
    display: flex; align-items: center; justify-content: center;
    font-size: .95rem;
    text-decoration: none;
    transition: all .2s;
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-col-title { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: 1.1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { font-size: .83rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding-top: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-bottom a { color: rgba(255,255,255,.3); text-decoration: none; }
.footer-bottom a:hover { color: var(--primary); }
.ruban-credit { font-size: .78rem; color: rgba(255,255,255,.3); }
.ruban-credit a { color: var(--primary); text-decoration: none; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1100px) {
    .pricing-grid  { grid-template-columns: repeat(2,1fr); }
    .module-groups { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
    .hero-inner    { grid-template-columns: 1fr; gap: 3rem; }
    .hero-mockup   { display: none; }
    .hero h1       { font-size: 2.25rem; }
    .feature-grid  { grid-template-columns: 1fr 1fr; }
    .compliance-grid { grid-template-columns: 1fr; gap: 2rem; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .stats-grid    { grid-template-columns: repeat(2,1fr); }
    .faq-grid      { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-links, .btn-nav-ghost { display: none; }
    .nav-hamburger { display: block; }
    .hero          { padding: 6rem 0 4rem; }
    .hero h1       { font-size: 1.9rem; }
    .section-title { font-size: 1.7rem; }
    .feature-grid  { grid-template-columns: 1fr; }
    .pricing-grid  { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    /* Mobile: 1-column accordion stack */
    .module-groups {
        grid-template-columns: 1fr;
        gap: .6rem;
    }
    .module-group { border-radius: var(--radius); }
    .comparison-table { font-size: .78rem; }
    .compliance-items { grid-template-columns: 1fr; }
    .footer-grid   { grid-template-columns: 1fr; }
    .cta-section h2 { font-size: 1.75rem; }
}
