/* Smaller Contact Form on Desktop */
@media screen and (min-width: 769px) {
  .form {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem 1.25rem;
  }
  .form__group {
    margin-bottom: 1.25rem;
  }
  .form__input {
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
    border-radius: 6px;
    min-height: 36px;
  }
  textarea.form__input {
    min-height: 80px;
    padding-top: 0.75rem;
  }
  .form__label {
    font-size: 0.95rem;
    top: 0.5rem;
    left: 0.75rem;
  }
  .button--primary {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    min-width: 100px;
  }
}
/* Import modern fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Base Styles */
:root {
    /* Core Brand Colors - More Professional Blue */
    --primary-50: hsl(215, 80%, 95%);
    --primary-100: hsl(215, 80%, 90%);
    --primary-200: hsl(215, 80%, 80%);
    --primary-300: hsl(215, 80%, 70%);
    --primary-400: hsl(215, 80%, 60%);
    --primary-500: hsl(215, 80%, 45%);  /* Main brand color - deeper blue */
    --primary-600: hsl(215, 80%, 40%);
    --primary-700: hsl(215, 80%, 35%);
    --primary-800: hsl(215, 80%, 25%);
    --primary-900: hsl(215, 80%, 20%);

    /* Company Logo Colors */
    --logo-blue: hsl(215, 80%, 45%);
    --logo-gold: hsl(45, 90%, 45%);
    
    /* Accent Colors */
    --accent-500: var(--logo-gold);  /* Using logo gold as accent */
    --accent-600: hsl(45, 90%, 40%);

    /* Green Colors for CTA Buttons */
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;

    /* Neutral Colors */
    --neutral-50: hsl(210, 20%, 98%);
    --neutral-100: hsl(210, 20%, 96%);
    --neutral-200: hsl(210, 16%, 93%);
    --neutral-300: hsl(210, 14%, 89%);
    --neutral-400: hsl(210, 12%, 70%);
    --neutral-500: hsl(210, 10%, 40%);
    --neutral-600: hsl(210, 12%, 30%);
    --neutral-700: hsl(210, 14%, 25%);
    --neutral-800: hsl(210, 16%, 20%);
    --neutral-900: hsl(210, 20%, 15%);

    /* Semantic Colors */
    --text-primary: var(--neutral-900);
    --text-secondary: var(--neutral-600);
    --text-tertiary: var(--neutral-500);
    --text-on-dark: var(--neutral-50);
    
    /* Background Colors */
    --surface-primary: var(--neutral-50);
    --surface-secondary: var(--neutral-100);
    --surface-tertiary: var(--neutral-200);
    
    /* State Colors */
    --error-light: hsl(354, 100%, 95%);
    --error-base: hsl(354, 70%, 54%);
    --error-dark: hsl(354, 70%, 45%);
    
    --success-light: hsl(134, 100%, 95%);
    --success-base: hsl(134, 61%, 41%);
    --success-dark: hsl(134, 61%, 35%);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    --gradient-surface: linear-gradient(180deg, var(--surface-primary), var(--surface-secondary));
    --gradient-overlay: linear-gradient(180deg, hsla(0, 0%, 0%, 0.7), hsla(0, 0%, 0%, 0.3));

    /* Shadows */
    --shadow-sm: 0 2px 8px -2px hsla(210, 20%, 15%, 0.1);
    --shadow-md: 0 4px 12px -4px hsla(210, 20%, 15%, 0.15);
    --shadow-lg: 0 8px 20px -6px hsla(210, 20%, 15%, 0.2);

    /* Enhanced Animation System */
    --animation-duration: 0.3s;
    --animation-duration-slow: 0.5s;
    --animation-duration-fast: 0.15s;
    
    --animation-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-timing-bounce: cubic-bezier(0.68, -0.6, 0.32, 1.6);
    --animation-timing-spring: cubic-bezier(0.16, 1, 0.3, 1);
    
    --transition-transform: transform var(--animation-duration) var(--animation-timing);
    --transition-opacity: opacity var(--animation-duration) var(--animation-timing);
    --transition-colors: background-color var(--animation-duration) var(--animation-timing),
                        border-color var(--animation-duration) var(--animation-timing),
                        color var(--animation-duration) var(--animation-timing);
    
    --nav-height: 60px;
    
    /* Animation Triggers */
    --scroll-threshold: 100px;
}

/* Animation Utilities */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn var(--animation-duration) var(--animation-timing) forwards;
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp var(--animation-duration) var(--animation-timing) forwards;
}

.animate-fade-down {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeDown var(--animation-duration) var(--animation-timing) forwards;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeLeft var(--animation-duration) var(--animation-timing) forwards;
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(20px);
    animation: fadeRight var(--animation-duration) var(--animation-timing) forwards;
}

.animate-scale {
    transform: scale(0.95);
    animation: scaleIn var(--animation-duration) var(--animation-timing-spring) forwards;
}

/* Animation Modifiers */
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }

.animate-duration-slow { animation-duration: var(--animation-duration-slow); }
.animate-duration-fast { animation-duration: var(--animation-duration-fast); }

/* Transition Utilities */
.transition-transform { transition: var(--transition-transform); }
.transition-opacity { transition: var(--transition-opacity); }
.transition-colors { transition: var(--transition-colors); }
.transition-all {
    transition:
        var(--transition-transform),
        var(--transition-opacity),
        var(--transition-colors);
}

/* Hover Effects */
.hover-lift {
    transition: var(--transition-transform);
}

.hover-lift:hover {
    transform: translateY(-4px);
}

.hover-scale {
    transition: var(--transition-transform);
}

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

/* Enhanced Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

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

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Scroll-Triggered Animations */
[data-scroll] {
    opacity: 0;
    transition: var(--transition-transform), var(--transition-opacity);
}

[data-scroll="fade-up"] {
    transform: translateY(20px);
}

[data-scroll="fade-down"] {
    transform: translateY(-20px);
}

[data-scroll="fade-left"] {
    transform: translateX(-20px);
}

[data-scroll="fade-right"] {
    transform: translateX(20px);
}

[data-scroll="scale"] {
    transform: scale(0.95);
}

[data-scroll].in-view {
    opacity: 1;
    transform: translate(0) scale(1);
}

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

/* Update color references */
body {
    color: var(--text-primary);
    background-color: var(--surface-primary);
}

/* Header styles with scroll behavior */
.nav {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    height: 64px;
    display: flex;
    align-items: center;
    position: relative;
}

.nav.scrolled {
    background: rgba(18, 24, 38, 0.98);
    box-shadow: var(--shadow-md);
}

    /* (removed conflicting rule, see original at line 574) */

