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

:root {
    /* Colors */
    --primary-green: #25481d;
    --light-green: #c1d6a7;
    --bg-green: #e4f6ce;
    --dark-green: #15370e;
    --brown: #7f5a18;
    --orange: #c47824;
    --beige: #e6d4b9;
    --white: #ffffff;
    --text-dark: #2d2d2d;
    --teal: #1a5f5f;
    --teal-light: #2d7a7a;
    --accent-blue: #3d7a9b;
    --accent-purple: #6b4c93;
    
    /* Typography Scale - Consistent font sizes */
    --font-xs: 0.75rem;      /* 12px */
    --font-sm: 0.875rem;      /* 14px */
    --font-base: 1rem;       /* 16px */
    --font-lg: 1.125rem;      /* 18px */
    --font-xl: 1.25rem;      /* 20px */
    --font-2xl: 1.5rem;      /* 24px */
    --font-3xl: 2rem;        /* 32px */
    --font-4xl: 2.5rem;      /* 40px */
    --font-5xl: 3rem;        /* 48px */
    --font-6xl: 4rem;        /* 64px */
    --font-7xl: 5rem;        /* 80px */
    --font-8xl: 6rem;        /* 96px */
    
    /* Font Weights */
    --weight-normal: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-extrabold: 800;
    --weight-black: 900;
    
    /* Spacing Scale - 8px base unit */
    --space-1: 0.5rem;       /* 8px */
    --space-2: 1rem;         /* 16px */
    --space-3: 1.5rem;       /* 24px */
    --space-4: 2rem;         /* 32px */
    --space-5: 2.5rem;       /* 40px */
    --space-6: 3rem;         /* 48px */
    --space-8: 4rem;         /* 64px */
    --space-10: 5rem;        /* 80px */
    --space-12: 6rem;        /* 96px */
    
    /* Border Radius - Consistent sharp corners */
    --radius-none: 0;
    --radius-sm: 2px;
    --radius-base: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    
    /* Border Widths */
    --border-thin: 1px;
    --border-base: 2px;
    --border-thick: 3px;
    
    /* Shadows - Consistent depth */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-base: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Typography System - 2026 Best Practices */
/* Inter Variable: UI/body text - highly readable, excellent legibility */
/* Playfair Display: Headings - strong, expressive, creates hierarchy */

body {
    font-family: 'Inter', sans-serif;
    font-optical-sizing: auto;
    font-variation-settings: 'slnt' 0;
    background: var(--bg-green);
    background-image: 
        linear-gradient(45deg, rgba(37, 72, 29, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(37, 72, 29, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(37, 72, 29, 0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(37, 72, 29, 0.02) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    overflow-x: hidden;
    color: var(--primary-green);
    line-height: 1.7;
    font-size: var(--font-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Heading Typography - Playfair Display */
h1, h2, h3, h4, h5, h6,
.section-title,
.section-title-problem,
.hero-text h1,
.contact-headline,
.about-headline,
.solution-headline,
.problem-headline,
.how-it-works-headline,
.tech-title,
.market-title,
.competitive-title,
.demo-title,
.contact-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Body text - Inter */
p, li, span, a, button, input, textarea, select {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

/* Shape System - Triangle and Puddle only */
.shape-base {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.shape-triangle {
    background-image: url('ReLoam PitchDeck/triangle_shape.svg');
}

.shape-puddle {
    background-image: url('ReLoam PitchDeck/puddle.svg');
}

/* Hero Section - Creative Modern Design */
.hero {
    position: relative;
    min-height: 100vh;
    background: 
        radial-gradient(circle at 20% 50%, rgba(37, 72, 29, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(196, 120, 36, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, var(--light-green) 0%, var(--bg-green) 50%, #d4e8b8 100%);
    padding: var(--space-8) 2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 72, 29, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 120, 36, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
    z-index: 0;
}

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

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

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

.hero-left {
    position: relative;
    z-index: 10;
}

.logo {
    margin-bottom: var(--space-6);
}

.logo-img {
    height: 80px;
    width: auto;
}

.hero-tagline {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-2xl);
    font-weight: 600; /* Inter semibold */
    color: var(--primary-green);
    margin-bottom: var(--space-4);
    line-height: 1.5; /* Improved readability */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-8xl);
    line-height: 1.1;
    margin-bottom: var(--space-3);
    font-weight: 800;
    letter-spacing: -0.03em;
    position: relative;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

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

.hero-text h1 .title-dark {
    position: relative;
    display: inline-block;
}

.hero-text h1 .title-dark::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 0.15em;
    background: linear-gradient(90deg, var(--orange), var(--beige));
    opacity: 0.3;
    z-index: -1;
    transform: scaleX(0);
    animation: underlineExpand 0.8s ease-out 1s both;
}

@keyframes underlineExpand {
    to {
        transform: scaleX(1);
    }
}

.title-dark {
    color: var(--primary-green);
    display: block;
    margin-bottom: var(--space-1);
}

.title-light {
    color: var(--white);
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.subtitle {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-lg);
    color: var(--text-dark);
    font-weight: 400;
    margin-top: var(--space-3);
    margin-bottom: var(--space-4);
    line-height: 1.7;
    max-width: 90%;
}

.hero-stats {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-6);
    flex-wrap: wrap;
}

.hero-stat {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: var(--space-4) var(--space-3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: var(--radius-base);
    border: var(--border-base) solid rgba(37, 72, 29, 0.15);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--teal), var(--primary-green));
    box-shadow: 0 2px 8px rgba(37, 72, 29, 0.2);
}

.hero-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 72, 29, 0.25);
}

.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-5xl);
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: var(--space-2);
    margin-top: var(--space-1);
}

.hero-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-sm);
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.hero-graphics {
    position: relative;
    width: 100%;
    height: 600px;
    z-index: 5;
    animation: fadeInRight 1s ease-out 0.4s both;
}

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

.farm-image {
    position: absolute;
    width: 500px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 
        var(--shadow-xl), 
        var(--shadow-inset),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 60px rgba(37, 72, 29, 0.2);
    z-index: 5;
    border: var(--border-thick) solid rgba(255, 255, 255, 0.3);
    background: transparent;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translate(-50%, -50%) rotate(-5deg) translateY(0); }
    50% { transform: translate(-50%, -50%) rotate(-5deg) translateY(-15px); }
}

.farm-image:hover {
    transform: translate(-50%, -50%) rotate(-3deg) scale(1.05);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 100px rgba(37, 72, 29, 0.3);
}

.farm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: transparent;
}

/* Hero Shapes */
.shape-1 {
    width: 280px;
    height: 320px;
    top: 5%;
    right: 10%;
    transform: rotate(20deg);
    opacity: 0.4;
}

.shape-2 {
    width: 220px;
    height: 180px;
    top: 40%;
    right: 20%;
    transform: rotate(-12deg);
    opacity: 0.35;
}

.shape-3 {
    width: 240px;
    height: 200px;
    top: 60%;
    right: 15%;
    transform: rotate(8deg);
    opacity: 0.4;
}

.shape-1, .shape-2, .shape-3 {
    position: absolute;
    z-index: 6;
}

.shape-1 {
    background-image: url('ReLoam PitchDeck/triangle_shape.svg');
}

.shape-2 {
    background-image: url('ReLoam PitchDeck/puddle.svg');
}

.shape-3 {
    background-image: url('ReLoam PitchDeck/puddle.svg');
}

/* Navigation Links */
.nav-links {
    position: fixed;
    top: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 100;
}

.nav-links a {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-base);
    text-decoration: none;
    font-weight: var(--weight-semibold);
    transition: all 0.3s;
    border: var(--border-base) solid transparent;
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.nav-links a:hover::before {
    left: 100%;
}

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

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-green);
}

