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

:root {
    /* AWEB Brand Colors - Matching AWEB-Aktion.pdf */
    --dark-navy: #1B3A5C;        /* Primary dark background */
    --ice-gray: #f4f5f5;         /* Background */
    --ice-blue: #6BA3D4;         /* Accent blue 1 - lighter */
    --sky-blue: #6BA3D4;         /* Accent blue 2 - lighter */
    --ocean-blue: #2D5F8D;       /* Accent blue 3 - steel blue */
    --accent-orange: #FF9900;    /* Orange highlight - from PDF */

    /* Color assignments */
    --primary-color: #2D5F8D;    /* Steel Blue - from PDF */
    --primary-light: #6BA3D4;    /* Light Blue - from PDF */
    --primary-dark: #1B3A5C;     /* Dark Navy - from PDF */
    --secondary-color: #6BA3D4;  /* Sky Blue - lighter */

    /* Backgrounds */
    --bg-main: #f4f5f5;          /* Ice Gray - main background */
    --bg-white: #ffffff;         /* White sections */
    --bg-light: #fafbfb;         /* Slightly lighter */
    --bg-dark: #1B3A5C;          /* Dark Navy for contrast sections - from PDF */

    /* Text colors */
    --text-dark: #1B3A5C;        /* Dark Navy - primary text */
    --text-medium: #5a6c7d;      /* Medium gray text */
    --text-light: #8899a6;       /* Light gray text */
    --text-muted: #a0b0bb;       /* Muted text */
    --text-white: #ffffff;       /* White text on dark backgrounds */

    /* Gradients */
    --gradient: linear-gradient(135deg, #2D5F8D 0%, #6BA3D4 100%);
    --gradient-light: linear-gradient(135deg, #6BA3D4 0%, #A8D4F2 100%);

    /* Shadows - updated for new blue colors */
    --shadow-sm: 0 2px 8px rgba(27, 58, 92, 0.08);
    --shadow-md: 0 4px 16px rgba(27, 58, 92, 0.12);
    --shadow-lg: 0 8px 32px rgba(27, 58, 92, 0.16);
    --shadow-hover: 0 12px 40px rgba(45, 95, 141, 0.2);
    --shadow-orange: 0 4px 16px rgba(255, 153, 0, 0.25);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', 'Aptos', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-main);
    overflow-x: hidden;
    position: relative;
}

/* Network dots pattern - from AWEB PDF */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at center, rgba(45, 95, 141, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

/* Background Lighting Effects - Updated for light theme */
.bg-lighting {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.light-beam {
    position: absolute;
    width: 1px;
    height: 100%;
    opacity: 0.04;
}

.beam-1 {
    left: 15%;
    background: linear-gradient(to bottom, transparent 0%, var(--ocean-blue) 50%, transparent 100%);
    animation: beamPulse 4s ease-in-out infinite;
}

.beam-2 {
    left: 50%;
    background: linear-gradient(to bottom, transparent 0%, var(--ice-blue) 50%, transparent 100%);
    animation: beamPulse 5s ease-in-out infinite 1s;
}

.beam-3 {
    right: 20%;
    background: linear-gradient(to bottom, transparent 0%, var(--sky-blue) 50%, transparent 100%);
    animation: beamPulse 6s ease-in-out infinite 2s;
}

@keyframes beamPulse {
    0%, 100% {
        opacity: 0.03;
        transform: scaleY(0.8);
    }
    50% {
        opacity: 0.06;
        transform: scaleY(1);
    }
}

/* White Light Beams - subtle for light background */
.white-beam {
    position: absolute;
    width: 1px;
    height: 100%;
    opacity: 0.02;
}

.white-beam-1 {
    left: 35%;
    background: linear-gradient(to bottom, transparent 0%, rgba(79, 168, 222, 0.2) 50%, transparent 100%);
    animation: whiteBeamPulse 7s ease-in-out infinite;
}

.white-beam-2 {
    right: 35%;
    background: linear-gradient(to bottom, transparent 0%, rgba(77, 159, 214, 0.2) 50%, transparent 100%);
    animation: whiteBeamPulse 8s ease-in-out infinite 2s;
}

@keyframes whiteBeamPulse {
    0%, 100% {
        opacity: 0.02;
        transform: scaleY(0.9);
    }
    50% {
        opacity: 0.04;
        transform: scaleY(1);
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(62, 127, 194, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(62, 127, 194, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

/* Light Background Effects */
.bg-lighting::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 30%, rgba(79, 168, 222, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 85% 50%, rgba(77, 159, 214, 0.025) 0%, transparent 30%),
        radial-gradient(circle at 50% 70%, rgba(62, 127, 194, 0.02) 0%, transparent 25%),
        radial-gradient(circle at 30% 85%, rgba(79, 168, 222, 0.03) 0%, transparent 28%),
        radial-gradient(circle at 70% 15%, rgba(77, 159, 214, 0.025) 0%, transparent 30%),
        radial-gradient(circle at 40% 40%, rgba(62, 127, 194, 0.02) 0%, transparent 35%);
    pointer-events: none;
    animation: subtleGlow 15s ease-in-out infinite;
}

.bg-lighting::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(79, 168, 222, 0.08) 1px, transparent 1px),
        radial-gradient(circle, rgba(77, 159, 214, 0.06) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px;
    background-position: 0 0, 50px 50px;
    opacity: 0.03;
    pointer-events: none;
}

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

/* Ensure content is above lighting */
nav, section, footer {
    position: relative;
    z-index: 1;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(36, 50, 68, 0.08);
    transition: var(--transition);
    border-bottom: 1px solid rgba(36, 50, 68, 0.06);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

/* Logo Styles */
.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(36, 50, 68, 0.1));
    animation: logoFloat 3s ease-in-out infinite;
    transition: var(--transition);
    cursor: pointer;
}

.logo:hover {
    filter: drop-shadow(0 4px 8px rgba(62, 127, 194, 0.3));
    transform: scale(1.05);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

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

.nav-menu a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

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

/* Special AWEB Navigation Item */
.nav-aweb-highlight {
    display: flex !important;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem !important;
    background: rgba(45, 95, 141, 0.1);
    color: var(--accent-orange) !important;
    border-radius: 8px;
    font-weight: 600 !important;
    border: 1.5px solid rgba(45, 95, 141, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
}

.nav-aweb-highlight .aweb-nav-icon {
    width: 16px;
    height: 16px;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(51%) sepia(98%) saturate(1614%) hue-rotate(0deg) brightness(102%) contrast(106%);
}

.nav-aweb-highlight:hover {
    background: rgba(45, 95, 141, 0.18);
    border-color: var(--primary-color);
    color: var(--accent-orange) !important;
    transform: translateY(-1px);
}

.nav-aweb-highlight:hover .aweb-nav-icon {
    opacity: 1;
    transform: scale(1.1);
}

.nav-aweb-highlight::after {
    display: none !important;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-medium);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger:hover span {
    background: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background:
        radial-gradient(circle at 50% 50%, rgba(79, 168, 222, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(77, 159, 214, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(62, 127, 194, 0.05) 0%, transparent 40%),
        linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* Animated Gradient Orbs - Light theme */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--ocean-blue) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--ice-blue) 0%, transparent 70%);
    bottom: -5%;
    left: -5%;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--sky-blue) 0%, transparent 70%);
    top: 30%;
    left: 20%;
    animation-delay: 14s;
}

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

/* Particles */
.particle {
    position: absolute;
    width: 40px;
    height: 40px;
    animation: particleFloat 20s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    opacity: 0;
    will-change: transform, opacity;
}

/* AWEB particles - larger */
.particle:nth-child(1),
.particle:nth-child(3),
.particle:nth-child(5),
.particle:nth-child(7),
.particle:nth-child(9) {
    width: 55px;
    height: 55px;
}

.particle-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(255, 153, 0, 0.2));
    transition: filter 0.3s ease;
}

.particle:nth-child(1) {
    top: 75%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.particle:nth-child(2) {
    top: 80%;
    left: 65%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.particle:nth-child(3) {
    top: 70%;
    left: 45%;
    animation-delay: 6s;
    animation-duration: 20s;
}

.particle:nth-child(4) {
    top: 85%;
    left: 35%;
    animation-delay: 9s;
    animation-duration: 24s;
}

.particle:nth-child(5) {
    top: 75%;
    left: 75%;
    animation-delay: 12s;
    animation-duration: 19s;
}

.particle:nth-child(6) {
    top: 90%;
    left: 55%;
    animation-delay: 4s;
    animation-duration: 21s;
}

.particle:nth-child(7) {
    top: 80%;
    left: 15%;
    animation-delay: 8s;
    animation-duration: 23s;
}

.particle:nth-child(8) {
    top: 85%;
    left: 82%;
    animation-delay: 14s;
    animation-duration: 20s;
}

.particle:nth-child(9) {
    top: 78%;
    left: 50%;
    animation-delay: 2s;
    animation-duration: 22s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0) scale(0.8) rotate(0deg);
        opacity: 0;
        filter: blur(2px);
    }
    5% {
        opacity: 0.4;
        filter: blur(1px);
    }
    15% {
        opacity: 0.5;
        transform: translateY(-15vh) translateX(15px) scale(0.85) rotate(45deg);
        filter: blur(0.5px);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-50vh) translateX(-10px) scale(1) rotate(180deg);
        filter: blur(0px);
    }
    85% {
        opacity: 0.5;
        transform: translateY(-85vh) translateX(20px) scale(1.05) rotate(315deg);
        filter: blur(0.5px);
    }
    95% {
        opacity: 0.3;
        filter: blur(1px);
    }
    100% {
        transform: translateY(-100vh) translateX(30px) scale(0.9) rotate(360deg);
        opacity: 0;
        filter: blur(2px);
    }
}

/* Sparkle Effects */
.sparkle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8), 0 0 8px rgba(255, 255, 255, 0.4);
    animation: sparkletwinkle 3s ease-in-out infinite;
}

