/* Bungkoos Brand Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;500;600&display=swap');

/* Bungkoos Brand CSS Custom Properties */
:root {
    /* Primary Brand Colors */
    --brand-primary: #7ac6ae;
    --brand-primary-hover: #6bb39e;
    --brand-primary-light: #8fd0b8;
    --brand-primary-dark: #5a9d88;
    
    /* Accent Colors */
    --brand-accent: #fbb040;
    --brand-accent-hover: #f5a632;
    --brand-accent-light: #fcc666;
    --brand-accent-dark: #e09a2e;
    
    /* Background Colors */
    --brand-mint: #cfe9db;
    --brand-mint-light: #e7f4ed;
    --brand-mint-dark: #b8dcc9;
    
    /* Extended Brand Palette */
    --brand-brown: #c68a7a;
    --brand-blue: #3EA9FA;
    --brand-pink: #e8d1cf;
    --brand-charcoal: #3A3A3A;
    
    /* Neutral Colors */
    --brand-white: #ffffff;
    --brand-light-gray: #f8f9fa;
    --brand-gray: #666666;
    --brand-dark-gray: #333333;
    
    /* Typography Scale - Desktop */
    --h1-size: 72px;
    --h2-size: 40px;
    --h3-size: 32px;
    --body-size: 18px;
    --caption-size: 14px;
    --small-size: 12px;
    
    /* Typography Scale - Tablet */
    --h1-size-tablet: 56px;
    --h2-size-tablet: 32px;
    --h3-size-tablet: 24px;
    --body-size-tablet: 16px;
    --caption-size-tablet: 13px;
    --small-size-tablet: 11px;
    
    /* Typography Scale - Mobile */
    --h1-size-mobile: 40px;
    --h2-size-mobile: 24px;
    --h3-size-mobile: 20px;
    --body-size-mobile: 14px;
    --caption-size-mobile: 12px;
    --small-size-mobile: 10px;
    
    /* Font Families */
    --font-heading: 'Bebas Neue', 'Arial Black', 'Helvetica Bold', sans-serif;
    --font-body: 'Poppins', 'Helvetica Neue', 'Arial', sans-serif;
    
    /* Font Weights */
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    
    /* Letter Spacing */
    --tracking-tight: -0.5px;
    --tracking-normal: 0px;
    --tracking-wide: 1px;
    --tracking-wider: 2px;
}

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

/* Aggressive reset to eliminate white space */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    border: 0;
    outline: 0;
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--brand-dark-gray);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ensure content before footer grows to fill space */
body > *:not(.footer) {
    flex-shrink: 0;
}

/* Make footer stick to bottom */
body > .footer:last-child {
    margin-top: auto;
}

/* Brand Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400; /* Bebas Neue Regular */
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--brand-charcoal);
}

/* Desktop Typography */
h1 { 
    font-size: var(--h1-size);
    letter-spacing: var(--tracking-wider);
}

h2 { 
    font-size: var(--h2-size);
    letter-spacing: var(--tracking-wide);
}

h3 { 
    font-size: var(--h3-size);
    letter-spacing: var(--tracking-wide);
}

h4 { 
    font-size: 1.25rem;
    letter-spacing: var(--tracking-normal);
}

/* Body Text - Poppins Regular */
p, body {
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    font-size: var(--body-size);
    line-height: 1.6;
    letter-spacing: var(--tracking-normal);
    margin-bottom: 1rem;
    color: var(--brand-gray);
}

/* Caption and Small Text - Poppins Light */
.caption, .small-text, small {
    font-family: var(--font-body);
    font-weight: var(--weight-light);
    font-size: var(--caption-size);
    letter-spacing: var(--tracking-wide);
    color: var(--brand-gray);
}

.small-text {
    font-size: var(--small-size);
}

/* Navigation Typography */
.nav-menu a {
    font-family: var(--font-body);
    font-weight: var(--weight-medium);
    font-size: 16px;
    letter-spacing: var(--tracking-normal);
}

/* Button Typography */
.btn-primary, .btn-secondary, .btn-outline {
    font-family: var(--font-body);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-normal);
}

/* Additional Typography Utilities */
.text-large {
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    font-size: 1.25rem;
    line-height: 1.6;
    letter-spacing: var(--tracking-normal);
}

