/* ═══════════════════════════════════════════════════
   CRMTX Website v4 — Professional Theme
   Clean, WordPress-quality field service SaaS design
   ═══════════════════════════════════════════════════ */

/* ── Reset & Variables ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary */
    --primary-900: #1e3a5f;
    --primary-800: #1e40af;
    --primary-700: #1d4ed8;
    --primary-600: #2563eb;
    --primary-500: #3b82f6;
    --primary-400: #60a5fa;
    --primary-300: #93c5fd;
    --primary-200: #bfdbfe;
    --primary-100: #dbeafe;
    --primary-50: #eff6ff;

    /* Neutrals */
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;

    /* Accents */
    --green-600: #059669;
    --green-500: #10b981;
    --green-100: #d1fae5;
    --purple-600: #7c3aed;
    --purple-100: #ede9fe;
    --orange-600: #ea580c;
    --orange-100: #ffedd5;
    --teal-600: #0d9488;
    --teal-100: #ccfbf1;
    --red-600: #dc2626;
    --red-100: #fee2e2;

    /* Typography */
    --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-py: 100px;
    --container-max: 1200px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.15);

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--slate-700);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a { text-decoration: none; }

/* ══════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease, top 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    padding: 10px 0;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-logo {
    height: 36px;
    width: auto;
    transition: opacity 0.3s ease;
}

/* Default: show white logo, hide dark */
.navbar-logo-white { opacity: 1; }
.navbar-logo-dark { display: none; }

/* Scrolled: show dark logo, hide white */
.navbar.scrolled .navbar-logo-white { display: none; }
.navbar.scrolled .navbar-logo-dark { display: block; opacity: 1; }

.navbar-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-menu li a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    white-space: nowrap;
}

.navbar-menu li a:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.navbar.scrolled .navbar-menu li a {
    color: var(--slate-600);
}

