/* ===================================
   AWANI WEBSITE STYLES
   Color Scheme: Dark Navy + Teal/Green Gradients
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - Matching Logo */
    --navy-dark: #0a0e27;
    --navy-medium: #151a3d;
    --navy-light: #1f2647;
    --teal-bright: #00d9b3;
    --teal-medium: #00b89f;
    --teal-dark: #008c7a;
    --green-bright: #2df5b8;
    --green-medium: #1dd1a1;
    --blue-bright: #00a8e8;

    /* UI Colors */
    --white: #ffffff;
    --gray-light: #e8ecf2;
    --gray-medium: #9ca3af;
    --gray-dark: #4b5563;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--teal-bright) 0%, var(--blue-bright) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--green-medium) 0%, var(--teal-medium) 100%);
    --gradient-accent: linear-gradient(135deg, #2df5b8 0%, #00d9b3 50%, #00a8e8 100%);

    /* Typography */
    --font-primary: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--navy-dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 217, 179, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.logo:hover .logo-image {
    filter: drop-shadow(0 0 15px rgba(0, 217, 179, 0.8));
    transform: scale(1.1);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: var(--navy-dark);
    border-radius: 50%;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

/* Logo Image (icon only) */
.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.1);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu a {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a {
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--teal-bright);
}

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

.btn-primary-small {
    background: var(--gradient-primary);
    padding: 10px 24px;
    border-radius: 8px;
    color: var(--white) !important;
    font-weight: 600;
    transition: box-shadow 0.3s ease, filter 0.3s ease;
    position: relative;
    z-index: 1000;
}

.btn-primary-small:hover {
    box-shadow: 0 8px 24px rgba(0, 217, 179, 0.5);
    filter: brightness(1.1);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(0, 217, 179, 0.5);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0, 217, 179, 0.8);
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--teal-bright);
    border-radius: 2px;
    transition: 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(0, 217, 179, 0.05) 25%,
        rgba(0, 168, 232, 0.05) 50%,
        rgba(45, 245, 184, 0.05) 75%,
        transparent 100%
    );
    animation: waveShift 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes waveShift {
    0%, 100% {
        transform: rotate(0deg) translate(0, 0);
    }
    25% {
        transform: rotate(90deg) translate(50px, 50px);
    }
    50% {
        transform: rotate(180deg) translate(0, 0);
    }
    75% {
        transform: rotate(270deg) translate(-50px, -50px);
    }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 25s infinite ease-in-out, pulse 8s infinite ease-in-out;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 217, 179, 0.8) 0%, rgba(0, 168, 232, 0.6) 50%, rgba(45, 245, 184, 0.4) 100%);
    top: -350px;
    right: -250px;
    animation: float 25s infinite ease-in-out, pulse 8s infinite ease-in-out;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 168, 232, 0.8) 0%, rgba(45, 245, 184, 0.6) 50%, rgba(0, 217, 179, 0.4) 100%);
    bottom: -250px;
    left: -200px;
    animation: float 30s infinite ease-in-out reverse, pulse 10s infinite ease-in-out;
    animation-delay: -7s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 245, 184, 0.8) 0%, rgba(0, 217, 179, 0.6) 50%, rgba(0, 168, 232, 0.4) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 20s infinite ease-in-out, pulse 6s infinite ease-in-out;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(100px, -80px) rotate(90deg) scale(1.15);
    }
    50% {
        transform: translate(-50px, 100px) rotate(180deg) scale(0.85);
    }
    75% {
        transform: translate(-100px, -50px) rotate(270deg) scale(1.05);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        filter: blur(100px) brightness(1);
    }
    50% {
        opacity: 0.6;
        filter: blur(120px) brightness(1.2);
    }
}