/* Enhanced Layout System */
:root {
    /* Layout Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-8: 3rem;
    --space-10: 4rem;
    --space-12: 6rem;

    /* Container Widths */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;

    /* Grid System */
    --grid-gap: var(--space-6);
    --grid-gap-sm: var(--space-4);
    
    /* Section Spacing */
    --section-spacing: var(--space-12);
    --section-spacing-sm: var(--space-8);
}

.container {
    width: 100%;
    max-width: var(--container-xl);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

.container--sm { max-width: var(--container-sm); }
.container--md { max-width: var(--container-md); }
.container--lg { max-width: var(--container-lg); }

/* Grid Layout */
.grid {
    display: grid;
    gap: var(--grid-gap);
}

.grid--sm-gap {
    gap: var(--grid-gap-sm);
}

.grid--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Spacing Utilities */
.mt-auto { margin-top: auto; }
.mb-auto { margin-bottom: auto; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

/* Section Layout */
.section {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}

.section--sm {
    padding-top: var(--section-spacing-sm);
    padding-bottom: var(--section-spacing-sm);
}

/* Typography System */
:root {
    /* Font families */
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Font sizes - Using fluid typography with clamp() */
    --text-xs: clamp(0.75rem, 0.7vw + 0.6rem, 0.875rem);
    --text-sm: clamp(0.875rem, 0.75vw + 0.7rem, 1rem);
    --text-base: clamp(1rem, 0.8vw + 0.8rem, 1.125rem);
    --text-lg: clamp(1.125rem, 1vw + 0.9rem, 1.25rem);
    --text-xl: clamp(1.25rem, 1.25vw + 1rem, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.75vw + 1.2rem, 2rem);
    --text-3xl: clamp(2rem, 2.5vw + 1.5rem, 3rem);
    --text-4xl: clamp(2.5rem, 3.5vw + 1.75rem, 4rem);
    
    /* Line heights */
    --leading-tight: 1.2;
    --leading-snug: 1.4;
    --leading-normal: 1.6;
    --leading-relaxed: 1.8;
    
    /* Letter spacing */
    --tracking-tight: -0.02em;
    --tracking-normal: 0;
    --tracking-wide: 0.05em;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    font-weight: 400;
    color: var(--text-color);
    overflow-x: hidden;
    padding-top: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */

.nav__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 2rem;
}

.nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #222;
    font-weight: bold;
    font-size: 1.25rem;
}

.nav__logo img {
    height: 36px;
    width: auto;
    margin-right: 0.5rem;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav__link {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.nav__link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__link:hover {
    background: #f2f2f2;
    color: #0077cc;
}

.nav__link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav__link--active {
    color: #0077cc;
    font-weight: 600;
}

.nav__link--active::before {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-toggle:hover {
    background-color: var(--surface-secondary);
}

.nav-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-100);
}

/* Button Styles */
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all var(--animation-duration) ease;
    border: none;
    cursor: pointer;
}

.button--primary {
    background: #0077cc;
    color: #fff;
    border: none;
    box-shadow: none;
    border-radius: 24px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.button--primary:hover {
    background: #005fa3;
    color: #fff;
}

/* Login Button Styles */


/* Hero Section */
/* Enhanced Hero Section with Modern Design */
.hero {
    width: 100%;
    min-height: 400px;
    background: #f7f7f7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0 2rem 0;
    color: #222;
}

.hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 105%;
    min-height: 105%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.1);
    object-fit: cover;
    z-index: 0;
    transition: transform 0.8s var(--animation-timing-spring);
    filter: brightness(0.8) contrast(1.1);
}

.hero:hover .hero__video {
    transform: translate(-50%, -50%) scale(1.05);
}

@keyframes gradientFloat {
    0% {
        background-position: 0% 50%;
        transform: translateY(0);
    }
    50% {
        background-position: 100% 50%;
        transform: translateY(-10px);
    }
    100% {
        background-position: 0% 50%;
        transform: translateY(0);
    }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        hsla(215, 80%, 20%, 0.6) 0%,
        hsla(45, 90%, 25%, 0.4) 50%,
        hsla(215, 80%, 20%, 0.6) 100%
    );
    background-size: 300% 300%;
    animation: gradientFloat 20s ease infinite;
    z-index: 1;
    backdrop-filter: blur(2px);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: min(900px, 90%);
    padding: clamp(2rem, 5vw, 4rem);
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    animation: heroContentReveal 1.2s var(--animation-timing-spring) forwards;
    animation-delay: 0.3s;
}

@keyframes heroContentReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Text utilities */
.text-accent {
    color: var(--green-500);
}

.hero__title .text-accent {
    background: linear-gradient(135deg, var(--green-400), var(--green-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
    letter-spacing: -0.02em;
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes subtitleReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hero Buttons Container */
.hero__buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

/* Enhanced CTA buttons in hero */
.hero .button--primary {
    background: #0077cc;
    color: #fff;
    border: none;
    box-shadow: none;
    border-radius: 24px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    min-width: 140px;
    text-align: center;
    transition: background 0.2s, color 0.2s;
}

.hero .button--primary:nth-child(1) { animation-delay: 1s; }
.hero .button--primary:nth-child(2) { animation-delay: 1.1s; }
.hero .button--primary:nth-child(3) { animation-delay: 1.2s; }

@keyframes buttonReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .button--primary:hover {
    background: #005fa3;
    color: #fff;
}

.hero .button--primary:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Enhanced Mission & Vision Section */
.mission-vision {
    padding: 6rem 2rem;
    background: var(--gradient-surface);
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right,
        transparent,
        var(--primary-200),
        transparent
    );
}

.mission-vision__container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-4);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: var(--grid-gap);
}

.mission-vision__item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow:
        0 4px 24px -1px rgba(0, 0, 0, 0.1),
        0 2px 8px -1px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.mission-vision__item:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 32px -2px rgba(0, 0, 0, 0.12),
        0 4px 16px -2px rgba(0, 0, 0, 0.08);
}

.mission-vision__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transform: scaleX(0.7);
    transition: all 0.4s ease;
}

.mission-vision__item:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.mission-vision__image {
    margin: -2rem -2rem 1.5rem -2rem;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    position: relative;
}

.mission-vision__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top,
        rgba(255, 255, 255, 0.95),
        transparent
    );
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.mission-vision__item:hover .mission-vision__image::after {
    opacity: 0.6;
}

.mission-vision__image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.mission-vision__item:hover .mission-vision__image img {
    transform: scale(1.1) rotate(-1deg);
}

