:root {
    --forest-deep: #1a2f23;
    --forest-mid: #2d4a3e;
    --sage: #738c6d;
    --sage-light: #a3b89d;
    --cream: #faf8f5;
    --cream-dark: #f0ebe3;
    --terracotta: #c85a3b;
    --terracotta-light: #e07a5f;
    --stone: #a69887;
    --stone-dark: #8b7d6b;
    --text-dark: #1a1a1a;
    --text-muted: #5a5a5a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
}

/* Grain texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1000;
}

.serif { font-family: 'DM Serif Display', serif; }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(26, 47, 35, 0.08);
}

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

.nav-logo img {
    height: 88px;
    transition: opacity 0.3s;
}

.nav-logo:hover img { opacity: 0.8; }

.nav-cta {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--forest-deep);
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 80px 80px;
    background: var(--cream);
    position: relative;
}

/* Topographic pattern */
.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50 Q25 30 50 50 T100 50' stroke='%23738c6d' stroke-width='0.5' fill='none' opacity='0.15'/%3E%3Cpath d='M0 70 Q25 50 50 70 T100 70' stroke='%23738c6d' stroke-width='0.5' fill='none' opacity='0.1'/%3E%3Cpath d='M0 30 Q25 10 50 30 T100 30' stroke='%23738c6d' stroke-width='0.5' fill='none' opacity='0.1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.5;
    pointer-events: none;
}

.hero-content > * { position: relative; z-index: 1; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--forest-deep);
    color: var(--cream);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 40px;
    width: fit-content;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* ===== SOCIAL PROOF BANNER ===== */
.social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(45, 74, 62, 0.08) 0%, rgba(115, 140, 109, 0.12) 100%);
    border: 1px solid rgba(115, 140, 109, 0.25);
    border-radius: 16px;
    padding: 18px 24px;
    margin-top: 40px;
    max-width: 520px;
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(200, 90, 59, 0.03) 50%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.social-proof-icons {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.social-proof-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(145deg, var(--sage) 0%, var(--forest-mid) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -8px;
    border: 2px solid var(--cream);
    box-shadow: 0 2px 8px rgba(26, 47, 35, 0.15);
    animation: icon-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.social-proof-icon:nth-child(1) { animation-delay: 0.1s; z-index: 5; }
.social-proof-icon:nth-child(2) { animation-delay: 0.2s; z-index: 4; }
.social-proof-icon:nth-child(3) { animation-delay: 0.3s; z-index: 3; }
.social-proof-icon:nth-child(4) { animation-delay: 0.4s; z-index: 2; background: linear-gradient(145deg, var(--terracotta) 0%, var(--terracotta-light) 100%); }

@keyframes icon-pop {
    0% { transform: scale(0) rotate(-10deg); opacity: 0; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.social-proof-icon svg {
    width: 18px;
    height: 18px;
    color: var(--cream);
}

.social-proof-count {
    width: 36px;
    height: 36px;
    background: var(--forest-deep);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -8px;
    border: 2px solid var(--cream);
    font-family: 'DM Serif Display', serif;
    font-size: 13px;
    color: var(--cream);
    box-shadow: 0 2px 8px rgba(26, 47, 35, 0.2);
    animation: icon-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s backwards;
    z-index: 1;
}

.social-proof-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.social-proof-text p {
    font-size: 15px;
    color: var(--forest-deep);
    line-height: 1.5;
    margin: 0;
}

.social-proof-text strong {
    color: var(--terracotta);
    font-weight: 700;
}

.social-proof-text .highlight {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
}

/* Variant for signup section */
.social-proof--compact {
    margin: 0 0 28px 0;
    max-width: none;
    background: linear-gradient(135deg, rgba(200, 90, 59, 0.06) 0%, rgba(200, 90, 59, 0.02) 100%);
    border-color: rgba(200, 90, 59, 0.2);
}

.social-proof--compact::before {
    background: linear-gradient(90deg, transparent 0%, rgba(200, 90, 59, 0.05) 50%, transparent 100%);
}

.hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    color: var(--forest-deep);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-title em {
    font-style: italic;
    color: var(--terracotta);
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 50px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--terracotta);
    color: white;
    box-shadow: 0 4px 20px rgba(200, 90, 59, 0.3);
}

.btn-primary:hover {
    background: var(--terracotta-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(200, 90, 59, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--forest-deep);
    border: 2px solid var(--forest-mid);
}

.btn-secondary:hover {
    background: var(--forest-deep);
    color: var(--cream);
    border-color: var(--forest-deep);
}

.btn-arrow {
    transition: transform 0.3s;
}

.btn:hover .btn-arrow { transform: translateX(4px); }

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 47, 35, 0.3) 0%, transparent 60%);
}

/* ===== SECTIONS COMMON ===== */
.section {
    padding: 120px 40px;
    position: relative;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--forest-deep);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BENEFITS ===== */
.benefits {
    background: var(--cream);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(115, 140, 109, 0.1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(26, 47, 35, 0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--terracotta) 0%, var(--sage) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover::before { transform: scaleY(1); }

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    color: var(--forest-deep);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* Center the last card if odd number of items */
.benefits-grid .benefit-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 500px;
    justify-self: center;
}

.benefits-highlight {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest-mid) 100%);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.benefits-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 90, 59, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.benefits-highlight p {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    color: var(--cream);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.benefits-highlight strong {
    color: var(--terracotta-light);
}

/* ===== POPULAR TRAILS ===== */
.popular-trails {
    background: var(--cream);
    padding: 80px 40px;
}

.trails-compact {
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest-mid) 100%);
    border-radius: 28px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.trails-compact::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(200, 90, 59, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.trails-compact::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(115, 140, 109, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.trails-compact-header {
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.trails-compact-header .section-label {
    color: var(--sage-light);
}

.trails-compact-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: var(--cream);
    line-height: 1.3;
    margin-top: 12px;
}

.trails-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.trail-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    color: var(--cream);
    transition: all 0.3s ease;
}

.trail-tag:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.trail-tag-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--trail-color);
    box-shadow: 0 0 8px var(--trail-color);
}