.navbar.scrolled .navbar-menu li a:hover {
    color: var(--slate-900);
    background: var(--slate-100);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-outline-nav {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.2s;
}

.btn-outline-nav:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

.navbar.scrolled .btn-outline-nav {
    color: var(--slate-700);
    border-color: var(--slate-300);
}

.navbar.scrolled .btn-outline-nav:hover {
    background: var(--slate-100);
    color: var(--slate-900);
}

.btn-primary-nav {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-700);
    background: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.btn-primary-nav:hover {
    background: var(--primary-50);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled .btn-primary-nav {
    color: var(--white);
    background: var(--primary-600);
}

.navbar.scrolled .btn-primary-nav:hover {
    background: var(--primary-700);
}

/* Mobile toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.navbar-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.navbar.scrolled .navbar-toggle span {
    background: var(--slate-700);
}

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.hero {
    background: linear-gradient(160deg, var(--slate-900) 0%, var(--primary-900) 35%, var(--primary-700) 65%, var(--primary-600) 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(59,130,246,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-content {
    max-width: 640px;
}

/* Animated network graphic */
.hero-animation {
    position: relative;
    width: 100%;
    height: 420px;
}

.hero-animation canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-node-label {
    position: absolute;
    background: rgba(59,130,246,0.18);
    border: 1px solid rgba(59,130,246,0.35);
    color: rgba(255,255,255,0.85);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    white-space: nowrap;
    pointer-events: none;
    animation: floatLabel 6s ease-in-out infinite;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.hero-node-label.accent {
    background: rgba(34,197,94,0.15);
    border-color: rgba(34,197,94,0.35);
    color: rgba(134,239,172,0.9);
    animation-delay: -3s;
}

.hero-node-label:nth-child(2) { animation-delay: -1s; }
.hero-node-label:nth-child(3) { animation-delay: -2s; }
.hero-node-label:nth-child(4) { animation-delay: -4s; }
.hero-node-label:nth-child(5) { animation-delay: -0.5s; }
.hero-node-label:nth-child(6) { animation-delay: -5s; }
.hero-node-label:nth-child(7) { animation-delay: -3.5s; }
.hero-node-label:nth-child(8) { animation-delay: -1.8s; }
.hero-node-label:nth-child(9) { animation-delay: -4.2s; }
.hero-node-label:nth-child(10) { animation-delay: -2.5s; }
.hero-node-label:nth-child(11) { animation-delay: -0.8s; }
.hero-node-label:nth-child(12) { animation-delay: -3.2s; }
.hero-node-label:nth-child(13) { animation-delay: -5.5s; }
.hero-node-label:nth-child(14) { animation-delay: -1.3s; }
.hero-node-label:nth-child(15) { animation-delay: -4.7s; }
.hero-node-label:nth-child(16) { animation-delay: -2.8s; }
.hero-node-label:nth-child(17) { animation-delay: -0.3s; }

@keyframes floatLabel {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-300);
    background: rgba(59,130,246,0.15);
    border: 1px solid rgba(59,130,246,0.25);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
}

.hero-highlight {
    color: var(--primary-300);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.hero-note {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-lg {
    font-size: 15px;
    padding: 14px 28px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-700);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: var(--primary-50);
    box-shadow: var(--shadow-xl);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.btn-white {
    background: var(--white);
    color: var(--primary-700);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    background: var(--primary-50);
    transform: translateY(-1px);
    box-shadow: var(--shadow-xl);
}

.btn-ghost {
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.25);
    background: transparent;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

/* Hero image */
.hero-image {
    max-width: 900px;
    margin: 0 auto;
}

.browser-frame {
    background: var(--slate-800);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(255,255,255,0.05);
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--slate-800);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.browser-dots {
    display: flex;
    gap: 7px;
}

.browser-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #eab308; }
.dot.green { background: #22c55e; }

.browser-address {
    flex: 1;
    background: rgba(255,255,255,0.08);
    color: var(--slate-400);
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 6px;
    font-family: ui-monospace, 'SF Mono', monospace;
    max-width: 300px;
}

.browser-content {
    line-height: 0;
}

.browser-content img {
    width: 100%;
}

/* ══════════════════════════════════════════════════
   INDUSTRY BAR
   ══════════════════════════════════════════════════ */
.industry-bar {
    background: var(--slate-50);
    border-bottom: 1px solid var(--slate-200);
    padding: 28px 0;
}

.industry-bar .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.industry-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.industry-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--slate-500);
}

.industry-item svg {
    color: var(--slate-400);
}

.industry-item span {
    font-size: 14px;
    font-weight: 500;
}

/* ══════════════════════════════════════════════════
   SECTION HEADERS
   ══════════════════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.25;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    max-width: 700px;
}

.section-desc {
    font-size: 18px;
    color: var(--slate-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header.light .section-title {
    color: var(--white);
}

.section-header.light .section-tag {
    color: var(--primary-300);
}

/* ══════════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════════ */
.features {
    padding: var(--section-py) 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon.blue { background: var(--primary-100); color: var(--primary-700); }
.feature-icon.green { background: var(--green-100); color: var(--green-600); }
.feature-icon.purple { background: var(--purple-100); color: var(--purple-600); }
.feature-icon.orange { background: var(--orange-100); color: var(--orange-600); }
.feature-icon.teal { background: var(--teal-100); color: var(--teal-600); }
.feature-icon.red { background: var(--red-100); color: var(--red-600); }

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 15px;
    color: var(--slate-500);
    line-height: 1.65;
}

/* ══════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════ */
.how-it-works {
    padding: var(--section-py) 0;
    background: var(--slate-50);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.step.reverse .step-info {
    order: 2;
}

.step.reverse .step-screenshot {
    order: 1;
}

.step-info {
    display: flex;
    gap: 24px;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-600);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.step-text h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.step-text p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 12px;
}

.step-details {
    list-style: none;
    margin-top: 16px;
}

.step-details li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    color: var(--slate-600);
    margin-bottom: 8px;
    line-height: 1.5;
}

.step-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background: var(--primary-500);
    border-radius: 50%;
}

/* Screenshot frames */
.screenshot-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--slate-200);
    background: var(--white);
}