.text-medium {
    font-family: var(--font-body);
    font-weight: var(--weight-medium);
    font-size: var(--body-size);
    line-height: 1.6;
    letter-spacing: var(--tracking-normal);
}

.text-light {
    font-family: var(--font-body);
    font-weight: var(--weight-light);
    font-size: var(--body-size);
    line-height: 1.6;
    letter-spacing: var(--tracking-wide);
}

/* List Typography */
ul, ol {
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    font-size: var(--body-size);
    line-height: 1.6;
    letter-spacing: var(--tracking-normal);
    color: var(--brand-gray);
}

li {
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    font-size: var(--body-size);
    line-height: 1.6;
    letter-spacing: var(--tracking-normal);
    color: var(--brand-gray);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 12px; /* Increased for friendly geometric styling */
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

/* Brand-consistent button animations */
.btn-primary::before, .btn-secondary::before, .btn-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.btn-primary:hover::before, .btn-secondary:hover::before, .btn-outline:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary span, .btn-secondary span, .btn-outline span {
    position: relative;
    z-index: 1;
}

/* Primary buttons - Orange background (#fbb040) */
.btn-primary {
    background: var(--brand-accent);
    color: white;
    border: 2px solid var(--brand-accent);
}

.btn-primary:hover {
    background: var(--brand-accent-hover);
    border-color: var(--brand-accent-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(251, 176, 64, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 6px 15px rgba(251, 176, 64, 0.3);
}

/* Secondary buttons - Pearl Aqua background (#7ac6ae) */
.btn-secondary {
    background: var(--brand-primary);
    color: white;
    border: 2px solid var(--brand-primary);
}

.btn-secondary:hover {
    background: var(--brand-primary-hover);
    border-color: var(--brand-primary-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(122, 198, 174, 0.4);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 5px 12px rgba(122, 198, 174, 0.3);
}

/* Outline buttons - Pearl Aqua border with transparent background */
.btn-outline {
    background: transparent;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
}

.btn-outline:hover {
    background: var(--brand-primary);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(122, 198, 174, 0.3);
}

.btn-outline:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 5px 12px rgba(122, 198, 174, 0.2);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Brand-consistent loading states */
.btn-primary.loading, .btn-secondary.loading, .btn-outline.loading {
    pointer-events: none;
    position: relative;
    color: transparent !important;
}

.btn-primary.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: brand-spin 1s linear infinite;
}

.btn-secondary.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: brand-spin 1s linear infinite;
}

.btn-outline.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--brand-primary);
    border-radius: 50%;
    animation: brand-spin 1s linear infinite;
}