.trails-compact-text {
    font-size: 17px;
    color: var(--sage-light);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
}

.trails-compact-text strong {
    color: var(--terracotta-light);
}

.trails-compact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--terracotta);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(200, 90, 59, 0.3);
    position: relative;
    z-index: 1;
}

.trails-compact-button:hover {
    background: var(--terracotta-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 90, 59, 0.4);
}

.trails-compact-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.trails-compact-button:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .trails-compact {
        padding: 40px 24px;
    }

    .trail-tag {
        font-size: 14px;
        padding: 8px 14px;
    }
}

/* ===== ROI COMPARISON ===== */
.roi-comparison {
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.roi-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.roi-intro p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
}

.roi-calculator {
    background: white;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(26, 47, 35, 0.08);
    border: 1px solid rgba(115, 140, 109, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.roi-scenario {
    margin-bottom: 40px;
}

.roi-scenario-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--forest-deep);
    margin-bottom: 16px;
    text-align: center;
}

.roi-slider-container {
    position: relative;
    padding: 0 10px;
}

.roi-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--cream-dark) 0%, var(--sage-light) 100%);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    background: linear-gradient(145deg, var(--terracotta) 0%, var(--terracotta-light) 100%);
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 4px 12px rgba(200, 90, 59, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.roi-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(200, 90, 59, 0.45);
}

.roi-slider::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(0.95);
}

.roi-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    background: linear-gradient(145deg, var(--terracotta) 0%, var(--terracotta-light) 100%);
    border-radius: 50%;
    cursor: grab;
    border: none;
    box-shadow: 0 4px 12px rgba(200, 90, 59, 0.35);
}

.roi-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 12px;
    color: var(--stone-dark);
}