.screenshot-frame img {
    width: 100%;
    display: block;
}

.step-screenshot {
    display: flex;
    justify-content: center;
}

.step-screenshot .screenshot-frame {
    max-width: 480px;
    width: 100%;
}

.reports-screenshot .screenshot-frame {
    max-width: 520px;
}

.screenshot-caption {
    padding: 12px 16px;
    font-size: 13px;
    color: var(--slate-500);
    background: var(--slate-50);
    border-top: 1px solid var(--slate-200);
    text-align: center;
    font-style: italic;
}

/* ══════════════════════════════════════════════════
   PRODUCT SHOWCASE
   ══════════════════════════════════════════════════ */
.showcase {
    padding: var(--section-py) 0;
    background: var(--white);
}

.showcase-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding-bottom: 30px;
}

.showcase-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.showcase-block.reverse .showcase-content {
    order: 2;
}

.showcase-block.reverse .showcase-visual,
.showcase-block.reverse .showcase-image {
    order: 1;
}

.showcase-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.showcase-content p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 12px;
}

.showcase-highlights {
    margin-top: 24px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.highlight-item svg {
    flex-shrink: 0;
    color: var(--green-600);
    margin-top: 2px;
}

.highlight-item span {
    font-size: 14px;
    color: var(--slate-700);
    font-weight: 500;
}

/* ══════════════════════════════════════════════════
   PARTS FINDER SPOTLIGHT
   ══════════════════════════════════════════════════ */
.parts-spotlight {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-50) 40%, var(--white) 100%);
    position: relative;
}

.spotlight-tag {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700)) !important;
    color: var(--white) !important;
    font-size: 13px !important;
    padding: 6px 16px !important;
    border-radius: 20px;
}

.parts-feature-block {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 80px;
}

.parts-feature-block:last-child {
    margin-bottom: 0;
}

.parts-feature-block.reverse .parts-feature-content {
    order: 2;
}

.parts-feature-block.reverse .parts-feature-screenshot {
    order: 1;
}

.parts-feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-100);
    color: var(--primary-700);
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.parts-feature-badge.green-badge {
    background: var(--green-100);
    color: var(--green-600);
}

.parts-feature-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.parts-feature-content > p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 28px;
}

.parts-feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.parts-feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.parts-icon-circle {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parts-icon-circle.green {
    background: var(--green-100);
    color: var(--green-600);
}

.parts-icon-circle.blue {
    background: var(--primary-100);
    color: var(--primary-600);
}

.parts-icon-circle.purple {
    background: var(--purple-100);
    color: var(--purple-600);
}

.parts-icon-circle.orange {
    background: var(--orange-100);
    color: var(--orange-600);
}

.parts-feature-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 4px;
}

.parts-feature-item p {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.55;
    margin: 0;
}

.parts-feature-screenshot {
    display: flex;
    justify-content: center;
}

.parts-feature-screenshot .screenshot-frame {
    max-width: 600px;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--slate-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.parts-feature-screenshot .screenshot-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 64px -12px rgba(0,0,0,0.2);
}

/* ══════════════════════════════════════════════════
   SHOWCASE VISUAL (Stock Photo + Screenshot Overlay)
   ══════════════════════════════════════════════════ */
.showcase-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}

.showcase-photo {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    display: block;
}

.showcase-screenshot-float {
    position: absolute;
    bottom: -24px;
    right: -12px;
    width: 55%;
    z-index: 2;
}

.showcase-screenshot-float .screenshot-frame {
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    border: 2px solid var(--white);
}

.showcase-block.reverse .showcase-screenshot-float {
    right: auto;
    left: -12px;
}

/* ══════════════════════════════════════════════════
   PHOTO BANNER
   ══════════════════════════════════════════════════ */