.sparkle::before,
.sparkle::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 50%;
}

.sparkle::before {
    width: 1px;
    height: 6px;
    top: -2px;
    left: 0.5px;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.6);
}

.sparkle::after {
    width: 6px;
    height: 1px;
    top: 0.5px;
    left: -2px;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.6);
}

.sparkle-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 45%;
    left: 85%;
    animation-delay: 1s;
}

.sparkle-3 {
    top: 70%;
    left: 15%;
    animation-delay: 2s;
}

.sparkle-4 {
    top: 25%;
    left: 75%;
    animation-delay: 0.5s;
}

.sparkle-5 {
    top: 55%;
    left: 40%;
    animation-delay: 1.5s;
}

.sparkle-6 {
    top: 85%;
    left: 60%;
    animation-delay: 2.5s;
}

@keyframes sparkletwinkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Medical Heartbeat Line */
.medical-heartbeat {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        transparent 20%,
        rgba(0, 102, 255, 0.3) 20%,
        rgba(0, 102, 255, 0.3) 22%,
        transparent 22%,
        transparent 35%,
        rgba(0, 102, 255, 0.5) 35%,
        rgba(0, 102, 255, 0.5) 36%,
        rgba(0, 217, 255, 0.8) 37%,
        rgba(0, 217, 255, 0.8) 38%,
        rgba(0, 102, 255, 0.5) 39%,
        rgba(0, 102, 255, 0.5) 40%,
        transparent 40%,
        transparent 50%,
        rgba(0, 102, 255, 0.3) 50%,
        rgba(0, 102, 255, 0.3) 52%,
        transparent 52%,
        transparent 80%
    );
    background-size: 200% 100%;
    animation: heartbeat 8s linear infinite;
    opacity: 0.4;
}

