:root {
    /* Main Colors */
    --bg-main: #f7f8fb;
    --bg-soft: #eef1f6;
    --bg-card: #ffffff;
    --text-main: #14171f;
    --text-soft: #2d3142;
    --text-muted: #6b7280;
    --border: rgba(20, 23, 31, 0.07);

    /* Logo Accent Colors */
    --color-blue: #00A2E8;
    --color-pink: #E91E63;
    --color-orange: #FF9800;
    --color-green: #7cb800;

    /* Gradients */
    --gradient-primary: linear-gradient(120deg, var(--color-blue), var(--color-pink));
    --gradient-mesh: linear-gradient(120deg, var(--color-blue), var(--color-pink) 55%, var(--color-orange));

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(20, 23, 31, 0.04);
    --shadow-sm: 0 4px 12px -2px rgba(20, 23, 31, 0.06);
    --shadow-md: 0 12px 28px -6px rgba(20, 23, 31, 0.10);
    --shadow-lg: 0 30px 60px -12px rgba(20, 23, 31, 0.16);
    --shadow-hover: 0 28px 48px -12px rgba(20, 23, 31, 0.22);

    /* Radius */
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 120px 0;
}

.w-100 { width: 100%; }

h1, h2, h3, h4, h5, h6 {
    line-height: 1.15;
    font-weight: 700;
}

h1, .title {
    font-family: 'Sora', 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--gradient-mesh);
    z-index: 2000;
    transition: width 0.1s linear;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-ghost, .btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.98rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.02rem;
}

.btn-primary i, .btn-secondary i, .btn-ghost i, .btn-light i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-primary {
    background: var(--text-main);
    color: white;
    box-shadow: 0 8px 20px -8px rgba(20, 23, 31, 0.5);
}

.btn-primary:hover {
    background: var(--color-blue);
    transform: translateY(-3px);
    box-shadow: 0 14px 28px -8px rgba(0, 162, 232, 0.55);
}

.btn-primary:hover i { transform: translateX(3px); }

.btn-ghost {
    background: rgba(255, 255, 255, 0.6);
    color: var(--text-main);
    border-color: var(--border);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: #fff;
    border-color: var(--color-blue);
    color: var(--color-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.btn-light {
    background: #fff;
    color: var(--text-main);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-light:hover i { transform: translateX(3px); }

/* Text Gradient */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-soft);
    box-shadow: var(--shadow-xs);
    backdrop-filter: blur(8px);
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-green);
    box-shadow: 0 0 0 4px rgba(124, 184, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(124, 184, 0, 0.35); }
    50% { box-shadow: 0 0 0 6px rgba(124, 184, 0, 0); }
}

/* Header */
.header {
    position: fixed;
    top: 16px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px 10px 20px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    max-width: 1140px;
}

.header.scrolled .header-container {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 44px;
    width: 44px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a:not(.btn-primary) {
    font-weight: 500;
    font-size: 0.98rem;
    color: var(--text-soft);
    padding: 10px 16px;
    border-radius: var(--radius-full);
}

.nav-menu a:not(.btn-primary):hover {
    color: var(--color-blue);
    background: rgba(0, 162, 232, 0.08);
}

.nav-menu .btn-primary {
    padding: 11px 22px;
}

.mobile-menu-btn {
    display: none;
    background: #fff;
    border: 1px solid var(--border);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-main);
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(20, 23, 31, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 23, 31, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
}

.blob {
    position: absolute;
    filter: blur(90px);
    border-radius: 50%;
    opacity: 0.55;
    animation: float 12s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);
}

.blob-blue { top: -8%; right: 2%; width: 420px; height: 420px; background: rgba(0, 162, 232, 0.40); animation-delay: 0s; }
.blob-pink { bottom: -12%; left: -4%; width: 500px; height: 500px; background: rgba(233, 30, 99, 0.28); animation-delay: -3s; }
.blob-orange { top: 45%; left: 25%; width: 300px; height: 300px; background: rgba(255, 152, 0, 0.25); animation-delay: -5s; }
.blob-green { bottom: 18%; right: 18%; width: 340px; height: 340px; background: rgba(124, 184, 0, 0.22); animation-delay: -8s; }

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