.photo-banner {
    position: relative;
    height: 340px;
    overflow: hidden;
}

.photo-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.88), rgba(59, 130, 246, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-banner-content {
    text-align: center;
    max-width: 700px;
    padding: 0 24px;
}

.photo-banner-content h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.photo-banner-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   WHY SECTION (with background)
   ══════════════════════════════════════════════════ */
.why-section {
    position: relative;
    padding: var(--section-py) 0;
    background: linear-gradient(160deg, var(--slate-900) 0%, var(--primary-900) 50%, var(--primary-800) 100%);
    overflow: hidden;
}

.why-bg-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    z-index: 0;
}

.why-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 40px 40px;
}

.why-content {
    position: relative;
    z-index: 2;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}

.why-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

.why-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-300);
    margin-bottom: 20px;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
}

/* ══════════════════════════════════════════════════
   PORTALS
   ══════════════════════════════════════════════════ */
.portals {
    padding: var(--section-py) 0;
    background: var(--slate-50);
}

.portals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.portal-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.3s;
}

.portal-card:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.portal-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.portal-icon-wrap.blue { background: var(--primary-100); color: var(--primary-700); }
.portal-icon-wrap.green { background: var(--green-100); color: var(--green-600); }
.portal-icon-wrap.purple { background: var(--purple-100); color: var(--purple-600); }
.portal-icon-wrap.orange { background: var(--orange-100); color: var(--orange-600); }

.portal-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 10px;
}

.portal-card p {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.65;
    margin-bottom: 20px;
}

.portal-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-600);
    transition: all 0.2s;
}

.portal-link:hover {
    color: var(--primary-700);
    gap: 10px;
}

/* ══════════════════════════════════════════════════
   REPORTS
   ══════════════════════════════════════════════════ */
.reports {
    padding: var(--section-py) 0;
    background: var(--white);
}

.reports-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.reports-content .section-tag {
    text-align: left;
}

.reports-content .section-title {
    text-align: left;
    font-size: 36px;
    margin-bottom: 20px;
}

.reports-content > p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 28px;
}

.reports-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-item svg {
    flex-shrink: 0;
    color: var(--primary-600);
}

.stat-item span {
    font-size: 14px;
    color: var(--slate-700);
    font-weight: 500;
}

.screenshot-frame.large {
    box-shadow: var(--shadow-2xl);
}

/* ══════════════════════════════════════════════════
   MORE FEATURES
   ══════════════════════════════════════════════════ */
.more-features {
    padding: var(--section-py) 0;
    background: var(--slate-50);
}

.more-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.more-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 22px;
    transition: all 0.2s;
}

.more-item:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-md);
}

.more-item svg {
    flex-shrink: 0;
    color: var(--primary-600);
    margin-top: 2px;
}

.more-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 4px;
}

.more-item p {
    font-size: 13px;
    color: var(--slate-500);
    line-height: 1.5;
    margin: 0;
}

/* ══════════════════════════════════════════════════
   CTA
   ══════════════════════════════════════════════════ */
.cta {
    padding: var(--section-py) 0;
    background: linear-gradient(160deg, var(--primary-700) 0%, var(--primary-600) 50%, var(--primary-500) 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.footer {
    background: var(--slate-900);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--slate-400);
    line-height: 1.65;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--slate-300);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--slate-400);
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--slate-500);
    text-align: center;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    :root { --section-py: 80px; }

    .hero-title { font-size: 42px; }
    .section-title { font-size: 34px; }

    .hero-split { grid-template-columns: 1fr; }
    .hero-animation { height: 300px; margin-top: -20px; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .portals-grid { grid-template-columns: repeat(2, 1fr); }
    .more-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(3, 1fr); }

    .step { grid-template-columns: 1fr; gap: 32px; }
    .step.reverse .step-info,
    .step.reverse .step-screenshot { order: unset; }

    .showcase-block { grid-template-columns: 1fr; gap: 32px; }
    .showcase-block.reverse .showcase-content,
    .showcase-block.reverse .showcase-visual,
    .showcase-block.reverse .showcase-image { order: unset; }

    .showcase-photo { height: 300px; }
    .showcase-screenshot-float { width: 50%; bottom: -16px; right: -8px; }
    .showcase-block.reverse .showcase-screenshot-float { left: -8px; }

    .parts-feature-block { grid-template-columns: 1fr; gap: 32px; }
    .parts-feature-block.reverse .parts-feature-content,
    .parts-feature-block.reverse .parts-feature-screenshot { order: unset; }

    .photo-banner { height: 280px; }
    .photo-banner-content h2 { font-size: 30px; }

    .reports-layout { grid-template-columns: 1fr; gap: 40px; }

    .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

