/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Syne', sans-serif;
    color: #e0e0e0;
    overflow-x: hidden;
    line-height: 1.6;
    background: #000;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

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

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    letter-spacing: -1px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

.section-title p {
    color: #999;
    font-size: 16px;
    max-width: 600px;
    margin: 20px auto 0;
    font-weight: 400;
}

section { padding: 100px 0; position: relative; }

/* ==================== LIQUID BACKGROUND (mobile-optimized) ==================== */
.liquid-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
}

.liquid-shape {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.15;
    will-change: transform;
}

/* Only animate on screens that can handle it */
@media (prefers-reduced-motion: no-preference) and (min-width: 769px) {
    .liquid-shape {
        animation: morph 20s ease-in-out infinite;
        filter: blur(80px);
    }
    .liquid-shape-1 {
        animation: morph 20s ease-in-out infinite, float 25s ease-in-out infinite;
    }
    .liquid-shape-2 {
        animation: morph 25s ease-in-out infinite reverse, float 30s ease-in-out infinite reverse;
        animation-delay: 2s;
    }
    .liquid-shape-5 {
        animation: morph 16s ease-in-out infinite, float 22s ease-in-out infinite reverse;
        animation-delay: 8s;
    }
}

/* Mobile: static blobs, no animation, reduced blur */
@media (max-width: 768px) {
    .liquid-shape {
        filter: blur(50px);
        animation: none !important;
    }
}

.liquid-shape-1 {
    top: -10%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.2) 50%, transparent 70%);
}
.liquid-shape-2 {
    top: 40%; right: -15%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.15) 50%, transparent 70%);
}
.liquid-shape-5 {
    top: 10%; right: 20%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.08) 50%, transparent 70%);
}

@keyframes morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    25% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    75% { border-radius: 70% 30% 50% 60% / 30% 70% 40% 60%; }
}

@keyframes float {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    25% { transform: translate3d(20px, -40px, 0) scale(1.05); }
    50% { transform: translate3d(-15px, -60px, 0) scale(0.97); }
    75% { transform: translate3d(-30px, -20px, 0) scale(1.03); }
}

/* Gradient Overlay */
.gradient-overlay {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at top, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(255,255,255,0.02) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* ==================== HEADER / NAVBAR ==================== */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0,0,0,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s, border-color 0.3s;
}

@media (min-width: 769px) {
    .header { backdrop-filter: blur(20px); }
}

.header.scrolled {
    background: rgba(0,0,0,0.97);
    border-bottom-color: rgba(255,255,255,0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
}
.logo-text {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    padding-top: 6px;
}

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

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: #999;
    transition: color 0.2s;
    letter-spacing: 0.3px;
}

.nav-menu a:hover { color: #fff; }

.nav-cta {
    background: #fff;
    color: #000 !important;
    padding: 7px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
    font-size: 14px;
}

.nav-cta:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    width: 24px; height: 2px;
    background: #fff;
    border-radius: 3px;
    transition: transform 0.3s, opacity 0.3s;
    display: block;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 500;
    animation: fadeInDown 0.8s ease both;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, #fff, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 20px;
    color: #999;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-primary {
    background: #fff;
    color: #000;
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(255,255,255,0.12);
    background: #e8e8e8;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
}

.btn-secondary:hover {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item { text-align: center; }

.stat-item h3 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.stat-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

@media (prefers-reduced-motion: no-preference) {
    .scroll-indicator { animation: bounce 2s infinite; }
}

.scroll-indicator i {
    font-size: 24px;
    color: rgba(255,255,255,0.3);
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==================== SERVICES SECTION ==================== */
.services {
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.service-card {
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.25s, background 0.25s, border-color 0.25s;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transition: transform 0.25s;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
}

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

.service-icon {
    width: 70px; height: 70px;
    margin: 0 auto 25px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    color: #000;
    background: #fff;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: -0.5px;
}

.service-card p {
    color: #999;
    font-size: 14px;
    line-height: 1.8;
}

/* ==================== WHY US SECTION ==================== */
.why-us { border-top: 1px solid rgba(255,255,255,0.05); }

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.why-us-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px;
    border-radius: 12px;
    transition: background 0.25s, border-color 0.25s;
    border: 1px solid transparent;
}

.why-item:hover {
    background: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.08);
}

.why-item-icon {
    width: 56px; height: 56px;
    min-width: 56px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: #000;
    background: #fff;
}

.why-item-text h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
    letter-spacing: -0.3px;
}

.why-item-text p { color: #999; font-size: 14px; line-height: 1.7; }

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

.why-us-illustration {
    width: 100%;
    max-width: 420px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px;
}

.illustration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.illustration-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 22px;
    text-align: center;
    transition: background 0.25s, transform 0.25s;
}

.illustration-item:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-4px);
}