.mission-vision__item.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mission-vision__item h2 {
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: var(--text-2xl);
    font-weight: 700;
    letter-spacing: var(--tracking-tight);
    line-height: var(--leading-tight);
}

.mission-vision__item p {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.mission-vision__item ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.mission-vision__item li {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    margin-bottom: 1rem;
    color: var(--text-secondary);
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.mission-vision__item li:hover {
    transform: translateX(4px);
    color: var(--primary-600);
}

/* Add staggered animation for list items */
.mission-vision__item.animate li {
    opacity: 0;
    transform: translateX(-20px);
    animation: listItemReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mission-vision__item.animate li:nth-child(1) { animation-delay: 0.2s; }
.mission-vision__item.animate li:nth-child(2) { animation-delay: 0.3s; }
.mission-vision__item.animate li:nth-child(3) { animation-delay: 0.4s; }
.mission-vision__item.animate li:nth-child(4) { animation-delay: 0.5s; }

@keyframes listItemReveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Form Styles */
.form {
    width: 100%;
    margin: 0;
    padding: 0;
}

.form__group {
    margin-bottom: 2rem;
    position: relative;
}

.form__label {
    position: absolute;
    top: 0.75rem;
    left: 1rem;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-tertiary);
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--surface-primary);
    padding: 0 0.25rem;
    transform-origin: left top;
    z-index: 1;
}

.form__input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--neutral-200);
    border-radius: 8px;
    font-size: var(--text-base);
    background-color: var(--surface-primary);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-primary);
    -webkit-appearance: none;
    appearance: none;
}

.form__input:hover:not(:focus):not(:disabled) {
    border-color: var(--neutral-300);
}

.form__input:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px var(--primary-50);
}

.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label {
    transform: translateY(-1.4rem) scale(0.85);
    color: var(--primary-600);
    font-weight: 600;
}

.form__input::placeholder {
    color: transparent;
}

.form__input:disabled {
    background-color: var(--neutral-100);
    border-color: var(--neutral-200);
    cursor: not-allowed;
    color: var(--text-tertiary);
}

textarea.form__input {
    min-height: 140px;
    resize: vertical;
    line-height: var(--leading-relaxed);
    padding-top: 1.25rem;
}

.form__input--error {
    border-color: var(--error-base);
    background-color: var(--error-light);
}

.form__input--error + .form__label {
    color: var(--error-base);
}

.form__input--error:focus {
    box-shadow: 0 0 0 4px var(--error-light);
}

.form__error-message {
    color: var(--error-base);
    font-size: var(--text-sm);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    animation: errorMessageSlide 0.3s ease forwards;
}

@keyframes errorMessageSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form__error-message::before {
    content: '!';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: var(--error-base);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.form__errors {
    color: var(--error-base);
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border: 1px solid var(--error-base);
    border-radius: 8px;
    background-color: var(--error-light);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    animation: formMessageSlide 0.3s ease;
}

.form__success {
    color: var(--success-base);
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border: 1px solid var(--success-base);
    border-radius: 8px;
    background-color: var(--success-light);
    display: flex;
    gap: 1rem;
    align-items: center;
    animation: formMessageSlide 0.3s ease;
}

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

/* Loading state for submit button */
.button--loading {
    position: relative;
    color: transparent !important;
}

.button--loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: buttonSpin 0.6s linear infinite;
}

@keyframes buttonSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Contact Info Styles */
.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-info__item {
    margin-bottom: 1.5rem;
}

.contact-info__item h3 {
    color: var(--primary-600);
    margin-bottom: 0.5rem;
    font-size: var(--text-lg);
    font-weight: 600;
    letter-spacing: var(--tracking-tight);
}

.contact-info__item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Button Styles Update */
.button--primary {
    width: 100%;
    margin-top: 1rem;
    font-size: 1rem;
    padding: 1rem 2rem;
}

.button--primary:active {
    transform: translateY(0);
}

/* Footer Styles */
footer.mission-vision {
    margin-top: 4rem;
}

footer .mission-vision__item {
    color: var(--white);
}

footer .mission-vision__item h2 {
    color: var(--white);
    font-size: var(--text-lg);
    font-weight: 600;
    letter-spacing: var(--tracking-tight);
    margin-bottom: 1rem;
}

footer .mission-vision__item ul {
    list-style: none;
}

footer .mission-vision__item a {
    text-decoration: none;
    transition: opacity var(--animation-duration) ease;
}

footer .mission-vision__item a:hover {
    opacity: 0.8;
}

/* Animation Classes */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate {
    animation: fadeIn 0.6s ease forwards;
}

/* Enhanced Responsive Layout */
@media screen and (max-width: 1280px) {
    :root {
        --section-spacing: var(--space-10);
        --grid-gap: var(--space-5);
    }
    
    .container {
        max-width: calc(var(--container-xl) * 0.95);
    }
}