/* Mobile */
@media (max-width: 768px) {
    :root { --section-py: 64px; }

    .navbar-menu,
    .navbar-actions { display: none; }

    .navbar-toggle { display: flex; }

    .navbar-menu.open,
    .navbar-actions.open {
        display: flex;
    }

    /* Mobile menu */
    .navbar.mobile-open {
        background: var(--white);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .navbar.mobile-open .navbar-inner {
        flex-wrap: wrap;
    }

    .navbar.mobile-open .navbar-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 16px 0;
        gap: 4px;
        order: 3;
    }

    .navbar.mobile-open .navbar-menu li a {
        color: var(--slate-700);
        padding: 10px 16px;
        display: block;
        border-radius: var(--radius-sm);
    }

    .navbar.mobile-open .navbar-menu li a:hover {
        background: var(--slate-100);
    }

    .navbar.mobile-open .navbar-actions {
        display: flex;
        width: 100%;
        order: 4;
        padding-bottom: 16px;
    }

    .navbar.mobile-open .navbar-actions a {
        flex: 1;
        text-align: center;
        justify-content: center;
    }

    .navbar.mobile-open .btn-outline-nav {
        color: var(--slate-700);
        border-color: var(--slate-300);
    }

    .navbar.mobile-open .btn-primary-nav {
        color: var(--white);
        background: var(--primary-600);
    }

    .navbar.mobile-open .navbar-toggle span {
        background: var(--slate-700);
    }

    .navbar.mobile-open .navbar-logo-white { display: none; }
    .navbar.mobile-open .navbar-logo-dark { display: block; }

    .hero { padding: 120px 0 60px; }
    .hero-title { font-size: 34px; }
    .hero-subtitle { font-size: 16px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { justify-content: center; }

    .hero-split { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
    .hero-animation { height: 250px; }
    .hero-node-label { font-size: 11px; padding: 4px 10px; }

    .section-header { margin-bottom: 40px; }
    .section-title { font-size: 28px; }
    .section-desc { font-size: 16px; }

    .industry-bar .container {
        gap: 16px;
    }

    .industry-icons { gap: 20px; }

    .features-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .portals-grid { grid-template-columns: 1fr; }
    .more-grid { grid-template-columns: 1fr; }
    .proof-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .navbar-phone { display: none; }

    .faq-question { font-size: 15px; padding: 16px 20px; }
    .faq-answer { padding: 0 20px; }
    .faq-item.open .faq-answer { padding: 0 20px 16px; }

    .step-info { flex-direction: column; gap: 16px; }
    .step-text h3 { font-size: 22px; }

    .showcase-content h3 { font-size: 24px; }

    .parts-feature-block { grid-template-columns: 1fr; gap: 28px; }
    .parts-feature-block.reverse .parts-feature-content,
    .parts-feature-block.reverse .parts-feature-screenshot { order: unset; }
    .parts-feature-content h3 { font-size: 24px; }

    .showcase-photo { height: 260px; }
    .showcase-screenshot-float {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        width: 100%;
        margin-top: 16px;
    }
    .showcase-block.reverse .showcase-screenshot-float {
        left: auto;
    }

    .photo-banner { height: 240px; }
    .photo-banner-content h2 { font-size: 24px; }
    .photo-banner-content p { font-size: 15px; }

    .reports-content .section-title { font-size: 28px; }

    .cta-content h2 { font-size: 28px; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { justify-content: center; }

    .footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .section-title { font-size: 24px; }
    .hero { padding: 100px 0 48px; }
    .feature-card { padding: 24px; }
    .why-card { padding: 24px; }
    .portal-card { padding: 24px 20px; }
    .more-item { padding: 16px; }
    .footer-links { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   ANIMATIONS (subtle, not overdone)
   ══════════════════════════════════════════════════ */
.feature-card,
.portal-card,
.why-card,
.showcase-block,
.step,
.more-item,
.parts-feature-block {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card.visible,
.portal-card.visible,
.why-card.visible,
.showcase-block.visible,
.step.visible,
.more-item.visible,
.parts-feature-block.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for grids */
.feature-card:nth-child(2),
.portal-card:nth-child(2),
.why-card:nth-child(2),
.more-item:nth-child(2) { transition-delay: 0.1s; }

.feature-card:nth-child(3),
.portal-card:nth-child(3),
.why-card:nth-child(3),
.more-item:nth-child(3) { transition-delay: 0.2s; }

.feature-card:nth-child(4),
.portal-card:nth-child(4),
.more-item:nth-child(4) { transition-delay: 0.3s; }

.more-item:nth-child(5) { transition-delay: 0.1s; }
.more-item:nth-child(6) { transition-delay: 0.2s; }
.more-item:nth-child(7) { transition-delay: 0.3s; }
.more-item:nth-child(8) { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════════
   NAVBAR PHONE
   ══════════════════════════════════════════════════ */
.navbar-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.navbar-phone:hover {
    color: #fff;
}

.navbar.scrolled .navbar-phone {
    color: var(--slate-600);
}

.navbar.scrolled .navbar-phone:hover {
    color: var(--primary);
}

.navbar.mobile-open .navbar-phone {
    color: var(--slate-700);
}

/* ══════════════════════════════════════════════════
   SOCIAL PROOF
   ══════════════════════════════════════════════════ */
.social-proof {
    padding: var(--section-py) 0;
    background: var(--white);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 64px;
    text-align: center;
}

.proof-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.proof-stat.visible {
    opacity: 1;
    transform: translateY(0);
}

.proof-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.proof-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--slate-700);
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--slate-100);
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--slate-800);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--slate-500);
}

/* Stagger testimonials */
.testimonial-card:nth-child(2) { transition-delay: 0.1s; }
.testimonial-card:nth-child(3) { transition-delay: 0.2s; }

/* Stagger proof stats */
.proof-stat:nth-child(2) { transition-delay: 0.1s; }
.proof-stat:nth-child(3) { transition-delay: 0.2s; }
.proof-stat:nth-child(4) { transition-delay: 0.3s; }

/* ══════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════ */
.faq {
    padding: var(--section-py) 0;
    background: var(--slate-50);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s, box-shadow 0.2s;
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--slate-800);
    font-family: var(--font-heading);
    gap: 16px;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--slate-400);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--slate-600);
}

