/* =============================================
   DO IT IN SECONDS — Landing Page Styles
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --navy: #0f1f3d;
  --navy-light: #1a3260;
  --blue: #1e4db7;
  --blue-mid: #2563eb;
  --accent: #7c3aed;
  --accent-light: #a78bfa;
  --cyan: #06b6d4;
  --wa-green: #25d366;
  --wa-dark: #128c7e;
  --white: #ffffff;
  --off-white: #f8faff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --text: #111827;
  --text-muted: #6b7280;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(15,31,61,0.08);
  --shadow-lg: 0 8px 48px rgba(15,31,61,0.14);
  --shadow-xl: 0 20px 80px rgba(15,31,61,0.18);
  --transition: 0.25s ease;
  --max-w: 1160px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.hide-mobile { display: inline; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}

.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-xl { padding: 18px 44px; font-size: 1.1rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-mid), var(--accent));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,99,235,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,99,235,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-outline-white {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.25);
}

.btn-whatsapp {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

.wa-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---- Section Helpers ---- */
.section-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(124,58,237,0.1));
  color: var(--blue-mid);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(37,99,235,0.15);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 56px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue-mid), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
}

.logo-icon { font-size: 1.3rem; }
.logo .accent { color: var(--blue-mid); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--blue-mid); }

.nav-wa-btn { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 12px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu .btn { margin-top: 8px; border-bottom: none; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 50%, #1e3a8a 100%);
  padding: 160px 0 100px;
  overflow: hidden;
  text-align: center;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--blue-mid);
  top: -200px; left: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--accent);
  bottom: -100px; right: -50px;
}
.shape-3 {
  width: 300px; height: 300px;
  background: var(--cyan);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.hero-inner { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  margin: 0 auto 40px;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* =============================================
   BEFORE / AFTER
   ============================================= */
.before-after {
  padding: 100px 0;
  background: var(--gray-50);
  text-align: center;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 48px;
}

.ba-card {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: left;
}

.ba-before {
  background: #fff5f5;
  border: 2px solid #fecaca;
}

.ba-after {
  background: linear-gradient(135deg, #eff6ff, #f5f3ff);
  border: 2px solid rgba(37,99,235,0.25);
}

.ba-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.ba-icon { font-size: 2rem; }
.ba-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.ba-list { display: flex; flex-direction: column; gap: 12px; }
.ba-list li {
  font-size: 0.95rem;
  color: var(--gray-600);
  font-weight: 500;
}

.ba-arrow {
  font-size: 2.5rem;
  color: var(--blue-mid);
  font-weight: 900;
  text-align: center;
}

.ba-cta { text-align: center; }

/* =============================================
   OFFER
   ============================================= */
.offer {
  padding: 100px 0;
  background: var(--white);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.offer-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.feature-item:hover {
  background: #eff6ff;
  border-color: rgba(37,99,235,0.2);
  transform: translateX(4px);
}

.highlight-feature {
  background: linear-gradient(135deg, #eff6ff, #f5f3ff) !important;
  border-color: rgba(37,99,235,0.3) !important;
}

.feature-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.feature-item strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.feature-item p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

.offer-price-card {
  position: sticky;
  top: 88px;
  background: linear-gradient(160deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-xl);
}

.price-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--wa-green), #16a34a);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.price-amount {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #60a5fa, var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.price-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}

.price-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  text-align: left;
}
.price-includes p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.price-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}

/* =============================================
   WHY US
   ============================================= */
.why {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
}

.why .section-label { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.2); }
.why .section-title { color: var(--white); }
.why .section-sub { color: rgba(255,255,255,0.7); margin-left: auto; margin-right: auto; }

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

.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.why-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.why-emoji { font-size: 2.2rem; margin-bottom: 16px; }
.why-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* =============================================
   PROCESS
   ============================================= */
.process {
  padding: 100px 0;
  background: var(--off-white);
  text-align: center;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: left;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue-mid), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}

.step-content {
  padding-bottom: 8px;
}
.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--blue-mid), var(--accent));
  margin-left: 27px;
  opacity: 0.3;
}

.process-cta { text-align: center; }

/* =============================================
   OUR WORK
   ============================================= */
.work {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  text-align: left;
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.work-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--gray-100);
}
.work-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.work-card:hover .work-img-wrap img { transform: scale(1.04); }

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,31,61,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.work-card:hover .work-overlay { opacity: 1; }

.work-info {
  padding: 28px;
}

.work-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(124,58,237,0.1));
  color: var(--blue-mid);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid rgba(37,99,235,0.15);
}

.work-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.work-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.work-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-mid);
  transition: color var(--transition);
}
.work-link:hover { color: var(--accent); }

.work-cta p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 500;
}

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--navy) 0%, #1e1b4b 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  position: relative;
}

.final-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 44px;
  position: relative;
}

.final-cta .btn { position: relative; }

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}

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

.contact-wa-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 2px solid rgba(37,211,102,0.3);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.wa-card-icon {
  width: 48px;
  height: 48px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.wa-card-icon svg { width: 24px; height: 24px; }

.contact-wa-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-wa-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.contact-email-info {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-email-info strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-email-info p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

.form-success {
  margin-top: 16px;
  padding: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: #166534;
  text-align: center;
}
.form-success a { color: var(--wa-dark); font-weight: 600; text-decoration: underline; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}

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

.footer-brand .logo { color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; }

.footer-links h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-links a,
.footer-links span {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  transition: color var(--transition);
  cursor: default;
}
.footer-links a:hover { color: var(--white); }
.footer-links a { cursor: pointer; }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* =============================================
   FLOATING WHATSAPP
   ============================================= */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: all var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.floating-wa svg { width: 30px; height: 30px; color: white; }
.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
  animation: none;
}

.floating-wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--navy);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.floating-wa:hover .floating-wa-tooltip { opacity: 1; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.15); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .offer-grid { grid-template-columns: 1fr; }
  .offer-price-card { position: static; max-width: 480px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .hide-mobile { display: none; }

  .nav-links, .nav-wa-btn { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 120px 0 80px; }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
  .stat-divider { width: 60px; height: 1px; }

  .ba-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ba-arrow {
    transform: rotate(90deg);
    font-size: 1.8rem;
  }

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

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

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

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

  .section-sub { margin-bottom: 40px; }

  .process-steps { padding: 0 8px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-xl { padding: 16px 32px; font-size: 1rem; }
  .contact-form { padding: 24px; }
  .floating-wa { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .floating-wa svg { width: 26px; height: 26px; }
}
