:root {
    --green-dark: #1B5E20;
    --green-primary: #2E7D32;
    --green-light: #4CAF50;
    --green-pale: #81C784;
    --green-glow: #A5D6A7;
    --white: #FFFFFF;
    --off-white: #F8FBF8;
    --text-dark: #1A1A1A;
    --text-muted: #555;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.leaf {
    position: absolute;
    font-size: 2rem;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.leaf.visible {
    opacity: 0.7;
}

.leaf-1 { top: 10%; left: 5%; transform: rotate(-20deg); }
.leaf-2 { top: 20%; right: 8%; transform: rotate(15deg); font-size: 2.5rem; }
.leaf-3 { top: 35%; left: 3%; transform: rotate(-35deg); font-size: 1.8rem; }
.leaf-4 { top: 50%; right: 5%; transform: rotate(25deg); }
.leaf-5 { top: 65%; left: 7%; transform: rotate(-10deg); font-size: 2.2rem; }
.leaf-6 { top: 80%; right: 10%; transform: rotate(30deg); font-size: 1.5rem; }
.leaf-7 { top: 15%; left: 15%; transform: rotate(45deg); font-size: 1.6rem; }
.leaf-8 { top: 45%; right: 12%; transform: rotate(-25deg); font-size: 1.9rem; }

/* Glow Orbs */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.glow-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--green-light);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.glow-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--green-pale);
    bottom: 20%;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.glow-orb-3 {
    width: 250px;
    height: 250px;
    background: var(--green-glow);
    top: 50%;
    right: 10%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green-dark);
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: white !important;
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.5);
    color: white !important;
}

.btn-secondary {
    background: white;
    color: var(--green-dark);
    border: 2px solid var(--green-primary);
}

.btn-secondary:hover {
    background: var(--green-primary);
    color: white;
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    z-index: -2;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.25;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease, badgePulse 2s ease-in-out infinite 1s;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(46,125,50,0.4);
}

.hero-badge::before {
    content: "🌙";
}

.hero-badge::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255,255,255,0.3) 50%,
        transparent 60%
    );
    animation: shimmer 3s infinite;
}

.hero-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(46,125,50,0.5);
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(46,125,50,0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 25px rgba(46,125,50,0.5);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero h1 .highlight::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--green-pale), var(--green-light));
    border-radius: 4px;
    opacity: 0.3;
    z-index: -1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green-primary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* Demo Section */
.demo-section {
    padding: 6rem 2rem;
    background: var(--white);
    position: relative;
}

.demo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(46,125,50,0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    text-align: center;
}

/* Before-After Slider v2 - Multi-modes */
.ba-slider-container {
    max-width: 1400px;
    width: 100%;
    margin: 3rem auto 0;
    padding: 0 1rem;
}

.ba-mode-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.ba-mode-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(46, 125, 50, 0.05);
    border: 2px solid rgba(46, 125, 50, 0.2);
    border-radius: 100px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ba-mode-btn:hover {
    background: rgba(46, 125, 50, 0.1);
    border-color: var(--green-primary);
}

.ba-mode-btn.active {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.ba-mode-btn[data-mode="avant-nuit"].active {
    background: linear-gradient(135deg, #5E35B1, #7E57C2);
    box-shadow: 0 4px 15px rgba(94, 53, 177, 0.3);
}

.ba-mode-btn[data-mode="jour-nuit"].active {
    background: linear-gradient(135deg, #1565C0, #42A5F5);
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
}

.ba-slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-image-left {
    z-index: 1;
    clip-path: inset(0 50% 0 0);
}

.ba-image-right {
    z-index: 0;
}

.ba-label {
    position: absolute;
    top: 20px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 100px;
    z-index: 10;
    pointer-events: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ba-label-left {
    left: 20px;
    color: #555;
}

.ba-label-right {
    right: 20px;
}

.ba-label[data-type="avant"] {
    background: rgba(255, 255, 255, 0.95);
    color: #555;
}

.ba-label[data-type="jour"] {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: white;
}

.ba-label[data-type="nuit"] {
    background: linear-gradient(135deg, #5E35B1, #7E57C2);
    color: white;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: white;
    transform: translateX(-50%);
    z-index: 20;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.ba-handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: ew-resize;
}

.ba-handle-button::before,
.ba-handle-button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.ba-handle-button::before {
    border-width: 8px 10px 8px 0;
    border-color: transparent var(--green-primary) transparent transparent;
    left: 10px;
}

.ba-handle-button::after {
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent var(--green-primary);
    right: 10px;
}

.ba-slider-wrapper[data-mode="avant-nuit"] .ba-handle-button::before {
    border-color: transparent #5E35B1 transparent transparent;
}
.ba-slider-wrapper[data-mode="avant-nuit"] .ba-handle-button::after {
    border-color: transparent transparent transparent #5E35B1;
}

.ba-slider-wrapper[data-mode="jour-nuit"] .ba-handle-button::before {
    border-color: transparent #1565C0 transparent transparent;
}
.ba-slider-wrapper[data-mode="jour-nuit"] .ba-handle-button::after {
    border-color: transparent transparent transparent #1565C0;
}

.ba-handle-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.ba-slider-wrapper:not(.ba-dragging) .ba-handle-button {
    animation: ba-pulse 2s ease-in-out infinite;
}

@keyframes ba-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 0 8px rgba(255, 255, 255, 0.2); }
}

.ba-slider-wrapper.ba-dragging {
    cursor: grabbing;
}

.ba-slider-wrapper.ba-dragging .ba-handle-button {
    transform: translate(-50%, -50%) scale(1.15);
    animation: none;
}

.ba-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.ba-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: 100px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ba-btn-shuffle {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: white;
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.3);
}

.ba-btn-shuffle:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46, 125, 50, 0.4);
}