.btn-secondary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Section Base Styles */
section {
    position: relative;
    padding: var(--space-8) 2rem;
    overflow: hidden;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-7xl);
    font-weight: 800;
    margin-bottom: var(--space-3);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: var(--font-3xl);
    font-weight: var(--weight-bold);
    color: var(--beige);
    margin-bottom: var(--space-8);
    max-width: 800px;
    line-height: 1.4;
}

.section-subtitle-problem {
    font-size: var(--font-3xl);
    font-weight: var(--weight-bold);
    color: #f8dcab;
    margin-bottom: var(--space-8);
    max-width: 800px;
    line-height: 1.4;
}

.dot {
    color: var(--white);
}

/* About Section - Split Panel Design */
.about {
    background: white;
    min-height: auto;
    padding: 0;
    overflow: hidden;
}

.about {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 70vh;
    position: relative;
}

.about-left {
    background: var(--bg-green);
    padding: var(--space-8) var(--space-6);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-left {
    max-width: 100%;
}

.about-headline {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-7xl);
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.1;
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.about-description {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-xl);
    color: var(--primary-green);
    line-height: 1.7;
    font-weight: 400;
}

.about-right {
    position: relative;
    overflow: hidden;
}

.about-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('ReLoam PitchDeck/aerial_field_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.about-content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 600px;
    background: rgba(37, 72, 29, 0.85);
    backdrop-filter: blur(10px);
    padding: var(--space-6);
    z-index: 3;
    border: var(--border-thin) solid rgba(255, 255, 255, 0.2);
}

.about-text,
.about-mission,
.about-value {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-sm);
    color: white;
    line-height: 1.6;
    margin-bottom: var(--space-3);
}

.about-mission {
    font-weight: 500;
}

.about-value {
    margin-bottom: 0;
    font-style: italic;
    opacity: 0.9;
}

.about-logo-img {
    height: 100px;
    width: auto;
    margin-bottom: var(--space-4);
}

.about-intro {
    font-size: var(--font-4xl);
    line-height: 1.3;
    color: var(--primary-green);
    margin-bottom: var(--space-6);
    font-weight: var(--weight-black);
    max-width: 900px;
}

.about-intro strong {
    color: var(--brown);
}

.about-description {
    font-size: var(--font-2xl);
    line-height: 1.6;
    color: var(--primary-green);
    margin-bottom: var(--space-5);
    font-weight: var(--weight-medium);
}

.about-mission {
    font-size: var(--font-2xl);
    line-height: 1.6;
    color: var(--brown);
    font-weight: var(--weight-bold);
}

.about-shape {
    position: absolute;
    z-index: 1;
}

.about-shape-1 {
    width: 220px;
    height: 220px;
    bottom: 15%;
    left: 5%;
    background-image: url('ReLoam PitchDeck/puddle.svg');
    opacity: 0.25;
}

.about-shape-2 {
    width: 180px;
    height: 180px;
    top: 10%;
    right: 8%;
    background-image: url('ReLoam PitchDeck/triangle_shape.svg');
    transform: rotate(45deg);
    opacity: 0.3;
}

.about-shape-3 {
    width: 150px;
    height: 150px;
    top: 15%;
    right: 5%;
    background-image: url('ReLoam PitchDeck/puddle.svg');
    opacity: 0.25;
}

/* How It Works Section - Split Panel Design */
.how-it-works {
    background: white;
    color: var(--primary-green);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.how-it-works-split {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 70vh;
    position: relative;
}

.how-it-works-left {
    background: var(--primary-green);
    padding: var(--space-8) var(--space-6);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.how-it-works-left-content {
    max-width: 100%;
}

.how-it-works-headline {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-7xl);
    font-weight: 800;
    color: var(--beige);
    line-height: 1.1;
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.how-it-works-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-xl);
    color: var(--beige);
    line-height: 1.7;
    font-weight: 400;
}

.how-it-works-right {
    position: relative;
    overflow: hidden;
}

.how-it-works-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('ReLoam PitchDeck/aerial_field_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.how-it-works-content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 700px;
    background: rgba(37, 72, 29, 0.85);
    backdrop-filter: blur(10px);
    padding: var(--space-6);
    z-index: 3;
    border: var(--border-thin) solid rgba(255, 255, 255, 0.2);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    color: white;
}

.process-step h3 {
    font-family: 'Playfair Display', serif;
    color: var(--beige);
}

.process-step p {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.9);
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-base);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    border: var(--border-thick) solid var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-2xl);
    font-weight: var(--weight-black);
    color: var(--beige);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: rotate(-5deg);
    transition: transform var(--transition-base);
}

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

.step-icon {
        font-size: var(--font-5xl);
    margin-bottom: var(--space-2);
    display: block;
}

.process-step h3 {
    font-size: var(--font-2xl);
    color: var(--beige);
    margin-bottom: var(--space-2);
    font-weight: var(--weight-bold);
}

.process-step p {
    font-size: var(--font-sm);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.process-connector {
    flex: 0 0 40px;
    height: 3px;
    background: var(--beige);
    opacity: 0.3;
    position: relative;
}

.process-connector::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: -10px;
    color: var(--beige);
    font-size: var(--font-2xl);
}