.faq-answer a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Stagger FAQ items */
.faq-item:nth-child(2) { transition-delay: 0.05s; }
.faq-item:nth-child(3) { transition-delay: 0.1s; }
.faq-item:nth-child(4) { transition-delay: 0.15s; }
.faq-item:nth-child(5) { transition-delay: 0.2s; }
.faq-item:nth-child(6) { transition-delay: 0.25s; }
.faq-item:nth-child(7) { transition-delay: 0.3s; }
.faq-item:nth-child(8) { transition-delay: 0.35s; }

/* ══════════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ══════════════════════════════════════════════════ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-400), #22d3ee);
    z-index: 10000;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

/* ══════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ══════════════════════════════════════════════════ */
@keyframes announcement-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes announcement-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
}

.announcement-bar {
    background: linear-gradient(135deg, #e25500, #FF6B00, #ff8c33, #FF6B00, #e25500);
    background-size: 300% 300%;
    animation: announcement-gradient 6s ease infinite;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    letter-spacing: 0.01em;
    overflow: hidden;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: announcement-shimmer 4s ease-in-out infinite;
    pointer-events: none;
}

.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #FF6B00;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
}

.announcement-bar p {
    margin: 0;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.announcement-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    color: #e25500;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    padding: 5px 18px;
    border-radius: 100px;
    border: 2px solid #fff;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
    animation: cta-pulse 2.5s ease-in-out infinite;
}

