/* Base Layout */
:root {
    --section-padding: 5rem 0;
    --section-padding-sm: 3rem 0;
    --content-max-width: 1200px;
    --content-padding: 0 1.5rem;
    --grid-gap: 1rem;
    --card-padding: 2rem;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: var(--content-padding);
    box-sizing: border-box;
}

/* Base Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Responsive Section Padding */
@media (max-width: 1024px) {
    :root {
        --section-padding: 4rem 0;
        --section-padding-sm: 2.5rem 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
        --section-padding-sm: 2rem 0;
        --content-padding: 0 1.25rem;
        --card-padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 2.5rem 0;
        --section-padding-sm: 1.5rem 0;
        --content-padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* Base Styles */
:root {
    /* Primary Colors - Navy Blue & Gold */
    --primary-navy: #1e2a78;
    --primary-gold: #d4af37;
    --navy-dark: #151f5c;
    --navy-light: #2d3a8c;
    --gold-light: #e6c757;
    --gold-dark: #b8941f;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light-grey: #f8f9fa;
    --bg-grey: #e9ecef;
    --bg-dark-grey: #6c757d;
    
    /* CTA Colors - Burnt Orange & Teal */
    --cta-orange: #cc5500;
    --cta-orange-hover: #b84900;
    --cta-teal: #008080;
    --cta-teal-hover: #006666;
    
    /* Text Colors */
    --text-dark: #2c3e50;
    --text-medium: #495057;
    --text-light: #6c757d;
    --text-white: #ffffff;
    
    /* Fonts */
    --font-primary: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Utility colors */
    --white: #FFFFFF;
    --black: #000000;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Feedback colors */
    --red: #EF4444;
    --green: #10B981;
    --blue: #3B82F6;
    --yellow: #F59E0B;
    --indigo: #6366F1;
    --purple: #8B5CF6;
    --pink: #EC4899;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-secondary: 'Merriweather', Georgia, 'Times New Roman', Times, serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* Border Radius */
    --border-radius: 50px;
    --border-radius-lg: 50px;
    --border-radius-full: 50px;

    /* Shadows */
    --shadow: 0 4px 6px -1px rgba(11, 19, 43, 0.1), 0 2px 4px -1px rgba(11, 19, 43, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(11, 19, 43, 0.1), 0 4px 6px -2px rgba(11, 19, 43, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(11, 19, 43, 0.1), 0 10px 10px -5px rgba(11, 19, 43, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(11, 19, 43, 0.25);
    --shadow-2xl: 0 25px 50px -12px rgba(11, 19, 43, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(11, 19, 43, 0.06);
    --shadow-outline: 0 0 0 3px rgba(31, 171, 137, 0.5);
    --shadow-none: 0 0 #0000;
    --shadow-gold: 0 0 0 2px rgba(201, 162, 39, 0.4);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-fast: all 0.15s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--primary-navy);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--platinum);
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    font-weight: 600;
}

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

a {
    color: var(--emerald);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-top: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #cc5500;
    color: white;
}

.btn-primary:hover {
    background-color: #b34b00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 85, 0, 0.3);
}

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

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    color: var(--primary-navy);
}

.header.scrolled {
    padding: 0.5rem 0;
    background-color: var(--bg-white) !important;
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--platinum);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--gold);
}

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

.nav-links li a {
    color: var(--primary-navy);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.nav-links li a:hover {
    color: var(--primary-gold);
    background-color: rgba(212, 175, 55, 0.1);
}

.nav-links li a.active {
    color: var(--primary-gold);
    font-weight: 600;
}

.nav-links .btn-primary {
    margin-left: 1.5rem;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    background-color: #cc5500;
    color: white !important;
    border: 2px solid #cc5500;
}

.nav-links .btn-primary:hover {
    background-color: #b34b00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 85, 0, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--platinum);
    margin: 3px 0;
    transition: var(--transition);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 2rem auto 3rem;
    }
    
    .contact-email-card,
    .prototype-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .prototype-card {
        padding: 1.5rem;
    }
    
    .prototype-link, 
    .contact-email-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-cta {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--midnight-blue);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        padding: 2rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
        display: block;
        border-radius: var(--border-radius);
    }
    
    .nav-links li a:hover {
        background-color: rgba(230, 230, 230, 0.1);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, rgba(30, 42, 120, 0.95) 0%, rgba(21, 31, 92, 0.98) 100%), url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: var(--text-white);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: calc(100vh - 80px);
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--gold-light);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero h2:after {
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: rgba(230, 230, 230, 0.95);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 2rem 0;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: translateY(-5px);
}