/* Floating Particles */
.hero-background::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(3px 3px at 20% 30%, rgba(0, 217, 179, 0.6), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(0, 168, 232, 0.5), transparent),
        radial-gradient(4px 4px at 50% 50%, rgba(45, 245, 184, 0.4), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(0, 217, 179, 0.6), transparent),
        radial-gradient(3px 3px at 90% 60%, rgba(0, 168, 232, 0.5), transparent),
        radial-gradient(2px 2px at 10% 80%, rgba(45, 245, 184, 0.6), transparent),
        radial-gradient(3px 3px at 40% 20%, rgba(0, 217, 179, 0.4), transparent),
        radial-gradient(2px 2px at 70% 85%, rgba(0, 168, 232, 0.5), transparent),
        radial-gradient(4px 4px at 15% 45%, rgba(45, 245, 184, 0.5), transparent),
        radial-gradient(2px 2px at 85% 35%, rgba(0, 217, 179, 0.4), transparent);
    background-size: 300% 300%;
    background-position: 0% 0%;
    animation: particles 30s ease-in-out infinite, particleShimmer 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particles {
    0%, 100% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 50% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 50% 25%;
    }
}

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

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 50;
    text-align: left;
    max-width: 600px;
    min-width: 0;
}

.hero-image {
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-image img {
    pointer-events: auto;
}

.hero-truck-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 217, 179, 0.2);
    animation: fadeInRight 1s ease;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease;
    text-align: center;
}

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

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

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Typing Animation */
.hero-typing-wrapper {
    font-size: 28px;
    font-weight: 600;
    color: var(--teal-bright);
    margin: 0;
    min-height: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    font-style: italic;
    white-space: nowrap;
}

.typing-prefix,
.typing-suffix {
    color: var(--gray-medium);
    flex-shrink: 0;
}

.typing-text {
    color: var(--teal-bright);
    font-weight: 700;
    min-width: 0;
    display: inline-block;
    transition: all 0.08s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    flex-shrink: 0;
}

.typing-cursor {
    animation: cursorBlink 0.75s ease-in-out infinite, cursorColor 2s ease-in-out infinite;
    font-weight: 300;
    will-change: opacity, color;
    display: inline-block;
    margin-left: 1px;
    flex-shrink: 0;
}

@keyframes cursorBlink {
    0%, 45% { opacity: 1; }
    50%, 95% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes cursorColor {
    0% { color: #00d9b3; } /* Teal */
    33% { color: #00a8e8; } /* Blue */
    66% { color: #2df5b8; } /* Green */
    100% { color: #00d9b3; } /* Back to Teal */
}

.hero-subtitle {
    font-size: 22px;
    color: var(--gray-light);
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 600px;
}

/* Curved Stats Box */
.hero-stats-box {
    background: rgba(17, 34, 64, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px 60px;
    margin-top: 60px;
    border: 1px solid rgba(0, 217, 179, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

.hero-stats-box .hero-typing-wrapper {
    justify-content: center;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-bottom: 0;
    padding: 0;
}

.stat {
    text-align: center;
}

.stat {
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: scale(1.1);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    text-shadow: 0 0 30px rgba(0, 217, 179, 0.5);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    position: relative;
    z-index: 100;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    pointer-events: auto;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white) !important;
    box-shadow: 0 4px 16px rgba(0, 217, 179, 0.3);
    z-index: 101;
}

.btn-primary:hover {
    box-shadow: 0 12px 32px rgba(0, 217, 179, 0.5);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    color: var(--teal-bright);
    border: 2px solid var(--teal-bright);
}

.btn-secondary:hover {
    background: rgba(0, 217, 179, 0.15);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 217, 179, 0.2);
}

/* ===================================
   TRUCK SHOWCASE SECTION
   =================================== */

.truck-showcase {
    padding: 80px 0;
    background: var(--navy-dark);
    border-top: 1px solid rgba(0, 217, 179, 0.1);
}

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

.showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 217, 179, 0.2);
    transition: all 0.3s ease;
    background: var(--navy-medium);
}

.showcase-item:hover {
    transform: translateY(-8px);
    border-color: var(--teal-bright);
    box-shadow: 0 16px 48px rgba(0, 217, 179, 0.3);
}

.showcase-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.showcase-caption {
    padding: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--teal-bright);
    background: var(--navy-light);
}

/* ===================================
   PROBLEM SECTION
   =================================== */

.problem-section {
    padding: var(--section-padding);
    background: var(--navy-medium);
}

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

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.section-title:hover {
    transform: scale(1.02);
    text-shadow: 0 0 20px rgba(0, 217, 179, 0.3);
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

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

.problem-card {
    background: var(--navy-light);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 179, 0.1);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--teal-bright);
    box-shadow: 0 16px 48px rgba(0, 217, 179, 0.3);
    background: var(--navy-medium);
}

.problem-card:hover .problem-icon {
    transform: scale(1.2) rotate(10deg);
    transition: transform 0.3s ease;
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--white);
}

.problem-card p {
    color: var(--gray-medium);
    margin-bottom: 16px;
    line-height: 1.6;
}

.problem-cost {
    font-weight: 700;
    color: var(--teal-bright);
    font-size: 16px;
}

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

.features-section {
    padding: var(--section-padding);
    background: var(--navy-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--navy-medium);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 217, 179, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--teal-bright);
    box-shadow: 0 20px 60px rgba(0, 217, 179, 0.4);
    background: linear-gradient(135deg, var(--navy-medium) 0%, var(--navy-light) 100%);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(0, 217, 179, 0.5);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
}