@keyframes brand-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Interactive feedback for form elements */
input, textarea, select {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(122, 198, 174, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: var(--body-size);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(122, 198, 174, 0.1);
    transform: scale(1.02);
}

input:invalid, textarea:invalid {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

input:valid, textarea:valid {
    border-color: var(--brand-primary);
}

/* Enhanced accessibility with brand-consistent focus states */
*:focus-visible {
    outline: 2px solid var(--brand-accent);
    outline-offset: 2px;
    border-radius: 4px;
}

.btn-primary:focus-visible, .btn-secondary:focus-visible, .btn-outline:focus-visible {
    outline: 3px solid var(--brand-accent);
    outline-offset: 2px;
    box-shadow: 0 0 0 5px rgba(251, 176, 64, 0.2);
}

.nav-menu a:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
    background: rgba(122, 198, 174, 0.1);
}

.faq-question:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(122, 198, 174, 0.15);
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .gradient-text {
        animation: none;
    }
    
    .hero-title, .hero-description, .hero-buttons, .hero-stats, .hero-image {
        animation: none;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

/* Bungkoos Logo Implementation */
.nav-logo {
    /* Minimum clear space equivalent to letter "b" height */
    padding: 0.5rem;
}

.brand-wordmark {
    font-family: var(--font-body);
    font-weight: var(--weight-medium);
    font-size: 32px;
    color: var(--brand-charcoal);
    text-decoration: none;
    letter-spacing: var(--tracking-normal);
    line-height: 1;
    display: inline-block;
    position: relative;
}

.brand-circles {
    color: var(--brand-primary);
    position: relative;
}

/* .brand-circles::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.2em;
    height: 1.2em;
    border: 2px solid var(--brand-primary);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
} */

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-family: var(--font-body);
    font-weight: var(--weight-medium);
    font-size: 16px;
    letter-spacing: var(--tracking-normal);
    text-decoration: none;
    color: var(--brand-charcoal);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
    color: var(--brand-primary);
    background: rgba(122, 198, 174, 0.05);
    transform: translateY(-2px);
}

.nav-menu a:hover::before {
    width: 80%;
}

.nav-menu a:active {
    transform: translateY(0);
    background: rgba(122, 198, 174, 0.1);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--brand-charcoal);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--brand-mint) 0%, var(--brand-primary-light) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--h1-size); /* 48-72pt sizing already defined in CSS variables */
    font-weight: 400; /* Bebas Neue Regular */
    letter-spacing: var(--tracking-wider);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--brand-charcoal);
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Enhanced hero animations */
.hero-title {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero-description {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.hero-buttons {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
}

.hero-stats {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s both;
}

.hero-image {
    animation: fadeInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.hero-description {
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    font-size: 18px; /* Explicitly set to 18pt as per requirements */
    line-height: 1.6;
    letter-spacing: var(--tracking-normal);
    color: var(--brand-gray);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    display: block;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: var(--tracking-wide);
    color: var(--brand-primary); /* Pearl Aqua color for stats numbers */
}

.stat-label {
    font-family: var(--font-body);
    font-weight: var(--weight-light);
    font-size: var(--caption-size);
    letter-spacing: var(--tracking-wide);
    color: var(--brand-gray);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 3rem;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.hero-placeholder p {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: white;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: var(--h2-size);
    font-weight: 400;
    letter-spacing: var(--tracking-wide);
    margin-bottom: 1rem;
    color: var(--brand-charcoal);
}

.section-header p {
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    font-size: var(--body-size);
    line-height: 1.6;
    letter-spacing: var(--tracking-normal);
    color: var(--brand-gray);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

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

.feature-card {
    padding: 2rem;
    border-radius: 16px; /* Rounded corners for friendly geometric styling */
    background: var(--brand-white); /* White background as specified */
    /* Subtle brand-colored shadows using Pearl Aqua */
    box-shadow: 0 4px 20px rgba(122, 198, 174, 0.15), 0 2px 8px rgba(122, 198, 174, 0.1);
    /* Transitions are handled by JavaScript for better control */
    border: 1px solid rgba(122, 198, 174, 0.1); /* Subtle Pearl Aqua border */
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    /* Enhanced hover effects using Orange accent highlights */
    /* Note: Transform and animations are handled by JavaScript for better control */
    border-color: rgba(251, 176, 64, 0.4); /* Orange accent border on hover */
    /* Removed brandGlow animation to prevent conflicts with JavaScript */
}

/* Orange accent highlight on hover - subtle top border */
.feature-card:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-accent) 0%, var(--brand-accent-light) 100%);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-accent) 0%, var(--brand-accent-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-icon {
    width: 60px;
    height: 60px;
    /* Pearl Aqua circular backgrounds for icons */
    background: var(--brand-primary);
    border-radius: 50%; /* Perfect circular shape */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Icon hover effect with Orange accent */
.feature-card:hover .feature-icon {
    background: var(--brand-primary-hover);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(122, 198, 174, 0.3);
}

/* Subtle Orange accent ring on icon hover */
.feature-card:hover .feature-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--brand-accent);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.3; }
    100% { transform: scale(1); opacity: 0.6; }
}

/* Brand-consistent scroll animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes brandGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(122, 198, 174, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(122, 198, 174, 0.6), 0 0 30px rgba(251, 176, 64, 0.3);
    }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.animate-left {
    transform: translateX(0);
}

.animate-on-scroll.animate-right {
    transform: translateX(0);
}

/* Staggered animation delays for multiple elements */
.animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.6s; }