.how-it-works-shape {
    position: absolute;
    z-index: 1;
}

.how-it-works-shape-1 {
    width: 250px;
    height: 300px;
    top: 10%;
    right: 5%;
    background-image: url('ReLoam PitchDeck/triangle_shape.svg');
    opacity: 0.1;
}

.how-it-works-shape-2 {
    width: 220px;
    height: 280px;
    bottom: 10%;
    left: 5%;
    background-image: url('ReLoam PitchDeck/puddle.svg');
    opacity: 0.1;
}

/* Solution Section - Split Panel Design */
.solution {
    background: white;
    color: var(--primary-green);
    padding: 0;
    overflow: hidden;
}

.solution {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 80vh;
    position: relative;
}

.solution-left {
    background: var(--primary-green);
    padding: var(--space-8) var(--space-6);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.solution-left {
    max-width: 100%;
}

.solution-headline {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-7xl);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.solution-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-xl);
    color: var(--beige);
    line-height: 1.7;
    font-weight: 400;
}

.solution-right {
    position: relative;
    overflow: hidden;
}

.solution-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('ReLoam PitchDeck/aerial_field_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.solution-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 72, 29, 0.85);
    backdrop-filter: blur(10px);
    padding: var(--space-8) var(--space-6);
    z-index: 3;
    overflow-y: auto;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

.solution-card {
    padding: var(--space-3) var(--space-3);
    border-radius: var(--radius-base);
    color: white;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: var(--border-base) solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    box-shadow: var(--shadow-md), var(--shadow-inset);
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.solution-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-12px) scale(1.03) rotateY(2deg);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 40px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.1) 100%);
}

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

.solution-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.solution-card p {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-sm);
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}

.card-green {
    background: var(--dark-green);
}

.card-brown {
    background: #3d2b0a;
}

.card-light-green {
    background: var(--light-green);
    color: var(--dark-green);
}

.card-orange {
    background: var(--orange);
}

.card-beige {
    background: var(--beige);
    color: var(--primary-green);
}

.card-dark-green {
    background: var(--dark-green);
}

.solution-shape {
    position: absolute;
    z-index: 1;
}

.solution-shape-1 {
    width: 280px;
    height: 320px;
    top: 15%;
    right: 8%;
    background-image: url('ReLoam PitchDeck/puddle.svg');
    opacity: 0.2;
}

.solution-shape-2 {
    width: 350px;
    height: 400px;
    bottom: 10%;
    left: 5%;
    background-image: url('ReLoam PitchDeck/triangle_shape.svg');
    opacity: 0.15;
}

.solution-shape-3 {
    width: 250px;
    height: 280px;
    top: 50%;
    right: 15%;
    background-image: url('ReLoam PitchDeck/puddle.svg');
    opacity: 0.2;
}

/* Problem Section - Split Panel Design */
.problem {
    background: white;
    color: var(--primary-green);
    padding: 0;
    overflow: hidden;
}

.problem-split {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 80vh;
    position: relative;
}

.problem-left {
    background: #2e0303;
    padding: var(--space-8) var(--space-6);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.problem-left-content {
    max-width: 100%;
}

.problem-headline {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-7xl);
    font-weight: 800;
    color: #f8dcab;
    line-height: 1.1;
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.problem-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-xl);
    color: #f8dcab;
    line-height: 1.7;
    font-weight: 400;
}

.problem-right {
    position: relative;
    overflow: hidden;
}

.problem-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('ReLoam PitchDeck/aerial_field_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.problem-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 3, 3, 0.85);
    backdrop-filter: blur(10px);
    padding: var(--space-8) var(--space-6);
    z-index: 3;
    overflow-y: auto;
}

.section-title-problem {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-6xl);
    color: #f8dcab;
    margin-bottom: var(--space-8);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.dot-problem {
    color: var(--bg-green);
}

.problem-text {
    color: #dd746a;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.problem-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.problem-stat {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
    padding: var(--space-3) var(--space-3);
    border-radius: var(--radius-base);
    text-align: center;
    position: relative;
    backdrop-filter: blur(15px);
    border: var(--border-base) solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md), var(--shadow-inset);
    overflow: hidden;
    transform-style: preserve-3d;
}

.problem-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f8dcab, #e6d4b9, #f8dcab);
}

.problem-stat:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.15) 100%);
    transform: translateY(-8px) scale(1.03) rotateZ(1deg);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 0 40px rgba(248, 220, 171, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.problem-number {
    font-size: var(--font-7xl);
    font-weight: var(--weight-black);
    color: #f8dcab;
    line-height: 1;
    margin-bottom: var(--space-2);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.problem-icon {
    font-size: var(--font-5xl);
    margin-bottom: var(--space-3);
    display: inline-block;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.problem-stat p {
    font-size: var(--font-sm);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin-top: var(--space-2);
    margin-bottom: 0;
    text-align: left;
    font-weight: 400;
}

.problem-shape {
    position: absolute;
    z-index: 1;
}

.problem-shape-1 {
    width: 220px;
    height: 200px;
    bottom: 10%;
    left: 8%;
    background-image: url('ReLoam PitchDeck/puddle.svg');
    opacity: 0.15;
}

.problem-shape-2 {
    width: 180px;
    height: 160px;
    top: 20%;
    left: 5%;
    background-image: url('ReLoam PitchDeck/triangle_shape.svg');
    opacity: 0.1;
}

.problem-shape-3 {
    width: 160px;
    height: 145px;
    bottom: 25%;
    right: 10%;
    background-image: url('ReLoam PitchDeck/puddle.svg');
    opacity: 0.1;
}

/* Tech Stack Section */
.tech-stack {
    background: #455033;
    color: var(--beige);
}

.tech-stack {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--space-8) var(--space-6);
}

.tech-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-6xl);
    margin-bottom: var(--space-6);
    font-weight: 800;
    color: var(--beige);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.tech-stack-text {
    color: var(--beige);
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: var(--space-6);
}

.tech-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    padding: var(--space-3) var(--space-3);
    border-radius: var(--radius-base);
    margin-bottom: var(--space-2);
    border: var(--border-base) solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.tech-item strong {
    color: var(--white);
    font-weight: var(--weight-bold);
    display: block;
    margin-bottom: var(--space-2);
}

.tech-item p {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-sm);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-top: var(--space-2);
    margin-bottom: 0;
}

.tech-additional {
    margin-top: var(--space-6);
    padding: var(--space-5);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-base);
    border: var(--border-thin) solid rgba(255, 255, 255, 0.1);
}

