/* ============================================
   HEATSCOPE - PREMIUM STYLESHEET
   ============================================ */

/* CSS Variables */
:root {
    --primary-green: #34C759;
    --primary-green-dark: #2AA84A;
    --primary-green-light: #E8F5E9;
    --primary-green-glow: rgba(52, 199, 89, 0.2);
    
    --bg-white: #FFFFFF;
    --bg-gray: #F5F5F7;
    --bg-card: #FFFFFF;
    --text-primary: #1D1D1F;
    --text-secondary: #6E6E73;
    --text-muted: #A1A1A6;
    
    --border-light: #E5E5E5;
    --border-subtle: #F0F0F0;
    --border-dashed: #E0E0E3;
    
    --shadow-soft: rgba(0, 0, 0, 0.04);
    --shadow-medium: rgba(0, 0, 0, 0.08);
    --shadow-strong: rgba(0, 0, 0, 0.12);
    --shadow-green: rgba(52, 199, 89, 0.35);
    
    --section-padding: 120px;
    --section-padding-mobile: 80px;
    --container-max: 1140px;
    --container-padding: 24px;
    
    --font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-mono: "SF Mono", SFMono-Regular, Monaco, monospace;
    
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 300ms cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 600ms cubic-bezier(0.16, 1, 0.3, 1);
    
    --z-background: -1;
    --z-default: 1;
    --z-header: 1000;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    background-image: 
        radial-gradient(circle, #E0E0E3 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   ANIMATION KEYFRAMES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-5px) rotate(-1deg); }
    75% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes lineDraw {
    from { width: 0; }
    to { width: 100%; }
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes parallaxScroll {
    0% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.05) translateY(-20px);
    }
    100% {
        transform: scale(1.08) translateY(-40px);
    }
}

/* ============================================
   ANIMATION CLASSES
   ============================================ */
[data-animate] {
    opacity: 0;
}

[data-animate="fade-up"].animated {
    animation: fadeInUp 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

[data-animate="fade-right"].animated {
    animation: fadeInRight 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

[data-animate="fade-left"].animated {
    animation: fadeInLeft 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

[data-animate="line-draw"].animated {
    animation: lineDraw 1000ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Stagger delays */
[data-delay="100"] { animation-delay: 100ms; }
[data-delay="200"] { animation-delay: 200ms; }
[data-delay="300"] { animation-delay: 300ms; }
[data-delay="400"] { animation-delay: 400ms; }
[data-delay="500"] { animation-delay: 500ms; }
[data-delay="600"] { animation-delay: 600ms; }

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 9999px;
    transition: all var(--transition-fast);
    will-change: transform, box-shadow;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--bg-white);
    box-shadow: 0 4px 16px var(--shadow-green);
}

.btn-primary:hover {
    background-color: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow-green);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background-color: var(--bg-gray);
    border-color: var(--border-subtle);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-light);
}

.btn-outline:hover {
    background-color: var(--bg-gray);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-large {
    padding: 18px 36px;
    font-size: 17px;
}

.btn-large svg {
    width: 22px;
    height: 22px;
}

/* ============================================
   PLACEHOLDERS
   ============================================ */
.placeholder-block {
    background: linear-gradient(135deg, var(--bg-gray) 0%, #FAFAFA 100%);
    border: 2px dashed var(--border-dashed);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    transition: all var(--transition-fast);
}

.placeholder-block:hover {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--bg-gray) 100%);
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    text-align: center;
}

.placeholder-label {
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.placeholder-hint {
    font-size: 12px;
    color: var(--text-secondary);
}

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

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    padding: 16px 0;
}

.nav-container {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 10px 24px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 9999px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    animation: fadeIn 600ms ease-out;
    transition: all 300ms ease;
}

.header.dark-header .nav-container {
    background-color: rgba(33, 33, 33, 0.949);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.header.dark-header .nav-logo {
    color: #ffffff;
}

.header.dark-header .nav-links a {
    color: rgba(255, 255, 255, 0.7);
}

.header.dark-header .nav-links a:hover {
    color: #ffffff;
}

.header.dark-header .btn-download {
    background-color: rgba(52, 199, 89, 0.9);
    color: #ffffff;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.nav-logo .logo-svg {
    max-height: 24px;
    width: auto;
    flex-shrink: 0;
}

.logo-icon {
    flex-shrink: 0;
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    border-radius: 2px;
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 20px;
    background-color: var(--primary-green);
    color: var(--bg-white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 9999px;
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background-color: var(--primary-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--shadow-green);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    z-index: 999;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all var(--transition-medium);
}

.mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: 24px;
}

.mobile-nav-links li {
    margin-bottom: 4px;
}

.mobile-nav-link {
    display: block;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: 12px;
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
    background-color: var(--bg-gray);
    color: var(--primary-green);
}

.mobile-nav-cta {
    width: 100%;
}

/* ============================================
   HERO SECTION - CENTERED
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    background-image: 
        radial-gradient(circle, #E0E0E3 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0;
}

/* Background Elements */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: var(--z-background);
    pointer-events: none;
    overflow: hidden;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.glow-circle-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--primary-green-glow), transparent 70%);
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    animation: glowPulse 8s ease-in-out infinite;
}

