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

:root {
  --navy: #0d1b2a;
  --navy-mid: #162035;
  --navy-light: #1e2d4a;
  --blue: #E8501B;
  --blue-dark: #C43E12;
  --blue-light: #F07A50;
  --cyan: #1BC8D4;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --green: #25d366;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ===== LOGO IMAGE ===== */
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  mix-blend-mode: lighten;
}

.footer-logo-img {
  height: 44px;
  margin-bottom: 16px;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-light {
  background: linear-gradient(135deg, #F07A50, #1BC8D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,80,27,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,80,27,.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}

.btn-white {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION LABELS & HEADERS ===== */
.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(232,80,27,.1);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-label.light {
  color: var(--blue-light);
  background: rgba(96,165,250,.15);
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }

.section-desc {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
}
.section-desc.light { color: rgba(255,255,255,.7); }

/* ===== NAVBAR ===== */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.nav-header.scrolled {
  background: rgba(13,27,42,.95);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--cyan)) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(232,80,27,.35);
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(232,80,27,.45) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
}
.shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--blue), transparent);
  top: -200px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--cyan), transparent);
  bottom: -100px; left: -100px;
  opacity: .04;
}
.shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #a78bfa, transparent);
  top: 40%; left: 40%;
  opacity: .03;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(232,80,27,.12);
  border: 1px solid rgba(232,80,27,.2);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat span {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.1);
}

/* Browser Mockup */
.hero-visual { position: relative; }

.browser-mockup {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05);
  animation: float 6s ease-in-out infinite;
}

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

.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.browser-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.browser-url {
  flex: 1;
  background: rgba(255,255,255,.05);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  font-family: monospace;
}

.browser-content { padding: 20px; }

.mock-hero-bar {
  height: 6px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 3px;
  margin-bottom: 16px;
  width: 100%;
}

.mock-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mock-logo {
  width: 80px; height: 14px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 7px;
  opacity: .7;
}

.mock-nav-links {
  display: flex;
  gap: 10px;
}
.mock-nav-links span {
  display: block;
  width: 36px; height: 10px;
  background: rgba(255,255,255,.1);
  border-radius: 5px;
}

.mock-headline {
  height: 18px;
  background: rgba(255,255,255,.15);
  border-radius: 9px;
  margin-bottom: 10px;
  width: 80%;
}
.mock-headline.short { width: 55%; }

.mock-para {
  height: 10px;
  background: rgba(255,255,255,.07);
  border-radius: 5px;
  margin-bottom: 8px;
}
.mock-para.short { width: 70%; }

.mock-buttons {
  display: flex;
  gap: 10px;
  margin: 18px 0;
}
.mock-btn {
  height: 28px;
  border-radius: 14px;
  width: 90px;
}
.mock-btn.primary { background: linear-gradient(135deg, var(--blue), var(--cyan)); opacity: .8; }
.mock-btn.outline { background: transparent; border: 1.5px solid rgba(255,255,255,.2); }

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mock-card {
  height: 60px;
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.06);
}

/* Floating badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  animation: float 6s ease-in-out infinite;
}
.badge-1 { top: 10%; right: -10px; animation-delay: 1s; color: #16a34a; }
.badge-1 svg { stroke: #16a34a; }
.badge-2 { bottom: 20%; left: -20px; animation-delay: 2s; color: var(--blue-dark); }
.badge-2 svg { stroke: var(--blue-dark); }
.badge-3 { top: 55%; right: -15px; animation-delay: 3s; color: #7c3aed; }
.badge-3 svg { stroke: #7c3aed; }

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

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Portfolio Carousel */
.about-carousel-wrap {
  position: relative;
  background: var(--navy);
  padding: 28px;
  border-radius: calc(var(--radius-lg) + 20px);
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
}

.about-years-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 32px rgba(232,80,27,.4);
  z-index: 10;
}

.years-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.years-label {
  font-size: .7rem;
  font-weight: 600;
  opacity: .9;
  white-space: nowrap;
}

.portfolio-carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  aspect-ratio: 16/10;
  background: #08111a;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 6px;
}

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 5;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.carousel-dot.active {
  background: var(--white);
  transform: scale(1.3);
}

/* Prev / Next buttons */
.carousel-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  pointer-events: none;
  z-index: 5;
}

.carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  border: 1.5px solid rgba(255,255,255,.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.carousel-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: scale(1.1);
}