@media screen and (max-width: 1024px) {
    :root {
        --grid-gap: var(--space-4);
    }

    .grid--cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid--cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Hero buttons for tablets */
    .hero__buttons {
        gap: 1.25rem;
    }

    .hero .button--primary {
        min-width: 140px;
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --section-spacing: var(--space-8);
        --grid-gap: var(--space-4);
        --container-padding: var(--space-4);
    }

    .container {
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }

    .grid--cols-2 {
        grid-template-columns: 1fr;
    }

    .section {
        padding-top: var(--section-spacing);
        padding-bottom: var(--section-spacing);
    }

    .section--sm {
        padding-top: calc(var(--section-spacing) * 0.75);
        padding-bottom: calc(var(--section-spacing) * 0.75);
    }

    /* Hero buttons responsive */
    .hero__buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .hero .button--primary {
        min-width: auto;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    /* Enhanced Mobile Menu Toggle */
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        position: relative;
        z-index: 2;
        border-radius: 8px;
        transition: background-color var(--animation-duration) ease;
    }

    .nav-toggle:hover {
        background-color: var(--surface-secondary);
    }

    .nav-toggle span,
    .nav-toggle span::before,
    .nav-toggle span::after {
        position: absolute;
        width: 24px;
        height: 2px;
        background-color: var(--text-primary);
        transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    }

    .nav-toggle span {
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-toggle span::before {
        content: '';
        top: -8px;
        transform-origin: right;
    }

    .nav-toggle span::after {
        content: '';
        bottom: -8px;
        transform-origin: right;
    }

    .nav-toggle.active span {
        transform: translateY(-50%) rotate(45deg);
    }

    .nav-toggle.active span::before {
        transform: translateY(6px) rotate(-90deg) scale(0.6);
    }

    .nav-toggle.active span::after {
        transform: translateY(-6px) rotate(90deg) scale(0.6);
    }

    /* Improved Mobile Navigation Menu */
    .nav__list {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        height: 0;
        background: var(--surface-primary);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        flex-direction: column;
        padding: 0;
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav__list--active {
        height: calc(100vh - var(--nav-height));
        padding: 2rem 1.5rem;
        opacity: 1;
        visibility: visible;
    }

    .nav__item {
        margin: 0;
        width: 100%;
        text-align: center;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav__list--active .nav__item {
        transform: translateY(0);
        opacity: 1;
    }

    .nav__list--active .nav__item:nth-child(1) { transition-delay: 0.1s; }
    .nav__list--active .nav__item:nth-child(2) { transition-delay: 0.2s; }
    .nav__list--active .nav__item:nth-child(3) { transition-delay: 0.3s; }
    .nav__list--active .nav__item:nth-child(4) { transition-delay: 0.4s; }
    .nav__list--active .nav__item:nth-child(5) { transition-delay: 0.5s; }

    .nav__link {
        display: block;
        padding: 1rem;
        margin: 0.5rem 0;
        border-radius: 8px;
        background: transparent;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav__link:hover {
        background: var(--surface-secondary);
        transform: translateX(4px);
    }

    .nav__link--active {
        background: var(--primary-50);
        color: var(--primary-700);
        font-weight: 600;
    }

    /* Mobile login button */
    .nav__item .button--login {
        display: block;
        margin: 1rem 0;
        padding: 1rem;
        text-align: center;
        width: 100%;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Mobile typography adjustments */
    :root {
        --text-4xl: clamp(2rem, 4vw + 1rem, 2.5rem);
        --text-3xl: clamp(1.75rem, 3vw + 1rem, 2rem);
        --text-2xl: clamp(1.5rem, 2vw + 1rem, 1.75rem);
        --text-xl: clamp(1.25rem, 1.5vw + 1rem, 1.5rem);
    }

    .hero__title {
        font-size: var(--text-3xl);
        margin-bottom: 0.75rem;
    }

    .hero__subtitle {
        font-size: var(--text-lg);
        margin-bottom: 1.5rem;
    }

    .mission-vision__container {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .mission-vision__item .form {
        margin: 0;
        padding: 0;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-info__item {
        margin-bottom: 1rem;
    }

    .button--primary {
        padding: 0.8rem 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --section-spacing: var(--space-6);
        --grid-gap: var(--space-3);
        --container-padding: var(--space-3);
    }

    .container {
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }
    
    .grid {
        gap: var(--grid-gap);
    }

    .section {
        padding-top: var(--section-spacing);
        padding-bottom: var(--section-spacing);
    }

    .section--sm {
        padding-top: calc(var(--section-spacing) * 0.75);
        padding-bottom: calc(var(--section-spacing) * 0.75);
    }
    .hero {
        height: 85vh;
        min-height: 450px;
    }

    .hero__content {
        padding: clamp(1.5rem, 4vw, 2rem);
    }

    .hero__title {
        font-size: clamp(2rem, 6vw, var(--text-3xl));
        margin-bottom: clamp(1rem, 3vw, 1.5rem);
        line-height: 1.2;
    }

    .hero__subtitle {
        font-size: clamp(1rem, 3vw, var(--text-lg));
        margin-bottom: clamp(1.5rem, 5vw, 2.5rem);
        padding: 0;
        max-width: 100%;
    }

    .hero .button--primary {
        width: min(100%, 280px);
        padding: 0.875rem 2rem;
        font-size: 1rem;
        margin: 0 auto;
    }

    .hero__video {
        min-width: 110%;
        min-height: 110%;
        filter: brightness(0.7) contrast(1.2);
    }

    .hero__overlay {
        background: linear-gradient(135deg,
            hsla(215, 80%, 20%, 0.7) 0%,
            hsla(45, 90%, 25%, 0.5) 50%,
            hsla(215, 80%, 20%, 0.7) 100%
        );
        backdrop-filter: blur(3px);
    }

    .mission-vision {
        padding: 4rem 1.5rem;
    }

    .mission-vision__item {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .mission-vision__image {
        margin: -1.5rem -1.5rem 1rem -1.5rem;
        border-radius: 12px 12px 0 0;
    }

    .mission-vision__image img {
        height: 180px;
    }

    .mission-vision__item h2 {
        font-size: var(--text-xl);
    }

    .mission-vision__item p,
    .mission-vision__item li {
        font-size: var(--text-sm);
    }

    .form__group {
        margin-bottom: 1.75rem;
    }

    .form__input {
        padding: 0.75rem;
        font-size: var(--text-sm);
    }

    .form__label {
        font-size: var(--text-xs);
        top: 0.7rem;
    }

    .form__input:focus + .form__label,
    .form__input:not(:placeholder-shown) + .form__label {
        transform: translateY(-1.2rem) scale(0.85);
    }

    .form__error-message,
    .form__errors,
    .form__success {
        font-size: var(--text-xs);
        padding: 0.75rem 1rem;
    }

    textarea.form__input {
        min-height: 120px;
        padding-top: 1rem;
    }

    .button--primary {
        padding: 0.875rem 1.5rem;
        font-size: var(--text-sm);
    }

    .contact-info__item h3 {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .nav,
    .nav-toggle,
    .hero__video,
    .hero__overlay {
        display: none;
    }

    .hero {
        height: auto;
        color: var(--text-color);
    }

    .hero__content {
        padding: 2rem 0;
    }

    .mission-vision__item {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* ===== NEW HERO SECTION STYLES ===== */

/* Sticky Header */
.sticky-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(0px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.sticky-header.sticky {
    position: fixed;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    margin: 1rem 1rem 0 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: calc(100% - 2rem);
    max-width: calc(1200px - 2rem);
    left: 50%;
    transform: translateX(-50%);
    animation: headerFloat 0.3s ease-out;
}

@keyframes headerFloat {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.sticky-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-header__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.sticky-header__logo:hover {
    color: var(--green-400);
}

.sticky-header__logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sticky-header__logo:hover .sticky-header__logo-img {
    transform: scale(1.05);
}

.sticky-header__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.sticky-header__link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.sticky-header__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-400);
    transition: width 0.3s ease;
}

.sticky-header__link:hover {
    color: var(--green-400);
}

.sticky-header__link:hover::after {
    width: 100%;
}

.sticky-header__login {
    color: #ffffff;
    background: var(--green-600);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sticky-header__login:hover {
    background: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.sticky-header__mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.sticky-header__mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Container */
.hero-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* Background Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Semi-transparent Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 0;
    z-index: 20;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
}

.hero-nav__logo svg {
    color: var(--green-400);
}

.hero-nav__links {
    display: none;
}

.hero-nav__link {
    color: #ffffff;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hero-nav__link:hover {
    color: var(--green-400);
}

.hero-nav__login {
    color: #ffffff;
    background: var(--green-600);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.hero-nav__login:hover {
    background: var(--green-700);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #ffffff;
    padding: 0 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-title__accent {
    color: var(--green-400);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
}

.hero-button {
    background: var(--green-600);
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 200px;
    min-width: 200px;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-button:hover {
    background: var(--green-700);
}

/* Footer Dark Theme */
.footer-dark {
    background: var(--text-color);
    color: var(--white);
}

.footer-item {
    background: transparent;
    box-shadow: none;
}

.footer-item a {
    color: var(--white);
}

.footer-item a:hover {
    color: var(--green-400);
}

/* Responsive Design for Hero Section */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-button {
        width: 200px;
        flex: 0 0 200px;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

/* Responsive Design for Sticky Header */
@media (max-width: 768px) {
    .sticky-header__nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: transparent;
        backdrop-filter: blur(0px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .sticky-header__nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        background: rgba(17, 24, 39, 0.98);
        backdrop-filter: blur(10px);
    }
    
    .sticky-header.sticky .sticky-header__nav {
        position: fixed;
        background: rgba(17, 24, 39, 0.98);
        backdrop-filter: blur(10px);
        margin: 0 1rem;
        border-radius: 0 0 16px 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        width: calc(100% - 2rem);
        max-width: calc(1200px - 2rem);
        left: 50%;
        transform: translateX(-50%);
    }
    
    .sticky-header__mobile-toggle {
        display: flex;
    }
    
    .sticky-header__link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }
    
    .sticky-header__login {
        margin-top: 1rem;
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .sticky-header.sticky {
        margin: 0.5rem 0.5rem 0 0.5rem;
        width: calc(100% - 1rem);
        border-radius: 12px;
    }
    
    .sticky-header.sticky .sticky-header__nav {
        margin: 0 0.5rem;
        width: calc(100% - 1rem);
        border-radius: 0 0 12px 12px;
    }
    
    .sticky-header__container {
        padding: 0 1rem;
    }
    
    .sticky-header__logo {
        font-size: 1.1rem;
    }
    
    .sticky-header__logo-img {
        width: 32px;
        height: 32px;
    }
}

/* ===== VALUE PROPOSITION SECTION ===== */

.value-proposition {
    padding: 8rem 0;
    background: var(--surface-primary);
    position: relative;
    overflow: hidden;
}

.value-proposition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neutral-200), transparent);
}

/* Background decorative elements */
.value-proposition::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--green-50) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.6;
    z-index: 0;
}

.value-proposition .container {
    position: relative;
    z-index: 1;
}

/* Additional background shapes */
.value-proposition__bg-shape-1 {
    position: absolute;
    top: 20%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--green-100), transparent);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

.value-proposition__bg-shape-2 {
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--green-50), transparent);
    border-radius: 50%;
    opacity: 0.4;
    z-index: 0;
}

.value-proposition__bg-shape-3 {
    position: absolute;
    top: 60%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(225deg, var(--green-200), transparent);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 0;
}

.value-proposition__header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.value-proposition__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.value-proposition__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
}

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

.value-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--surface-primary);
    border-radius: 16px;
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    visibility: hidden;
}

.value-card.animate {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animation directions for each card - much larger movements */
.value-card:nth-child(1) {
    transform: translateX(-100px) scale(0.8);
    opacity: 0;
    visibility: hidden;
}

.value-card:nth-child(1).animate {
    transform: translateX(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.value-card:nth-child(2) {
    transform: translateY(100px) scale(0.8);
    opacity: 0;
    visibility: hidden;
}

.value-card:nth-child(2).animate {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.value-card:nth-child(3) {
    transform: translateX(100px) scale(0.8);
    opacity: 0;
    visibility: hidden;
}

.value-card:nth-child(3).animate {
    transform: translateX(0) scale(1);
    opacity: 1;
    visibility: visible;
}

/* Animation delays - sequential timing */
.value-card:nth-child(1).animate {
    transition-delay: 1.5s; /* Left card second */
}

.value-card:nth-child(2).animate {
    transition-delay: 0s; /* Middle card first */
}

.value-card:nth-child(3).animate {
    transition-delay: 3s; /* Right card third */
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-500), var(--green-400));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--green-200);
}

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

.value-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--green-50), var(--green-100));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    transition: all 0.3s ease;
}

.value-card:hover .value-card__icon {
    background: linear-gradient(135deg, var(--green-100), var(--green-200));
    color: var(--green-700);
    transform: scale(1.1);
}

.value-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.value-card__description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive Design for Value Proposition */
@media (max-width: 768px) {
    .value-proposition {
        padding: 4rem 0;
    }
    
    .value-proposition__header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .value-proposition__title {
        font-size: 2rem;
    }
    
    .value-proposition__subtitle {
        font-size: 1rem;
    }
    
    .value-proposition__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .value-card {
        padding: 2rem 1rem;
    }
    
    .value-card__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .value-card__icon svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .value-proposition {
        padding: 3rem 0;
    }
    
    .value-proposition__title {
        font-size: 1.75rem;
    }
    
    .value-card {
        padding: 1.5rem 1rem;
    }
}

/* ===== FEATURES SHOWCASE SECTION ===== */

.features-showcase {
    padding: 8rem 0;
    background: var(--surface-secondary);
    position: relative;
    overflow: hidden;
}

/* Background decorative elements */
.features-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neutral-200), transparent);
}