.tech-additional h3 {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-2xl);
    color: var(--beige);
    margin-bottom: var(--space-4);
    font-weight: 700;
}

.tech-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

.tech-feature {
    padding: var(--space-3);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-base);
    border: var(--border-base) solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-feature strong {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-base);
    color: var(--beige);
    font-weight: 700;
    display: block;
    margin-bottom: var(--space-2);
}

.tech-feature p {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-sm);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

.tech-badge {
    margin-top: var(--space-6);
    padding: var(--space-4) var(--space-6);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: var(--radius-base);
    border: var(--border-base) solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-md), var(--shadow-inset);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--beige), var(--orange));
    box-shadow: 0 2px 8px rgba(196, 120, 36, 0.3);
}

.tech-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-inset);
    border-color: rgba(255, 255, 255, 0.3);
}

.tech-badge p {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-base);
    font-weight: var(--weight-bold);
    color: var(--beige);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.5;
}

.tech-shape {
    position: absolute;
    z-index: 1;
}

.tech-shape-1 {
    width: 240px;
    height: 210px;
    top: 15%;
    right: 10%;
    background-image: url('ReLoam PitchDeck/puddle.svg');
    opacity: 0.15;
}

.tech-shape-2 {
    width: 190px;
    height: 170px;
    bottom: 20%;
    left: 8%;
    background-image: url('ReLoam PitchDeck/triangle_shape.svg');
    opacity: 0.2;
}

.tech-shape-3 {
    width: 160px;
    height: 145px;
    top: 50%;
    right: 5%;
    background-image: url('ReLoam PitchDeck/puddle.svg');
    opacity: 0.15;
}

/* Market Section */
.market {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--teal) 100%);
    color: var(--beige);
    position: relative;
}

.market::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.market {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: var(--space-8) var(--space-6);
}

.market > * {
    position: relative;
    z-index: 2;
}

.market-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-6xl);
    color: var(--beige);
    margin-bottom: var(--space-6);
    font-weight: 800;
    grid-column: 1 / -1;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.market-opportunity-text {
    color: var(--light-green);
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-content: start;
}

.stat-bubble {
    padding: var(--space-6) var(--space-4);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    aspect-ratio: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-base), box-shadow 0.3s ease;
}

.stat-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-large {
    grid-column: span 1;
}

.stat-medium {
    grid-column: span 1;
}

.stat-light {
    background: var(--light-green);
    color: var(--dark-green);
}

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

.stat-orange {
    background: var(--orange);
    color: white;
}

.stat-bubble h3 {
    font-size: var(--font-8xl);
    font-weight: var(--weight-black);
    margin-bottom: var(--space-2);
    line-height: 1;
}

.stat-bubble p {
    font-size: var(--font-2xl);
    line-height: 1.3;
    font-weight: 500;
}

.stat-card {
    padding: var(--space-3) var(--space-3);
    border-radius: var(--radius-base);
    grid-column: span 2;
    border: var(--border-base) solid rgba(37, 72, 29, 0.15);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--teal), var(--primary-green));
    box-shadow: 0 2px 8px rgba(37, 72, 29, 0.2);
}

.stat-white {
    background: white;
    color: var(--primary-green);
}

.stat-card h4 {
    font-size: var(--font-2xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-1);
}

.market-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.market-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    padding: var(--space-4);
    border-radius: var(--radius-base);
    color: white;
    border: var(--border-base) solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.market-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3));
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.market-info h4 {
    font-size: var(--font-xl);
    margin-bottom: var(--space-2);
}

.market-info h3 {
    font-size: var(--font-4xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-2);
}

.market-info ul {
    list-style: none;
    padding: 0;
}

.market-info li {
    font-size: var(--font-lg);
    margin-bottom: var(--space-1);
}

.market-intro {
    grid-column: 1 / -1;
    margin-bottom: var(--space-6);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-base);
    border-left: 4px solid var(--beige);
}

.market-intro p {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-base);
    color: var(--beige);
    line-height: 1.7;
    margin: 0;
}

.market-analysis {
    grid-column: 1 / -1;
    margin-top: var(--space-6);
    padding: var(--space-5);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-base);
    border: var(--border-thin) solid rgba(255, 255, 255, 0.1);
}

.market-analysis h3 {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-2xl);
    color: var(--beige);
    margin-bottom: var(--space-4);
    font-weight: 700;
}

.market-drivers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

.driver-item {
    padding: var(--space-3);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-base);
    border: var(--border-base) solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.driver-item strong {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-base);
    color: var(--beige);
    font-weight: 700;
    display: block;
    margin-bottom: var(--space-2);
}

.driver-item p {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-sm);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

.market-quote {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: var(--space-8);
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-base);
    border-left: 4px solid var(--orange);
}

.market-quote p {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-xl);
    color: var(--beige);
    font-style: italic;
    margin-bottom: var(--space-2);
    line-height: 1.6;
}

.quote-source {
    font-size: var(--font-sm);
    font-style: normal;
    opacity: 0.8;
    margin-top: var(--space-2);
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
}

.market-shape {
    position: absolute;
    z-index: 1;
}

.market-shape-1 {
    width: 300px;
    height: 350px;
    top: 8%;
    right: 6%;
    background-image: url('ReLoam PitchDeck/triangle_shape.svg');
    opacity: 0.15;
}

.market-shape-2 {
    width: 280px;
    height: 320px;
    bottom: 18%;
    left: 6%;
    background-image: url('ReLoam PitchDeck/puddle.svg');
    opacity: 0.15;
}

.market-shape-3 {
    width: 250px;
    height: 290px;
    top: 50%;
    right: 10%;
    background-image: url('ReLoam PitchDeck/triangle_shape.svg');
    opacity: 0.1;
}

/* Competitive Section */
.competitive {
    background: var(--bg-green);
    color: var(--primary-green);
}

.competitive {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-8) var(--space-6);
}

.competitive-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-6xl);
    margin-bottom: var(--space-8);
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.competitive-red {
    color: #c43c24;
}

.competitive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.competitive-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.competitors-section,
.advantages-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.5) 100%);
    padding: var(--space-3) var(--space-3);
    border-radius: var(--radius-base);
    border: var(--border-base) solid rgba(37, 72, 29, 0.15);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.competitors-section::before,
.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brown), var(--orange), var(--brown));
    box-shadow: 0 2px 8px rgba(127, 90, 24, 0.2);
}