.feature-card h3 {
    /* Apply Bebas Neue typography to feature card titles */
    font-family: var(--font-heading);
    font-size: var(--h3-size);
    font-weight: 400; /* Bebas Neue Regular */
    letter-spacing: var(--tracking-wide);
    margin-bottom: 1rem;
    color: var(--brand-charcoal);
    transition: color 0.3s ease;
}

/* Title color change on hover with Orange accent */
.feature-card:hover h3 {
    color: var(--brand-accent-dark);
}

.feature-card p {
    /* Update feature descriptions to use Poppins Regular with proper line height */
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    font-size: var(--body-size);
    line-height: 1.7; /* Improved line height for better readability */
    letter-spacing: var(--tracking-normal);
    color: var(--brand-gray);
    margin-bottom: 0; /* Remove bottom margin for cleaner card layout */
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background: var(--brand-mint);
    position: relative;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(122, 198, 174, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(251, 176, 64, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.solution-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(122, 198, 174, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(122, 198, 174, 0.1);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(122, 198, 174, 0.25);
    border-color: var(--brand-primary);
}

.solution-image {
    width: 80px;
    height: 80px;
    background: var(--brand-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-image {
    background: var(--brand-accent);
    transform: scale(1.05);
}

.solution-card h3 {
    font-family: var(--font-heading);
    font-size: var(--h3-size);
    font-weight: 400;
    letter-spacing: var(--tracking-wide);
    margin-bottom: 1rem;
    color: var(--brand-charcoal);
}

.solution-card p {
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    font-size: var(--body-size);
    line-height: 1.6;
    letter-spacing: var(--tracking-normal);
    margin-bottom: 1.5rem;
    color: var(--brand-gray);
}

.solution-card ul {
    list-style: none;
}

.solution-card li {
    padding: 0.75rem 0;
    color: var(--brand-gray);
    position: relative;
    padding-left: 1.5rem;
    font-family: var(--font-body);
    font-size: var(--body-size);
    line-height: 1.5;
}

.solution-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-primary);
    font-weight: bold;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

/* Add connecting lines between process steps on desktop */
@media (min-width: 768px) {
    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: calc(2.5rem + 40px); /* padding-top + half of step-number height */
        right: -1.5rem;
        width: 3rem;
        height: 2px;
        background: linear-gradient(90deg, var(--brand-primary), var(--brand-mint));
        z-index: 1;
    }
}

.process-step {
    text-align: center;
    padding: 2.5rem;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(122, 198, 174, 0.3);
}

.step-number::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(122, 198, 174, 0.1);
    border-radius: 50%;
    top: -10px;
    left: -10px;
    z-index: -1;
}

.process-step:hover .step-number {
    background: var(--brand-accent);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(251, 176, 64, 0.4);
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: var(--h3-size);
    font-weight: 400;
    letter-spacing: var(--tracking-wide);
    margin-bottom: 1rem;
    color: var(--brand-charcoal);
}

.process-step p {
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    font-size: var(--body-size);
    line-height: 1.6;
    letter-spacing: var(--tracking-normal);
    color: var(--brand-gray);
}

/* WhatsApp Integration */
.whatsapp-integration {
    padding: 80px 0;
    /* Update section background to use Pearl Aqua (#7ac6ae) instead of generic green */
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: white;
    position: relative;
}

/* Add subtle WhatsApp brand recognition with accent elements */
.whatsapp-integration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(37, 211, 102, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.whatsapp-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.whatsapp-text h2 {
    /* Apply Bebas Neue to section heading with proper sizing */
    font-family: var(--font-heading);
    font-size: var(--h2-size); /* 28-40pt sizing as per brand requirements */
    font-weight: 400; /* Bebas Neue Regular */
    letter-spacing: var(--tracking-wide); /* +5 tracking for section headers */
    margin-bottom: 1.5rem;
    color: white; /* Ensure proper contrast for white text on Pearl Aqua background */
}

.whatsapp-text p {
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    font-size: var(--body-size);
    line-height: 1.6;
    letter-spacing: var(--tracking-normal);
    margin-bottom: 2rem;
    /* Ensure proper contrast for white text on Pearl Aqua background */
    color: rgba(255, 255, 255, 0.95); /* Slightly increased opacity for better contrast */
}

.whatsapp-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.whatsapp-text li {
    padding: 0.5rem 0;
    /* Ensure proper contrast for white text on Pearl Aqua background */
    color: rgba(255, 255, 255, 0.95); /* Slightly increased opacity for better contrast */
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    font-size: var(--body-size);
    line-height: 1.6;
    letter-spacing: var(--tracking-normal);
}

.whatsapp-text li i {
    margin-right: 0.5rem;
    color: white;
}

/* Update WhatsApp button to use Orange (#fbb040) accent color */
.whatsapp-integration .btn-primary {
    background: var(--brand-accent); /* Orange accent color */
    border-color: var(--brand-accent);
    color: white;
    font-weight: var(--weight-medium);
    transition: all 0.3s ease;
}

.whatsapp-integration .btn-primary:hover {
    background: var(--brand-accent-hover);
    border-color: var(--brand-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 176, 64, 0.4);
}

/* Maintain WhatsApp brand recognition with icon styling */
.whatsapp-integration .btn-primary i {
    color: white;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.whatsapp-image {
    display: flex;
    justify-content: center;
}

.whatsapp-placeholder {
    width: 300px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    backdrop-filter: blur(10px);
}

.whatsapp-placeholder p {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: white;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: #333;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: var(--tracking-wide);
    color: #667eea;
    display: block;
}

.stat-item .stat-label {
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    font-size: 1.1rem;
    letter-spacing: var(--tracking-normal);
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--brand-mint);
}

.testimonials .section-header h2 {
    font-family: var(--font-heading);
    font-weight: var(--weight-regular);
    font-size: var(--h2-size);
    letter-spacing: var(--tracking-tight);
    color: var(--brand-charcoal);
    margin-bottom: 1rem;
}

.testimonials .section-header p {
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    font-size: var(--body-size);
    letter-spacing: var(--tracking-normal);
    color: var(--brand-gray);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(122, 198, 174, 0.15);
    border: 1px solid rgba(122, 198, 174, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(122, 198, 174, 0.2);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 3rem;
    color: var(--brand-primary);
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-content p {
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    font-size: var(--body-size);
    line-height: 1.6;
    letter-spacing: var(--tracking-normal);
    font-style: italic;
    color: var(--brand-gray);
    margin-left: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 2px 8px rgba(122, 198, 174, 0.3);
}

.author-info h4 {
    font-family: var(--font-body);
    font-weight: var(--weight-medium);
    font-size: 1rem;
    letter-spacing: var(--tracking-normal);
    margin: 0;
    color: var(--brand-charcoal);
}

.author-info span {
    font-family: var(--font-body);
    font-weight: var(--weight-light);
    font-size: var(--caption-size);
    letter-spacing: var(--tracking-wide);
    color: var(--brand-brown);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq .section-header h2 {
    font-family: var(--font-heading);
    font-weight: var(--weight-regular);
    font-size: var(--h2-size);
    letter-spacing: var(--tracking-tight);
    color: var(--brand-charcoal);
    margin-bottom: 1rem;
}

.faq .section-header p {
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    font-size: var(--body-size);
    letter-spacing: var(--tracking-normal);
    color: var(--brand-gray);
}

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

.faq-item {
    border: 1px solid rgba(122, 198, 174, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(122, 198, 174, 0.1);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 4px 16px rgba(122, 198, 174, 0.15);
}

.faq-item.active {
    border-color: var(--brand-primary);
    box-shadow: 0 4px 20px rgba(122, 198, 174, 0.2);
}

.faq-question {
    padding: 1.5rem;
    background: rgba(207, 233, 219, 0.3);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--brand-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-question:hover {
    background: rgba(207, 233, 219, 0.5);
}

.faq-question:hover::before,
.faq-item.active .faq-question::before {
    opacity: 1;
}

.faq-item.active .faq-question {
    background: rgba(207, 233, 219, 0.6);
}

.faq-question h3 {
    font-family: var(--font-body); /* Changed from Bebas Neue to Poppins */
    font-weight: var(--weight-semibold); /* Slightly bolder for better hierarchy */
    font-size: 1.2rem;
    letter-spacing: var(--tracking-normal); /* Normal tracking for body font */
    margin: 0;
    color: var(--brand-charcoal);
}

.faq-question i {
    color: var(--brand-primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-question:hover i {
    color: var(--brand-accent);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--brand-accent);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer p {
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    font-size: var(--body-size);
    line-height: 1.6;
    letter-spacing: var(--tracking-normal);
    color: var(--brand-gray);
    /* margin: 0; */
}

.faq-item.active .faq-answer {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    max-height: none; /* Remove height limitation to show all content */
    border-top: 1px solid rgba(122, 198, 174, 0.1);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    /* Modify final CTA section to prominently feature Orange (#fbb040) for primary actions */
    background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
}

/* Add brand-consistent visual elements */
.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(122, 198, 174, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta h2 {
    /* Add brand-consistent spacing and typography throughout */
    font-family: var(--font-heading);
    font-size: var(--h2-size);
    font-weight: 400;
    letter-spacing: var(--tracking-wide);
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    z-index: 1;
}

.cta p {
    /* Add brand-consistent spacing and typography throughout */
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    font-size: var(--body-size);
    line-height: 1.6;
    letter-spacing: var(--tracking-normal);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Ensure primary CTA button prominently features Orange */
.cta .btn-primary {
    background: white;
    color: var(--brand-accent);
    border: 2px solid white;
    font-weight: var(--weight-medium);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.cta .btn-primary:hover {
    background: var(--brand-white);
    color: var(--brand-accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

/* Secondary CTA button with outline style */
.cta .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

/* Footer */
.footer {
    /* Apply brand colors to footer background */
    background: linear-gradient(135deg, var(--brand-charcoal) 0%, #2a2a2a 100%);
    color: white;
    padding: 80px 0 0; /* Remove bottom padding to eliminate white space */
    position: relative;
    margin-top: auto; /* Push footer to bottom */
}

/* Add subtle brand accent elements */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(122, 198, 174, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 90% 80%, rgba(251, 176, 64, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem; /* Add brand-consistent spacing */
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* Footer Brand Logo */
.footer-brand-wordmark {
    /* Add brand-consistent typography throughout footer */
    font-family: var(--font-body);
    font-weight: var(--weight-medium);
    font-size: var(--h3-size);
    color: white;
    letter-spacing: var(--tracking-normal);
    line-height: 1;
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.footer-brand-wordmark:hover {
    color: var(--brand-primary);
}

.footer-brand-wordmark .brand-circles {
    color: var(--brand-primary);
    transition: color 0.3s ease;
}

.footer-brand-wordmark:hover .brand-circles {
    color: var(--brand-accent);
}

.footer-logo p {
    /* Add brand-consistent typography throughout footer */
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    font-size: var(--body-size);
    line-height: 1.6;
    letter-spacing: var(--tracking-normal);
    color: rgba(255, 255, 255, 0.8); /* Improved contrast */
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(122, 198, 174, 0.1);
    border: 1px solid rgba(122, 198, 174, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-charcoal); /* Better contrast for visibility */
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    position: relative;
}

.social-links a i {
    /* Ensure perfect icon centering */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

/* Update social media icons to use brand color hover states with proper contrast */
.social-links a:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: white; /* White icon on colored background */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(122, 198, 174, 0.4);
}

/* Alternate hover states for variety with proper contrast */
.social-links a:nth-child(1):hover {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: white; /* White icon on orange background */
    box-shadow: 0 6px 20px rgba(251, 176, 64, 0.4);
}

/* Alternate hover states for variety with proper contrast */
.social-links a:nth-child(2):hover {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: white; /* White icon on orange background */
    box-shadow: 0 6px 20px rgba(251, 176, 64, 0.4);
}

.social-links a:nth-child(3):hover {
    background: #1DA1F2; /* Twitter blue */
    border-color: #1DA1F2;
    color: white; /* White icon on blue background */
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.4);
}

.social-links a:nth-child(4):hover {
    background: #0077B5; /* LinkedIn blue */
    border-color: #0077B5;
    color: white; /* White icon on LinkedIn blue background */
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

.footer-section h4 {
    /* Add brand-consistent typography throughout footer */
    font-family: var(--font-body);
    font-weight: var(--weight-medium);
    font-size: 1.2rem;
    letter-spacing: var(--tracking-normal);
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.5rem;
}

/* Add subtle brand accent underline to section headers */
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--brand-primary);
    border-radius: 1px;
}

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

.footer-section li {
    margin-bottom: 0.75rem; /* Add brand-consistent spacing */
}

.footer-section a {
    /* Ensure footer links use appropriate brand colors with proper contrast */
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    font-size: var(--body-size);
    color: rgba(255, 255, 255, 0.8); /* Improved contrast */
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--brand-primary);
    transform: translateX(3px);
}

/* Add subtle hover indicator */
.footer-section a::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--brand-accent);
    transition: width 0.3s ease;
}

.footer-section a:hover::before {
    width: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(122, 198, 174, 0.2); /* Use brand color for border */
    padding: 2.5rem 0 2rem 0; /* Add bottom padding to footer-bottom instead */
    text-align: center;
    color: rgba(255, 255, 255, 0.8); /* Improved contrast */
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    /* Add brand-consistent typography throughout footer */
    font-family: var(--font-body);
    font-weight: var(--weight-regular);
    font-size: var(--caption-size);
    letter-spacing: var(--tracking-wide);
    margin: 0;
}

/* Responsive Design */
/* Large Desktop (1200px+) - Default styles already applied */

/* Desktop (1024px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 1000px;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Tablet Typography and Layout (768px - 1024px) */
@media (max-width: 1024px) {
    /* Typography scaling for tablets */
    h1 { font-size: var(--h1-size-tablet); }
    h2 { font-size: var(--h2-size-tablet); }
    h3 { font-size: var(--h3-size-tablet); }
    
    p, body {
        font-size: var(--body-size-tablet);
    }
    
    .caption, .small-text {
        font-size: var(--caption-size-tablet);
    }
    
    .small-text {
        font-size: var(--small-size-tablet);
    }
    
    /* Logo maintains brand consistency on tablets */
    .brand-wordmark {
        font-size: 30px;
        min-height: 40px; /* Ensure minimum size requirement */
    }
    
    /* Tablet layout adjustments */
    .hero-container {
        gap: 2.5rem;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    /* Maintain brand color consistency in buttons */
    .btn-primary, .btn-secondary, .btn-outline {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

/* Mobile Navigation and Layout (768px and below) */
@media (max-width: 768px) {
    /* Mobile Navigation with Brand Colors */
    .hamburger {
        display: flex;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }
    
    .hamburger:hover {
        background-color: rgba(122, 198, 174, 0.1); /* Pearl Aqua hover background */
    }
    
    .hamburger span {
        background: var(--brand-charcoal);
        transition: all 0.3s ease;
    }
    
    /* Brand-styled hamburger animation */
    .hamburger.active span:nth-child(1) {
        background: var(--brand-primary);
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        background: var(--brand-primary);
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 8px 32px rgba(122, 198, 174, 0.2); /* Brand-colored shadow */
        border-top: 3px solid var(--brand-primary); /* Pearl Aqua top border */
        border-radius: 0 0 16px 16px;
        padding: 1.5rem;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex !important;
        flex-direction: column;
        gap: 1rem;
        animation: slideDown 0.3s ease;
    }
    
    .nav-menu a {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        color: var(--brand-charcoal);
        font-weight: var(--weight-medium);
    }
    
    .nav-menu a:hover {
        background: var(--brand-mint); /* Mint background on hover */
        color: var(--brand-primary);
        transform: translateX(8px);
    }

    .nav-buttons {
        display: none;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(122, 198, 174, 0.2);
    }
    
    .nav-buttons.active {
        display: flex !important;
    }
    
    /* Mobile navigation buttons maintain brand colors */
    .nav-buttons .btn-secondary,
    .nav-buttons .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }

    /* Logo maintains minimum size requirements on mobile (40px height) */
    .brand-wordmark {
        font-size: 28px;
        min-height: 40px;
        display: flex;
        align-items: center;
    }
    
    /* Ensure brand circles remain visible on mobile */
    .brand-circles {
        color: var(--brand-primary);
    }

    /* Mobile layout adjustments */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: var(--h1-size-mobile);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        max-width: 280px;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .whatsapp-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem; /* Brand-consistent spacing */
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline {
        width: 100%;
        max-width: 300px; /* Slightly wider for better mobile experience */
        padding: 16px 24px; /* Maintain comfortable touch targets */
    }
    
    /* Ensure primary CTA maintains Orange prominence on mobile */
    .cta .btn-primary {
        font-weight: var(--weight-medium);
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem; /* Maintain brand-consistent spacing on mobile */
    }
    
    /* Mobile footer brand consistency */
    .footer-brand-wordmark {
        font-size: var(--h3-size-mobile);
        margin-bottom: 1rem;
    }
    
    .footer-logo p {
        font-size: var(--body-size-mobile);
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .social-links a {
        width: 48px; /* Slightly larger for better mobile touch targets */
        height: 48px;
        font-size: 1.2rem;
    }
    
    .social-links a i {
        /* Ensure perfect icon centering on mobile */
        font-size: 1.2rem;
    }
    
    .footer-section h4 {
        font-size: var(--h3-size-mobile);
        margin-bottom: 1rem;
    }
    
    .footer-section a {
        font-size: var(--body-size-mobile);
    }
    
    .footer-bottom {
        padding: 2rem 0 1.5rem 0; /* Consistent mobile padding */
    }
    
    .footer-bottom p {
        font-size: var(--caption-size-mobile);
    }

    /* Mobile Typography - Maintain brand hierarchy */
    h1 { font-size: var(--h1-size-mobile); }
    h2 { font-size: var(--h2-size-mobile); }
    h3 { font-size: var(--h3-size-mobile); }
    
    p, body {
        font-size: var(--body-size-mobile);
    }
    
    .caption, .small-text {
        font-size: var(--caption-size-mobile);
    }
    
    .small-text {
        font-size: var(--small-size-mobile);
    }
    
    /* Mobile section padding adjustments */
    .features,
    .solutions,
    .process,
    .testimonials,
    .faq {
        padding: 60px 0;
    }
    
    .whatsapp-integration,
    .cta {
        padding: 60px 0;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: var(--h1-size-mobile); /* Maintain consistent Bebas Neue scaling */
        line-height: 1.1;
    }

    /* Maintain minimum logo size on small mobile (40px requirement) */
    .brand-wordmark {
        font-size: 24px;
        min-height: 40px;
        line-height: 40px;
    }
    
    /* Ensure brand circles remain proportional */
    .brand-circles::before {
        width: 1em;
        height: 1em;
    }

    /* Single column layouts for small screens */
    .features-grid,
    .solutions-grid,
    .process-steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Maintain brand styling in cards on small screens */
    .feature-card,
    .solution-card,
    .testimonial-card {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .feature-icon,
    .solution-image {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* Mobile FAQ adjustments with brand colors */
    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: var(--h3-size-mobile);
    }

    .faq-answer {
        padding: 0 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1rem;
    }
    
    /* Maintain brand color highlights in FAQ */
    .faq-item:hover {
        border-color: var(--brand-primary);
    }

    /* Mobile testimonial adjustments */
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-content::before {
        font-size: 2rem;
        top: -5px;
        left: -5px;
        color: var(--brand-primary);
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        background: var(--brand-primary);
    }

    /* Responsive image placeholders */
    .hero-placeholder,
    .whatsapp-placeholder {
        width: 100%;
        max-width: 280px;
        height: 200px;
        font-size: 2rem;
    }
    
    /* Mobile button adjustments */
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* Mobile stats layout */
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat {
        min-width: 120px;
    }
    
    /* Mobile process steps */
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-number::after {
        width: 80px;
        height: 80px;
        top: -10px;
        left: -10px;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    /* Ensure logo never goes below minimum requirements */
    .brand-wordmark {
        font-size: 22px;
        min-height: 40px;
    }
    
    .hero-title {
        font-size: 32px; /* Slightly smaller but still impactful */
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .feature-card,
    .solution-card,
    .testimonial-card {
        padding: 1.25rem;
    }
}

/* Mobile Navigation Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.solution-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Feature Cards have their own JavaScript-controlled animations */
.feature-card {
    /* No CSS animations - handled by JavaScript to prevent conflicts */
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 80px;
} 