.features-showcase__header {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-showcase__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.features-showcase__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
}

.features-showcase__grid {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.feature-item.animate {
    opacity: 1;
    transform: translateY(0);
}

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

.feature-item--reverse {
    direction: rtl;
}

.feature-item--reverse .feature-item__content {
    direction: ltr;
}

.feature-item__content {
    padding: 2rem 0;
}

.feature-item__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--green-50), var(--green-100));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-item__icon {
    background: linear-gradient(135deg, var(--green-100), var(--green-200));
    color: var(--green-700);
    transform: scale(1.05);
}

.feature-item__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-item__description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.feature-item__cta {
    display: inline-flex;
    align-items: center;
    color: var(--green-600);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.feature-item__cta::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.feature-item__cta:hover {
    color: var(--green-700);
}

.feature-item__cta:hover::after {
    transform: translateX(4px);
}

.feature-item__image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--green-50), var(--green-100));
}

.feature-item__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(22, 163, 74, 0.1) 0%, 
        rgba(34, 197, 94, 0.05) 50%, 
        rgba(74, 222, 128, 0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-item__image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(22, 163, 74, 0.1), transparent);
    animation: rotate 20s linear infinite;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feature-item__image:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.feature-item__image:hover::before {
    opacity: 1;
}

.feature-item__image:hover::after {
    opacity: 1;
}