/* Problem Section */
.problem-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid var(--bg-grey);
    border-bottom: 1px solid var(--bg-grey);
}

.problem-intro {
    max-width: 1200px;
    margin: 0 auto 4rem;
    text-align: center;
}

.problem-intro-content {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

.challenges-intro {
    max-width: 1000px;
    margin: 0 auto 2rem;
    text-align: center;
}

.daily-challenges-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.daily-challenges-content {
    flex: 1;
    text-align: left;
    padding-right: 2rem;
}

.daily-challenges-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 1rem;
    font-size: 1.05rem;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--midnight-blue);
    margin: 2rem auto 0;
    max-width: 800px;
    line-height: 1.7;
}

.challenges-container {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 3rem;
}

.daily-challenges-title {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.daily-challenges-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--cta-orange);
    border-radius: 2px;
}

.challenges-image-container {
    flex: 0 0 45%;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    background: white;
    padding: 0.75rem;
    margin: 0;
}

.challenges-image-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.challenges-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
    margin: 2rem 0;
    width: 100%;
}

@media (max-width: 1200px) {
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1000px;
    }
}

@media (max-width: 768px) {
    .challenges-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        padding: 0 1.5rem;
    }
}

.challenge-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cta-orange), #ff9a5a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.challenge-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-gold);
    background: white;
}

.challenge-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--cta-orange);
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.challenge-card:hover .challenge-icon {
    background: linear-gradient(135deg, var(--cta-orange) 0%, #ff7e5f 100%);
    color: white;
    transform: translateY(-5px) rotateY(180deg);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.challenge-content {
    width: 100%;
}

.challenge-content h3 {
    color: var(--primary-navy);
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.challenge-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--emerald);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.challenge-card:hover .challenge-content h3:after {
    width: 80px;
    background: var(--cta-orange);
}

.challenge-content p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.challenge-impact {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.challenge-impact:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--emerald), var(--gold));
}

.impact-content h3 {
    color: var(--midnight-blue);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.impact-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--emerald);
    border-radius: 2px;
}

.impact-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.impact-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--gray-600);
}

.impact-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--emerald);
    font-weight: bold;
}

.impact-cta {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(230, 230, 230, 0.1);
    display: inline-block;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .daily-challenges-wrapper {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .daily-challenges-content {
        padding-right: 0;
        text-align: center;
    }
    
    .challenges-image-container {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .daily-challenges-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .daily-challenges-wrapper {
        margin-top: 2rem;
        padding: 1.25rem;
    }
    
    .challenges-image-container {
        margin: 1.25rem auto 0;
        padding: 0.75rem;
        border-radius: 8px;
    }
    
    
    .challenge-card {
        padding: 2rem 1.5rem;
    }
}

/* Solution Section */
.solution-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--bg-grey);
    border-bottom: 1px solid var(--bg-grey);
    width: 100%;
    box-sizing: border-box;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.solution-intro {
    max-width: 1200px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
    transition: var(--transition);
    border: 1px solid var(--bg-grey);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
    background: var(--bg-white);
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #2563eb, #3b82f6);
    transition: all 0.3s ease;
}

.feature-card:hover:before {
    width: 6px;
    background: linear-gradient(to bottom, #1d4ed8, #3b82f6);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 128, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--cta-teal);
    font-size: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 128, 128, 0.2);
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    background: var(--cta-teal);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 128, 128, 0.2);
}

.feature-content {
    width: 100%;
    margin-top: 0.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-content h3 {
    color: var(--midnight-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.feature-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--emerald);
    border-radius: 2px;
    transition: var(--transition);
}

.feature-card:hover .feature-content h3:after {
    width: 60px;
}

.feature-content p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.solution-cta {
    max-width: 1200px;
    margin: 4rem auto 0;
    text-align: center;
    position: relative;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    background: var(--primary-navy);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--primary-navy);
}