.announcement-cta:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: none;
}

.announcement-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 18px;
    cursor: pointer;
    padding: 0 8px;
    line-height: 1;
    transition: color 0.2s;
    flex-shrink: 0;
}

.announcement-close:hover {
    color: white;
}

.announcement-bar.hidden {
    display: none;
}

/* ── Floating PartsHawk Button ── */
@keyframes float-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes float-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(255, 107, 0, 0.7); }
}

.parthawk-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e25500, #FF6B00);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 100px;
    animation: float-bounce 3s ease-in-out infinite, float-glow 2s ease-in-out infinite;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.parthawk-float:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 30px rgba(255, 107, 0, 0.6);
    animation: none;
}

.parthawk-float.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.parthawk-float-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.parthawk-float-label {
    white-space: nowrap;
}

/* Adjust navbar when announcement is present */
body:has(.announcement-bar:not(.hidden)) .navbar:not(.scrolled) {
    top: 42px;
}

/* ══════════════════════════════════════════════════
   HERO TRUST BADGES
   ══════════════════════════════════════════════════ */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.hero-trust-item svg {
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   ANIMATED COUNTERS
   ══════════════════════════════════════════════════ */
.proof-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-500) 50%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

/* ══════════════════════════════════════════════════
   TESTIMONIAL ENHANCEMENTS
   ══════════════════════════════════════════════════ */
.testimonial-card {
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 64px;
    font-family: Georgia, serif;
    color: var(--primary-100);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-lg);
}

.testimonial-avatar {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
}

/* ══════════════════════════════════════════════════
   DEMO BOOKING FORM SECTION
   ══════════════════════════════════════════════════ */
.demo-section {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--slate-50) 100%);
    position: relative;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-200), transparent);
}

.demo-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.demo-info .section-tag {
    text-align: left;
}

.demo-info .section-title {
    text-align: left;
    font-size: 36px;
}

.demo-info > p {
    font-size: 16px;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 32px;
}

.demo-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.demo-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.demo-benefit svg {
    color: var(--green-600);
    flex-shrink: 0;
}

.demo-benefit span {
    font-size: 15px;
    font-weight: 500;
    color: var(--slate-700);
}

.demo-contact-alt {
    padding-top: 24px;
    border-top: 1px solid var(--slate-200);
}

.demo-contact-alt p {
    font-size: 13px;
    color: var(--slate-400);
    margin-bottom: 8px;
}

.demo-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-600);
    transition: color 0.2s;
}

.demo-phone:hover {
    color: var(--primary-700);
}

.demo-form-wrap {
    position: relative;
}

.demo-form {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.demo-form::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--primary-200), transparent, var(--primary-200));
    z-index: -1;
    padding: 1px;
}

.demo-form h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 28px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--slate-800);
    background: var(--white);
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate-400);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-primary-form {
    width: 100%;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
}

.btn-primary-form:hover {
    background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.form-privacy {
    text-align: center;
    font-size: 12px;
    color: var(--slate-400);
    margin-top: 14px;
}

.form-privacy a {
    color: var(--primary-500);
    text-decoration: none;
}

.form-privacy a:hover {
    text-decoration: underline;
}

/* ══════════════════════════════════════════════════
   CTA TRUST LINE
   ══════════════════════════════════════════════════ */
.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.cta-trust span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ══════════════════════════════════════════════════
   BACK TO TOP BUTTON
   ══════════════════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
    color: var(--slate-600);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-600);
    color: white;
    border-color: var(--primary-600);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════
   FOOTER ENHANCEMENTS
   ══════════════════════════════════════════════════ */