.feature-item__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 3;
}

.feature-item__image:hover img {
    transform: scale(1.08);
}

/* Creative positioning for different features */
.feature-item:nth-child(1) .feature-item__image {
    transform: perspective(1000px) rotateY(-5deg);
}

.feature-item:nth-child(1) .feature-item__image:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-12px) scale(1.02);
}

.feature-item:nth-child(2) .feature-item__image {
    transform: perspective(1000px) rotateY(5deg);
}

.feature-item:nth-child(2) .feature-item__image:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-12px) scale(1.02);
}

.feature-item:nth-child(3) .feature-item__image {
    transform: perspective(1000px) rotateX(-3deg);
}

.feature-item:nth-child(3) .feature-item__image:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-12px) scale(1.02);
}

/* Floating elements for extra creativity */
.feature-item__image .floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    opacity: 0;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(22, 163, 74, 0.2);
}

.feature-item__image:hover .floating-element {
    opacity: 1;
}

.feature-item__image .floating-element:nth-child(1) {
    top: 20px;
    right: 20px;
    transform: translateY(-20px);
}

.feature-item__image:hover .floating-element:nth-child(1) {
    transform: translateY(0);
}

.feature-item__image .floating-element:nth-child(2) {
    bottom: 20px;
    left: 20px;
    transform: translateY(20px);
}

.feature-item__image:hover .floating-element:nth-child(2) {
    transform: translateY(0);
}

.feature-item__image .floating-element svg {
    width: 24px;
    height: 24px;
    color: var(--green-600);
}

/* Responsive Design for Features Showcase */
@media (max-width: 768px) {
    .features-showcase {
        padding: 4rem 0;
    }
    
    .features-showcase__header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .features-showcase__title {
        font-size: 2rem;
    }
    
    .features-showcase__subtitle {
        font-size: 1rem;
    }
    
    .feature-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
        direction: ltr;
    }
    
    .feature-item--reverse {
        direction: ltr;
    }
    
    .feature-item__content {
        padding: 1rem 0;
        text-align: center;
    }
    
    .feature-item__icon {
        margin: 0 auto 1rem;
    }
    
    .feature-item__title {
        font-size: 1.5rem;
    }
    
    .feature-item__image img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .features-showcase {
        padding: 3rem 0;
    }
    
    .features-showcase__title {
        font-size: 1.75rem;
    }
    
    .feature-item {
        margin-bottom: 3rem;
    }
    
    .feature-item__image img {
        height: 200px;
    }
}

/* Creative framing for the first feature image */
.feature-item:nth-child(1) .feature-item__image {
    transform: perspective(1000px) rotateY(-5deg);
    position: relative;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.feature-item:nth-child(1) .feature-item__image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(34, 197, 94, 0.8) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(22, 163, 74, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(74, 222, 128, 0.4) 0%, transparent 70%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    z-index: 0;
    opacity: 0;
    transition: all 0.5s ease;
    filter: blur(1px);
}

.feature-item:nth-child(1) .feature-item__image::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: 
        radial-gradient(ellipse at 40% 30%, rgba(34, 197, 94, 0.9) 0%, transparent 60%),
        radial-gradient(ellipse at 60% 70%, rgba(22, 163, 74, 0.7) 0%, transparent 60%);
    border-radius: 45% 55% 55% 45% / 55% 45% 55% 45%;
    z-index: 1;
    opacity: 0;
    transition: all 0.5s ease;
    filter: blur(0.5px);
}

.feature-item:nth-child(1) .feature-item__image:hover::before {
    opacity: 1;
    transform: scale(1.05);
}

.feature-item:nth-child(1) .feature-item__image:hover::after {
    opacity: 1;
    transform: scale(1.02);
}

.feature-item:nth-child(1) .feature-item__image img {
    position: relative;
    z-index: 2;
    border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:nth-child(1) .feature-item__image:hover img {
    transform: scale(1.05);
    border-radius: 35% 65% 65% 35% / 45% 55% 45% 55%;
}

.feature-item:nth-child(1) .feature-item__image:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-12px) scale(1.02);
}

/* Creative geometric design for the third feature image */
.feature-item:nth-child(3) .feature-item__image {
    transform: perspective(1000px) rotateX(-3deg);
    position: relative;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    overflow: visible;
}

.feature-item:nth-child(3) .feature-item__image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(34, 197, 94, 0.3) 30%, rgba(34, 197, 94, 0.3) 70%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(22, 163, 74, 0.2) 30%, rgba(22, 163, 74, 0.2) 70%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(74, 222, 128, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.3) 0%, transparent 50%);
    border-radius: 20px;
    z-index: 0;
    opacity: 0;
    transition: all 0.6s ease;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}

.feature-item:nth-child(3) .feature-item__image::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(34, 197, 94, 0.1) 10px, rgba(34, 197, 94, 0.1) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(22, 163, 74, 0.1) 10px, rgba(22, 163, 74, 0.1) 20px);
    border-radius: 15px;
    z-index: 1;
    opacity: 0;
    transition: all 0.6s ease;
    animation: geometricShift 3s ease-in-out infinite;
}

@keyframes geometricShift {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
}

.feature-item:nth-child(3) .feature-item__image:hover::before {
    opacity: 1;
    transform: rotate(45deg) scale(1.1);
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
}

.feature-item:nth-child(3) .feature-item__image:hover::after {
    opacity: 1;
    animation: geometricShift 1.5s ease-in-out infinite;
}

.feature-item:nth-child(3) .feature-item__image img {
    position: relative;
    z-index: 2;
    border-radius: 15px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(15% 0%, 85% 0%, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%, 0% 15%);
}

.feature-item:nth-child(3) .feature-item__image:hover img {
    transform: scale(1.08);
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
}

.feature-item:nth-child(3) .feature-item__image:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-12px) scale(1.02);
}

/* Enhanced floating elements for third image */
.feature-item:nth-child(3) .feature-item__image .floating-element {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(34, 197, 94, 0.1));
    border: 2px solid rgba(34, 197, 94, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.2);
}

.feature-item:nth-child(3) .feature-item__image .floating-element:nth-child(1) {
    animation: float 3s ease-in-out infinite;
}

.feature-item:nth-child(3) .feature-item__image .floating-element:nth-child(2) {
    animation: float 3s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
}