.glow-circle-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(52, 199, 89, 0.1), transparent 70%);
    bottom: 200px;
    left: -150px;
    animation: float 18s ease-in-out infinite;
}

.glow-circle-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 199, 89, 0.08), transparent 70%);
    top: 40%;
    right: -100px;
    animation: float 14s ease-in-out infinite reverse;
}

.glow-circle-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 199, 89, 0.06), transparent 70%);
    bottom: 100px;
    right: 20%;
    animation: float 16s ease-in-out infinite;
}

.hero-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.9;
    z-index: 1;
    pointer-events: none;
    filter: blur(20px);
}

.final-cta-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    z-index: 1;
    pointer-events: none;
    filter: blur(20px);
}

/* Hero Content - Centered */
.hero-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
    position: relative;
    z-index: var(--z-default);
}

.hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-green);
    margin-bottom: 24px;
    padding: 8px 16px;
    background: var(--primary-green-light);
    border-radius: 9999px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.hero-note svg {
    width: 16px;
    height: 16px;
}

/* Hero Visual */
.hero-visual {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: var(--z-default);
}

.hero-image-wrapper {
    position: relative;
}

.hero-placeholder {
    display: block;
    width: 100%;
    height: auto;
    min-height: 580px;
    border-radius: 24px;
    animation: scaleUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    object-fit: cover;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    animation: float 6s ease-in-out infinite;
}

.floating-card-1 {
    top: 20%;
    left: -60px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 20%;
    right: -40px;
    animation-delay: 1s;
}

.floating-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-green-light);
    border-radius: 10px;
}

.floating-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.floating-line {
    width: 80px;
    height: 8px;
    background: var(--border-light);
    border-radius: 4px;
}

.floating-line.short {
    width: 50px;
}

.heatmap-preview {
    width: 100px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FFE66D 50%, #4ECDC4 100%);
    border-radius: 8px;
}



/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: var(--section-padding) 0;
    background-color: var(--bg-white);
    background-image: 
        radial-gradient(circle, #E0E0E3 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0;
    position: relative;
}

.section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 12px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--secondary-light) 100%);
   
    color: var(--primary-green);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.label-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary-green);
    box-shadow: 0 0 12px rgba(47, 143, 91, 0.35);
    flex: 0 0 auto;
}

.section-title {
    margin: 0;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--text-primary);
    max-width: 760px;
    letter-spacing: -0.02em;
}