.hero-content {
    max-width: 860px;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    margin-bottom: 24px;
}

.hero > .container > p,
.hero-content > p {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--text-muted);
    margin: 0 auto 40px;
    max-width: 640px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    margin-top: 72px;
    flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1px;
    line-height: 1;
}

.stat-label {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: var(--border);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid rgba(20, 23, 31, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator span {
    width: 4px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--text-soft);
    animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { opacity: 0; transform: translateY(0); }
    40% { opacity: 1; }
    100% { opacity: 0; transform: translateY(14px); }
}

/* Marquee */
.marquee {
    background: var(--text-main);
    padding: 22px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    animation: marquee 32s linear infinite;
}

.marquee-track span {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

.marquee-track .dot { color: var(--color-blue); }

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 72px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-blue);
    margin-bottom: 16px;
}

.title {
    font-size: clamp(2rem, 4vw, 2.9rem);
    color: var(--text-main);
}

/* Services - Bento grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    padding: 38px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    grid-row: span 2;
    background: linear-gradient(160deg, #ffffff, #f4f9ff);
    justify-content: flex-start;
}

.service-card.featured .icon-wrapper {
    width: 76px;
    height: 76px;
}

.service-card.featured h4 { font-size: 1.85rem; }

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

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

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--spring);
}

.icon-wrapper i { width: 28px; height: 28px; }

.service-card:hover .icon-wrapper {
    transform: rotate(-6deg) scale(1.08);
}

.icon-blue { background: rgba(0, 162, 232, 0.12); color: var(--color-blue); }
.icon-pink { background: rgba(233, 30, 99, 0.12); color: var(--color-pink); }
.icon-orange { background: rgba(255, 152, 0, 0.13); color: var(--color-orange); }
.icon-green { background: rgba(124, 184, 0, 0.14); color: var(--color-green); }

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    font-family: 'Sora', sans-serif;
}

.service-card p {
    color: var(--text-muted);
    flex-grow: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 22px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.card-link i { width: 16px; height: 16px; transition: transform 0.3s ease; }

.service-card:hover .card-link { color: var(--color-blue); }
.service-card:hover .card-link i { transform: translateX(4px); }

/* About */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(150deg, rgba(0,162,232,0.16), rgba(233,30,99,0.14));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-icon-placeholder {
    width: 130px;
    height: 130px;
    color: var(--color-blue);
    opacity: 0.25;
}

.glass-overlay {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255,255,255,0.6);
}

.glass-overlay i { color: var(--color-pink); width: 26px; height: 26px; }

.glass-overlay h4 {
    color: var(--text-main);
    margin: 0;
    font-size: 1.15rem;
}

/* Floating cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    animation: floatCard 5s ease-in-out infinite;
}

.floating-card i {
    width: 22px;
    height: 22px;
    padding: 9px;
    border-radius: 12px;
    box-sizing: content-box;
}

.floating-card div { display: flex; flex-direction: column; line-height: 1.25; }
.floating-card strong { font-size: 0.95rem; }
.floating-card span { font-size: 0.78rem; color: var(--text-muted); }

.floating-card-1 {
    top: 8%;
    right: -28px;
}
.floating-card-1 i { background: rgba(255, 152, 0, 0.14); color: var(--color-orange); }

.floating-card-2 {
    bottom: 14%;
    left: -28px;
    animation-delay: -2.5s;
}
.floating-card-2 i { background: rgba(124, 184, 0, 0.16); color: var(--color-green); }

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

.about-text p {
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 1.08rem;
}

.about-features {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.about-features li i { color: var(--color-green); width: 22px; height: 22px; flex-shrink: 0; }

/* CTA Banner */
.cta-banner-wrap {
    padding: 0 0 40px;
}

