/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B4513;
    --primary-dark: #5D2E0C;
    --primary-light: #C17D4F;
    --accent: #D4A853;
    --accent-glow: #F4C96B;
    --dark: #1A1209;
    --dark-alt: #2A1F14;
    --cream: #FDF8F0;
    --cream-dark: #F5EDE0;
    --gray-100: #F8F6F3;
    --gray-200: #E8E4DE;
    --gray-300: #C8C2BA;
    --gray-600: #6B6560;
    --gray-800: #3D3833;
    --success: #4A7C59;
    --white: #FFFFFF;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(26, 18, 9, 0.06);
    --shadow-md: 0 8px 32px rgba(26, 18, 9, 0.1);
    --shadow-lg: 0 16px 64px rgba(26, 18, 9, 0.15);
    --shadow-glow: 0 0 40px rgba(212, 168, 83, 0.3);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-600);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary-light), var(--accent));
    z-index: 10000;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--accent-glow);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(253, 248, 240, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    font-weight: 700;
    font-size: 1.3rem;
    z-index: 1001;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--gray-800);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-smooth);
}

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

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(139, 69, 19, 0.4);
    color: var(--white);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark);
    border: 1px solid rgba(139, 69, 19, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--dark);
}

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

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

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--dark) 0%, var(--dark-alt) 50%, #3D2814 100%);
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cabinet-float {
    position: absolute;
    border-radius: var(--radius-md);
    opacity: 0.15;
    animation: floatCabinet 20s ease-in-out infinite;
}

.cabinet-float-1 {
    width: 120px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    transform: rotate(-5deg);
}

.cabinet-float-2 {
    width: 90px;
    height: 140px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    top: 60%;
    left: 5%;
    animation-delay: -4s;
    transform: rotate(8deg);
}

.cabinet-float-3 {
    width: 150px;
    height: 220px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    top: 20%;
    right: 10%;
    animation-delay: -8s;
    transform: rotate(3deg);
}

.cabinet-float-4 {
    width: 80px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-glow), var(--accent));
    top: 65%;
    right: 15%;
    animation-delay: -12s;
    transform: rotate(-7deg);
}

.cabinet-float-5 {
    width: 100px;
    height: 160px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    top: 40%;
    left: 50%;
    animation-delay: -16s;
    transform: rotate(12deg);
}

@keyframes floatCabinet {
    0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
    25% { transform: translateY(-30px) rotate(calc(var(--rot, 0deg) + 2deg)); }
    50% { transform: translateY(-15px) rotate(calc(var(--rot, 0deg) - 1deg)); }
    75% { transform: translateY(-40px) rotate(calc(var(--rot, 0deg) + 1deg)); }
}

.light-trail {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
    animation: lightTrail 6s linear infinite;
    opacity: 0.6;
}

.light-trail-1 {
    width: 200px;
    top: 30%;
    left: -200px;
    animation-delay: 0s;
}

.light-trail-2 {
    width: 300px;
    top: 55%;
    left: -300px;
    animation-delay: -2s;
}

.light-trail-3 {
    width: 150px;
    top: 75%;
    left: -150px;
    animation-delay: -4s;
}