.gradient-bg {
    background: var(--gradient-primary);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--white);
}

.feature-card > p {
    color: var(--teal-bright);
    font-style: italic;
    margin-bottom: 20px;
    font-size: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: var(--gray-medium);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal-bright);
    font-weight: bold;
}

/* ===================================
   ROI SECTION
   =================================== */

.roi-section {
    padding: var(--section-padding);
    background: var(--navy-light);
}

.roi-calculator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
}

.roi-left {
    background: var(--navy-medium);
    padding: 48px;
    border-radius: 20px;
    border: 1px solid rgba(0, 217, 179, 0.2);
}

.roi-left h3 {
    font-size: 28px;
    margin-bottom: 32px;
}

.calculator-input {
    margin-bottom: 32px;
}

.calculator-input label {
    display: block;
    margin-bottom: 12px;
    color: var(--gray-medium);
    font-weight: 600;
}

.calculator-input input {
    width: 100%;
    padding: 16px;
    background: var(--navy-dark);
    border: 2px solid var(--teal-dark);
    border-radius: 12px;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.calculator-input input:focus {
    outline: none;
    border-color: var(--teal-bright);
    box-shadow: 0 0 20px rgba(0, 217, 179, 0.3);
    transform: scale(1.02);
}

.savings-breakdown {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.savings-item {
    padding: 20px;
    background: var(--navy-dark);
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 179, 0.1);
}

.savings-item.total {
    background: var(--navy-light);
    border: 2px solid var(--teal-bright);
    padding: 24px;
}

.savings-label {
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.savings-value {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
}

.savings-item.total .savings-value {
    font-size: 42px;
}

.roi-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.roi-card {
    background: var(--navy-medium);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 179, 0.1);
    transition: all 0.3s ease;
}

.roi-card:hover {
    border-color: var(--teal-bright);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 217, 179, 0.3);
}

.roi-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--teal-bright);
}

.roi-card p {
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 12px;
}

.roi-stat {
    font-weight: 700;
    color: var(--white);
    font-size: 16px;
    margin-top: 16px;
}

.cost-list {
    list-style: none;
    padding: 0;
}

.cost-list li {
    color: var(--gray-medium);
    margin-bottom: 12px;
    padding: 12px;
    background: var(--navy-dark);
    border-radius: 8px;
}

.cost-list strong {
    color: var(--white);
}

.pricing-tiers {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-tier {
    background: var(--navy-dark);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.pricing-tier:hover {
    background: var(--navy-medium);
    border-color: var(--teal-bright);
    transform: translateX(10px);
    box-shadow: 0 4px 16px rgba(0, 217, 179, 0.2);
}

.tier-size {
    color: var(--gray-medium);
    font-weight: 600;
}

.tier-price {
    font-size: 24px;
    font-weight: 900;
    color: var(--teal-bright);
}

.tier-price span {
    font-size: 14px;
    color: var(--gray-medium);
    font-weight: 500;
}

/* ===================================
   HOW IT WORKS
   =================================== */

.how-it-works {
    padding: var(--section-padding);
    background: var(--navy-dark);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 64px;
    position: relative;
}

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

.timeline-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 217, 179, 0.3);
}

.timeline-item:hover .timeline-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 8px 32px rgba(0, 217, 179, 0.6);
}