.cta-banner {
    position: relative;
    background: var(--text-main);
    border-radius: var(--radius-xl);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    overflow: hidden;
    flex-wrap: wrap;
}

.cta-banner-glow {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--gradient-mesh);
    filter: blur(90px);
    opacity: 0.45;
    border-radius: 50%;
}

.cta-banner-content { position: relative; z-index: 1; max-width: 640px; }

.cta-banner h3 {
    font-family: 'Sora', sans-serif;
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    margin-bottom: 12px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.08rem;
}

.cta-banner .btn-light { position: relative; z-index: 1; }

/* Contact */
.contact-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    overflow: hidden;
    border: 1px solid var(--border);
}

.contact-info {
    padding: 64px;
    background: var(--text-main);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 360px;
    height: 360px;
    background: var(--gradient-mesh);
    filter: blur(80px);
    opacity: 0.35;
    border-radius: 50%;
}

.contact-info > * { position: relative; z-index: 1; }
.contact-info .subtitle { color: var(--color-blue); }
.contact-info .title { color: white; margin-bottom: 20px; }
.contact-info > p { color: rgba(255,255,255,0.75); margin-bottom: 44px; }

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.method:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(4px);
}

.method-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green);
    flex-shrink: 0;
}

.method-icon i { width: 22px; height: 22px; }

.method h5 { font-size: 1.05rem; margin-bottom: 2px; }
.method p { margin: 0; color: rgba(255,255,255,0.65); font-size: 0.95rem; }

.contact-form { padding: 64px; }

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-soft);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-main);
    color: var(--text-main);
    resize: vertical;
}

.form-group input::placeholder, .form-group textarea::placeholder { color: #a0a6b1; }

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 4px rgba(0, 162, 232, 0.12);
    background: white;
}

/* Footer */
.footer {
    background: #fff;
    padding: 90px 0 28px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 22px 0;
    max-width: 320px;
}

.social-links { display: flex; gap: 12px; }

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 22px;
    font-family: 'Sora', sans-serif;
}

.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--color-blue); padding-left: 5px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 12px 28px -6px rgba(37, 211, 102, 0.6);
    z-index: 999;
    transform: translateY(120px);
    transition: var(--spring);
}

.whatsapp-float.visible { transform: translateY(0); }

.whatsapp-float:hover { transform: translateY(-4px) scale(1.06); }

.whatsapp-float i { width: 30px; height: 30px; }

/* Animations (Intersection Observer) */
.reveal-up { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }

.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 992px) {
    .section-padding { padding: 90px 0; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card.featured { grid-row: span 1; }
    .about-container { grid-template-columns: 1fr; gap: 56px; }
    .about-image { order: 2; width: 100%; max-width: 440px; margin: 0 auto; }
    .about-text { order: 1; }
    .contact-card { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .cta-banner { padding: 48px; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(16px);
        padding: 20px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border);
        clip-path: circle(0% at 90% 0);
        transition: clip-path 0.45s ease-out;
    }

    .nav-menu.active { clip-path: circle(150% at 90% 0); }

    .nav-menu ul { flex-direction: column; align-items: stretch; gap: 6px; }
    .nav-menu a:not(.btn-primary) { text-align: center; }
    .nav-menu .btn-primary { margin-top: 6px; }

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

    .blob { animation: none !important; filter: blur(60px); }

    .hero { padding-top: 120px; }
    .hero-stats { gap: 20px; margin-top: 48px; }
    .stat-number { font-size: 2rem; }
    .stat-divider { height: 36px; }
    .scroll-indicator { display: none; }

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

    .floating-card { display: none; }

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

    .glass-overlay {
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: 14px 18px;
        gap: 10px;
    }

    .glass-overlay h4 {
        font-size: 1rem;
    }

    .contact-info, .contact-form { padding: 36px; }
    .service-card { padding: 32px 26px; }

    .cta-banner { padding: 36px; text-align: center; justify-content: center; }
    .cta-banner-content { max-width: 100%; }

    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
