/* ===== PageSpire Executive Website — Master Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;600;700&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --navy: #1B2B5E;
    --navy-dark: #0F1A3C;
    --navy-mid: #243373;
    --silver: #C8D0E0;
    --silver-light: #E8ECF4;
    --gold: #B8924A;
    --gold-light: #D4A85C;
    --white: #FFFFFF;
    --off-white: #F7F8FC;
    --text-dark: #0F1A3C;
    --text-mid: #374169;
    --text-muted: #6B7BA4;
    --border: rgba(27, 43, 94, 0.12);
    --shadow-sm: 0 2px 12px rgba(27, 43, 94, 0.08);
    --shadow-md: 0 8px 32px rgba(27, 43, 94, 0.12);
    --shadow-lg: 0 20px 60px rgba(27, 43, 94, 0.18);
    --shadow-xl: 0 30px 90px rgba(27, 43, 94, 0.24);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== UTILITY ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-dark);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 640px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(27, 43, 94, 0.3);
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 43, 94, 0.4);
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 600;
    padding: 15px 34px;
    border-radius: 50px;
    border: 2px solid var(--navy);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(184, 146, 74, 0.35);
    letter-spacing: 0.02em;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 146, 74, 0.5);
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold);
}

.text-navy {
    color: var(--navy);
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.nav-logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--navy);
    background: var(--silver-light);
}

.nav-links a.active {
    color: var(--navy);
    font-weight: 600;
}

.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    min-width: 220px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: var(--transition);
    z-index: 100;
}

.nav-links .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-links .dropdown-menu a {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO — HOME ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 45%, var(--navy-mid) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 208, 224, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(184, 146, 74, 0.12) 0%, transparent 50%);
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.hero-text .section-label {
    color: var(--gold-light);
}

.hero-text .section-label::before {
    background: var(--gold-light);
}

.hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-headline em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-actions .btn-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.hero-actions .btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hero Visual — Document mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-doc-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
    width: 100%;
    max-width: 420px;
    position: relative;
}

.hero-doc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-doc-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.hero-doc-title {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-doc-sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.hero-doc-status {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 6px 14px;
    border-radius: 50px;
    margin-left: auto;
}

.hero-doc-status-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-doc-status span {
    color: #22c55e;
    font-size: 0.75rem;
    font-weight: 600;
}

.hero-doc-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-doc-metric {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 14px;
}

.hero-doc-metric-val {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.hero-doc-metric-key {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-doc-progress {
    margin-top: 8px;
}

.hero-doc-progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.hero-doc-progress-label span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-doc-progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.hero-doc-progress-fill {
    height: 100%;
    border-radius: 3px;
    animation: fillBar 2s ease forwards;
}

@keyframes fillBar {
    from {
        width: 0;
    }
}

.fill-gold {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.fill-blue {
    background: linear-gradient(90deg, #4F83CC, #7BA7D5);
}

.fill-green {
    background: linear-gradient(90deg, #22c55e, #4ade80);
}

.hero-floating-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 4s ease-in-out infinite;
}

.hero-floating-badge.badge-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.hero-floating-badge.badge-2 {
    bottom: -20px;
    left: -20px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.badge-icon {
    font-size: 20px;
}

.badge-text strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--navy-dark);
}

.badge-text span {
    font-size: 0.68rem;
    color: var(--text-muted);
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--off-white);
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .trust-bar-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 500px) {
    .trust-bar-inner {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.premium-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(245, 247, 250, 1) 100%);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -2px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, color 0.3s ease;
}

.trust-item:hover .premium-icon-wrapper {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 8px 12px -1px rgba(0, 0, 0, 0.08),
        0 4px 6px -2px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    color: var(--gold);
}

/* ===== SECTION SPACING ===== */
.section {
    padding: 72px 0;
}

.section-sm {
    padding: 48px 0;
}

.section-lg {
    padding: 96px 0;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    background: var(--white);
    padding: 72px 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 40px;
}

.problem-visual {
    position: relative;
}

.problem-chaos-card {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.03) 0%, rgba(239, 68, 68, 0.08) 100%);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5), 0 8px 16px -4px rgba(239, 68, 68, 0.05);
    backdrop-filter: blur(8px);
}

.problem-chaos-title {
    font-weight: 700;
    color: #991b1b;
    margin-bottom: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.problem-chaos-title svg {
    color: #ef4444;
}

.problem-chaos-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(185, 28, 28, 0.08);
    font-size: 0.95rem;
    color: #7f1d1d;
    line-height: 1.5;
}

.problem-chaos-item:last-child {
    border-bottom: none;
}

.problem-chaos-item::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    flex-shrink: 0;
    margin-top: 8px;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}


.problem-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.problem-item-num {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.problem-item-body strong {
    display: block;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 4px;
}

.problem-item-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.stat-callout {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-callout-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
    flex-shrink: 0;
}

.stat-callout-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.stat-callout-text strong {
    color: var(--white);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: var(--off-white);
    padding: 72px 0;
}

.features-header {
    text-align: center;
    margin-bottom: 48px;
}

.features-header .section-subtitle {
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(30, 58, 138, 0.1) 100%);
    border: 1px solid rgba(30, 58, 138, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    margin-bottom: 24px;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.05);
}

.feature-card:hover .feature-icon {
    transform: scale(1.08) rotate(-2deg);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08) 0%, rgba(30, 58, 138, 0.15) 100%);
    color: var(--navy-dark);
}

.feature-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy-dark);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== SOLUTIONS / PRODUCTS ===== */
.solutions-section {
    background: var(--white);
    padding: 72px 0;
}