.timeline-content {
    flex: 1;
    padding-top: 12px;
}

.timeline-content h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--gray-medium);
    font-size: 18px;
    line-height: 1.6;
}

/* ===================================
   TARGET CUSTOMERS
   =================================== */

.target-customers {
    padding: var(--section-padding);
    background: var(--navy-medium);
}

.customer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.customer-card {
    background: var(--navy-dark);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 179, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.customer-card:hover {
    transform: translateY(-12px) scale(1.05);
    border-color: var(--teal-bright);
    box-shadow: 0 16px 48px rgba(0, 217, 179, 0.4);
    background: var(--navy-medium);
}

.customer-card:hover h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.customer-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.customer-size {
    color: var(--teal-bright);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
}

.customer-card p:last-child {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
    padding: var(--section-padding);
    background: var(--navy-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-left h2 {
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.contact-left > p {
    font-size: 18px;
    color: var(--gray-medium);
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-benefits {
    margin-bottom: 40px;
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-benefit svg {
    color: var(--teal-bright);
    flex-shrink: 0;
}

.contact-benefit span {
    color: var(--white);
    font-size: 16px;
}

.contact-info {
    padding: 24px;
    background: var(--navy-medium);
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 179, 0.1);
}

.contact-info p {
    color: var(--gray-medium);
    margin-bottom: 8px;
}

.contact-info a {
    color: var(--teal-bright);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--navy-medium);
    padding: 48px;
    border-radius: 20px;
    border: 1px solid rgba(0, 217, 179, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.contact-form:hover {
    border-color: var(--teal-bright);
    box-shadow: 0 8px 40px rgba(0, 217, 179, 0.2);
    transform: translateY(-5px);
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-light);
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--navy-dark);
    border: 2px solid var(--navy-light);
    border-radius: 10px;
    color: var(--white);
    font-size: 16px;
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-bright);
    box-shadow: 0 0 20px rgba(0, 217, 179, 0.3);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
}

.btn-full {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-full::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-full:hover::before {
    width: 300px;
    height: 300px;
}

.btn-full:active {
    transform: scale(0.98);
}

.form-note {
    text-align: center;
    color: var(--gray-medium);
    font-size: 14px;
    margin-top: 16px;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--navy-medium);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(0, 217, 179, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 48px;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    object-position: left center;
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    filter: drop-shadow(0 0 10px rgba(0, 217, 179, 0.6));
    transform: scale(1.05);
}

.footer-tagline {
    color: var(--gray-medium);
    margin-bottom: 16px;
    font-size: 16px;
}

.footer-copyright {
    color: var(--gray-dark);
    font-size: 14px;
    margin-top: 8px;
}

.footer-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--teal-bright);
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--teal-bright);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
        text-align: center;
        margin-bottom: 40px;
    }

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

    .roi-calculator {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .showcase-grid {
        gap: 32px;
    }

    .showcase-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .showcase-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        border-top: 1px solid rgba(0, 217, 179, 0.2);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 12px 20px;
        font-size: 18px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

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

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

    .hero {
        padding: 140px 0 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        min-width: 0; /* Override desktop min-width */
    }

    .hero-image {
        order: -1;
    }

    .hero-title {
        font-size: 40px;
        text-align: center;
        margin-bottom: 32px;
    }

    .hero-typing-wrapper {
        font-size: 20px;
        min-height: 40px;
    }

    .typing-text {
        min-width: 0;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
        justify-content: center;
    }

    .hero-stats-box {
        padding: 30px 20px;
        margin-top: 40px;
        border-radius: 20px;
    }

    .hero-cta {
        justify-content: center;
    }

    .section-title {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .customer-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .timeline-content h3 {
        font-size: 22px;
    }

    .timeline-content p {
        font-size: 16px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .footer-right {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero-title {
        font-size: 32px;
        text-align: center;
        margin-bottom: 24px;
    }

    .hero-typing-wrapper {
        font-size: 16px;
        flex-direction: column;
        text-align: center;
    }

    .typing-text {
        min-width: 150px;
    }

    .stat-number {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .roi-left {
        padding: 32px 24px;
    }

    .contact-left h2 {
        font-size: 32px;
    }
}