.footer {
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-600), var(--primary-400), #22d3ee, var(--primary-400), var(--primary-600));
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--slate-400);
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--primary-600);
    border-color: var(--primary-600);
    color: white;
    transform: translateY(-2px);
}

.footer-social a svg {
    width: 16px;
    height: 16px;
}

/* ══════════════════════════════════════════════════
   SECTION DIVIDER ACCENTS
   ══════════════════════════════════════════════════ */
.features::before,
.showcase::before,
.more-features::before,
.faq::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--slate-200), transparent);
    margin-bottom: 0;
    position: relative;
    top: 0;
}

/* ══════════════════════════════════════════════════
   ACTIVE NAV INDICATOR
   ══════════════════════════════════════════════════ */
.navbar-menu li a.active {
    color: var(--primary-400) !important;
}

.navbar.scrolled .navbar-menu li a.active {
    color: var(--primary-600) !important;
    background: var(--primary-50);
}

/* ══════════════════════════════════════════════════
   PREMIUM MICRO-INTERACTIONS
   ══════════════════════════════════════════════════ */

/* Subtle gradient border on feature cards on hover */
.feature-card:hover {
    border-color: transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-200), var(--primary-100), var(--primary-200)) border-box;
}

/* Glow effect on primary buttons */
.btn-primary:hover,
.btn-white:hover {
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.2), var(--shadow-xl);
}

/* Portal card top-border accent on hover */
.portal-card:hover::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 3px;
    border-radius: 0 0 4px 4px;
}

.portal-card {
    position: relative;
    overflow: hidden;
}

.portal-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-400), var(--primary-600));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.portal-card:hover::after {
    transform: scaleX(1);
}

/* Screenshot frames premium shadow on hover */
.screenshot-frame {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.12), 0 0 0 1px var(--primary-100);
}

/* Subtle shimmer effect on hero badge */
.hero-badge {
    position: relative;
    overflow: hidden;
}

.hero-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Why card number/decoration */
.why-card {
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}

/* Step connector line (vertical) */
.steps {
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 64px;
    bottom: 64px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-300), var(--primary-500), var(--primary-300));
    opacity: 0.3;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE ADDITIONS
   ══════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .demo-layout { grid-template-columns: 1fr; gap: 48px; }
    .steps::before { display: none; }
}

@media (max-width: 768px) {
    .announcement-bar { font-size: 12px; padding: 8px 0; }
    .announcement-inner { gap: 8px; }
    .announcement-badge { font-size: 9px; padding: 2px 8px; }
    .announcement-cta { font-size: 11px; padding: 4px 12px; }
    body:has(.announcement-bar:not(.hidden)) .navbar:not(.scrolled) { top: 38px; }
    .parthawk-float { padding: 10px 16px; font-size: 12px; bottom: 18px; right: 18px; }
    
    .hero-trust { gap: 12px; }
    .hero-trust-item { font-size: 11px; }
    
    .form-row { grid-template-columns: 1fr; }
    .demo-form { padding: 28px 24px; }
    .demo-info .section-title { font-size: 28px; }
    
    .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
    
    .footer-bottom-inner { flex-direction: column; gap: 16px; }
    
    .steps::before { display: none; }
    
    .proof-number { font-size: 36px; }
}

@media (max-width: 480px) {
    .hero-trust { flex-direction: column; gap: 8px; }
    .demo-form { padding: 24px 20px; }
    .announcement-bar p strong { display: none; }
    .announcement-bar p { font-size: 11px; }
    .announcement-cta { font-size: 10px; padding: 3px 10px; }
    .proof-number { font-size: 32px; }
}