@keyframes heartbeat {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

/* Medical Badge */
.medical-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 153, 0, 0.1);
    border: 2px solid rgba(255, 153, 0, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: badgePulse 3s ease-in-out infinite;
    box-shadow: 0 4px 16px rgba(255, 153, 0, 0.15);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.medical-badge:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 153, 0, 0.3);
    border-color: rgba(255, 153, 0, 0.5);
    background: rgba(255, 153, 0, 0.15);
}

.medical-badge .aweb-badge-logo {
    width: 90px;
    height: auto;
}

.medical-badge span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FF9900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(255, 153, 0, 0.15);
        border-color: rgba(255, 153, 0, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(255, 153, 0, 0.25);
        border-color: rgba(255, 153, 0, 0.45);
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
    position: relative;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
}

.hero-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.6;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Orange accent text - matching AWEB PDF */
.text-orange-accent {
    color: var(--accent-orange);
    font-weight: 800;
}

/* Tilted promotional box - from AWEB PDF */
.promo-box-tilted {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 800;
    transform: rotate(-2deg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

.promo-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, rgba(45, 95, 141, 0.95) 0%, rgba(27, 58, 92, 0.95) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.promo-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 153, 0, 0.1) 0%, transparent 70%);
}

.promo-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.promo-benefit {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.6;
}

/* Pricing bubble - from AWEB PDF */
.pricing-bubble {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FFBB33 100%);
    border-radius: 50% 50% 50% 0;
    box-shadow: var(--shadow-orange);
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.pricing-bubble-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-bubble-amount {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
}

.pricing-bubble-onetime {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.pricing-bubble-recurring {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.pricing-bubble-period {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

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

@keyframes textGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 102, 255, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.6));
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn small {
    position: relative;
    z-index: 1;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

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

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

.btn-primary {
    background: var(--gradient);
    color: #ffffff;
    box-shadow: var(--shadow-md);
    position: relative;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: #ffffff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-md);
}

.btn-orange {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FFBB33 100%);
    color: #ffffff;
    box-shadow: var(--shadow-orange);
    font-weight: 700;
}

.btn-orange:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(255, 153, 0, 0.35);
}

/* CTA Boxes */
.cta-box {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(79, 168, 222, 0.08) 0%, rgba(77, 159, 214, 0.05) 100%);
    border: 2px solid rgba(62, 127, 194, 0.2);
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(79, 168, 222, 0.08), transparent 30%);
    animation: rotate 10s linear infinite;
}

.cta-box > * {
    position: relative;
    z-index: 1;
}

.cta-box h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-box p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .btn {
    transform: scale(1.1);
}

.cta-box .btn:hover {
    transform: scale(1.15) translateY(-3px);
}

.cta-urgent {
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.2);
}

.cta-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    animation: bounce 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--gradient);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Page Header */
.page-header {
    padding: 10rem 0 4rem;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a2c3e 100%);
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 50%, rgba(79, 168, 222, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(77, 159, 214, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(62, 127, 194, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-white);
    animation: fadeInUp 0.8s ease-out;
}

.page-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.85);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::before {
    content: '◆';
    position: absolute;
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient);
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
    margin-top: -2rem;
    margin-bottom: -2rem;
}

.about .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 153, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-cards-wrapper {
    width: 100%;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.about-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: block;
}

.about-card-link {
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.about-card-link:hover {
    text-decoration: none;
}

.about-card-link::after {
    content: '→';
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.about-card-link.about-card-highlight::after {
    color: #FF9900;
}

.about-card-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.about-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.2);
}

.about-card-highlight {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.05) 0%, rgba(255, 187, 51, 0.08) 100%);
    border: 2px solid rgba(255, 153, 0, 0.3);
}

.about-card-highlight::before {
    background: linear-gradient(90deg, #FF9900 0%, #FFBB33 100%);
}

.about-card-highlight:hover {
    box-shadow: 0 12px 40px rgba(255, 153, 0, 0.25);
    border-color: rgba(255, 153, 0, 0.5);
}

.about-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.about-card-highlight .about-card-icon {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.15) 0%, rgba(255, 187, 51, 0.15) 100%);
}

.about-card:hover .about-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-card-icon img {
    width: 50px;
    height: auto;
    object-fit: contain;
}

.about-card-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-color);
}