.solutions-header {
    margin-bottom: 48px;
}

.solution-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 60px;
}

.solution-row:last-child {
    margin-bottom: 0;
}

.solution-row.reverse {
    direction: rtl;
}

.solution-row.reverse>* {
    direction: ltr;
}

.solution-visual {
    background: linear-gradient(135deg, var(--silver-light) 0%, var(--off-white) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.solution-mock {
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.solution-mock-header {
    background: var(--navy-dark);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mock-dot-red {
    background: #FF5F57;
}

.mock-dot-yellow {
    background: #FFBD2E;
}

.mock-dot-green {
    background: #28CA41;
}

.mock-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-left: 8px;
}

.solution-mock-body {
    padding: 20px;
}

.mock-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.825rem;
}

.mock-row:last-child {
    border-bottom: none;
}

.mock-row-left {
    color: var(--text-muted);
}

.mock-row-val {
    font-weight: 600;
    color: var(--navy-dark);
}

.mock-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.badge-green {
    background: #dcfce7;
    color: #16a34a;
}

.badge-blue {
    background: #dbeafe;
    color: #1d4ed8;
}

.badge-yellow {
    background: #fef9c3;
    color: #a16207;
}

.badge-red {
    background: #fee2e2;
    color: #b91c1c;
}


.solution-bullets {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.solution-bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.solution-bullet::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

/* ===== COMPARISON TABLE ===== */
.comparison-section {
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.comparison-section .section-label {
    color: var(--gold-light);
}

.comparison-section .section-label::before {
    background: var(--gold-light);
}

.comparison-section .section-title {
    color: var(--white);
}

.comparison-section .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.comparison-header {
    margin-bottom: 40px;
}

.comparison-bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(12px);
}

.comparison-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.comparison-card-header {
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    letter-spacing: 0.02em;
}

.comparison-card-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.comparison-side {
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.comparison-side.legacy {
    color: rgba(255, 255, 255, 0.6);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-side.modern {
    color: #e2e8f0;
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.03) 0%, transparent 100%);
}

.legacy-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.2);
}

@media (max-width: 768px) {
    .comparison-card-body {
        grid-template-columns: 1fr;
    }

    .comparison-side.legacy {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
}

/* ===== AUDIT SECTION ===== */
.audit-section {
    background: var(--off-white);
    padding: 72px 0;
}

.audit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.audit-visual {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.audit-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.audit-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    position: relative;
}

.audit-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 23px;
    top: 64px;
    width: 2px;
    height: calc(100% - 44px);
    background: linear-gradient(180deg, var(--gold) 0%, var(--silver) 100%);
}

.audit-step-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.audit-step-body strong {
    display: block;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 4px;
}

.audit-step-body p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== EXPORT SECTION ===== */
.export-section {
    background: var(--white);
    padding: 72px 0;
}

.export-scenarios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.scenario-card {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.scenario-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--navy);
}

.scenario-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--silver);
    line-height: 1;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.scenario-title {
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.scenario-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== TESTIMONIALS / SOCIAL PROOF ===== */
.social-section {
    background: var(--off-white);
    padding: 72px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 0;
    opacity: 0;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.star {
    color: var(--gold);
    font-size: 14px;
}

.testimonial-text {
    font-size: 0.925rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--navy-dark);
}

.testimonial-role {
    font-size: 0.775rem;
    color: var(--text-muted);
}

/* ===== CTA BANNER ===== */
.cta-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 146, 74, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-section .section-label {
    color: var(--gold-light);
    justify-content: center;
}

.cta-section .section-label::before {
    background: var(--gold-light);
}

.cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-actions .btn-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.cta-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-dark);
    padding: 64px 0 32px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand img {
    height: 36px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero .section-label {
    justify-content: center;
    color: var(--gold-light);
}

.page-hero .section-label::before {
    background: var(--gold-light);
}

.page-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
    position: relative;
}

.page-hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
}

.breadcrumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.25);
}

/* ===== CONTACT FORM ===== */
.contact-section {
    background: var(--white);
    padding: 72px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-body strong {
    display: block;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 4px;
}

.contact-info-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-info-body a {
    color: var(--navy);
    font-weight: 500;
}

.contact-info-body a:hover {
    color: var(--gold);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(27, 43, 94, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ===== PRODUCT CARDS ===== */
.product-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--navy);
}

.product-card-header {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.product-card-icon {
    font-size: 2rem;
}

.product-card-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
}

.product-card-tag {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

.product-card-body {
    padding: 28px;
}

.product-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-mid);
}

.product-feature::before {
    content: '✓';
    color: var(--navy);
    font-weight: 700;
    flex-shrink: 0;
}

.product-card-footer {
    padding: 0 28px 28px;
}

/* ===== SCROLL ANIMATIONS ===== */
[data-animate] {
    opacity: 0.15;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-delay="1"] {
    transition-delay: 0.1s;
}

[data-delay="2"] {
    transition-delay: 0.2s;
}

[data-delay="3"] {
    transition-delay: 0.3s;
}

[data-delay="4"] {
    transition-delay: 0.4s;
}

[data-delay="5"] {
    transition-delay: 0.5s;
}

/* ===== MOBILE NAV ===== */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy-dark);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--gold-light);
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .audit-grid {
        grid-template-columns: 1fr;
    }

    .solution-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-row.reverse {
        direction: ltr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .export-scenarios {
        grid-template-columns: 1fr;
    }

    .product-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .contact-form-card {
        padding: 28px;
    }

    .section {
        padding: 48px 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}