.solution-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--gold-light));
}

.solution-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    border-radius: 4px 4px 0 0;
}

.solution-cta-content {
    position: relative;
    z-index: 2;
}

.solution-cta p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--platinum);
    margin: 0;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 2rem auto 3rem;
    }
    
    .contact-email-card,
    .prototype-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .prototype-card {
        padding: 1.5rem;
    }
    
    .prototype-link, 
    .contact-email-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-cta {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    .solution-features {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .solution-cta {
        padding: 2rem 1.5rem;
    }
    
    .solution-cta p {
        font-size: 1.1rem;
    }
}

/* Our Offer to You Section */
.offer-section {
    padding: var(--section-padding);
    background-color: var(--bg-light-grey);
    position: relative;
    overflow: hidden;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.offer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}

.offer-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--bg-grey);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-gold);
}

.offer-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin: 0 auto 1.5rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(30, 42, 120, 0.05);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 0;
    line-height: 1;
}

.offer-card h3 {
    color: var(--primary-navy);
    margin: 1rem 0;
    font-size: 1.25rem;
}

.offer-card p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.offer-cta {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
    padding: 2rem;
    background: rgba(30, 42, 120, 0.03);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-gold);
}

.offer-cta p {
    font-size: 1.1rem;
    color: var(--primary-navy);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 2rem auto 3rem;
    }
    
    .contact-email-card,
    .prototype-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .prototype-card {
        padding: 1.5rem;
    }
    
    .prototype-link, 
    .contact-email-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-cta {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-card {
        padding: 1.5rem;
    }
    
    .offer-cta {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

/* What We're Looking For Section */
.looking-for-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
    width: 100%;
    box-sizing: border-box;
}

.looking-for-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.looking-for-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.looking-for-content > p {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.looking-for-list {
    list-style: none;
    padding: 0;
    margin: 3rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.looking-for-list li {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: left;
    transition: var(--transition);
    border: 1px solid var(--bg-grey);
    display: flex;
    flex-direction: column;
   
}

.looking-for-list li:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-gold);
}

.looking-for-list i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.looking-for-list h3 {
    color: var(--primary-navy);
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
}

.looking-for-list p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

.looking-for-cta {
    max-width: 700px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: rgba(30, 42, 120, 0.03);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-gold);
}

.looking-for-cta p {
    font-size: 1.1rem;
    color: var(--primary-navy);
    font-style: italic;
    margin: 0;
    line-height: 1.7;
}

/* Role Section */
.role-section {
    padding: var(--section-padding);
    position: relative;
    background: #ffffff;
}

.role-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.role-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.role-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.75rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.role-focus {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--primary-navy);
    margin-bottom: 3.5rem;
    font-weight: 500;
    position: relative;
    padding-left: 2.5rem;
    max-width: 90%;
}

.role-focus::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 1.75rem;
    height: 3px;
    background: var(--cta-orange);
}

.role-invitation {
    margin: 4rem 0 2rem;
    position: relative;
}

.invitation-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--primary-navy);
    font-weight: 600;
    margin: 0 0 2rem 0;
    position: relative;
}

/* Role Card Styles */
.role-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
    margin: 2rem 0;
}

.role-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.role-card-content {
    padding: 2.5rem;
}

.role-card-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.role-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cta-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.role-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1rem;
    height: 2px;
    background: var(--cta-orange);
    transform: translateY(-50%);
}