.about-card-highlight .about-card-icon svg {
    stroke: #FF9900;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-card-highlight h3 {
    background: linear-gradient(135deg, #FF9900 0%, #FFBB33 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.about-card-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.about-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.about-card-features span {
    padding: 0.5rem 1rem;
    background: rgba(255, 153, 0, 0.1);
    color: #FF9900;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255, 153, 0, 0.2);
    transition: all 0.3s ease;
}

.about-card-features span:hover {
    background: rgba(255, 153, 0, 0.2);
    transform: translateY(-2px);
}

.about-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-card-list span {
    color: var(--text-medium);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-card-list span::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

/* AWEB Highlight Section */
.aweb-highlight {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2D5F8D 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 97%);
    margin-top: -2rem;
    margin-bottom: -2rem;
}

.aweb-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(79, 168, 222, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

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

.aweb-intro {
    padding: 2rem 0;
}

.aweb-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: badgePulse 3s ease-in-out infinite;
}

.aweb-badge svg {
    width: 20px;
    height: 20px;
    color: var(--accent-orange);
}

.aweb-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aweb-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.aweb-title .text-orange-accent {
    color: var(--accent-orange);
}

.aweb-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.aweb-features-quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.quick-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.quick-feature:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-orange);
    transform: translateX(5px);
}

.quick-feature svg {
    width: 20px;
    height: 20px;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.quick-feature span {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Prominent Phone CTA Box - from AWEB PDF */
.phone-cta-box {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.15) 0%, rgba(255, 153, 0, 0.05) 100%);
    border: 2px solid var(--accent-orange);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

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

.phone-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.phone-cta-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phone-display {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FFBB33 100%);
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(255, 153, 0, 0.4);
    margin: 1rem 0;
}

.phone-display:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 153, 0, 0.6);
}

.phone-display svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
    animation: phoneRing 2s ease-in-out infinite;
}

.phone-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
}

.phone-cta-hours {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1rem;
}

@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

/* Feature Checklist - from AWEB PDF */
.aweb-features-list {
    margin: 3rem 0;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.aweb-features-list h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.checklist-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--accent-orange);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.checklist-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-orange);
    transform: translateX(5px);
}

.checklist-item:hover::before {
    transform: scaleY(1);
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-orange);
    flex-shrink: 0;
    stroke-width: 3;
    filter: drop-shadow(0 2px 4px rgba(255, 153, 0, 0.3));
}

.checklist-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.checklist-item:hover .check-icon {
    animation: checkPop 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes checkPop {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2) rotate(5deg);
    }
}

/* Checklist White Background Variant - for Features Section */
.checklist-white {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.checklist-white .checklist-item {
    background: #ffffff;
    border: 1px solid rgba(45, 95, 141, 0.15);
    padding: 1.5rem;
    gap: 1rem;
    align-items: flex-start;
}

.checklist-white .checklist-item::before {
    background: var(--accent-orange);
}

.checklist-white .checklist-item:hover {
    background: #ffffff;
    border-color: var(--accent-orange);
    box-shadow: 0 8px 25px rgba(45, 95, 141, 0.15);
}

.checklist-white .check-icon {
    margin-top: 0.25rem;
}

.checklist-white .checklist-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.checklist-white .checklist-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.checklist-white .checklist-item span {
    color: var(--text-dark);
}

/* QR Code Section - from AWEB PDF */
.qr-code-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.08) 0%, rgba(255, 153, 0, 0.02) 100%);
    border: 2px dashed var(--accent-orange);
    border-radius: 20px;
    position: relative;
}

.qr-code-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.qr-code-box {
    flex-shrink: 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.qr-code-placeholder {
    width: 160px;
    height: 160px;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.qr-code-placeholder svg {
    display: block;
    width: 100%;
    height: 100%;
}

.qr-code-text {
    flex: 1;
}

.qr-code-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.qr-code-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.qr-code-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--accent-orange);
    border-radius: 50px;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
}

.qr-code-badge svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

/* AWEB Multi-Step Form Container */
.aweb-form-container {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(62, 127, 194, 0.15);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.aweb-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.aweb-form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.aweb-form-header p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Progress Bar */
.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(62, 127, 194, 0.15);
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    position: relative;
    z-index: 1;
}

.progress-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(62, 127, 194, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-light);
    transition: var(--transition);
}

.progress-step.active .progress-circle {
    background: var(--gradient);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(79, 168, 222, 0.2);
}

.progress-step.completed .progress-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.progress-step span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
}

.progress-step.active span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Form Steps */
.aweb-multi-step-form {
    position: relative;
}

.form-step {
    display: none;
    animation: fadeInUp 0.4s ease-out;
}

.form-step.active {
    display: block;
}

.form-step h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Form Group Styling for AWEB Form */
.aweb-multi-step-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.aweb-multi-step-form .form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    position: static;
}

.aweb-multi-step-form .form-group input[type="text"],
.aweb-multi-step-form .form-group input[type="email"],
.aweb-multi-step-form .form-group input[type="tel"],
.aweb-multi-step-form .form-group textarea,
.aweb-multi-step-form .form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(79, 168, 222, 0.03);
    border: 2px solid rgba(62, 127, 194, 0.2);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

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

.aweb-multi-step-form .form-group input:focus,
.aweb-multi-step-form .form-group textarea:focus,
.aweb-multi-step-form .form-group select:focus {
    border-color: var(--primary-color);
    background: rgba(79, 168, 222, 0.08);
    box-shadow: 0 0 0 3px rgba(79, 168, 222, 0.1);
}