.illustration-item i { font-size: 28px; margin-bottom: 10px; color: #fff; display: block; }
.illustration-item h5 { font-size: 13px; color: #fff; font-weight: 600; margin-bottom: 3px; }
.illustration-item p { font-size: 11px; color: #666; }

/* ==================== PORTFOLIO SECTION ==================== */
.portfolio { border-top: 1px solid rgba(255,255,255,0.05); }

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

.portfolio-card {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.25s, background 0.25s, border-color 0.25s;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
}

.portfolio-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.portfolio-img-bg {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
    color: #000;
    background: #000000;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
}

.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay a {
    background: #fff;
    color: #000;
    padding: 11px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}

.portfolio-overlay a:hover {
    transform: scale(1.04);
    background: #000000;
}

.portfolio-info { padding: 22px; }

.portfolio-info h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.portfolio-info p { color: #666; font-size: 13px; }

.portfolio-tags {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.portfolio-tags span {
    background: rgba(255,255,255,0.05);
    color: #999;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}



/* ==================== PROCESS SECTION ==================== */
.process { border-top: 1px solid rgba(255,255,255,0.05); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%; right: 15%;
    height: 2px;
    background: rgba(255,255,255,0.1);
}

.process-step { text-align: center; position: relative; z-index: 1; }

.process-number {
    width: 80px; height: 80px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    font-weight: 800;
    color: #000;
    background: #fff;
    position: relative;
}

.process-number::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
}

.process-step h4 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.process-step p { font-size: 13px; color: #999; line-height: 1.7; }

/* ==================== CTA SECTION ==================== */
.cta {
    background: #fff;
    text-align: center;
    color: #000;
    position: relative;
    overflow: hidden;
    /* Parent punya max-width: 1200px */

  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

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

.cta h2 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.cta p {
    font-size: 17px;
    color: #666;
    margin-bottom: 32px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-black {
    background: #000;
    color: #fff;
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.cta .btn-black:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.18);
}

/* ==================== CONTACT SECTION ==================== */
.contact-social { display: flex; gap: 10px; margin-top: 28px; }

.contact-social a {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 17px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.contact-social a:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

/* ==================== FOOTER ==================== */
.footer {
    color: #666;
    padding: 60px 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-about .logo { color: #fff; margin-bottom: 14px; }
.footer-about p { font-size: 14px; line-height: 1.8; margin-bottom: 18px; }

.footer h4 { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 18px; }

.footer-links li { margin-bottom: 9px; }

.footer-links a { font-size: 14px; color: #666; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 14px;
    color: #444;
}

.footer-bottom span { color: #fff; }

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 58px; height: 58px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    color: #000;
    box-shadow: 0 4px 24px rgba(255,255,255,0.18);
    z-index: 999;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(255,255,255,0.25);
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-top {
    position: fixed;
    bottom: 28px; left: 28px;
    width: 44px; height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #000;
    font-size: 17px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.2s;
    z-index: 999;
    border: none;
}

.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); }

/* ==================== FADE IN ANIMATION ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

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

/* ==================== OVERLAY MOBILE MENU ==================== */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.nav-overlay.active { opacity: 1; visibility: visible; }

/* ==================== INPUT STYLE ==================== */
::placeholder { color: #666; }
::selection { background: #fff; color: #000; }

/* ==================== RESPONSIVE — TABLET (≤ 1024px) ==================== */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 52px; }

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

    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ==================== RESPONSIVE — MOBILE (≤ 768px) ==================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 320px;
        height: 100vh;
        background: #0a0a0a;
        border-left: 1px solid rgba(255,255,255,0.08);
        flex-direction: column;
        padding: 80px 28px 28px;
        transition: right 0.3s ease;
        gap: 12px;
        z-index: 1000;
    }

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

    .nav-menu a {
        font-size: 17px;
        padding: 10px 0;
        width: 100%;
        display: block;
        color: #ccc;
    }

    .nav-cta { text-align: center; margin-top: 14px; }

    .hamburger { display: flex; }

    .hero-content h1 { font-size: 38px; letter-spacing: -1.5px; }
    .hero-content p { font-size: 16px; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .stat-item h3 { font-size: 32px; }

    .section-title h2 { font-size: 30px; }
    .section-title { margin-bottom: 40px; }

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

    .why-us-grid { grid-template-columns: 1fr; }
    .why-us-image { order: -1; }

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

    .cta h2 { font-size: 30px; }
    .cta p { font-size: 15px; }

    .process-grid { grid-template-columns: 1fr 1fr; gap: 18px; }

    section { padding: 70px 0; }
}

/* ==================== RESPONSIVE — SMALL MOBILE (≤ 480px) ==================== */
@media (max-width: 480px) {
    .hero-content h1 { font-size: 30px; letter-spacing: -1px; }

    .hero-stats { flex-direction: column; gap: 16px; }

    .btn-primary, .btn-secondary { padding: 13px 24px; font-size: 14px; }
    .hero-buttons { flex-direction: column; align-items: stretch; }

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

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

    .whatsapp-float { width: 52px; height: 52px; font-size: 24px; bottom: 20px; right: 20px; }
    .scroll-top { width: 40px; height: 40px; bottom: 20px; left: 20px; }
}