.roi-current-value {
    text-align: center;
    margin-top: 20px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(115, 140, 109, 0.08) 0%, rgba(115, 140, 109, 0.04) 100%);
    border-radius: 12px;
    display: inline-block;
    width: 100%;
}

.roi-current-value span {
    font-size: 14px;
    color: var(--text-muted);
}

.roi-current-value strong {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    color: var(--forest-deep);
    margin-left: 8px;
}

.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.roi-card {
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
}

.roi-card--commission {
    background: linear-gradient(135deg, #f8f5f2 0%, #f0ebe3 100%);
    border: 1px solid rgba(166, 152, 135, 0.3);
}

.roi-card--bakancsos {
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest-mid) 100%);
    border: 1px solid var(--forest-mid);
}

.roi-card--bakancsos::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(200, 90, 59, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.roi-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.roi-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.roi-card--commission .roi-card-icon {
    background: rgba(166, 152, 135, 0.2);
}

.roi-card--bakancsos .roi-card-icon {
    background: rgba(255, 255, 255, 0.15);
}

.roi-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roi-card--commission .roi-card-title {
    color: var(--stone-dark);
}

.roi-card--bakancsos .roi-card-title {
    color: var(--sage-light);
}

.roi-card-amount {
    font-family: 'DM Serif Display', serif;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 8px;
}

.roi-card--commission .roi-card-amount {
    color: var(--stone-dark);
}

.roi-card--bakancsos .roi-card-amount {
    color: var(--cream);
}

.roi-card-amount span {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.roi-card-detail {
    font-size: 14px;
    line-height: 1.6;
}

.roi-card--commission .roi-card-detail {
    color: var(--stone);
}

.roi-card--bakancsos .roi-card-detail {
    color: var(--sage-light);
}

.roi-savings {
    background: linear-gradient(135deg, rgba(200, 90, 59, 0.1) 0%, rgba(200, 90, 59, 0.05) 100%);
    border: 2px solid var(--terracotta);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.roi-savings::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(200, 90, 59, 0.1) 50%, transparent 100%);
    animation: roi-shimmer 3s ease-in-out infinite;
}

@keyframes roi-shimmer {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(50%); }
}