.competitors-section h3,
.advantages-section h3 {
    font-size: var(--font-2xl);
    color: var(--brown);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-2);
}

.competitors-section ul,
.advantages-section ul {
    list-style: none;
    padding: 0;
}

.competitive-intro {
    margin-bottom: var(--space-6);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-base);
    border-left: 4px solid var(--primary-green);
}

.competitive-intro p {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-base);
    color: var(--primary-green);
    line-height: 1.7;
    margin: 0;
}

.section-note {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-sm);
    color: var(--text-dark);
    margin-bottom: var(--space-3);
    font-style: italic;
}

.competitive-note {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-sm);
    color: var(--primary-green);
    margin-top: var(--space-3);
    padding: var(--space-2);
    background: rgba(37, 72, 29, 0.1);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary-green);
}

.competitors-section li,
.advantages-section li {
    font-size: var(--font-sm);
    color: var(--primary-green);
    margin-bottom: var(--space-2);
    line-height: 1.5;
}

.competitors-section li strong,
.advantages-section li strong {
    color: var(--brown);
    font-weight: 700;
}

.note {
    color: var(--brown);
    font-style: italic;
}

.blue-ocean {
    background: linear-gradient(135deg, #2B7A9B 0%, #236A88 100%);
    padding: var(--space-4) var(--space-4);
    border-radius: var(--radius-base);
    color: white;
    box-shadow: var(--shadow-md), var(--shadow-inset);
    border: var(--border-base) solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blue-ocean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3));
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.blue-ocean h3 {
    font-size: var(--font-3xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-4);
}

.blue-ocean ul {
    list-style: none;
    padding: 0;
}

.blue-ocean li {
    font-size: var(--font-lg);
    margin-bottom: var(--space-2);
    line-height: 1.6;
}

.competitive-shape {
    position: absolute;
    z-index: 1;
}

.competitive-shape-1 {
    width: 290px;
    height: 340px;
    top: 12%;
    right: 6%;
    background-image: url('ReLoam PitchDeck/puddle.svg');
    opacity: 0.2;
}

.competitive-shape-2 {
    width: 270px;
    height: 310px;
    bottom: 15%;
    left: 8%;
    background-image: url('ReLoam PitchDeck/triangle_shape.svg');
    opacity: 0.15;
}

.competitive-shape-3 {
    width: 250px;
    height: 290px;
    top: 50%;
    right: 15%;
    background-image: url('ReLoam PitchDeck/puddle.svg');
    opacity: 0.1;
}

/* Traction Section */
.traction {
    background: var(--bg-green);
    color: var(--primary-green);
}

.traction {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-8) var(--space-6);
}

.traction-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: var(--space-8);
}

.traction-card {
    background: white;
    padding: var(--space-3) var(--space-3);
    border-radius: var(--radius-base);
    text-align: center;
    box-shadow: var(--shadow-md), var(--shadow-inset);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: var(--border-base) solid rgba(37, 72, 29, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9f5 100%);
    transform-style: preserve-3d;
}

.traction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--teal), var(--accent-blue));
    box-shadow: 0 2px 8px rgba(37, 72, 29, 0.2);
}

.traction-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 72, 29, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.traction-card:hover {
    transform: translateY(-10px) scale(1.03) rotateX(2deg);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 30px rgba(37, 72, 29, 0.15);
    border-color: rgba(37, 72, 29, 0.25);
}

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

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

.traction-number {
    font-size: var(--font-7xl);
    font-weight: var(--weight-black);
    color: var(--brown);
    margin-bottom: var(--space-2);
    line-height: 1;
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, rgba(196, 120, 36, 0.15), rgba(127, 90, 24, 0.15));
    border-radius: var(--radius-base);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.traction-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 120, 36, 0.3), transparent);
    transition: left 0.5s ease;
}

.traction-card:hover .traction-number {
    transform: scale(1.1);
}

.traction-card:hover .traction-number::before {
    left: 100%;
}

.traction-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-2xl);
    color: var(--primary-green);
    margin-bottom: var(--space-2);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.traction-card p {
    font-size: var(--font-sm);
    color: var(--text-dark);
    line-height: 1.5;
    text-align: left;
    margin-top: var(--space-2);
}

.traction-metrics {
    margin-top: var(--space-6);
    padding: var(--space-5);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-base);
    border: var(--border-thin) solid rgba(37, 72, 29, 0.1);
}

.traction-metrics h3 {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-2xl);
    color: var(--primary-green);
    margin-bottom: var(--space-4);
    font-weight: 700;
    text-align: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

.metric-item {
    padding: var(--space-3);
    background: white;
    border-radius: var(--radius-base);
    text-align: center;
    border: var(--border-base) solid rgba(37, 72, 29, 0.15);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-value {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-4xl);
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.metric-label {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-base);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-1);
}

.metric-detail {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-sm);
    color: var(--text-dark);
    line-height: 1.5;
    opacity: 0.8;
}

.traction-highlights {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.5) 100%);
    padding: var(--space-6);
    border-radius: var(--radius-base);
    border: var(--border-base) solid rgba(37, 72, 29, 0.1);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.traction-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--teal), var(--primary-green));
    box-shadow: 0 2px 8px rgba(37, 72, 29, 0.2);
}

.traction-highlights h3 {
    font-size: var(--font-3xl);
    color: var(--primary-green);
    margin-bottom: var(--space-4);
    font-weight: var(--weight-bold);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9f5 100%);
    padding: var(--space-3) var(--space-3);
    border-radius: var(--radius-base);
    transition: transform var(--transition-base), box-shadow 0.3s ease;
    border: var(--border-base) solid rgba(37, 72, 29, 0.15);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--teal), var(--primary-green));
    box-shadow: 0 2px 8px rgba(37, 72, 29, 0.2);
}

.achievement-item:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(37, 72, 29, 0.2);
}

.achievement-icon {
    font-size: var(--font-5xl);
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 72, 29, 0.15) 0%, rgba(37, 72, 29, 0.1) 100%);
    border-radius: var(--radius-base);
    border: var(--border-base) solid rgba(37, 72, 29, 0.1);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.05),
        0 2px 8px rgba(37, 72, 29, 0.1);
}

.achievement-text strong {
    display: block;
    font-size: var(--font-xl);
    color: var(--primary-green);
    margin-bottom: var(--space-1);
    font-weight: var(--weight-bold);
}

.achievement-text p {
    font-size: var(--font-base);
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
}

.traction-shape {
    position: absolute;
    z-index: 1;
}