@keyframes lightTrail {
    0% { left: -300px; }
    100% { left: calc(100% + 300px); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(26, 18, 9, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 168, 83, 0.15);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    color: var(--cream);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title-line {
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-glow), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(253, 248, 240, 0.8);
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(253, 248, 240, 0.5);
    font-size: 0.8rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(253, 248, 240, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* ===== INTRODUCTION SECTION ===== */
.introduction {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.intro-bg-layers {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.grain-layer {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.wave-layer {
    position: absolute;
    width: 200%;
    height: 100%;
    opacity: 0.05;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 40px,
        var(--primary-light) 40px,
        var(--primary-light) 41px
    );
    animation: waveMove 30s linear infinite;
}

.wave-1 { top: 0; }
.wave-2 { bottom: 0; animation-direction: reverse; animation-duration: 45s; }

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

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-content h2 {
    margin-bottom: 24px;
}

.intro-lead {
    font-size: 1.15rem;
    color: var(--gray-800);
    margin-bottom: 20px;
    font-weight: 400;
}

.intro-content p {
    margin-bottom: 16px;
}

.intro-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.card-3d {
    position: relative;
    width: 100%;
    height: 400px;
    perspective: 1000px;
}

.card-front, .card-back {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    backface-visibility: hidden;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-front {
    background: linear-gradient(145deg, var(--primary-dark), var(--primary));
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.card-front::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: var(--radius-md);
}

.card-back {
    background: linear-gradient(145deg, var(--accent), var(--primary-light));
    transform: rotateY(180deg);
    box-shadow: var(--shadow-lg);
}

.visual-card:hover .card-front {
    transform: rotateY(180deg);
}

.visual-card:hover .card-back {
    transform: rotateY(0deg);
}

.card-stats {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.stat {
    flex: 1;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: inline;
}

.stat-percent, .stat-unit {
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(212, 168, 83, 0.1));
    border: 1px solid rgba(139, 69, 19, 0.15);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-desc {
    margin-top: 16px;
    font-size: 1.1rem;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
    overflow: hidden;
}

.morph-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.morph-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: morphFloat 15s ease-in-out infinite;
}

.morph-1 {
    width: 400px;
    height: 400px;
    background: rgba(139, 69, 19, 0.08);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.morph-2 {
    width: 300px;
    height: 300px;
    background: rgba(212, 168, 83, 0.08);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.morph-3 {
    width: 200px;
    height: 200px;
    background: rgba(193, 125, 79, 0.06);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes morphFloat {
    0%, 100% { transform: translate(0, 0) scale(1); border-radius: 50%; }
    25% { transform: translate(20px, -20px) scale(1.1); border-radius: 40% 60% 60% 40%; }
    50% { transform: translate(-10px, 20px) scale(0.95); border-radius: 60% 40% 40% 60%; }
    75% { transform: translate(10px, 10px) scale(1.05); border-radius: 45% 55% 50% 50%; }
}

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

.problem-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(139, 69, 19, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.problem-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(212, 168, 83, 0.1));
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--primary);
}

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

.problem-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.problem-cta {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05), rgba(212, 168, 83, 0.05));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.problem-cta p {
    font-size: 1.1rem;
    color: var(--gray-800);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 120px 0;
    position: relative;
    background: var(--cream);
    overflow: hidden;
}

.process-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.process-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(139, 69, 19, 0.1), transparent);
}

.line-1 { left: 20%; }
.line-2 { left: 50%; }
.line-3 { left: 80%; }

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    margin-bottom: 48px;
    align-items: start;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -48px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), rgba(212, 168, 83, 0.1));
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.step-content {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(139, 69, 19, 0.05);
    transition: var(--transition-smooth);
}

.process-step:hover .step-content {
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 168, 83, 0.2);
}

.step-content h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.step-content p {
    margin-bottom: 16px;
}

.step-detail {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.detail-tag {
    padding: 4px 12px;
    background: rgba(139, 69, 19, 0.06);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
    overflow: hidden;
}

.benefits-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

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

.benefit-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(139, 69, 19, 0.05);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(212, 168, 83, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.08), rgba(212, 168, 83, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon-wrapper {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.15), rgba(212, 168, 83, 0.15));
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon {
    color: var(--primary);
}

.benefit-icon svg {
    width: 36px;
    height: 36px;
}

.benefit-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

/* Float animation for benefit cards */
.float-anim {
    animation: gentleFloat 6s ease-in-out infinite;
}

.delay-1 { animation-delay: 0s; }
.delay-2 { animation-delay: -1s; }
.delay-3 { animation-delay: -2s; }
.delay-4 { animation-delay: -3s; }
.delay-5 { animation-delay: -4s; }
.delay-6 { animation-delay: -5s; }

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.benefit-card:hover {
    animation-play-state: paused;
}

/* ===== EXPERIENCE SECTION ===== */
.experience-section {
    padding: 120px 0;
    background: var(--cream);
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.exp-narrative p {
    margin-bottom: 20px;
}

.exp-timeline {
    position: relative;
    padding-left: 32px;
}

.exp-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--primary-light), var(--primary));
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
    padding-left: 24px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -29px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border: 3px solid var(--cream);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(212, 168, 83, 0.2);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.3);
    box-shadow: 0 0 0 6px rgba(212, 168, 83, 0.3);
}

.timeline-content h4 {
    margin-bottom: 8px;
    color: var(--primary);
}

.timeline-content p {
    font-size: 0.95rem;
    margin: 0;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

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

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(139, 69, 19, 0.05);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    gap: 16px;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--accent);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 1rem;
    line-height: 1.8;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(160deg, var(--dark) 0%, var(--dark-alt) 50%, #3D2814 100%);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: glowPulse 8s ease-in-out infinite;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(212, 168, 83, 0.15);
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(139, 69, 19, 0.2);
    bottom: -100px;
    right: -100px;
    animation-delay: -3s;
}

.glow-3 {
    width: 300px;
    height: 300px;
    background: rgba(193, 125, 79, 0.12);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
}

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

.cta-energy {
    position: absolute;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
    animation: energyFlow 4s linear infinite;
}

.energy-1 { top: 30%; left: -100%; animation-delay: 0s; }
.energy-2 { top: 70%; left: -100%; animation-delay: -2s; }

@keyframes energyFlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

.cta-content h2 {
    color: var(--cream);
    margin-bottom: 20px;
}

.cta-content > p {
    color: rgba(253, 248, 240, 0.8);
    font-size: 1.15rem;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(253, 248, 240, 0.7);
    font-size: 0.9rem;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 0 32px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(139, 69, 19, 0.1), transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cream);
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.footer-desc {
    color: rgba(253, 248, 240, 0.6);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(253, 248, 240, 0.05);
    border: 1px solid rgba(253, 248, 240, 0.1);
    border-radius: 50%;
    color: var(--cream);
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-links h4, .footer-contact h4, .footer-hours h4 {
    color: var(--cream);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
}

.footer-links a, .footer-contact a {
    color: rgba(253, 248, 240, 0.6);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.footer-hours p {
    color: rgba(253, 248, 240, 0.6);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.footer-gmb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-gmb:hover {
    color: var(--accent-glow);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(253, 248, 240, 0.08);
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: rgba(253, 248, 240, 0.4);
    font-size: 0.85rem;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
}

/* ===== ANIMATIONS ===== */
.reveal-up, .reveal-left, .reveal-right, .reveal-text, .reveal-visual {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-text { transform: translateY(20px); }
.reveal-visual { transform: scale(0.95); }

.reveal-up.visible, .reveal-left.visible, .reveal-right.visible, .reveal-text.visible, .reveal-visual.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .intro-grid, .experience-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        gap: 24px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 24px 60px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .process-step::before {
        left: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .card-stats {
        flex-direction: column;
    }
    
    .step-detail {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
}

/* ===== 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;
    }
}

/* ===== FOCUS STATES ===== */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 4px;
}

button:focus-visible, a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}