/* ===== VALUE PROPOSITION INTRODUCTION SECTION ===== */

.value-intro {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.value-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23e2e8f0" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23e2e8f0" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23e2e8f0" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.value-intro__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.value-intro__text {
    padding-right: 2rem;
}

.value-intro__title {
    font-size: 2.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--green-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.value-intro__description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
    font-weight: 400;
}

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

.problem-card {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #dc2626);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #fecaca;
}

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

.problem-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fecaca, #ef4444);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.problem-card:hover .problem-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.problem-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.problem-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.problem-cta {
    display: inline-flex;
    align-items: center;
    color: #ef4444;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
}

.problem-cta::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.problem-cta:hover {
    color: #dc2626;
}

.problem-cta:hover::after {
    transform: translateX(3px);
}

.solution-intro {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #bbf7d0;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.solution-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.solution-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.value-intro__cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
    position: relative;
    overflow: hidden;
}

.value-intro__cta::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 ease;
}

.value-intro__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
}

.value-intro__cta:hover::before {
    left: 100%;
}

.value-intro__visual {
    position: relative;
}

.value-intro__image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-intro__image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.value-intro__image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.value-intro__image-container:hover img {
    transform: scale(1.05);
}

.value-intro__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(34, 197, 94, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-intro__image-container:hover .value-intro__overlay {
    opacity: 1;
}

.overlay-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    backdrop-filter: blur(10px);
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.value-intro__image-container:hover .overlay-icon {
    transform: scale(1);
}

/* Responsive Design for Value Intro */
@media (max-width: 768px) {
    .value-intro {
        padding: 4rem 0;
    }
    
    .value-intro__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .value-intro__text {
        padding-right: 0;
        text-align: center;
    }
    
    .value-intro__title {
        font-size: 2.25rem;
    }
    
    .value-intro__description {
        font-size: 1.1rem;
    }
    
    .problem-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-card {
        padding: 1.5rem;
    }
    
    .solution-intro {
        padding: 1.5rem;
    }
    
    .value-intro__image-container img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .value-intro__title {
        font-size: 2rem;
    }
    
    .value-intro__description {
        font-size: 1rem;
    }
    
    .problem-title {
        font-size: 1.1rem;
    }
    
    .problem-description {
        font-size: 0.9rem;
    }
    
    .solution-title {
        font-size: 1.25rem;
    }
    
    .solution-description {
        font-size: 0.95rem;
    }
    
    .value-intro__cta {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.contact-form__header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.contact-form__title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-form__subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.contact-form__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-form__info {
    padding-right: 2rem;
}

.contact-form__info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.contact-form__benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--green-200);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green-100), var(--green-200));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: linear-gradient(135deg, var(--green-200), var(--green-300));
    color: var(--green-700);
    transform: scale(1.05);
}

.benefit-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 400;
}

/* Form Styles */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
    line-height: 1.4;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-primary);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--green-400);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #94a3b8;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
    position: relative;
    overflow: hidden;
}

.form-submit::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 ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
}

.form-submit:hover::before {
    left: 100%;
}

.form-submit svg {
    transition: transform 0.3s ease;
}

.form-submit:hover svg {
    transform: translateX(3px);
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 4rem 0;
    }
    
    .contact-form__title {
        font-size: 2.25rem;
    }
    
    .contact-form__subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form__info {
        padding-right: 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .benefit-item {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .contact-form__title {
        font-size: 2rem;
    }
    
    .contact-form__subtitle {
        font-size: 1rem;
    }
    
    .contact-form__info-title {
        font-size: 1.25rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .form-submit {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%233475db" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-dots)"/></svg>');
    opacity: 0.3;
}

.footer__top {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.footer__section {
    display: flex;
    flex-direction: column;
}

/* Company Info Section */
.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer__logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.footer__logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.footer__description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-2px);
}

/* LinkedIn */
.social-link[title="LinkedIn"] {
    color: #0077b5;
}

.social-link[title="LinkedIn"]:hover {
    background: #0077b5;
    color: white;
}

/* Twitter */
.social-link[title="Twitter"] {
    color: #1da1f2;
}

.social-link[title="Twitter"]:hover {
    background: #1da1f2;
    color: white;
}

/* Facebook */
.social-link[title="Facebook"] {
    color: #1877f2;
}

.social-link[title="Facebook"]:hover {
    background: #1877f2;
    color: white;
}

/* Instagram */
.social-link[title="Instagram"] {
    color: transparent;
}

.social-link[title="Instagram"]:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px) scale(1.05);
}

/* Footer Titles */
.footer__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

/* Footer Links */
.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer__links a:hover {
    color: var(--green-400);
    padding-left: 0.5rem;
}

/* Contact Info */
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 400;
}

.contact-item svg {
    color: var(--green-400);
    flex-shrink: 0;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 400;
}

.whatsapp-link:hover {
    color: #25D366;
    transform: translateX(3px);
}

.whatsapp-link svg {
    color: #25D366;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.whatsapp-link:hover svg {
    transform: scale(1.1);
}

.email-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 400;
}

.email-link:hover {
    color: var(--green-400);
    transform: translateX(3px);
}

.email-link svg {
    color: var(--green-400);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.email-link:hover svg {
    transform: scale(1.1);
}

/* Newsletter */
.footer__newsletter-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #cbd5e1;
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer__newsletter {
    width: 100%;
}

.newsletter__input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter__input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 0.9rem;
    outline: none;
}

.newsletter__input::placeholder {
    color: #94a3b8;
}

.newsletter__button {
    background: var(--green-600);
    border: none;
    padding: 0.75rem 1rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter__button:hover {
    background: var(--green-700);
    transform: scale(1.05);
}

/* Footer Bottom */
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 400;
}

.footer__legal {
    display: flex;
    gap: 2rem;
}