.section-copy {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 620px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 26px;
    min-height: 272px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(21, 33, 24, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, box-shadow;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(47, 143, 91, 0.08), transparent 34%);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(21, 33, 24, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    border-color: var(--border-light);
}

.card-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.icon-shell {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--secondary-light) 100%);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    flex: 0 0 auto;
    color: var(--primary-green);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .icon-shell {
    background: #000000;
    color: var(--bg-white);
    transform: scale(1.05);
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.file-ref {
    font-size: 12px;
    line-height: 1;
    color: var(--text-secondary);
    white-space: nowrap;
    padding: 7px 10px;
    border-radius: 12px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.card-title {
    margin: 0;
    font-size: 24px;
    line-height: 1.18;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.card-copy {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
}

.card-accent-line {
    margin-top: auto;
    height: 8px;
    width: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--bg-light) 100%);
    opacity: 0.5;
    position: relative;
    z-index: 1;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .card-accent-line {
    opacity: 0.8;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    .section-heading {
        margin-bottom: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
    
    .feature-card {
        min-height: 256px;
        padding: 22px;
    }
    
    .card-title {
        font-size: 22px;
    }
    
    .card-copy {
        font-size: 13px;
    }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .section-label {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .section-heading {
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 32px;
        line-height: 1.15;
    }
    
    .section-copy {
        font-size: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-card {
        min-height: auto;
        padding: 20px;
        gap: 14px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-copy {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .icon-shell {
        width: 48px;
        height: 48px;
    }
    
    .card-accent-line {
        height: 6px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-copy {
        font-size: 14px;
    }
    
    .feature-card {
        padding: 16px;
        min-height: auto;
    }
    
    .card-title {
        font-size: 18px;
    }
}

/* ============================================
   FEATURE SHOWCASE SECTION - ACCORDION
   ============================================ */
.feature-showcase {
    padding: var(--section-padding) 0;
    background-color: var(--bg-white);
    background-image: 
        radial-gradient(circle, #E0E0E3 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0;
}

.feature-showcase-header {
    text-align: center;
    max-width: none;
    margin: 0 auto 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.feature-showcase-heading {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0;
    max-width: 760px;
}

.feature-showcase-subheading {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0;
}

.feature-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: flex-start;
}

/* Left Column: Feature Items Accordion */
.feature-showcase-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.feature-showcase-item {
    position: relative;
    display: flex;
    gap: 24px;
    cursor: pointer;
    padding: 24px;
    border-radius: 16px;
    overflow: hidden;
    opacity: 0.55;
    height: 80px;
    transition: opacity var(--transition-medium),
                height var(--transition-slow) cubic-bezier(0.16, 1, 0.3, 1),
                background-color var(--transition-slow) cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-showcase-item.active {
    opacity: 1;
    height: auto;
    min-height: 140px;
    background-color: #edfff2;
}

.feature-showcase-item:hover:not(.active) {
    opacity: 0.7;
}

/* Indicator line with smooth animation */
.feature-showcase-indicator {
    width: 4px;
    flex-shrink: 0;
    background-color: var(--border-light);
    border-radius: 2px;
    transition: background-color var(--transition-slow) cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow var(--transition-slow) cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-showcase-item.active .feature-showcase-indicator {
    background-color: var(--primary-green);
    box-shadow: 0 0 24px rgba(52, 199, 89, 0.4);
}

/* Content area - expands/collapses based on active state */
.feature-showcase-content {
    flex: 1;
    overflow: hidden;
}

.feature-showcase-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 12px;
    transition: color var(--transition-medium) cubic-bezier(0.16, 1, 0.3, 1),
                font-size var(--transition-medium) cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-showcase-item.active .feature-showcase-title {
    color: var(--primary-green);
    font-size: 20px;
}

.feature-showcase-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow) cubic-bezier(0.16, 1, 0.3, 1),
                opacity var(--transition-slow) cubic-bezier(0.16, 1, 0.3, 1),
                color var(--transition-slow) cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-showcase-item.active .feature-showcase-description {
    max-height: 200px;
    opacity: 1;
    color: var(--text-primary);
}



/* Right Column: Image Display with Carousel */
.feature-showcase-image-column {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 500px;
    min-width: 0;
    overflow: hidden;
}

.feature-showcase-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.feature-showcase-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    
    object-fit: contain;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px);
    will-change: opacity, transform, visibility;
    transition: opacity var(--transition-slow) cubic-bezier(0.16, 1, 0.3, 1),
                transform var(--transition-slow) cubic-bezier(0.16, 1, 0.3, 1),
                visibility var(--transition-slow) cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active image visible in same position */
.feature-showcase-image.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Exiting image fades out and moves down */
.feature-showcase-image.exiting {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-showcase-grid {
        gap: 60px;
    }
    
    .feature-showcase-heading {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .feature-showcase {
        padding: var(--section-padding-mobile) 0;
    }
    
    .feature-showcase-header {
        margin-bottom: 60px;
    }
    
    .feature-showcase-heading {
        font-size: 36px;
    }
    
    .feature-showcase-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        align-items: center;
    }
    
    .feature-showcase-item {
        padding: 20px;
        gap: 16px;
        height: 70px;
    }
    
    .feature-showcase-item.active {
        height: auto;
        min-height: 120px;
    }
    
    .feature-showcase-title {
        font-size: 17px;
    }
    
    .feature-showcase-item.active .feature-showcase-title {
        font-size: 18px;
    }
    
    .feature-showcase-image-column {
        height: 350px;
        width: 100%;
        max-width: 100%;
    }
    
    .feature-showcase-image-container {
        aspect-ratio: 1;
        border-radius: 20px;
    }
}

/* ============================================
   WORKFLOW SECTION
   ============================================ */
.workflow {
    padding: var(--section-padding) 0;
    background-color: var(--bg-white);
    background-image: 
        radial-gradient(circle, #E0E0E3 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.workflow-connector {
    position: absolute;
    top: 64px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg, var(--border-light) 0%, var(--primary-green) 50%, var(--border-light) 100%);
    z-index: 0;
    width: 0;
}

.workflow-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 16px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 28px;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.workflow-step:hover .step-number {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--bg-white);
    transform: scale(1.1);
    box-shadow: 0 8px 24px var(--shadow-green);
}

.step-thumbnail {
    margin-bottom: 24px;
}

.step-placeholder {
    min-height: 160px;
    border-radius: 16px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* New Workflow Steps Layout */
.workflow-steps-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 60px;
}

.workflow-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100px;
    z-index: 0;
}

.workflow-step-new {
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 12px rgba(52, 199, 89, 0.1);
}

.workflow-step-new:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 0 8px 24px var(--shadow-green);
}

.step-title-new {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-description-new {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ============================================
   ATTENTION MODEL SECTION - 7 LAYERS
   ============================================ */
.attention-model {
    padding: 30px 0 var(--section-padding);
    background-color: var(--bg-white);
    background-image: radial-gradient(circle, #E0E0E3 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0;
}

.credibility-section {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 36px 0 6px;
    max-width: 1200px;
    margin: 0 auto;
}

.credibility-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.credibility-meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    max-width: 760px;
}

.signal-badge {
    display: none;
}

.signal-chip {
    padding: 8px 12px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(47, 143, 91, 0.08) 0%, rgba(47, 143, 91, 0.04) 100%);
    border: 1px solid rgba(47, 143, 91, 0.12);
    color: var(--primary-green);
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
    white-space: normal;
}

.eyebrow {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.section-title {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
    max-width: 100%;
}

.section-copy {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    max-width: 100%;
}

.layer-grid-wrap {
    position: relative;
    padding-top: 24px;
}

.layer-grid-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(47, 143, 91, 0.14) 14%, rgba(47, 143, 91, 0.28) 50%, rgba(47, 143, 91, 0.14) 86%, transparent 100%);
}

.layer-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.layer-card {
    position: relative;
    min-height: 238px;
    background: var(--bg-white);
    border: 1px solid rgba(216, 230, 218, 0.9);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 
                0 8px 28px rgba(22, 44, 29, 0.06), 
                0 0 0 1px rgba(47, 143, 91, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.layer-card::before {
    content: "";
    position: absolute;
    inset: -20% auto auto -10%;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(47, 143, 91, 0.12) 0%, rgba(47, 143, 91, 0.05) 28%, transparent 72%);
    filter: blur(6px);
    pointer-events: none;
}

.layer-card:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 
                0 12px 36px rgba(22, 44, 29, 0.1), 
                0 0 0 1px rgba(47, 143, 91, 0.05);
}

.layer-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.layer-index {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(47, 143, 91, 0.08);
    color: var(--primary-green);
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(47, 143, 91, 0.14);
    white-space: nowrap;
    box-shadow: 0 0 16px rgba(47, 143, 91, 0.1);
}

.layer-status {
    font-size: 12px;
    line-height: 1;
    color: var(--text-secondary);
    white-space: nowrap;
}

.layer-icon {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(47, 143, 91, 0.1) 0%, rgba(47, 143, 91, 0.04) 100%);
    border: 1px solid rgba(47, 143, 91, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 0 24px rgba(47, 143, 91, 0.06);
    color: var(--primary-green);
}

.layer-title {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
    
}

.layer-copy {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    flex: 1;
}

.layer-pattern {
    min-height: 54px;
    border-radius: 6px;
    border: 1px solid rgba(216, 230, 218, 0.85);
    background-color: rgba(242, 247, 243, 0.9);
    overflow: hidden;
    position: relative;
}

/* Pattern variations for each layer */
.pattern-vision {
    background:
        radial-gradient(circle at 30% 52%, rgba(47, 143, 91, 0.34), transparent 18%),
        radial-gradient(circle at 64% 38%, rgba(47, 143, 91, 0.14), transparent 22%),
        linear-gradient(90deg, rgba(21, 33, 24, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(21, 33, 24, 0.05) 1px, transparent 1px);
    background-size:
        auto,
        auto,
        18px 18px,
        18px 18px;
}

.pattern-face {
    background:
        radial-gradient(circle at 50% 36%, rgba(47, 143, 91, 0.24), transparent 15%),
        radial-gradient(circle at 38% 38%, rgba(21, 33, 24, 0.18), transparent 6%),
        radial-gradient(circle at 62% 38%, rgba(21, 33, 24, 0.18), transparent 6%),
        linear-gradient(180deg, transparent 56%, rgba(21, 33, 24, 0.08) 56%, rgba(21, 33, 24, 0.08) 59%, transparent 59%);
}

.pattern-text {
    background:
        linear-gradient(180deg, transparent 16%, rgba(47, 143, 91, 0.18) 16%, rgba(47, 143, 91, 0.18) 29%, transparent 29%),
        linear-gradient(180deg, transparent 45%, rgba(21, 33, 24, 0.16) 45%, rgba(21, 33, 24, 0.16) 56%, transparent 56%),
        linear-gradient(180deg, transparent 70%, rgba(21, 33, 24, 0.12) 70%, rgba(21, 33, 24, 0.12) 80%, transparent 80%);
    background-size: 72% 100%, 86% 100%, 56% 100%;
    background-repeat: no-repeat;
    background-position: 10px 0, 10px 0, 10px 0;
}

.pattern-edge {
    background:
        linear-gradient(135deg, transparent 42%, rgba(47, 143, 91, 0.38) 42%, rgba(47, 143, 91, 0.38) 46%, transparent 46%),
        linear-gradient(45deg, transparent 55%, rgba(21, 33, 24, 0.16) 55%, rgba(21, 33, 24, 0.16) 59%, transparent 59%),
        linear-gradient(90deg, rgba(21, 33, 24, 0.04) 1px, transparent 1px);
    background-size: auto, auto, 16px 16px;
}

.pattern-centre {
    background:
        radial-gradient(circle at 50% 50%, rgba(47, 143, 91, 0.3), transparent 16%),
        radial-gradient(circle at 50% 50%, rgba(47, 143, 91, 0.1), transparent 34%),
        radial-gradient(circle at 50% 50%, rgba(21, 33, 24, 0.08), transparent 52%);
}

.pattern-ior {
    background:
        radial-gradient(circle at 22% 58%, rgba(47, 143, 91, 0.28), transparent 10%),
        radial-gradient(circle at 48% 34%, rgba(47, 143, 91, 0.24), transparent 10%),
        radial-gradient(circle at 76% 62%, rgba(47, 143, 91, 0.22), transparent 10%);
}

.pattern-ior::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 20%;
    top: 32%;
    bottom: 26%;
    border-top: 1px solid rgba(21, 33, 24, 0.18);
    border-right: 1px solid rgba(21, 33, 24, 0.18);
    transform: skewX(-12deg);
}

.pattern-ui {
    background:
        linear-gradient(180deg, rgba(21, 33, 24, 0.12) 0 10px, transparent 10px),
        linear-gradient(90deg, rgba(47, 143, 91, 0.16) 0 24%, transparent 24%),
        linear-gradient(90deg, transparent 0 30%, rgba(21, 33, 24, 0.1) 30% 58%, transparent 58%),
        linear-gradient(90deg, transparent 0 64%, rgba(21, 33, 24, 0.08) 64% 90%, transparent 90%);
    background-repeat: no-repeat;
    background-position: 0 0, 10px 22px, 10px 22px, 10px 22px;
    background-size: 100% 10px, calc(100% - 20px) 22px, calc(100% - 20px) 22px, calc(100% - 20px) 22px;
}

.layer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 4px;
}

.signal-meter {
    display: flex;
    gap: 4px;
    flex: 1;
}

.signal-meter span {
    height: 4px;
    flex: 1;
    border-radius: 999px;
    background: rgba(21, 33, 24, 0.08);
}

.signal-meter span.active {
    background: linear-gradient(90deg, rgba(47, 143, 91, 0.3), rgba(47, 143, 91, 0.88));
    box-shadow: 0 0 14px rgba(47, 143, 91, 0.18);
}

.layer-tag {
    font-size: 11px;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* Responsive updates for attention model section */
@media (max-width: 1024px) {
    .credibility-header {
        flex-direction: column;
    }
    
    .signal-badge {
        justify-content: flex-start;
    }
    
    .layer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    
    .section-copy {
        font-size: 15px;
    }
    
    .signal-chip {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .layer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    
    .layer-card {
        min-height: 220px;
        padding: 14px;
    }
    
    .layer-title {
        font-size: 14px;
    }
    
    .layer-copy {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .credibility-header {
        gap: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-copy {
        font-size: 14px;
    }
    
    .signal-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .signal-chip {
        width: 100%;
        text-align: center;
    }
    
    .layer-grid {
        grid-template-columns: 1fr;
    }
    
    .layer-grid-wrap::before {
        display: none;
    }
    
    .layer-card {
        min-height: auto;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: var(--section-padding) 0;
    background-color: #000000;
    background-image: none;
}

.faq-grid,
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    transition: all var(--transition-fast);
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    border-color: transparent;
    box-shadow: none;
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: #ffffff;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform var(--transition-fast);
    color: rgba(255, 255, 255, 0.6);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-fast);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* FAQ Section Header Overrides */
.faq .section-header {
    margin-bottom: 60px;
}

.faq .section-eyebrow {
    color: #34C759;
    background: rgba(52, 199, 89, 0.1);
}

.faq .section-title {
    color: #ffffff;
}

.faq .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   PRICING SECTION - SPLIT LAYOUT
   ============================================ */
.pricing {
    position: relative;
    overflow: hidden;
    padding: var(--section-padding) 0;
    background-color: #f7faf7;
    background-image: radial-gradient(circle, rgba(47, 143, 91, 0.14) 1px, transparent 1px);
    background-size: 28px 28px;
    background-position: center;
}

.pricing::before,
.pricing::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.pricing::before {
    width: 760px;
    height: 760px;
    left: -220px;
    top: -80px;
    background: radial-gradient(circle, rgba(47, 143, 91, 0.08) 0%, rgba(47, 143, 91, 0.03) 40%, rgba(47, 143, 91, 0) 72%);
}

.pricing::after {
    width: 540px;
    height: 540px;
    right: -120px;
    bottom: -140px;
    background: radial-gradient(circle, rgba(47, 143, 91, 0.12) 0%, rgba(47, 143, 91, 0.04) 42%, rgba(47, 143, 91, 0) 74%);
}

.pricing-split {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 32px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-left {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    min-width: 0;
    padding: 44px;
    border-radius: 32px;
    border: 1px solid rgba(216, 230, 218, 0.9);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.94) 100%);
    box-shadow: 0 22px 54px -38px rgba(21, 33, 24, 0.18);
    overflow: hidden;
}

.pricing-left::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -96px;
    top: -120px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(47, 143, 91, 0.12) 0%, rgba(47, 143, 91, 0.03) 48%, rgba(47, 143, 91, 0) 74%);
    pointer-events: none;
}

.pricing-kicker,
.pricing-card-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(47, 143, 91, 0.12) 0%, rgba(47, 143, 91, 0.06) 100%);
    border: 1px solid rgba(47, 143, 91, 0.12);
    color: var(--primary-green);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary-green);
    box-shadow: 0 0 16px rgba(47, 143, 91, 0.32);
}

.pricing-headline {
    position: relative;
    z-index: 1;
    max-width: 10ch;
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

.pricing-subtext {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.pricing-badges {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 11px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(216, 230, 218, 0.95);
    color: var(--text-primary);
    box-shadow: 0 16px 30px -26px rgba(21, 33, 24, 0.18);
}

.pricing-badge svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

.pricing-badge span {
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
}

.pricing-trust {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    max-width: 560px;
    background: linear-gradient(180deg, rgba(243, 245, 244, 0.96) 0%, rgba(237, 239, 238, 0.96) 100%);
    border: 1px solid rgba(216, 230, 218, 0.9);
    border-radius: 18px;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-trust svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #34C759;
}

.pricing-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.pricing-download-btn {
    width: min(100%, 520px);
    justify-content: center;
    margin: 0;
    border-radius: 999px;
    box-shadow: 0 24px 42px -24px rgba(47, 143, 91, 0.48), 0 0 0 8px rgba(47, 143, 91, 0.08);
}

.pricing-caption {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    text-align: center;
    width: min(100%, 520px);
}

.pricing-stats {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pricing-stat {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(216, 230, 218, 0.9);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
}

.pricing-mini-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.pricing-mini-card {
    min-width: 0;
    padding: 18px 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(236, 244, 238, 0.92) 100%);
    border: 1px solid rgba(216, 230, 218, 0.95);
    box-shadow: 0 18px 36px -30px rgba(21, 33, 24, 0.15);
}

.pricing-mini-card h3 {
    margin: 0 0 8px;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-primary);
}

.pricing-mini-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.pricing-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card-shell {
    position: relative;
    width: 100%;
    max-width: 430px;
    padding: 24px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(236, 244, 238, 0.96) 0%, rgba(225, 239, 229, 0.98) 100%);
    border: 1px solid rgba(47, 143, 91, 0.12);
    box-shadow: 0 30px 72px -42px rgba(21, 33, 24, 0.22);
    overflow: hidden;
}

.pricing-card-shell::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    pointer-events: none;
}

.pricing-card-shell::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -70px;
    top: -46px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(47, 143, 91, 0.18) 0%, rgba(47, 143, 91, 0.06) 42%, rgba(47, 143, 91, 0) 74%);
    pointer-events: none;
}