.roi-savings-icon {
    width: 52px;
    height: 52px;
    background: var(--terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.roi-savings-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

.roi-savings-text {
    position: relative;
    z-index: 1;
}

.roi-savings-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.roi-savings-amount {
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    color: var(--terracotta);
    line-height: 1;
}

.roi-savings-amount span {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
}

.roi-note {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--stone);
}

/* ===== PRICING ===== */
.pricing {
    background: var(--forest-deep);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q15 20 30 30 T60 30' stroke='%23ffffff' stroke-width='0.5' fill='none' opacity='0.05'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.pricing .section-label { color: var(--sage-light); }
.pricing .section-title { color: var(--cream); }
.pricing .section-subtitle { color: var(--stone); }

.pricing-card {
    background: var(--cream);
    border-radius: 32px;
    padding: 60px 50px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.pricing-ribbon {
    position: absolute;
    top: 30px;
    right: -40px;
    background: var(--terracotta);
    color: white;
    padding: 10px 60px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-price {
    font-family: 'DM Serif Display', serif;
    font-size: 80px;
    color: var(--forest-deep);
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-price span {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 400;
}

.pricing-period {
    font-size: 18px;
    color: var(--text-muted);
}

.pricing-after {
    background: var(--cream-dark);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-bottom: 40px;
}

.pricing-after p {
    color: var(--text-muted);
    font-size: 15px;
}

.pricing-after strong {
    color: var(--forest-deep);
    font-size: 20px;
    font-weight: 700;
}

.pricing-features {
    margin-bottom: 40px;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--cream-dark);
}

.pricing-feature:last-child { border-bottom: none; }

.pricing-feature-icon {
    width: 24px;
    height: 24px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-feature span {
    color: var(--text-dark);
    font-size: 16px;
}

.pricing-guarantee {
    background: linear-gradient(135deg, rgba(115, 140, 109, 0.1) 0%, rgba(115, 140, 109, 0.05) 100%);
    border: 1px solid var(--sage-light);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin-bottom: 30px;
}

.pricing-guarantee p {
    color: var(--forest-mid);
    font-size: 15px;
    line-height: 1.6;
}

.pricing-urgency {
    background: linear-gradient(135deg, rgba(200, 90, 59, 0.08) 0%, rgba(26, 47, 35, 0.06) 100%);
    border: 1px solid rgba(200, 90, 59, 0.25);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.pricing-urgency::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(200, 90, 59, 0.08) 50%, transparent 100%);
    animation: urgency-shimmer 4s ease-in-out infinite;
}

@keyframes urgency-shimmer {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(50%); }
}

.countdown-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.countdown-label svg {
    width: 20px;
    height: 20px;
    color: var(--terracotta);
    animation: clock-tick 1s ease-in-out infinite;
}

@keyframes clock-tick {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

.countdown-label span {
    font-size: 14px;
    font-weight: 600;
    color: var(--forest-deep);
    letter-spacing: 0.3px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.countdown-block {
    background: white;
    border-radius: 14px;
    padding: 16px 12px 12px;
    min-width: 72px;
    box-shadow:
        0 4px 12px rgba(26, 47, 35, 0.08),
        0 1px 3px rgba(26, 47, 35, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(115, 140, 109, 0.15);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}

.countdown-block:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 20px rgba(26, 47, 35, 0.12),
        0 2px 6px rgba(26, 47, 35, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.countdown-block::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 8px;
    right: 8px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(115, 140, 109, 0.15) 50%, transparent 100%);
    transform: translateY(-50%);
    pointer-events: none;
}

.countdown-number {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    line-height: 1;
    color: var(--forest-deep);
    display: block;
    margin-bottom: 6px;
    position: relative;
}

.countdown-number.flip {
    animation: number-flip 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes number-flip {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); color: var(--terracotta); }
    100% { transform: scale(1); }
}

.countdown-unit {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sage);
}

.countdown-separator {
    display: flex;
    align-items: center;
    padding-bottom: 18px;
}

.countdown-separator::before,
.countdown-separator::after {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--terracotta);
    border-radius: 50%;
    opacity: 0.6;
}

.countdown-separator::before {
    margin-bottom: 12px;
}

.countdown-separator::after {
    margin-top: 12px;
}

.countdown-separator {
    flex-direction: column;
    gap: 0;
}

.countdown-footer {
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

.countdown-footer p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.countdown-footer strong {
    color: var(--terracotta);
    font-weight: 700;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: var(--cream);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.step {
    text-align: center;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--sage) 0%, transparent 100%);
}

.step:last-child::after { display: none; }

.step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest-mid) 100%);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transform: rotate(-5deg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover .step-number { transform: rotate(0deg) scale(1.05); }

.step-number span {
    font-family: 'DM Serif Display', serif;
    font-size: 42px;
    color: var(--cream);
}

.step h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--forest-deep);
    margin-bottom: 12px;
}

.step p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

.how-it-works-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(26, 47, 35, 0.15);
}

.how-it-works-image img {
    width: 100%;
    display: block;
}