.footer__legal a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer__legal a:hover {
    color: var(--green-400);
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer__content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer__section:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer__top {
        padding: 3rem 0 1.5rem;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer__legal {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer__title {
        font-size: 1rem;
    }
    
    .footer__description {
        font-size: 0.9rem;
    }
    
    .footer__links a {
        font-size: 0.85rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
    
    .footer__newsletter-text {
        font-size: 0.85rem;
    }
    
    .newsletter__input {
        font-size: 0.85rem;
    }
    
    .footer__copyright,
    .footer__legal a {
        font-size: 0.8rem;
    }
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator.active {
    background: var(--green-400);
    transform: scale(1.2);
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* About Story Section */
.about-story {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.about-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="story-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23story-dots)"/></svg>');
    opacity: 0.5;
}

.about-story__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-story__text {
    padding-right: 2rem;
}

.about-story__title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-story__description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-story__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.about-story__visual {
    position: relative;
}

.about-story__image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-story__image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-story__image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-story__image-container:hover img {
    transform: scale(1.05);
}

.about-story__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(34, 197, 94, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-story__image-container:hover .about-story__overlay {
    opacity: 1;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.mission-vision__header {
    text-align: center;
    margin-bottom: 60px;
}

.mission-vision__title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e293b 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-vision__subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.mission-vision__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.mission-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #16a34a, #15803d);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: #4ade80;
}

.mission-card__icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-card__icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4ade80, #16a34a);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
}

.mission-card:hover .mission-card__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.mission-card:hover .mission-card__icon::before {
    opacity: 1;
}

.mission-card:hover .mission-card__icon svg {
    color: white;
    transform: scale(1.1);
}

.mission-card__icon svg {
    transition: all 0.4s ease;
    z-index: 1;
    position: relative;
}

.mission-card__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.mission-card__description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 2rem;
}

.mission-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.feature-tag {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #15803d;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #bbf7d0;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: linear-gradient(135deg, #4ade80, #16a34a);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Responsive styles for mission vision section */
@media (max-width: 768px) {
    .mission-vision-section {
        padding: 60px 0;
    }
    
    .mission-vision__title {
        font-size: 2.5rem;
    }
    
    .mission-vision__subtitle {
        font-size: 1.1rem;
    }
    
    .mission-vision__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-card {
        padding: 2.5rem 2rem;
    }
    
    .mission-card__icon {
        width: 80px;
        height: 80px;
    }
    
    .mission-card__title {
        font-size: 1.5rem;
    }
    
    .mission-card__description {
        font-size: 1rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .mission-vision__title {
        font-size: 2rem;
    }
    
    .mission-vision__subtitle {
        font-size: 1rem;
    }
    
    .mission-card {
        padding: 2rem 1.5rem;
    }
    
    .mission-card__icon {
        width: 70px;
        height: 70px;
    }
    
    .mission-card__title {
        font-size: 1.25rem;
    }
    
    .mission-card__description {
        font-size: 0.95rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }
}

/* Development Roadmap Section */
.roadmap-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

.roadmap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.roadmap__title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roadmap__subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.roadmap__timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #4ade80, #16a34a, #15803d);
    border-radius: 2px;
}

.roadmap-phase {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 100px;
}

.roadmap-phase:last-child {
    margin-bottom: 0;
}

.roadmap-phase__number {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4ade80, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.roadmap-phase--current .roadmap-phase__number {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    animation: pulse 2s infinite;
    border-color: rgba(251, 191, 36, 0.3);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(251, 191, 36, 0.6);
    }
}

.roadmap-phase__content {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.roadmap-phase:hover .roadmap-phase__content {
    transform: translateX(15px);
    border-color: #4ade80;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.roadmap-phase__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.roadmap-phase__description {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
}

.roadmap-phase__status {
    display: flex;
    gap: 0.75rem;
}

.status-badge {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.status-badge--current {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.status-badge--upcoming {
    background: rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

/* Responsive styles for roadmap section */
@media (max-width: 768px) {
    .roadmap-section {
        padding: 60px 0;
    }
    
    .roadmap__title {
        font-size: 2.5rem;
    }
    
    .roadmap__subtitle {
        font-size: 1.1rem;
    }
    
    .roadmap__timeline::before {
        left: 30px;
    }
    
    .roadmap-phase {
        padding-left: 70px;
        margin-bottom: 3rem;
    }
    
    .roadmap-phase__number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
    
    .roadmap-phase__content {
        padding: 2rem;
    }
    
    .roadmap-phase__title {
        font-size: 1.5rem;
    }
    
    .roadmap-phase__description {
        font-size: 1rem;
    }
    
    .status-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .roadmap-phase {
        padding-left: 60px;
    }
    
    .roadmap-phase__number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .roadmap-phase__content {
        padding: 1.5rem;
    }
    
    .roadmap-phase__title {
        font-size: 1.25rem;
    }
    
    .roadmap-phase__description {
        font-size: 0.95rem;
    }
}

/* Partnership Page Styles - REMOVED */

/* Challenges Section */
.challenges-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.challenges-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="challenges-dots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="%23cbd5e1" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23challenges-dots)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.challenges__header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.challenges__title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e293b 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.challenges__subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.challenges__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.challenge-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #16a34a, #15803d);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.challenge-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: #4ade80;
}

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

.challenge-card__icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
}

.challenge-card__icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #4ade80, #16a34a);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.challenge-card:hover .challenge-card__icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #4ade80, #16a34a);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.25);
}

.challenge-card:hover .challenge-card__icon::before {
    opacity: 1;
}

.challenge-card:hover .challenge-card__icon svg {
    color: #ffffff;
    transform: scale(1.1);
}

.challenge-card__icon svg {
    width: 40px;
    height: 40px;
    color: #16a34a;
    transition: all 0.4s ease;
}

.challenge-card__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.challenge-card__content {
    color: #64748b;
}

.challenge-card__description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #64748b;
    font-weight: 400;
}

.challenge-card__details,
.challenge-card__solution {
    margin-bottom: 2.5rem;
}

.challenge-card__subtitle {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.challenge-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.challenge-card__list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #64748b;
    font-weight: 400;
}

.challenge-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #4ade80, #16a34a);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.challenge-card__list li strong {
    color: #1e293b;
    font-weight: 600;
}

@media (max-width: 768px) {
    .challenges-section {
        padding: 5rem 0;
    }

    .challenges__title {
        font-size: 2.5rem;
    }

    .challenges__subtitle {
        font-size: 1.125rem;
    }

    .challenge-card {
        padding: 2.5rem 2rem;
    }

    .challenge-card__icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .challenge-card__icon svg {
        width: 32px;
        height: 32px;
    }

    .challenge-card__title {
        font-size: 1.75rem;
    }

    .challenge-card__description {
        font-size: 1rem;
    }

    .challenge-card__subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .challenges__title {
        font-size: 2.25rem;
    }

    .challenges__subtitle {
        font-size: 1rem;
    }

    .challenge-card {
        padding: 2rem 1.5rem;
    }

    .challenge-card__title {
        font-size: 1.5rem;
    }

    .challenge-card__description {
        font-size: 0.95rem;
    }

    .challenge-card__subtitle {
        font-size: 1.125rem;
    }

    .challenge-card__list li {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }
}

.sticky-header__link--active {
    color: var(--green-400);
}

.sticky-header__link--active::after {
    width: 100%;
}