.pricing-card-premium {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, rgba(24, 24, 24, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 28px 60px -34px rgba(0, 0, 0, 0.45);
    transition: all var(--transition-medium);
    width: 100%;
    overflow: hidden;
}

.pricing-card-premium::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 28%);
    pointer-events: none;
}

.pricing-card-premium:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 32px 72px -34px rgba(0, 0, 0, 0.52);
    transform: translateY(-2px);
}

.pricing-card-title {
    margin: 18px 0 0;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
}

.pricing-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 18px 0 8px;
    flex-wrap: wrap;
}

.pricing-card-currency {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

.pricing-card-amount {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    line-height: 0.92;
    letter-spacing: -0.06em;
}

.pricing-card-term {
    font-size: 16px;
    color: #a2a2a2;
    font-weight: 500;
}

.pricing-card-description {
    max-width: 320px;
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin: 0;
}

.pricing-card-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 26px 0 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    list-style: none;
}

.pricing-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0;
    padding: 8px 0;
    font-size: 15px;
    line-height: 1.5;
    color: #cccccc;
}

.pricing-card-features svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #ffffff;
}

.pricing-license-btn {
    width: 100%;
    justify-content: center;
    border-radius: 999px;
}

.pricing-card-note {
    margin: 16px 0 0;
    font-size: 13px;
    color: #999999;
    text-align: center;
    line-height: 1.6;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    position: relative;
    padding: var(--section-padding) 0;
    background-color: #000000;
    background-image: none;
}