/* ===== LIVE DEMO CTA ===== */
.live-demo-section {
    padding: 60px 40px 80px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.live-demo-section .live-demo-cta {
    margin-top: 0;
}

@media (max-width: 768px) {
    .live-demo-section {
        padding: 40px 20px 60px;
    }
}

.live-demo-cta {
    margin-top: 50px;
}

.live-demo-cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 28px;
    background: linear-gradient(135deg, rgba(45, 74, 62, 0.03) 0%, rgba(115, 140, 109, 0.08) 100%);
    border: 1px solid rgba(115, 140, 109, 0.2);
    border-radius: 20px;
    padding: 32px 40px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.live-demo-cta-inner:hover {
    border-color: var(--sage);
    background: linear-gradient(135deg, rgba(45, 74, 62, 0.06) 0%, rgba(115, 140, 109, 0.12) 100%);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(26, 47, 35, 0.1);
}

.live-demo-pulse {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    animation: live-pulse 2s infinite;
}

@keyframes live-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.live-demo-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(145deg, var(--forest-deep) 0%, var(--forest-mid) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(26, 47, 35, 0.2);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.live-demo-cta-inner:hover .live-demo-icon {
    transform: scale(1.08) rotate(-3deg);
}

.live-demo-icon svg {
    width: 32px;
    height: 32px;
    color: var(--cream);
}

.live-demo-content {
    flex: 1;
}

.live-demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.live-demo-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
}

.live-demo-title {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--forest-deep);
    margin-bottom: 6px;
    line-height: 1.3;
}

.live-demo-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.live-demo-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--terracotta);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 16px 28px;
    border-radius: 14px;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(200, 90, 59, 0.25);
}

.live-demo-button:hover {
    background: var(--terracotta-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 90, 59, 0.35);
}

.live-demo-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.live-demo-button:hover .live-demo-arrow {
    transform: translate(3px, -3px);
}

@media (max-width: 768px) {
    .live-demo-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
        gap: 20px;
    }

    .live-demo-pulse {
        top: 16px;
        right: 16px;
    }

    .live-demo-icon {
        width: 64px;
        height: 64px;
    }

    .live-demo-icon svg {
        width: 28px;
        height: 28px;
    }

    .live-demo-title {
        font-size: 20px;
    }

    .live-demo-button {
        width: 100%;
        justify-content: center;
    }
}

/* ===== ABOUT ===== */
.about {
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 40px;
}

.about-content h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    color: var(--forest-deep);
    margin-bottom: 24px;
}

.about-content p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.9;
}

/* ===== FAQ ===== */
.faq {
    background: var(--cream);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid rgba(115, 140, 109, 0.1);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--sage-light);
}

.faq-question {
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover { background: var(--cream); }

.faq-question span:first-child {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    color: var(--forest-deep);
}

.faq-icon {
    width: 36px;
    height: 36px;
    background: var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-mid);
    font-size: 20px;
    transition: all 0.3s;
}

.faq-item.active .faq-icon {
    background: var(--terracotta);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer p {
    padding: 0 32px 28px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== WHO WE ARE ===== */
.who-we-are {
    background: var(--cream-dark);
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.who-we-are-text {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(115, 140, 109, 0.1);
}

.who-we-are-text p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.who-we-are-text p:last-child { margin-bottom: 0; }

.who-we-are-text strong {
    color: var(--forest-deep);
}

.who-we-are-text a {
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.who-we-are-text a.link-cyan { color: #0891b2; }
.who-we-are-text a.link-green { color: var(--sage); }
.who-we-are-text a:hover { text-decoration: underline; }

.who-we-are-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(26, 47, 35, 0.12);
}

.who-we-are-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* ===== SIGNUP FORM ===== */
.signup {
    background: linear-gradient(180deg, var(--forest-deep) 0%, #152a1f 100%);
    position: relative;
    overflow: hidden;
}

.signup::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 90, 59, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.signup-container {
    max-width: 520px;
    margin: 0 auto;
    background: var(--cream);
    border-radius: 32px;
    padding: 60px 50px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.signup-header {
    text-align: center;
    margin-bottom: 40px;
}

.signup-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    color: var(--forest-deep);
    margin-bottom: 8px;
}

.signup-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--forest-deep);
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--cream-dark);
    border-radius: 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    background: white;
    transition: all 0.3s;
}

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

.form-input:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 4px rgba(115, 140, 109, 0.1);
}

.error-message {
    color: var(--terracotta);
    font-size: 13px;
    margin-top: 8px;
}

.terms-group {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 30px;
}

.terms-checkbox {
    width: 22px;
    height: 22px;
    accent-color: var(--sage);
    margin-top: 2px;
    flex-shrink: 0;
}

.terms-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.terms-text a {
    color: var(--sage);
    text-decoration: none;
    font-weight: 500;
}

.terms-text a:hover { text-decoration: underline; }

.info-message {
    background: linear-gradient(135deg, rgba(115, 140, 109, 0.1) 0%, rgba(115, 140, 109, 0.05) 100%);
    border: 1px solid var(--sage-light);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 24px;
    text-align: center;
}

.info-message p {
    color: var(--forest-mid);
    font-size: 14px;
    line-height: 1.6;
}

.btn-submit {
    width: 100%;
    padding: 20px;
    font-size: 16px;
    letter-spacing: 0.5px;
    justify-content: center;
}

.footer-links {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--cream-dark);
}