.aweb-multi-step-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.aweb-multi-step-form .form-error {
    display: block;
    color: #ff4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.aweb-multi-step-form .form-group.error input,
.aweb-multi-step-form .form-group.error textarea,
.aweb-multi-step-form .form-group.error select {
    border-color: #ff4444;
}

/* Checkbox Styling for AWEB Form */
.aweb-multi-step-form .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0;
}

.aweb-multi-step-form .checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.aweb-multi-step-form .checkbox-group .checkbox-label {
    position: static !important;
    color: var(--text-medium) !important;
    font-size: 0.875rem !important;
    line-height: 1.5;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important;
    pointer-events: auto !important;
}

.aweb-multi-step-form .checkbox-group .checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
}

.aweb-multi-step-form .checkbox-group .form-error {
    margin-left: 28px;
    margin-top: 0.5rem;
}

/* Radio Group Labels */
.aweb-multi-step-form .radio-group + .form-group label,
.form-step .form-group > label:first-child {
    position: static !important;
}

/* Options Grid (Step 1) */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.option-card {
    position: relative;
    cursor: pointer;
}

.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: rgba(79, 168, 222, 0.03);
    border: 2px solid rgba(62, 127, 194, 0.15);
    border-radius: 12px;
    transition: var(--transition);
    text-align: center;
}

.option-content svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    transition: var(--transition);
}