.final-cta-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 24px;
    z-index: 0;
    background-image: url('assets/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
}

.final-cta-blob {
    position: absolute;
    width: 150%;
    height: 150%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
}

.cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(52, 199, 89, 0.08) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    padding: 20px 20px;
}

.final-cta-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #ffffff;
    margin-bottom: 16px;
}

.final-cta-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 600px;
}

.final-cta-content .btn {
    margin-bottom: 0;
}

.final-cta-content .btn-primary {
    background-color: #34C759;
    color: white;
}

.final-cta-content .btn-primary:hover {
    background-color: #2AA84A;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(52, 199, 89, 0.1);
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    border: 1px solid rgba(52, 199, 89, 0.2);
}

.cta-badge svg {
    width: 16px;
    height: 16px;
}

.final-cta-badges {
    display: none;
}



/* ============================================
   FOOTER - CLEAN DESIGN
   ============================================ */
.footer {
    background-color: #000000;
    background-image: none;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-middle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-links-left,
.footer-links-right {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links-left a,
.footer-links-right a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer-links-left a:hover,
.footer-links-right a:hover {
    color: #34C759;
}

.footer-logo-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-logo-center img {
    max-height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 100px;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .showcase-title,
    .final-cta-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-grid {
        gap: 48px;
    }
    
    .feature-showcase-grid {
        gap: 60px;
    }
    
    .pricing-split {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pricing-left {
        padding: 36px;
    }

    .pricing-headline {
        max-width: none;
        font-size: 52px;
    }

    .pricing-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-card-shell {
        max-width: 100%;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
        --container-padding: 20px;
    }
    
    /* Mobile */
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .nav-container {
        padding: 10px 20px;
    }
    
    /* Hero */
    .hero {
        padding-top: 100px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 40px;
        line-height: 1.15;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-placeholder {
        min-height: 280px;
    }
    
    /* Section Headers */
    .section-title {
        font-size: 30px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card-tall {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    
    /* Showcase */
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .showcase-title {
        font-size: 30px;
    }
    
    .showcase-visuals {
        min-height: auto;
        padding: 50px 30px;
    }
    
    .showcase-stack-container {
        min-height: auto;
    }
    
    .showcase-card {
        border-radius: 0;
        width: 95%;
    }
    
    .workflow-step {
        text-align: left;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 16px;
        align-items: start;
        padding: 0;
    }
    
    .step-number {
        margin-bottom: 0;
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    .step-thumbnail {
        grid-column: 1 / -1;
        margin-bottom: 0;
        margin-top: 8px;
    }
    
    .step-title,
    .step-description {
        grid-column: 2;
    }
    
    /* New Workflow Steps */
    .workflow-steps-new {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 0;
    }
    
    .workflow-line {
        display: none;
    }
    
    .step-circle {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .step-title-new {
        font-size: 18px;
    }
    
    .step-description-new {
        font-size: 14px;
    }
    
    /* FAQ */
    .faq-grid,
    .faq-list {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 18px 0;
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 0;
        font-size: 14px;
    }
    
    /* Pricing */
    .pricing-split {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-headline {
        font-size: 40px;
        line-height: 1.02;
    }

    .pricing-left {
        padding: 28px 24px;
        border-radius: 26px;
        gap: 20px;
    }

    .pricing-subtext {
        font-size: 16px;
    }

    .pricing-badges {
        gap: 10px;
    }

    .pricing-badge {
        width: 100%;
        justify-content: flex-start;
    }

    .pricing-trust {
        align-items: flex-start;
        padding: 14px 16px;
    }

    .pricing-download-btn,
    .pricing-caption {
        width: 100%;
    }

    .pricing-stats {
        gap: 10px;
    }

    .pricing-stat {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .pricing-mini-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-shell {
        padding: 18px;
        border-radius: 24px;
    }

    .pricing-card-premium {
        padding: 24px 20px;
        border-radius: 24px;
    }

    .pricing-card-title {
        font-size: 24px;
    }

    .pricing-card-amount {
        font-size: 60px;
    }

    .pricing-card-term,
    .pricing-card-description,
    .pricing-card-features li {
        font-size: 14px;
    }
    
    /* Final CTA */
    .final-cta-card {
        min-height: 400px;
    }
    
    .final-cta-bg {
        border-radius: 16px;
    }
    
    .final-cta-content {
        padding: 80px 32px;
    }
    
    .final-cta-title {
        font-size: 36px;
    }
    
    .final-cta-subtitle {
        font-size: 16px;
    }
    
    /* Footer */
    .footer-middle {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-links-left,
    .footer-links-right {
        gap: 16px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}


@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .showcase-visuals {
        min-height: auto;
        padding: 40px 20px;
    }
    
    .showcase-stack-container {
        min-height: auto;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .trusted-logos {
        gap: 24px;
    }
    
    .logo-item {
        width: calc(50% - 12px);
    }
    
    .logo-placeholder {
        width: 100%;
    }
    
    .logo-caption {
        display: none;
    }
    
    /* Feature Showcase Mobile */
    .feature-showcase-grid {
        gap: 30px;
    }
    
    .feature-showcase-item {
        padding: 16px;
        gap: 12px;
        height: 60px;
    }
    
    .feature-showcase-item.active {
        min-height: 110px;
    }
    
    .feature-showcase-image-column {
        height: 280px;
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Final CTA Mobile */
    .final-cta {
        padding: 60px 0;
    }
    
    .final-cta-card {
        min-height: 350px;
    }
    
    .final-cta-bg {
        border-radius: 12px;
    }
    
    .final-cta-content {
        padding: 60px 24px;
    }
    
    .final-cta-title {
        font-size: 28px;
    }
    
    .final-cta-subtitle {
        font-size: 14px;
    }
    
    /* Footer Mobile */
    .footer-middle {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-links-left,
    .footer-links-right {
        flex-direction: row;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .footer-links-left a,
    .footer-links-right a {
        font-size: 13px;
    }
    
    /* FAQ Mobile */
    .faq-grid,
    .faq-list {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 16px 0;
        font-size: 14px;
    }
    
    .faq-answer p {
        font-size: 14px;
        padding: 0;
    }
}


/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    [data-animate] {
        opacity: 1;
    }
    
    .glow-circle,
    .floating-card {
        animation: none;
    }
}
/* ============================================
   DOWNLOAD MODAL
   ============================================ */
.download-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease, visibility 300ms ease;
    z-index: 1998;
}

.download-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.download-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: var(--bg-white);
    border-radius: 28px;
    padding: 48px 40px;
    max-width: 480px;
    width: 90vw;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1999;
    max-height: 90vh;
    overflow-y: auto;
}

.download-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-secondary);
    border: none;
    cursor: pointer;
    transition: all 200ms ease;
    z-index: 10;
}

.modal-close-btn:hover {
    background: rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
}

.modal-logo {
    height: 32px;
    width: auto;
    margin-bottom: 24px;
    display: block;
}

.modal-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.modal-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Form Styling */
.download-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1.5px solid var(--border-light);
    border-radius: 40px;
    font-family: inherit;
    transition: all 200ms ease;
    background: var(--bg-white);
    color: var(--text-primary);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:hover {
    border-color: var(--border-subtle);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(52, 199, 89, 0.1);
}

.form-input.error {
    border-color: #FF3B30;
    box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.1);
}

.form-error {
    font-size: 13px;
    color: #FF3B30;
    min-height: 18px;
    display: block;
}

.download-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.download-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Success Message */
.modal-success-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: var(--primary-green-light);
    border-radius: 12px;
    color: var(--primary-green);
    font-weight: 500;
    animation: slideUp 300ms ease;
}

.modal-success-message svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .download-modal {
        padding: 36px 24px;
        max-width: calc(100vw - 32px);
        border-radius: 20px;
    }
    
    .modal-title {
        font-size: 28px;
    }
    
    .modal-subtitle {
        font-size: 15px;
    }
    
    .form-input {
        padding: 12px 14px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .download-modal {
        padding: 32px 20px;
        border-radius: 16px;
    }
    
    .modal-logo {
        height: 28px;
        margin-bottom: 20px;
    }
    
    .modal-title {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .modal-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .modal-close-btn {
        width: 36px;
        height: 36px;
    }
}