.role-title {
    font-size: 1.7rem;
    line-height: 1.35;
    color: var(--primary-navy);
    margin: 0.5rem 0 0 0;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.role-description {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 1.5rem 0 0 0;
    font-weight: 400;
    max-width: 90%;
}

.section-tag {
    display: inline-block;
    background: var(--cta-orange);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .role-content {
        padding: 0 2.5rem;
    }
    
    .role-title {
        font-size: 1.7rem;
        line-height: 1.35;
    }
    
    .role-description {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .role-section {
        padding: 4rem 0 5rem;
    }
    
    .role-content {
        padding: 0 1.5rem;
    }
    
    .role-intro {
        font-size: 1.15rem;
    }
    
    .role-focus {
        font-size: 1.2rem;
        padding-left: 2rem;
        max-width: 100%;
    }
    
    .invitation-text {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
    }
    
    .role-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .role-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
}

/* Market Section */
.market-section {
    background: #ffffff;
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.market-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.market-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.market-section .section-header {
    margin-bottom: 3.5rem;
}

.market-section .section-title {
    color: var(--primary-navy);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.market-section .section-subtitle {
    color: var(--text-light);
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.market-section .section-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

/* Market Content Sections */
.market-intro,
.market-trends,
.market-opportunity,
.market-conclusion {
    margin-bottom: 4rem;
}

.market-intro p,
.market-trends p,
.market-opportunity p,
.market-conclusion p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .market-section .section-title {
        font-size: 2.25rem;
    }
    
    .market-section .section-subtitle {
        font-size: 1.15rem;
    }
    
    .market-intro,
    .market-trends,
    .market-opportunity,
    .market-conclusion {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .market-section .section-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .market-section .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .market-section .section-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.9rem;
    }
    
    .market-intro p,
    .market-trends p,
    .market-opportunity p,
    .market-conclusion p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .market-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .market-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .market-content {
        padding: 0 1rem;
    }
    
    .market-section .section-header {
        margin-bottom: 2rem;
    }
    
    .market-intro,
    .market-trends,
    .market-opportunity,
    .market-conclusion {
        margin-bottom: 2.5rem;
    }
    
    .region-list,
    .challenges-grid {
        margin: 2rem 0;
    }
}

/* .market-section .section-header h2 {
    color: #111827;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    display: inline-block;
}

.market-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #3b82f6;
    border-radius: 2px;
    left: 50%;
    transform: translateX(-50%);
} */

.market-section p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1.1rem;
}

.market-section strong {
    color: #1e40af;
    font-weight: 600;
}

/* Market Stats */
.market-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0 4rem;
    flex-wrap: wrap;
}

.stat-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card.highlight {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stat-card.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
}

.stat-card.highlight .stat-value,
.stat-card.highlight .stat-label,
.stat-card.highlight .stat-source {
    color: white;
}

.stat-card.highlight .stat-value {
    font-size: 2.5rem;
}

.stat-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-label {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.stat-trend {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: #f0f9ff;
    color: #0369a1;
}

.stat-trend.up {
    background: #f0fdf4;
    color: #166534;
}

.stat-trend.down {
    background: #fef2f2;
    color: #991b1b;
}

.stat-trend svg {
    width: 16px;
    height: 16px;
}

.stat-source {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 1rem;
    font-style: italic;
}

/* Market Content */
.market-content {    
    margin: 0 auto 4rem;
}

.market-text {
    margin-bottom: 3rem;
    text-align: center;
}

.market-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #374151;
}

/* Region List */
.region-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
    margin: 2rem 0;
}

.region-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 1.75rem;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.region-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.region-header {
    margin-bottom: 0.75rem;
}

.region-item h4 {
    font-size: 1.25rem;
    color: #111827;
    margin: 0;
    font-weight: 600;
}

.region-item p {
    color: #4b5563;
    margin: 0;
    line-height: 1.7;
    text-align: left;
    font-size: 1rem;
}

/* Market Conclusion */
.market-conclusion {
    text-align: center;
    max-width: 800px;
    margin: 5rem auto 0;
    padding: 0 1rem;
}

.market-conclusion h3 {
    font-size: 1.75rem;
    color: #111827;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.market-conclusion p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.market-conclusion .btn {
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.market-conclusion .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

/* Responsive Adjustments */
.market-section .section-header p {
    color: #4b5563;
    line-height: 1.7;
    margin: 0 auto 2rem;
    max-width: 800px;
    text-align: center;
    font-size: 1.1rem;
}

@media (max-width: 1200px) {
    .region-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .market-stats {
        gap: 1rem;
    }
    
    .stat-card {
        min-width: 100%;
    }
    
    .region-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .market-section {
        padding: 4rem 0;
    }
    
    .market-section .section-header h2,
    .market-conclusion h3 {
        font-size: 2rem;
    }
    
    .region-list {
        grid-template-columns: 1fr;
    }
    
    .market-conclusion {
        margin-top: 3.5rem;
    }
    
    .region-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .market-section .section-header h2,
    .market-conclusion h3 {
        font-size: 1.75rem;
    }
    
    .market-conclusion {
        margin-top: 3rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-card.highlight .stat-value {
        font-size: 2.25rem;
    }
}
/* 
.market-section .section-header h2 {
    margin-bottom: 1rem;
    font-size: 2.25rem;
    color: #111827;
    position: relative;
    display: inline-block;
}

.market-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
} */

.market-section .section-header p {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.market-section .section-tag {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

/* .market-section h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1.25rem;
    line-height: 1.2;
} */

.market-section .section-subtitle {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 700px;
}

/* Market Highlights */
.market-highlights {
    margin-bottom: 5rem;
}

.highlight-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.highlight-card h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f3f4f6;
}

.highlight-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight-card p:last-child {
    margin-bottom: 0;
}

.highlight-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.highlight-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.highlight-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
}

.market-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.stat-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-feature-settings: 'tnum';
}

.stat-value.highlight {
    color: #2563eb;
    position: relative;
    display: inline-block;
}

.stat-value.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(37, 99, 235, 0.2);
    z-index: -1;
    border-radius: 3px;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
}

.stat-arrow {
    font-size: 1.75rem;
    color: #94a3b8;
    margin: 0 0.5rem;
    opacity: 0.7;
}

.growth-rate {
    font-size: 1.1rem;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.growth-badge {
    background: #dcfce7;
    color: #166534;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* Market Regions */
.market-regions {
    margin: 5rem 0;
}

.market-regions h3 {
    text-align: center;
}

.regions-title {
    text-align: center;
    font-size: 1.75rem;
    color: #1e293b;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.regions-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 3px;
}

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

.region-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--region-color, #3b82f6);
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.region-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    gap: 0.75rem;
}

.region-flag {
    font-size: 1.75rem;
    line-height: 1;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.region-card h4 {
    font-size: 1.25rem;
    color: #111827;
    margin: 0;
    font-weight: 600;
}

.region-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

.region-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--region-color, #3b82f6);
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.region-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 0.75rem;
}

.region-flag {
    font-size: 1.75rem;
    line-height: 1;
}

.region-card h4 {
    font-size: 1.25rem;
    color: #1e293b;
    margin: 0;
}

.region-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.region-stats .stat {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.85rem;
    color: #64748b;
    display: block;
    line-height: 1.4;
}

.region-trend {
    font-size: 0.95rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
}

.trend-up {
    color: #166534;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* Top Markets */
.top-markets {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.top-markets h4 {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.market-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 auto;
    max-width: 800px;
}

.market-tag {
    background: #f3f4f6;
    color: #374151;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
}

.market-tag:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

/* Interactive Elements */
.interactive-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0 2rem;
}

.toggle-btn {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.toggle-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.toggle-btn.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.interactive-content {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 1.5rem;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.content-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.content-pane.active {
    display: block;
}

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

/* Growth Chart */
.growth-chart {
    margin: 2rem 0;
}

.chart-bar {
    height: 60px;
    background: linear-gradient(90deg, var(--color, #3b82f6), color-mix(in srgb, var(--color, #3b82f6) 80%, #000));
    margin: 1.5rem 0;
    border-radius: 8px;
    position: relative;
    width: var(--value);
    transition: width 1s ease-out;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.chart-label {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.chart-note {
    text-align: center;
    color: #6b7280;
    font-style: italic;
    margin-top: 2rem;
}

/* Metrics */
.adoption-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.metric {
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.metric:hover {
    transform: translateY(-5px);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.metric-label {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Savings Grid */
.savings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.savings-item {
    display: flex;
    align-items: center;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.savings-item:hover {
    transform: translateY(-3px);
}

.savings-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0369a1;
    flex-shrink: 0;
}

.savings-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.25rem;
}

.savings-desc {
    color: #4b5563;
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .interactive-toggle {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .toggle-btn {
        width: 100%;
    }
    
    .interactive-content {
        padding: 1.5rem;
    }
    
    .adoption-metrics, .savings-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-bar {
        height: 50px;
    }
}

/* Market CTA */
.market-cta {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    color: white;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.market-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(30deg);
}

.market-cta h3 {
    font-size: 2rem;
    margin: 0 0 1rem;
    position: relative;
    z-index: 1;
}

.market-cta p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.market-cta .btn {
    position: relative;
    z-index: 1;
    background: white;
    color: #1e40af;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.market-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .market-section h2 {
        font-size: 2.25rem;
    }
    
    .highlight-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .market-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .market-cta h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .market-section {
        padding: 3rem 0;
    }
    
    .market-section .section-header h2 {
        font-size: 2rem;
    }
    
    .highlight-card {
        padding: 1.75rem 1.5rem;
    }
    
    .market-tags {
        gap: 0.5rem;
    }
    
    .market-tag {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    .market-section h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .market-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .stat-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .region-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .market-cta h3 {
        font-size: 1.5rem;
    }
    
    .market-cta .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .market-section .section-header h2 {
        font-size: 1.75rem;
    }
    
    .highlight-card {
        padding: 1.5rem 1.25rem;
    }
    
    .region-card {
        padding: 1.5rem;
    }
    
    .market-tag {
        padding: 0.35rem 0.9rem;
        font-size: 0.85rem;
    }
    
    .highlight-card {
        padding: 1.75rem 1.25rem;
    }
    
    .region-stats {
        grid-template-columns: 1fr;
    }
    
    .market-cta {
        padding: 2rem 1.25rem;
    }
}

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

[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos^="fade"][data-aos^="fade"] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos^="fade"][data-aos^="fade"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos-delay] {
    transition-delay: 0s;
}

[data-aos-delay].aos-animate {
    transition-delay: var(--aos-delay);
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    flex: 1;
    min-width: 250px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    color: var(--teal);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.market-regions {
    margin-top: 4rem;
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.region-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--navy);
}

.region-card:hover {
    transform: translateY(-5px);
}

.region-card h4 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.region-card p {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

/* Role Section */
.role-section {  
    background-color: var(--bg-light-grey);
}

.role-content {
    max-width: 1200px;
    margin: 0 auto;
}

.role-text {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-grey);
}

.role-text .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.role-highlight {
    background: rgba(30, 42, 120, 0.03);
    border-left: 4px solid var(--primary-gold);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    border-radius: 0 8px 8px 0;
}

.role-highlight h3 {
    color: var(--primary-navy);
    margin-top: 0;
    margin-bottom: 1rem;
}

.role-highlight p {
    margin: 0.5rem 0;
    color: var(--text-medium);
    line-height: 1.7;
}

.offer-heading {
    text-align: center;
    color: var(--primary-navy);
    margin: 3rem 0 1.5rem;
    font-size: 1.5rem;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

offer-card {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

offer-card:hover {
    transform: translateY(-5px);
}

offer-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

offer-card h4 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--bg-light-grey);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}
    

.contact-content {
    max-width: 1200px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 3rem 0;
}

.contact-email-card,
.prototype-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-email-card:hover,
.prototype-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(30, 42, 120, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-navy);
    font-size: 2rem;
    text-align: center;
    padding: 0;
    line-height: 1;
}

.contact-email-card .contact-icon {
    background: rgba(30, 42, 120, 0.05);
    color: var(--primary-navy);
}

.prototype-card .contact-icon {
    background: rgba(30, 42, 120, 0.1);
    color: var(--primary-navy);
}

.contact-email-card h3,
.prototype-card h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-email-card p,
.prototype-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.prototype-link {
    display: inline-block;
    background: #cc5500;
    color: white !important;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none !important;
    margin: 1rem 0;
    transition: all 0.3s ease;
    border: 2px solid #cc5500;
}

.prototype-link:hover {
    background: #b34b00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 85, 0, 0.3);
}

.prototype-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
    display: block;
}

.contact-cta {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30, 42, 120, 0.03) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(30, 42, 120, 0.1);
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gold);
}

.contact-email-btn {
    display: inline-flex;
    align-items: center;
    background: #cc5500;
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none !important;
    margin: 1rem 0;
    transition: all 0.3s ease;
    border: 2px solid #cc5500;
}

.contact-email-btn:hover {
    background: #b34b00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 85, 0, 0.3);
}

.contact-email-btn i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Contact Actions */
.contact-actions {
    margin-top: 1.5rem;
    text-align: center;
}

.email-display-wrapper {
    margin-bottom: 1rem;
}

.email-display {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #e1e5eb;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    position: relative;
    max-width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.email-display:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.email-icon {
    color: #4a6cf7;
    margin-right: 12px;
    font-size: 1.25rem;
}

.email-address {
    flex: 1;
    padding: 0.25rem 0.5rem;
    font-family: 'Inter', sans-serif;
    color: #2d3748;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-email-btn {
    background: white;
    border: 1px solid #e1e5eb;
    border-radius: var(--border-radius);
    color: #4a6cf7;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
    margin-left: 8px;
}

.copy-email-btn:hover {
    background: #f0f4f8;
    color: #3a56d4;
    transform: translateY(-1px);
}

.copy-email-btn .tooltip {
    visibility: hidden;
    width: 140px;
    background-color: #2d3748;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 12px;
    position: absolute;
    z-index: 10;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.copy-email-btn .tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #2d3748 transparent transparent transparent;
}

.copy-email-btn:hover .tooltip {
    visibility: visible;
    opacity: 1;
    bottom: 110%;
}

.copy-email-btn.copied .tooltip {
    background-color: #38a169;
}

.copy-email-btn.copied .tooltip::after {
    border-color: #38a169 transparent transparent transparent;
}

.copy-email-btn i {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.copy-email-btn:hover i {
    transform: scale(1.1);
}

/* Divider */
.or-divider {
    position: relative;
    color: #718096;
    text-align: center;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.or-divider::before,
.or-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #e2e8f0;
}

.or-divider::before {
    left: 0;
}

.or-divider::after {
    right: 0;
}

/* Email Action Button - Matches View Prototype */
.email-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: #cc5500;
    color: white !important;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    border: 2px solid #cc5500;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.email-action-btn i {
    margin-right: 10px;
    font-size: 1rem;
}

.email-action-btn:hover {
    background: #b34b00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 85, 0, 0.3);
    border-color: #b34b00;
}

.email-action-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(204, 85, 0, 0.3);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.contact-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--navy);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.75rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, var(--teal), var(--navy));
    transform: scale(1.1);
}

.contact-card h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.contact-card p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.contact-cta {
    color: var(--teal);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-card:hover .contact-cta {
    color: var(--gold);
    transform: translateX(5px);
}


/* Footer */
.footer {
    background-color: var(--primary-navy);
    color: white;
    padding: 1.2rem 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
   
}

.footer-bottom {
    color: white;
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-bottom p {
    margin-bottom: 0px !important;
    color: white !important;
}

/* Responsive Styles */
@media (max-width: 1240px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
        min-height: auto;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 2rem;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .hero h2 {
        font-size: 1.75rem;
    }
    
    .solution-content {
        flex-direction: column-reverse;
    }
    
    .solution-text,
    .solution-image {
        width: 100%;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 2rem auto 3rem;
    }
    
    .contact-email-card,
    .prototype-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .prototype-card {
        padding: 1.5rem;
    }
    
    .prototype-link, 
    .contact-email-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-cta {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--midnight-blue);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        padding: 2rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
        display: block;
        border-radius: var(--border-radius);
    }
    
    .nav-links li a:hover {
        background-color: rgba(230, 230, 230, 0.1);
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        min-height: 700px;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section {
        padding: var(--spacing-lg) 0;
    }
    
    
    .market-stats {
        flex-direction: column;
    }
    
    .stat-item {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.5rem;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero h2 {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--primary-navy);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.scroll-to-top:hover {
    background: var(--navy-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