.traction-shape-1 {
    width: 250px;
    height: 300px;
    top: 10%;
    right: 5%;
    background-image: url('ReLoam PitchDeck/triangle_shape.svg');
    opacity: 0.15;
}

.traction-shape-2 {
    width: 220px;
    height: 280px;
    bottom: 10%;
    left: 5%;
    background-image: url('ReLoam PitchDeck/puddle.svg');
    opacity: 0.15;
}

/* Business Model Section */
.business-model {
    background: var(--brown);
    color: var(--beige);
}

.business-model {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-8) var(--space-6);
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: var(--space-6);
}

.model-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
    padding: var(--space-3) var(--space-3);
    border-radius: var(--radius-base);
    border: var(--border-base) solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md), var(--shadow-inset);
    transform-style: preserve-3d;
}

.model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--beige), var(--orange));
    box-shadow: 0 2px 8px rgba(196, 120, 36, 0.3);
}

.model-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.model-card:hover {
    transform: translateY(-12px) scale(1.04) rotateY(-2deg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.18) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 50px rgba(196, 120, 36, 0.2);
}

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

.model-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-2xl);
    color: var(--beige);
    margin-bottom: var(--space-2);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.model-price {
    font-size: var(--font-xl);
    color: var(--orange);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-3);
}

.model-card ul {
    list-style: none;
    padding: 0;
}

.model-card li {
    font-size: var(--font-lg);
    color: var(--beige);
    margin-bottom: var(--space-2);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.model-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-size: var(--font-2xl);
}

.revenue-projections {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    padding: var(--space-6);
    border-radius: var(--radius-base);
    text-align: center;
    border: var(--border-base) solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.revenue-projections::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--beige), var(--orange));
    box-shadow: 0 2px 8px rgba(196, 120, 36, 0.3);
}

.revenue-projections h3 {
    font-size: var(--font-3xl);
    color: var(--beige);
    margin-bottom: var(--space-3);
    font-weight: var(--weight-bold);
}

.revenue-projections > p {
    font-size: var(--font-xl);
    color: var(--beige);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.revenue-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.revenue-chart {
    display: flex;
    justify-content: center;
    align-items: center;
}

.donut-chart {
    width: 300px;
    height: 300px;
    position: relative;
    border-radius: 50%;
    background: conic-gradient(
        var(--orange) 0% 60%,
        var(--accent-blue) 60% 90%,
        var(--teal) 90% 100%
    );
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.donut-chart::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    z-index: 1;
}

.donut-segment {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.segment-label {
    font-size: var(--font-4xl);
    font-weight: var(--weight-black);
    color: var(--primary-green);
    margin-bottom: var(--space-1);
}

.segment-name {
    font-size: var(--font-base);
    color: var(--text-dark);
    font-weight: var(--weight-semibold);
}

.revenue-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.revenue-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: left;
}

.revenue-icon {
    font-size: var(--font-4xl);
    flex-shrink: 0;
}

.revenue-item strong {
    display: block;
    font-size: var(--font-xl);
    color: var(--beige);
    margin-bottom: var(--space-1);
    font-weight: var(--weight-bold);
}

.revenue-item p {
    font-size: var(--font-base);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.business-model-shape {
    position: absolute;
    z-index: 1;
}

.business-model-shape-1 {
    width: 280px;
    height: 320px;
    top: 15%;
    right: 8%;
    background-image: url('ReLoam PitchDeck/puddle.svg');
    opacity: 0.15;
}

.business-model-shape-2 {
    width: 250px;
    height: 290px;
    bottom: 10%;
    left: 8%;
    background-image: url('ReLoam PitchDeck/triangle_shape.svg');
    opacity: 0.15;
}

/* Demo Section */
.demo {
    background: var(--primary-green);
    color: var(--beige);
}

.demo {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-8) var(--space-6);
}

.demo-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-6xl);
    color: var(--beige);
    margin-bottom: var(--space-8);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Triangle Mosaic Layout for Portal Images */
.demo-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: var(--space-2);
    margin-bottom: var(--space-6);
    position: relative;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
}

.mosaic-large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.mosaic-triangle-1 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.mosaic-triangle-2 {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
    clip-path: polygon(50% 0, 100% 0, 100% 100%);
}

.mosaic-triangle-3 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.mosaic-triangle-4 {
    grid-column: 4 / 5;
    grid-row: 2 / 4;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 50%);
}

.mosaic-label {
    position: absolute;
    bottom: var(--space-2);
    left: var(--space-2);
    background: rgba(37, 72, 29, 0.9);
    color: var(--beige);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-base);
    font-size: var(--font-sm);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.demo-screenshot {
    background: white;
    border-radius: var(--radius-base);
    padding: var(--space-2);
    box-shadow: var(--shadow-xl), var(--shadow-inset);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: var(--border-base) solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-screenshot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--teal), var(--primary-green));
    box-shadow: 0 2px 8px rgba(37, 72, 29, 0.2);
    z-index: 1;
}

.demo-screenshot:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(37, 72, 29, 0.2);
}

.demo-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
    display: block;
    position: relative;
    z-index: 0;
    transition: transform 0.4s ease;
}

.demo-screenshot:hover img {
    transform: scale(1.05);
}

.demo-mobile {
    max-width: 300px;
    margin: 0 auto;
}


.demo-shape {
    position: absolute;
    z-index: 1;
}

.demo-shape-1 {
    width: 300px;
    height: 350px;
    bottom: 10%;
    left: 6%;
    background-image: url('ReLoam PitchDeck/triangle_shape.svg');
    opacity: 0.15;
}

.demo-shape-2 {
    width: 280px;
    height: 330px;
    top: 12%;
    right: 7%;
    background-image: url('ReLoam PitchDeck/puddle.svg');
    opacity: 0.15;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-green);
    color: var(--primary-green);
}

.testimonials {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-8) var(--space-6);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9f5 100%);
    padding: var(--space-3) var(--space-3);
    border-radius: var(--radius-base);
    box-shadow: var(--shadow-md), var(--shadow-inset);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: var(--border-base) solid rgba(37, 72, 29, 0.15);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--teal), var(--primary-green));
    box-shadow: 0 2px 8px rgba(37, 72, 29, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-inset);
    border-color: rgba(37, 72, 29, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: var(--space-3);
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(37, 72, 29, 0.1);
}

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

.testimonial-info h4 {
    font-size: var(--font-xl);
    color: var(--primary-green);
    margin-bottom: 0.25rem;
    font-weight: var(--weight-bold);
}