.ba-btn-shuffle:active {
    transform: translateY(-1px);
}

.ba-btn-shuffle svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s ease;
}

.ba-btn-shuffle:hover svg {
    transform: rotate(180deg);
}

.ba-slider-wrapper.ba-changing .ba-image img {
    animation: ba-fade 0.4s ease;
}

@keyframes ba-fade {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.02); }
    100% { opacity: 1; transform: scale(1); }
}

.ba-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 30;
    display: none;
}

.ba-slider-wrapper.ba-loading .ba-loader {
    display: block;
}

.ba-loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--green-light);
    border-radius: 50%;
    animation: ba-spin 1s linear infinite;
}

@keyframes ba-spin {
    to { transform: rotate(360deg); }
}

.ba-counter {
    text-align: center;
    margin-top: 1rem;
    color: var(--green-primary);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .ba-slider-wrapper {
        aspect-ratio: 3/2;
        border-radius: 16px;
    }
    
    .ba-label {
        padding: 8px 14px;
        font-size: 0.8rem;
        top: 12px;
    }
    
    .ba-label-before { left: 12px; }
    .ba-label-after { right: 12px; }
    
    .ba-handle-button {
        width: 48px;
        height: 48px;
    }
    
    .ba-handle-button svg {
        width: 22px;
        height: 22px;
    }
    
    .ba-btn-shuffle {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .ba-slider-wrapper {
        aspect-ratio: 1/1;
    }
}

/* Features Section */
.features-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    position: relative;
}

.features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-primary), var(--green-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(46,125,50,0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(46,125,50,0.1), rgba(76,175,80,0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Time Saving Section */
.time-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
    position: relative;
    overflow: hidden;
}

.time-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.time-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.time-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.time-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.time-comparison {
    display: flex;
    gap: 2rem;
}

.time-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    border: 1px solid rgba(255,255,255,0.2);
}

.time-box-value {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.time-box-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.time-box.highlight {
    background: white;
    border: none;
}

.time-box.highlight .time-box-value {
    color: var(--green-primary);
}

.time-box.highlight .time-box-label {
    color: var(--text-muted);
}

.time-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.time-bar {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.time-bar-icon {
    font-size: 1.5rem;
}

.time-bar-content {
    flex: 1;
}

.time-bar-label {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.time-bar-progress {
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    overflow: hidden;
}

.time-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green-glow), white);
    border-radius: 4px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.time-bar-fill.animated {
    width: var(--target-width);
}

/* Pricing Section */
.pricing-section {
    padding: 8rem 2rem;
    background: var(--white);
    position: relative;
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.pricing-license {
    max-width: 900px;
    margin: 0 auto 4rem;
    background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
    border-radius: 32px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(46,125,50,0.3);
}

.pricing-license::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.pricing-license-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-license h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.pricing-license-price {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.pricing-license-price span {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.8;
}

.pricing-license-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pricing-license-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.pricing-license-feature::before {
    content: "✓";
    width: 22px;
    height: 22px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.pricing-plans {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.pricing-card.popular {
    border-color: var(--green-primary);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.pricing-card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.pricing-card-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--green-primary);
}

.pricing-card-period {
    color: var(--text-muted);
    font-size: 1rem;
}

.pricing-card-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-dark);
}

.pricing-card-features li:last-child {
    border-bottom: none;
}

.pricing-card-features li::before {
    content: "✓";
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(46,125,50,0.1), rgba(76,175,80,0.1));
    color: var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 2rem;
    background: var(--off-white);
}

.testimonials-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.testimonials-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.testimonial-stars {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::before {
    top: -200px;
    left: -100px;
}

.cta-section::after {
    bottom: -200px;
    right: -100px;
}

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

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--green-dark);
}

.btn-white:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--green-dark);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    padding: 0.4rem 0;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Growing Plants Animation */
.plant-grow {
    position: absolute;
    bottom: 0;
    font-size: 3rem;
    transform: scale(0);
    transform-origin: bottom center;
    transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.plant-grow.visible {
    transform: scale(1);
}

/* Responsive */
@media (max-width: 1024px) {
    .demo-grid {
        grid-template-columns: 1fr;
    }

    .time-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pricing-plans {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat-value {
        font-size: 2rem;
    }

    .time-comparison {
        flex-direction: column;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .pricing-license-features {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
}

/* Parallax Section */
.parallax-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    width: 100%;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: calc(100% + 200px);
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(46, 125, 50, 0.15) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
}

@media (max-width: 768px) {
    .parallax-section {
        height: 50vh;
        min-height: 300px;
    }
}