.footer-links a {
    color: var(--sage);
    text-decoration: none;
    font-weight: 500;
    margin: 0 16px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--terracotta);
}

/* ===== FOOTER ===== */
.footer {
    background: #0f1f17;
    color: var(--stone);
    padding: 50px 40px;
    text-align: center;
}

.footer p {
    font-size: 14px;
}

.footer a {
    color: var(--stone);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover { color: var(--cream); }

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

    .hero-content {
        padding: 140px 40px 80px;
    }

    .hero-image {
        height: 400px;
    }

    .benefits-grid,
    .who-we-are-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .step::after { display: none; }
}

@media (max-width: 768px) {
    .nav-inner { padding: 0 20px; }

    .nav-cta {
        padding: 10px 20px;
        font-size: 12px;
    }

    .hero-content {
        padding: 120px 20px 60px;
    }

    .hero-title { font-size: 2.5rem; }

    .hero-buttons { flex-direction: column; }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section { padding: 80px 20px; }

    .section-title { font-size: 2rem; }

    .benefit-card,
    .who-we-are-text { padding: 30px; }

    .pricing-card {
        padding: 40px 30px;
        border-radius: 24px;
    }

    .pricing-price { font-size: 60px; }

    .signup-container {
        padding: 40px 24px;
        margin: 0 15px;
        border-radius: 24px;
    }

    .faq-question { padding: 20px 24px; }

    .faq-answer p { padding: 0 24px 20px; }

    /* Social proof mobile */
    .social-proof {
        flex-direction: column;
        text-align: center;
        gap: 14px;
        padding: 16px 20px;
        margin-top: 30px;
    }

    .social-proof-icons {
        justify-content: center;
    }

    .social-proof-icon {
        width: 32px;
        height: 32px;
        margin-right: -6px;
    }

    .social-proof-icon svg {
        width: 15px;
        height: 15px;
    }

    .social-proof-count {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    .social-proof-text p {
        font-size: 14px;
    }

    /* Countdown mobile */
    .pricing-urgency {
        padding: 20px 16px;
    }

    .countdown-timer {
        gap: 6px;
    }

    .countdown-block {
        min-width: 60px;
        padding: 12px 8px 10px;
        border-radius: 12px;
    }

    .countdown-number {
        font-size: 26px;
    }

    .countdown-unit {
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    .countdown-separator {
        display: none;
    }

    .countdown-label span {
        font-size: 12px;
    }

    .countdown-footer p {
        font-size: 12px;
    }

    /* ROI mobile */
    .roi-calculator {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .roi-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .roi-card {
        padding: 24px 20px;
    }

    .roi-card-amount {
        font-size: 32px;
    }

    .roi-savings {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .roi-savings-amount {
        font-size: 28px;
    }

    .roi-current-value strong {
        font-size: 20px;
        display: block;
        margin-top: 4px;
        margin-left: 0;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    .countdown-block {
        min-width: 52px;
        padding: 10px 6px 8px;
    }

    .countdown-number {
        font-size: 22px;
    }

    .countdown-unit {
        font-size: 8px;
    }
}