.testimonial-info p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.testimonial-quote p {
    font-size: var(--font-lg);
    color: var(--primary-green);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.testimonial-quote p::before {
    content: '"';
    font-size: var(--font-5xl);
    color: var(--brown);
    opacity: 0.3;
    line-height: 0;
    vertical-align: -0.3em;
    margin-right: 0.2em;
}

.testimonial-quote p::after {
    content: '"';
    font-size: var(--font-5xl);
    color: var(--brown);
    opacity: 0.3;
    line-height: 0;
    vertical-align: -0.3em;
    margin-left: 0.2em;
}

.testimonials-shape {
    position: absolute;
    z-index: 1;
}

.testimonials-shape-1 {
    width: 280px;
    height: 320px;
    top: 10%;
    right: 5%;
    background-image: url('ReLoam PitchDeck/puddle.svg');
    opacity: 0.1;
}

.testimonials-shape-2 {
    width: 250px;
    height: 290px;
    bottom: 10%;
    left: 5%;
    background-image: url('ReLoam PitchDeck/triangle_shape.svg');
    opacity: 0.1;
}

/* Contact Section */
.contact {
    background: white;
    color: var(--primary-green);
    padding: 0;
    overflow: hidden;
}

.contact {
    position: relative;
    z-index: 10;
    max-width: 100%;
    margin: 0;
    padding: var(--space-8) var(--space-6) 0;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-6xl);
    color: var(--primary-green);
    margin-bottom: var(--space-6);
    font-weight: 800;
    max-width: 1400px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: var(--space-8);
}

.team-member {
    padding: var(--space-6) var(--space-5);
    border-radius: var(--radius-base);
    color: white;
    position: relative;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform var(--transition-base), box-shadow 0.3s ease;
    border: var(--border-base) solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3));
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.team-member:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.member-orange {
    background: linear-gradient(135deg, var(--orange) 0%, #b8834a 100%);
}

.member-blue {
    background: linear-gradient(135deg, #3d7a9b 0%, #2b6a88 100%);
}

.member-initial {
    font-size: var(--font-6xl);
    font-weight: var(--weight-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    border-radius: var(--radius-base);
    margin-bottom: var(--space-3);
    border: var(--border-base) solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: rotate(-3deg);
    transition: transform var(--transition-base);
}

.team-member:hover .member-initial {
    transform: rotate(0deg) scale(1.1);
}

.team-member h3 {
    font-size: var(--font-base);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-1);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.team-member h4 {
    font-size: var(--font-3xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-2);
}

.team-member p {
    font-size: var(--font-sm);
    line-height: 1.5;
    opacity: 0.95;
    text-align: left;
    margin-top: var(--space-2);
}

.team-expertise {
    margin-top: var(--space-6);
    padding: var(--space-5);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-base);
    border: var(--border-base) solid rgba(37, 72, 29, 0.15);
}

.team-expertise h3 {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-2xl);
    color: var(--primary-green);
    margin-bottom: var(--space-4);
    font-weight: 700;
    text-align: center;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

.expertise-item {
    padding: var(--space-3);
    background: white;
    border-radius: var(--radius-base);
    border: var(--border-base) solid rgba(37, 72, 29, 0.15);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-item strong {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-base);
    color: var(--primary-green);
    font-weight: 700;
    display: block;
    margin-bottom: var(--space-2);
}

.expertise-item p {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-sm);
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

.team-cta {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.3) 100%);
    padding: var(--space-6) var(--space-5);
    border-radius: var(--radius-base);
    color: var(--primary-green);
    text-align: center;
    margin-bottom: var(--space-8);
    border: var(--border-base) solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.team-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--teal), var(--primary-green));
    box-shadow: 0 2px 8px rgba(37, 72, 29, 0.2);
}

.team-cta h3 {
    font-size: var(--font-3xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-2);
    color: var(--primary-green);
}

.team-cta p {
    font-size: var(--font-xl);
    color: var(--primary-green);
}

.funding-ask {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.3) 100%);
    padding: var(--space-6) var(--space-5);
    border-radius: var(--radius-base);
    color: var(--primary-green);
    margin-bottom: var(--space-8);
    border: var(--border-base) solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.funding-ask::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brown), var(--orange), var(--brown));
    box-shadow: 0 2px 8px rgba(127, 90, 24, 0.2);
}

.funding-ask h3 {
    font-size: var(--font-3xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-4);
    color: var(--primary-green);
    text-align: center;
}

.funding-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.funding-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.5) 100%);
    padding: var(--space-4) var(--space-4);
    border-radius: var(--radius-base);
    border: var(--border-base) solid rgba(37, 72, 29, 0.15);
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.funding-item h4 {
    font-size: var(--font-2xl);
    color: var(--brown);
    margin-bottom: var(--space-2);
    font-weight: var(--weight-bold);
}

.funding-item p {
    font-size: var(--font-lg);
    color: var(--primary-green);
    line-height: 1.7;
}

.funding-item ul {
    list-style: none;
    padding: 0;
}

.funding-item li {
    font-size: var(--font-sm);
    color: var(--primary-green);
    margin-bottom: var(--space-2);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.funding-item li strong {
    color: var(--brown);
    font-weight: 700;
}

.funding-terms {
    font-size: var(--font-sm);
    color: var(--text-dark);
    line-height: 1.6;
    margin-top: var(--space-3);
    padding: var(--space-2);
    background: rgba(37, 72, 29, 0.05);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary-green);
    font-style: italic;
}

.funding-item li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--brown);
    font-weight: var(--weight-bold);
}

.funding-amount {
    font-size: var(--font-2xl);
    color: var(--brown);
    font-weight: var(--weight-bold);
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(127, 90, 24, 0.1);
    border-radius: 10px;
    text-align: center;
}

.financial-projections {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(37, 72, 29, 0.2);
}

.financial-projections h4 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: var(--space-4);
    font-weight: var(--weight-bold);
    text-align: center;
}

.projections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: var(--space-4);
}

.projection-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.5) 100%);
    padding: var(--space-3) var(--space-3);
    border-radius: var(--radius-base);
    text-align: center;
    border: var(--border-base) solid rgba(37, 72, 29, 0.15);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.projection-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--teal));
}

.projection-item:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.projection-year {
    font-size: 0.9rem;
    color: var(--brown);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-1);
}

.projection-metric {
    font-size: 3.5rem;
    font-weight: var(--weight-black);
    color: var(--primary-green);
    margin-bottom: var(--space-1);
    line-height: 1;
}