/* Progress bar */
.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 0 2px 0 0;
  transition: width linear;
  z-index: 6;
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-body {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 28px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 0;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .92rem;
  color: var(--gray-700, #374151);
  font-weight: 500;
}

.feat-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.feat-icon svg { stroke: white; }

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

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

.service-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,80,27,.3);
}

.service-card.featured {
  background: var(--navy);
  border-color: transparent;
  box-shadow: 0 12px 48px rgba(13,27,42,.2);
}
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,.6); }
.service-card.featured .service-list li { color: rgba(255,255,255,.7); }
.service-card.featured .service-list li::before { background: var(--blue-light); }

.service-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, rgba(232,80,27,.12), rgba(27,200,212,.08));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  border: 1px solid rgba(232,80,27,.15);
  transition: all var(--transition);
}
.service-card.featured .service-icon {
  background: rgba(232,80,27,.2);
  border-color: rgba(232,80,27,.3);
  color: var(--blue-light);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  border-color: transparent;
}
.service-card:hover .service-icon svg { stroke: white; }

.service-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(96,165,250,.15);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 14px;
  width: fit-content;
}

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.service-list li {
  font-size: .85rem;
  color: var(--gray-600);
  padding-left: 16px;
  position: relative;
  font-weight: 500;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--blue);
  transition: all var(--transition);
  margin-top: auto;
}
.service-card.featured .service-link { color: var(--blue-light); }
.service-link:hover { gap: 10px; }

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  background: var(--navy);
}

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

.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(232,80,27,.08);
  border-color: rgba(232,80,27,.2);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(232,80,27,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  margin-bottom: 18px;
  border: 1px solid rgba(232,80,27,.2);
  transition: all var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-color: transparent;
  color: white;
}
.why-card:hover .why-icon svg { stroke: white; }

.why-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue), #0AAAB5);
  padding: 64px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-text p {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
}

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

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

.contact-info .section-title { margin-top: 8px; }

.contact-info p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 36px;
  font-size: .95rem;
}

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

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.contact-method:hover {
  border-color: var(--blue);
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-icon { background: #dcfce7; color: #16a34a; }
.email-icon { background: rgba(232,80,27,.1); color: var(--blue); }
.email-icon svg { stroke: var(--blue); }

.contact-method strong { display: block; font-weight: 700; color: var(--navy); font-size: .88rem; }
.contact-method span { font-size: .85rem; color: var(--gray-600); }

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--off-white);
  transition: border-color var(--transition);
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}

.form-group select { cursor: pointer; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #16a34a;
  font-weight: 600;
  font-size: .9rem;
  margin-top: 16px;
  padding: 12px 16px;
  background: #dcfce7;
  border-radius: var(--radius);
}
.form-success svg { stroke: #16a34a; flex-shrink: 0; }

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

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

.footer-logo { font-size: 1.5rem; margin-bottom: 16px; display: inline-block; }

.footer-brand p {
  color: rgba(255,255,255,.45);
  font-size: .88rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,.08);
}
.footer-socials a:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h5 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
  transition: color var(--transition);
  cursor: default;
}

.footer-col a:hover { color: var(--white); cursor: pointer; }

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 58px;
  height: 58px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  z-index: 999;
  transition: all var(--transition);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,.65); }
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 100px 0;
  background: var(--navy);
}

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

.review-card {
  background: #2d2d2d;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,.4);
}

.review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.reviewer-left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
}

.reviewer-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  font-family: 'Space Grotesk', sans-serif;
}

.reviewer-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.reviewer-meta strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars {
  color: #FBBC05;
  font-size: .95rem;
  letter-spacing: 1px;
}

.stars-score {
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  font-weight: 600;
}

.review-platform-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  margin-top: 2px;
}

.review-platform-label .fb-text {
  color: #1877F2;
  font-weight: 700;
  font-size: .9rem;
}

.platform-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.google-badge {
  background: #fff;
}

.facebook-badge {
  background: #1877F2;
}

.review-text {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  flex: 1;
}

.review-text a {
  color: #F07A50;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.review-text a:hover {
  color: #1BC8D4;
}

.review-sign {
  font-size: .88rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
}

@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .reviews-grid { max-width: 100%; }
}

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

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: var(--blue);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: color var(--transition);
}

.faq-item.open .faq-q { color: var(--blue); }

.faq-chevron {
  flex-shrink: 0;
  stroke: var(--gray-400);
  transition: transform var(--transition);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  stroke: var(--blue);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-a p {
  font-size: .93rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-image-col { display: block; }
  .portfolio-carousel { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: flex; z-index: 1000; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-content { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .contact-form { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}