.option-content span {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.option-card:hover .option-content {
    background: rgba(79, 168, 222, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.option-card input[type="radio"]:checked + .option-content {
    background: linear-gradient(135deg, rgba(79, 168, 222, 0.15) 0%, rgba(62, 127, 194, 0.1) 100%);
    border-color: var(--primary-color);
    border-width: 2px;
    box-shadow: 0 0 0 3px rgba(79, 168, 222, 0.15);
}

.option-card input[type="radio"]:checked + .option-content svg {
    color: var(--ocean-blue);
    transform: scale(1.1);
}

.option-card input[type="radio"]:checked + .option-content span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Radio Group (Step 3) */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(79, 168, 222, 0.03);
    border: 1px solid rgba(62, 127, 194, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    user-select: none;
}

.radio-option:hover {
    background: rgba(79, 168, 222, 0.08);
    border-color: var(--primary-color);
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.radio-option span {
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    flex: 1;
    line-height: 1.5;
    pointer-events: none; /* This allows clicks to pass through to the label */
}

.radio-option input[type="radio"]:checked {
    accent-color: var(--ocean-blue);
}

.radio-option:has(input[type="radio"]:checked),
.radio-option.active {
    background: rgba(79, 168, 222, 0.1);
    border-color: var(--primary-color);
    border-width: 2px;
}

.radio-option:has(input[type="radio"]:checked) span,
.radio-option.active span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
}

.form-navigation .btn {
    flex: 1;
    justify-content: center;
}

.btn-prev {
    max-width: 150px;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-scroll {
        display: none;
    }

    .aweb-highlight {
        padding: 4rem 0;
        clip-path: none;
        margin-top: 0;
        margin-bottom: 0;
        overflow-x: hidden;
    }

    .aweb-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .aweb-intro {
        padding: 1rem 0;
    }

    .aweb-title {
        font-size: 1.75rem;
    }

    .aweb-description {
        font-size: 1rem;
    }

    .aweb-form-container {
        position: relative;
        top: 0;
        border-radius: 16px;
    }

    .aweb-form-header h3 {
        font-size: 1.25rem;
    }

    .aweb-multi-step-form {
        padding: 1.5rem;
    }

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

    .option-card {
        padding: 0;
        min-width: 0;
    }

    .option-content {
        padding: 0.75rem 0.5rem;
        min-width: 0;
    }

    .option-content span {
        font-size: 0.85rem;
        word-break: break-word;
    }

    .aweb-features-quick {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .quick-feature {
        padding: 0.75rem;
    }

    .quick-feature span {
        font-size: 0.9rem;
    }

    .progress-bar {
        gap: 0.5rem;
    }

    .progress-step span {
        font-size: 0.65rem;
    }

    .progress-circle {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .phone-cta-box {
        padding: 2rem 1.5rem;
    }

    .phone-display {
        padding: 1.25rem 2rem;
        gap: 0.75rem;
    }

    .phone-number {
        font-size: 1.75rem;
    }

    .phone-display svg {
        width: 28px;
        height: 28px;
    }

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

    .checklist-white {
        padding: 1.5rem 0;
    }

    .checklist-white .checklist-item {
        padding: 1.25rem;
    }

    .checklist-white .checklist-content h4 {
        font-size: 1rem;
    }

    .checklist-white .checklist-content p {
        font-size: 0.9rem;
    }

    .aweb-features-list {
        padding: 2rem 1.5rem;
    }

    .qr-code-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .qr-code-section {
        padding: 2rem 1.5rem;
    }

    .qr-code-placeholder {
        width: 140px;
        height: 140px;
    }

    .qr-code-box {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .progress-bar {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .progress-step {
        flex: 0 0 calc(50% - 0.5rem);
    }

    .progress-bar::before {
        display: none;
    }

    .phone-cta-box {
        padding: 1.5rem 1rem;
        margin: 2rem 0;
    }

    .phone-cta-label {
        font-size: 0.95rem;
    }

    .phone-display {
        padding: 1rem 1.5rem;
        gap: 0.5rem;
        flex-direction: column;
    }

    .phone-number {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .phone-display svg {
        width: 24px;
        height: 24px;
    }

    .phone-cta-hours {
        font-size: 0.9rem;
    }

    .aweb-highlight {
        padding: 3rem 0;
    }

    .aweb-content {
        gap: 1.5rem;
    }

    .aweb-badge {
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }

    .aweb-badge span {
        font-size: 0.75rem;
    }

    .aweb-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .aweb-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .aweb-features-quick {
        gap: 0.5rem;
    }

    .quick-feature {
        padding: 0.625rem 0.75rem;
        gap: 0.5rem;
    }

    .quick-feature svg {
        width: 16px;
        height: 16px;
    }

    .quick-feature span {
        font-size: 0.85rem;
    }

    .progress-step span {
        display: none;
    }

    .progress-circle {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .aweb-form-header {
        padding: 1rem;
    }

    .aweb-form-header h3 {
        font-size: 1.1rem;
    }

    .aweb-multi-step-form {
        padding: 1rem;
    }

    .options-grid {
        gap: 0.5rem;
    }

    .option-content {
        padding: 0.5rem 0.25rem;
        gap: 0.5rem;
    }

    .option-content svg {
        width: 24px;
        height: 24px;
    }

    .option-content span {
        font-size: 0.7rem;
    }

    .form-navigation {
        flex-direction: column;
        gap: 0.75rem;
    }

    .form-navigation .btn {
        width: 100%;
        max-width: none;
    }

    .aweb-features-list {
        padding: 1.5rem 1rem;
        margin: 2rem 0;
    }

    .aweb-features-list h3 {
        font-size: 1.25rem;
    }

    .checklist-item {
        padding: 0.875rem;
        gap: 0.5rem;
    }

    .checklist-item span {
        font-size: 0.875rem;
    }

    .check-icon {
        width: 20px;
        height: 20px;
    }

    .checklist-white .checklist-item {
        padding: 1rem;
        gap: 0.75rem;
    }

    .checklist-white .checklist-content h4 {
        font-size: 0.95rem;
    }

    .checklist-white .checklist-content p {
        font-size: 0.85rem;
    }

    .qr-code-section {
        padding: 1.5rem 1rem;
        margin: 2rem 0;
    }

    .qr-code-text h4 {
        font-size: 1.25rem;
    }

    .qr-code-text p {
        font-size: 0.9rem;
    }

    .qr-code-placeholder {
        width: 120px;
        height: 120px;
    }

    .qr-code-box {
        padding: 1rem;
    }

    .qr-code-badge {
        font-size: 0.85rem;
        padding: 0.625rem 1rem;
    }
}

/* Services Section */
.services {
    background: var(--bg-light);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(77, 159, 214, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 80% 20%, rgba(79, 168, 222, 0.03) 0%, transparent 35%),
        radial-gradient(circle at 20% 70%, rgba(77, 159, 214, 0.025) 0%, transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(62, 127, 194, 0.02) 0%, transparent 45%);
    pointer-events: none;
}

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

.service-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(62, 127, 194, 0.15);
    border-top: 2px solid rgba(79, 168, 222, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(79, 168, 222, 0.08) 50%,
        transparent 70%
    );
    transform: rotate(0deg);
    transition: transform 0.6s;
    pointer-events: none;
}

.service-card:hover::after {
    transform: rotate(180deg);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 0.03;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
    border-top-color: rgba(79, 168, 222, 0.5);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: var(--shadow-hover);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.service-card > p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    position: relative;
    z-index: 1;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 1.5rem;
    transition: var(--transition);
}

.service-features li:hover {
    color: var(--text-dark);
    padding-left: 2rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}

/* Contact Section */
.contact {
    background: var(--bg-white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(79, 168, 222, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(62, 127, 194, 0.15);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.contact-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(79, 168, 222, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.contact-item:hover {
    background: #ffffff;
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: var(--shadow-hover);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.contact-details h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.125rem;
    transition: var(--transition);
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

.opening-hours {
    border-collapse: collapse;
    font-size: 1rem;
}

.opening-hours td {
    padding: 0.3rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.opening-hours td:first-child {
    padding-right: 1.5rem;
    color: var(--text-medium);
}

.opening-hours td:last-child {
    color: var(--primary-color);
    font-weight: 600;
}

.opening-hours a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.opening-hours a:hover {
    color: var(--secondary-color);
}

.hours-summary {
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.hours-summary span {
    font-weight: 600;
    color: var(--primary-color);
}

.hours-summary a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.hours-summary a:hover {
    color: var(--secondary-color);
}

/* Contact Form */
.contact-form-wrapper {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(62, 127, 194, 0.15);
    border-top: 3px solid rgba(79, 168, 222, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(79, 168, 222, 0.08), transparent 30%);
    animation: rotate 6s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.contact-form-wrapper > * {
    position: relative;
    z-index: 1;
}

.contact-form-wrapper h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.contact-form-wrapper p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: center;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1rem 1rem 1rem;
    background: rgba(79, 168, 222, 0.03);
    border: 2px solid rgba(62, 127, 194, 0.2);
    border-radius: 12px;
    color: var(--text-dark);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

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

.form-group select option {
    background: #ffffff;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    background: rgba(79, 168, 222, 0.08);
    box-shadow: 0 0 0 3px rgba(79, 168, 222, 0.1);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:valid + label {
    top: -10px;
    left: 12px;
    font-size: 0.75rem;
    color: var(--primary-color);
    background: #ffffff;
    padding: 0 0.5rem;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-light);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    opacity: 0;
}

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

.form-error {
    display: block;
    color: #ff4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.2em;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #ff4444;
}

.form-group.success input,
.form-group.success textarea,
.form-group.success select {
    border-color: #00ff88;
}

/* Checkbox Styling */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 0;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label {
    position: static !important;
    color: var(--text-medium) !important;
    font-size: 0.875rem !important;
    line-height: 1.5;
    cursor: pointer;
    padding: 0 !important;
    pointer-events: auto !important;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
    position: relative;
    z-index: 10;
    pointer-events: auto !important;
    display: inline;
}

.checkbox-label a:hover {
    color: var(--sky-blue);
}

.checkbox-group .form-error {
    margin-left: 28px;
}

.contact-form button[type="submit"] {
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-loading {
    display: none;
}

.contact-form button.loading .btn-text {
    opacity: 0;
}

.contact-form button.loading .btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

.spinner .path {
    stroke: white;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

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

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.form-message.error {
    display: block;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff4444;
}

/* Features Section */
.features {
    background: var(--bg-white);
    position: relative;
    padding: 8rem 0;
    clip-path: polygon(0 0, 100% 2%, 100% 98%, 0 100%);
    margin-top: -2rem;
    margin-bottom: -2rem;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(77, 159, 214, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(62, 127, 194, 0.15);
    border-top: 1px solid rgba(79, 168, 222, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(79, 168, 222, 0.1),
        transparent
    );
    transition: left 0.5s;
}

.feature-item:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    border-top-color: rgba(79, 168, 222, 0.5);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-item:hover::before {
    left: 100%;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-hover);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    color: #ffffff;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Statistics Section */
.stats {
    background: linear-gradient(135deg, rgba(79, 168, 222, 0.08) 0%, rgba(77, 159, 214, 0.05) 100%);
    padding: 4rem 0;
}

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

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 20px rgba(62, 127, 194, 0.3));
}

.stat-label {
    color: var(--text-medium);
    font-size: 1.125rem;
    font-weight: 500;
}

/* Trust & Partners Section */
.trust-partners {
    background: var(--bg-white);
    padding: 6rem 0;
    position: relative;
}

.trust-partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top center, rgba(79, 168, 222, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.trust-content {
    position: relative;
    z-index: 1;
}

/* Compliance Badges Grid */
.compliance-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.badge-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(62, 127, 194, 0.12);
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.badge-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.badge-item:hover::before {
    transform: scaleX(1);
}

.badge-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(79, 168, 222, 0.15);
}

.badge-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(79, 168, 222, 0.1) 0%, rgba(77, 159, 214, 0.08) 100%);
    border-radius: 50%;
    transition: var(--transition);
}

.badge-item:hover .badge-icon {
    background: var(--gradient);
    transform: scale(1.1) rotate(5deg);
}

.badge-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-color);
    transition: var(--transition);
}

.badge-item:hover .badge-icon svg {
    stroke: #ffffff;
}

.badge-item h4 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.badge-item p {
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.4;
}

/* Partners Section */
.partners-section {
    border-top: 1px solid rgba(62, 127, 194, 0.1);
    padding-top: 4rem;
}

.partners-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 600;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(62, 127, 194, 0.1);
    border-radius: 12px;
    transition: var(--transition);
    min-height: 140px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(79, 168, 222, 0.12);
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.logo-placeholder svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary-color);
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo:hover .logo-placeholder svg {
    opacity: 1;
    transform: scale(1.1);
}

.logo-placeholder span {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 500;
    line-height: 1.3;
}

.partner-logo:hover .logo-placeholder span {
    color: var(--text-dark);
}

/* How It Works Section */
.how-it-works {
    background: var(--bg-light);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(79, 168, 222, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.step-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(62, 127, 194, 0.15);
    border-top: 2px solid rgba(79, 168, 222, 0.2);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(79, 168, 222, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    opacity: 0;
    transition: opacity 0.3s;
}

.step-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(79, 168, 222, 0.05), transparent 30%);
    animation: rotate 12s linear infinite;
    opacity: 0.5;
}

.step-item:hover::after {
    opacity: 1;
}

.step-item:hover {
    background: #ffffff;
    transform: translateY(-8px);
    border-top-color: rgba(79, 168, 222, 0.5);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-white);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(79, 168, 222, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

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

.testimonial-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(62, 127, 194, 0.15);
    border-left: 3px solid rgba(79, 168, 222, 0.3);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(79, 168, 222, 0.08) 50%,
        transparent 70%
    );
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
    animation: shimmerRotate 8s linear infinite;
}

@keyframes shimmerRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.testimonial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(79, 168, 222, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.testimonial-card:hover::before {
    opacity: 1;
}

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

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    border-left-color: rgba(79, 168, 222, 0.6);
    box-shadow: var(--shadow-hover);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.quote {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

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

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* FAQ Section */
.faq {
    background: var(--bg-light);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(77, 159, 214, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(62, 127, 194, 0.15);
    border-left: 3px solid rgba(79, 168, 222, 0.3);
    box-shadow: var(--shadow-sm);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, rgba(79, 168, 222, 0.6), rgba(79, 168, 222, 0.3));
    transition: height 0.3s;
    box-shadow: 0 0 15px rgba(62, 127, 194, 0.4);
}

.faq-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(79, 168, 222, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.faq-item:hover::after {
    opacity: 1;
}

.faq-item:hover::before {
    height: 100%;
}

.faq-item:hover {
    border-color: var(--primary-color);
    border-left-color: rgba(79, 168, 222, 0.6);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin: 0;
    padding-right: 2rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-medium);
    line-height: 1.8;
}

/* Impressum Section */
.impressum-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.impressum-content {
    max-width: 900px;
    margin: 0 auto;
}

.impressum-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(36, 50, 68, 0.08);
}

.impressum-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-orange);
}

.impressum-block {
    margin-bottom: 2.5rem;
}

.impressum-block:last-child {
    margin-bottom: 0;
}

.impressum-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.impressum-block p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.impressum-block p:last-child {
    margin-bottom: 0;
}

.impressum-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.impressum-block a:hover {
    color: var(--accent-orange);
}

.impressum-block strong {
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .impressum-card {
        padding: 2rem 1.5rem;
    }

    .impressum-card h2 {
        font-size: 1.5rem;
    }

    .impressum-block h3 {
        font-size: 1.125rem;
    }
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(79, 168, 222, 0.3);
}

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

.footer-section h4 {
    color: var(--text-white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.trust-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.badge {
    padding: 0.5rem 1rem;
    background: rgba(79, 168, 222, 0.15);
    border: 1px solid rgba(79, 168, 222, 0.3);
    border-radius: 20px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--ice-blue);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--ice-blue);
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--ice-blue);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(79, 168, 222, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(79, 168, 222, 0.3);
}

.social-links a:hover {
    background: var(--ice-blue);
    border-color: var(--ice-blue);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(79, 168, 222, 0.4);
}

.social-links svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.social-links a:hover svg {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(79, 168, 222, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--ice-blue);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    box-shadow: 0 -4px 20px rgba(62, 127, 194, 0.2);
    border-top: 2px solid var(--primary-color);
    z-index: 10000;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-consent .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--text-medium);
    margin: 0.5rem 0;
}

.cookie-content strong {
    color: var(--text-dark);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 0.75rem 2rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow), 0 0 30px rgba(255, 255, 255, 0.2);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

/* Mobile Call Button */
.mobile-call-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    text-decoration: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(0, 102, 255, 0);
    }
}

.mobile-call-btn svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

@media (max-width: 768px) {
    .mobile-call-btn {
        display: flex;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        justify-content: space-between;
        gap: 0;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        border-bottom: 1px solid rgba(62, 127, 194, 0.15);
        transform: none;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    /* AWEB Nav Item Mobile */
    .nav-aweb-highlight {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem !important;
        font-size: 1rem;
        margin-bottom: 0.5rem;
        border-radius: 10px;
    }

    .nav-aweb-highlight .aweb-nav-icon {
        width: 18px;
        height: 18px;
    }

    /* Medical Badge Mobile */
    .medical-badge {
        padding: 0.5rem 1rem;
        gap: 0.5rem;
        max-width: 100%;
    }

    .medical-badge .aweb-badge-logo {
        width: 50px;
    }

    .medical-badge span {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    /* Floating Logo Particles Mobile */
    .particle {
        width: 28px;
        height: 28px;
    }

    /* AWEB particles - larger on mobile */
    .particle:nth-child(1),
    .particle:nth-child(3),
    .particle:nth-child(5),
    .particle:nth-child(7),
    .particle:nth-child(9) {
        width: 40px;
        height: 40px;
    }

    /* Adjust starting positions for mobile - spread evenly */
    .particle:nth-child(1) { left: 15%; }
    .particle:nth-child(2) { left: 75%; }
    .particle:nth-child(3) { left: 45%; }
    .particle:nth-child(4) { left: 25%; }
    .particle:nth-child(5) { left: 65%; }
    .particle:nth-child(6) { left: 55%; }
    .particle:nth-child(7) { left: 10%; }
    .particle:nth-child(8) { left: 85%; }
    .particle:nth-child(9) { left: 35%; }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: var(--primary-color);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background: var(--primary-color);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    /* About Cards Mobile */
    .about-cards-wrapper {
        padding: 0 1rem;
    }

    .about-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-card {
        padding: 2rem;
    }

    .about-card-icon {
        width: 70px;
        height: 70px;
    }

    .about-card-icon img {
        width: 45px;
    }

    .about-card h3 {
        font-size: 1.3rem;
    }

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

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

    .logo {
        height: 35px;
    }

    .nav-brand {
        z-index: 1001;
    }

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 2rem;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
    }

    .footer-section:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-badges {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
    }

    .cookie-consent .container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
    }

    .scroll-to-top {
        bottom: 1.5rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }

    .mobile-call-btn {
        bottom: 1.5rem;
        left: 1rem;
        width: 45px;
        height: 45px;
    }

    .mobile-call-btn svg {
        width: 22px;
        height: 22px;
    }

    /* Trust & Partners Mobile */
    .trust-partners {
        padding: 4rem 0;
    }

    .compliance-badges {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .badge-item {
        padding: 1.5rem 1rem;
    }

    .badge-icon {
        width: 56px;
        height: 56px;
    }

    .partner-logos {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .partner-logo {
        min-height: 120px;
        padding: 1.5rem 1rem;
    }

    .partners-title {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
}

/* Smooth Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--sky-blue) 100%);
}