.projection-label {
    font-size: var(--font-base);
    color: var(--text-dark);
}

.projections-note {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-style: italic;
    text-align: center;
    margin-top: 1rem;
}

.investment-cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: var(--space-8) 3rem;
    border-radius: var(--radius-base);
    text-align: center;
    color: white;
    margin-top: 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: var(--border-base) solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.investment-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--beige), var(--orange));
    box-shadow: 0 2px 8px rgba(196, 120, 36, 0.3);
}

.investment-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.investment-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--space-3);
    color: white;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.investment-cta p {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-xl);
    margin-bottom: var(--space-5);
    color: var(--beige);
    line-height: 1.7;
}

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

.btn-cta {
    padding: 1.25rem 3rem;
    border-radius: var(--radius-base);
    text-decoration: none;
    font-size: var(--font-xl);
    font-weight: var(--weight-bold);
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: var(--border-base) solid transparent;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-invest {
    background: var(--orange);
    color: white;
}

.btn-invest:hover {
    background: #b8834a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(196, 120, 36, 0.4);
}

.btn-partner {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: var(--border-base) solid white;
}

.btn-partner:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Contact Split Layout */
.contact-split {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 80vh;
    position: relative;
}

.contact-left {
    background: white;
    padding: var(--space-12) 4rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-left-content {
    max-width: 100%;
}

.contact-headline {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.1;
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.contact-description {
    font-size: var(--font-lg);
    color: #666;
    line-height: 1.8;
    max-width: 90%;
    text-align: right;
    margin-left: auto;
}

.contact-right {
    position: relative;
    overflow: hidden;
}

.contact-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('ReLoam PitchDeck/aerial_field_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-form-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 500px;
    background: rgba(37, 72, 29, 0.85);
    backdrop-filter: blur(10px);
    padding: var(--space-6);
    z-index: 3;
    border: var(--border-thin) solid rgba(255, 255, 255, 0.2);
}

.form-title {
    font-size: var(--font-2xl);
    font-weight: var(--weight-semibold);
    color: white;
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    position: relative;
    overflow: visible;
}

.contact-form::before {
    display: none;
}

.form-group {
    margin-bottom: var(--space-3);
}

.form-group label {
    display: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: var(--border-thin) solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    font-size: var(--font-base);
    font-family: inherit;
    transition: all 0.3s;
    background: transparent;
    color: white;
    box-shadow: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
    color: white;
}

.form-group select option {
    background: var(--primary-green);
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    border: var(--border-thin) solid white;
    border-radius: 0;
    font-size: var(--font-base);
    font-weight: var(--weight-semibold);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-bracket {
    font-size: var(--font-xl);
    font-weight: 300;
    opacity: 0.8;
}

.btn-submit:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    text-align: center;
    font-weight: var(--weight-semibold);
    display: none;
}

.form-status.success {
    background: var(--light-green);
    color: var(--primary-green);
    display: block;
}

.form-status.error {
    background: #dd746a;
    color: white;
    display: block;
}

.contact-shape {
    position: absolute;
    z-index: 1;
}

.contact-shape-1 {
    width: 300px;
    height: 350px;
    top: 10%;
    right: 5%;
    background-image: url('ReLoam PitchDeck/triangle_shape.svg');
    opacity: 0.1;
}

.contact-shape-2 {
    width: 280px;
    height: 320px;
    bottom: 10%;
    left: 5%;
    background-image: url('ReLoam PitchDeck/puddle.svg');
    opacity: 0.1;
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: white;
    padding: var(--space-8) 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: var(--space-6);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: var(--space-2);
}

.footer-logo p {
    font-size: var(--font-lg);
    color: var(--light-green);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: var(--font-xl);
    margin-bottom: var(--space-2);
    color: var(--bg-green);
    font-weight: var(--weight-bold);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--light-green);
    text-decoration: none;
    font-size: var(--font-base);
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--bg-green);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(193, 214, 167, 0.3);
    text-align: center;
}

.footer-bottom p {
    color: var(--light-green);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }
    
    .hero-graphics {
        height: 400px;
        order: -1;
    }
    
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .market {
        grid-template-columns: 1fr;
    }
    
    .market-stats {
        grid-template-columns: 1fr;
    }
    
    .competitive-grid,
    .demo-grid,
    .traction-grid,
    .model-grid,
    .revenue-breakdown,
    .achievements-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .donut-chart {
        width: 250px;
        height: 250px;
    }
    
    .donut-chart::before {
        width: 150px;
        height: 150px;
    }
    
    .funding-details {
        grid-template-columns: 1fr;
    }
    
    .projections-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-cta {
        width: 100%;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .contact-left {
        padding: var(--space-8) 2rem;
    }
    
    .contact-headline {
        font-size: var(--font-5xl);
        text-align: center;
        margin-bottom: var(--space-4);
    }
    
    .contact-description {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .contact-form-overlay {
        position: relative;
        transform: none;
        top: auto;
        left: auto;
        width: 100%;
        max-width: 100%;
        margin: 2rem auto;
    }
    
    .contact-image-bg {
        position: relative;
        min-height: 400px;
    }
    
    .team-members {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-connector {
        width: 3px;
        height: 40px;
        flex: 0 0 40px;
    }
    
    .process-connector::after {
        content: '↓';
        right: -8px;
        top: auto;
        bottom: -15px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: var(--space-4) 1rem;
        min-height: auto;
    }
    
    .hero-tagline {
        font-size: var(--font-xl);
    }
    
    .hero-text h1 {
        font-size: var(--font-5xl);
    }
    
    .section-title,
    .section-title-problem,
    .tech-title,
    .market-title,
    .competitive-title,
    .demo-title,
    .contact-title,
    .how-it-works .section-title {
        font-size: var(--font-5xl);
    }
    
    .contact-headline {
        font-size: var(--font-4xl);
    }
    
    .contact-left {
        padding: var(--space-6) 1.5rem;
    }
    
    .contact-form-overlay {
        padding: var(--space-4);
    }
    
    .about-intro {
        font-size: 1.8rem;
    }
    
    .traction-number {
        font-size: 3.5rem;
    }
    
    .stat-bubble h3 {
        font-size: var(--font-6xl);
    }
    
    .stat-bubble p {
        font-size: var(--font-xl);
    }
    
    .investment-cta h3 {
        font-size: var(--font-4xl);
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        flex-direction: column;
        top: 1rem;
        right: 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}
