:root {
  --navy: #0f376f;
  --navy-2: #1f58a7;
  --deep: #102f5b;
  --gold: #d8ad24;
  --gold-2: #f2c331;
  --ink: #1b365c;
  --muted: #6b7788;
  --line: #e5eaf0;
  --soft: #f5f7fa;
  --white: #fff;
  --shadow: 0 12px 30px rgba(28, 47, 77, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #f7f8fa;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.centered { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(125deg, rgba(15, 47, 91, .98), rgba(32, 89, 173, .92));
  box-shadow: 0 10px 26px rgba(7, 23, 50, .18);
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 91% 28%, transparent 0 7.4%, rgba(255,255,255,.13) 7.5% 7.6%, transparent 7.7% 12.2%, rgba(255,255,255,.08) 12.3% 12.4%, transparent 12.5% 100%),
    radial-gradient(circle at 8% 79%, transparent 0 6.5%, rgba(255,255,255,.12) 6.6% 6.7%, transparent 6.8% 100%),
    linear-gradient(125deg, rgba(15,47,91,.96), rgba(32,89,173,.94)),
    repeating-linear-gradient(0deg, transparent 0 59px, rgba(255,255,255,.05) 60px),
    repeating-linear-gradient(90deg, transparent 0 59px, rgba(255,255,255,.05) 60px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 18px 0;
  position: relative;
  z-index: 2;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; color: var(--white); }
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  border: 2px solid rgba(216,173,36,.75);
}
.brand strong { color: var(--white); }
.brand small { display: block; color: #d8ad24; font-size: 12px; font-weight: 700; margin-top: -2px; }
.nav-links { display: flex; gap: 28px; font-weight: 700; font-size: 14px; }
.nav-links a { color: rgba(255, 255, 255, .95); opacity: .95; }
.nav-links a:hover { color: #ffffff; opacity: 1; }
.nav-links .nav-cta-mobile { display: none !important; }
.menu-toggle { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,.12); }
.btn-small { min-height: 36px; padding-inline: 20px; font-size: 13px; }
.btn-gold {
  color: #173a69;
  background: linear-gradient(180deg, #d9a91f, #c99914);
  box-shadow: 0 8px 18px rgba(208, 163, 22, .24);
}
.btn-navy { color: var(--white); background: var(--deep); }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.08); }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .8fr);
  align-items: center;
  gap: 90px;
  min-height: 720px;
  padding-bottom: 70px;
}
.pill, .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(216,173,36,.35);
  color: var(--gold);
  background: rgba(255,255,255,.08);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero h1 {
  margin: 26px 0 12px;
  max-width: 720px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 4.9vw, 70px);
  line-height: .95;
  letter-spacing: 0;
}
.hero h1 span, .section-title span { color: var(--gold); }
.hero h1 span { display: block; }
.hero h2 { color: #cad7ea; margin: 0 0 24px; font-size: 22px; }
.tagline {
  position: relative;
  display: inline-flex;
  gap: 14px;
  color: var(--gold);
  font-size: 19px;
  font-weight: 800;
}
.tagline::before, .tagline::after { content: ""; width: 36px; height: 2px; margin-block: auto; background: var(--gold); }
.hero-text { max-width: 560px; color: #cfdbec; font-weight: 600; font-size: 17px; }
.actions { display: flex; flex-wrap: wrap; gap: 16px; margin: 30px 0; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 590px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-stats span {
  display: block;
  color: #c6d2e5;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}
.hero-stats strong {
  display: block;
  color: var(--gold-2);
  font-size: 30px;
  line-height: 1.05;
  margin-bottom: 8px;
}
.hero-card {
  position: relative;
  padding: 42px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 22px;
  background: rgba(255,255,255,.14);
  box-shadow: 0 26px 60px rgba(7, 23, 50, .22);
  backdrop-filter: blur(10px);
}
.badge {
  position: absolute;
  top: -18px;
  right: -20px;
  padding: 12px 20px;
  border-radius: 999px;
  color: #173a69;
  background: var(--gold-2);
  font-weight: 900;
}
.mini-brand { display: flex; align-items: center; gap: 16px; }
.mini-brand img { width: 64px; height: 64px; border-radius: 14px; object-fit: cover; background: var(--white); }
.mini-brand small { display: block; color: var(--gold); font-weight: 800; }
.service-chips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 28px 0; }
.service-chips span {
  padding: 15px 16px;
  border-radius: 10px;
  color: #e8f1ff;
  font-weight: 800;
  font-size: 13px;
}
.service-chips .chip-whatsapp { background: rgba(40, 150, 126, .72); }
.service-chips .chip-google { background: rgba(113, 128, 139, .72); }
.service-chips .chip-social { background: rgba(62, 105, 178, .78); }
.service-chips .chip-sms { background: rgba(91, 87, 178, .78); }
.location { padding: 20px; border-radius: 14px; background: rgba(216,173,36,.18); color: #dfe9f8; font-weight: 700; }
.happy-badge {
  position: absolute;
  left: -18px;
  bottom: -18px;
  padding: 12px 20px;
  border-radius: 999px;
  color: var(--deep);
  background: var(--white);
  font-weight: 900;
}
.wave {
  position: absolute;
  inset: auto 0 0;
  height: 72px;
  background: var(--white);
  clip-path: ellipse(68% 42% at 50% 100%);
}

.section { padding: 92px 0; background: var(--white); }
.section:nth-of-type(3), .section:nth-of-type(5), .testimonials, .contact { background: var(--soft); }
.eyebrow { background: #fffdf5; color: var(--gold); }
.eyebrow.left { justify-content: flex-start; padding-left: 0; border: 0; background: transparent; }
.section-title {
  margin: 14px auto 18px;
  color: var(--deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}
.section-lead { max-width: 680px; margin: 0 auto 48px; color: var(--muted); font-size: 17px; font-weight: 600; }
.metrics-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 44px; }
.metrics-grid article, .service-card, .why-grid article, .case-card, .testimonial-grid article, .form-card, .hours {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.metrics-grid article,
.service-card,
.why-grid article,
.case-card,
.testimonial-grid article {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.metrics-grid article:hover,
.service-card:hover,
.why-grid article:hover,
.case-card:hover,
.testimonial-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 173, 36, .35);
  box-shadow: 0 20px 42px rgba(28, 47, 77, .18);
}
.metrics-grid article { padding: 34px 18px; }
.metrics-grid b { display: block; color: var(--deep); font-size: 35px; line-height: 1; }
.metrics-grid article:nth-child(even) b { color: var(--gold); }
.metrics-grid strong { display: block; margin-top: 10px; font-size: 14px; }
.metrics-grid span, .caption { color: #8a94a3; font-size: 13px; }
.caption { margin-top: 44px; font-weight: 700; font-style: italic; }

.about .split {
  display: grid;
  grid-template-columns: minmax(430px, .96fr) minmax(520px, 1fr);
  gap: 92px;
  align-items: center;
}
.about-art {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.about-art::before,
.about-art::after {
  content: "";
  position: absolute;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  pointer-events: none;
}
.about-art::before {
  top: 38px;
  left: -34px;
  z-index: 0;
  border: 5px solid rgba(216,173,36,.22);
}
.about-art::after {
  right: -28px;
  bottom: 48px;
  z-index: 2;
  background: rgba(216,173,36,.15);
}
.about-image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.9 / 1;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 32px 70px rgba(29,55,94,.18);
}
.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 55, 111, .86), rgba(32, 89, 173, .78));
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-copy { text-align: left; }
.about-copy .section-title {
  margin-left: 0;
  max-width: 660px;
  font-size: clamp(34px, 3.2vw, 47px);
}
.about-copy .section-title::after {
  content: "";
  display: block;
  width: 76px;
  height: 4px;
  margin-top: 20px;
  background: var(--gold);
}
.about-copy p { color: #24364b; font-size: 18px; line-height: 1.62; }
.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 34px 0; }
.feature-row article { min-height: 168px; padding: 22px 20px; border: 1px solid var(--line); border-radius: 14px; background: #fafbfe; }
.feature-row article::before {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}
.feature-row article:nth-child(1)::before { content: "\25ce"; }
.feature-row article:nth-child(2)::before { content: "\26a1"; }
.feature-row article:nth-child(3)::before { content: "\2691"; }
.feature-row strong { color: var(--deep); }
.feature-row span { display: block; margin-top: 8px; color: #536277; font-size: 14px; line-height: 1.45; }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 54px; padding: 0; margin: 30px 0 28px; list-style: none; color: #142d52; font-weight: 500; }
.check-list li::before { content: "\2713"; color: var(--gold); margin-right: 8px; }
.cards { text-align: left; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card { overflow: hidden; }
.service-top {
  position: relative;
  height: 132px;
  overflow: hidden;
  background: var(--card);
}
.service-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay);
  opacity: .78;
  transition: opacity .3s ease;
}
.service-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}
.service-card:hover .service-top img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}
.service-card:hover .service-top::after { opacity: .66; }
.green { --card: #21a862; --overlay: linear-gradient(135deg, rgba(19, 170, 94, .9), rgba(21, 138, 78, .72)); }
.blue { --card: #3f7bd9; --overlay: linear-gradient(135deg, rgba(95, 151, 241, .88), rgba(44, 95, 188, .72)); }
.purple { --card: #7d39c9; --overlay: linear-gradient(135deg, rgba(130, 54, 204, .88), rgba(94, 36, 165, .72)); }
.pink { --card: #e85b85; --overlay: linear-gradient(135deg, rgba(236, 83, 121, .88), rgba(214, 58, 101, .72)); }
.orange { --card: #df762b; --overlay: linear-gradient(135deg, rgba(220, 102, 31, .88), rgba(191, 78, 19, .72)); }
.red { --card: #e04c55; --overlay: linear-gradient(135deg, rgba(234, 84, 93, .88), rgba(205, 52, 63, .72)); }
.teal { --card: #23aaa4; --overlay: linear-gradient(135deg, rgba(36, 180, 173, .88), rgba(23, 135, 131, .72)); }
.amber { --card: #cd8906; --overlay: linear-gradient(135deg, rgba(210, 139, 7, .9), rgba(179, 105, 0, .74)); }
.service-card h3 { margin: 24px 22px 10px; font-family: "Playfair Display", Georgia, serif; color: var(--deep); }
.service-card ul { min-height: 126px; margin: 0 22px 16px; padding-left: 18px; color: #596678; }
.service-card li::marker { color: var(--gold); }
.service-card a {
  display: flex;
  justify-content: center;
  margin: 0 22px 22px;
  padding: 10px;
  border: 2px solid #aeb9c6;
  border-radius: 999px;
  color: var(--deep);
  font-weight: 900;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.service-card:hover a {
  color: var(--white);
  border-color: var(--deep);
  background: var(--deep);
  transform: translateY(-1px);
}

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; text-align: left; }
.why-card {
  position: relative;
  min-height: 314px;
  padding: 78px 26px 24px;
  border: 1px solid #e9edf3;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(18, 38, 74, .08);
}
.why-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 160px;
  height: 1px;
  background: #edf1f6;
}
.why-card b {
  position: absolute;
  top: 18px;
  left: 24px;
  color: rgba(37, 69, 118, .08);
  font-size: 54px;
  line-height: 1;
  font-weight: 800;
}
.why-card h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--deep);
  font-size: 22px;
}
.why-card p {
  margin: 0 0 28px;
  color: #717d8e;
  font-size: 16px;
  line-height: 1.55;
}
.why-card span, .testimonial-grid span {
  display: inline-flex;
  margin: 6px 8px 0 0;
  padding: 6px 12px;
  border-radius: 999px;
  color: #23618a;
  background: #eef4f8;
  font-size: 12px;
  font-weight: 900;
}
.why-icon {
  position: absolute;
  top: 26px;
  right: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 12px 20px rgba(16, 47, 91, .18);
}
.why-icon::before {
  content: "";
  width: 28px;
  height: 28px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.why-icon[data-icon="target"] { background: linear-gradient(135deg, #2d69d8, #2453b8); }
.why-icon[data-icon="target"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Ccircle cx='12' cy='12' r='1.5' fill='%23ffffff' stroke='none'/%3E%3C/svg%3E");
}
.why-icon[data-icon="dollar"] { background: linear-gradient(135deg, #e1a31a, #d68c09); }
.why-icon[data-icon="dollar"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v18'/%3E%3Cpath d='M16 7.5c0-1.9-1.8-3.5-4-3.5s-4 1.2-4 3.3S9.5 10 12 10s4 1.1 4 3.2-1.8 3.8-4 3.8-4-1.6-4-3.5'/%3E%3C/svg%3E");
}
.why-icon[data-icon="team"] { background: linear-gradient(135deg, #17b58f, #0b9d7b); }
.why-icon[data-icon="team"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='11' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.85'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}
.why-icon[data-icon="bolt"] { background: linear-gradient(135deg, #ff6f2d, #f04d2d); }
.why-icon[data-icon="bolt"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2L4 14h7l-1 8 10-13h-7l0-7z' fill='%23ffffff' stroke='none'/%3E%3C/svg%3E");
}
.why-icon[data-icon="growth"] { background: linear-gradient(135deg, #8d4df7, #7c35d8); }
.why-icon[data-icon="growth"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 16l6-6 4 4 6-8'/%3E%3Cpath d='M14 6h6v6'/%3E%3C/svg%3E");
}
.why-icon[data-icon="gear"] { background: linear-gradient(135deg, #1594e7, #1976ff); }
.why-icon[data-icon="gear"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M19.4 15a1 1 0 0 0 .2-1l-.8-1.4a7.7 7.7 0 0 0 0-1.2l.8-1.4a1 1 0 0 0-.2-1l-1.3-1.3a1 1 0 0 0-1-.2l-1.4.8a7.7 7.7 0 0 0-1.2 0l-1.4-.8a1 1 0 0 0-1 .2l-1.3 1.3a1 1 0 0 0-.2 1l.8 1.4a7.7 7.7 0 0 0 0 1.2l-.8 1.4a1 1 0 0 0 .2 1l1.3 1.3a1 1 0 0 0 1 .2l1.4-.8a7.7 7.7 0 0 0 1.2 0l1.4.8a1 1 0 0 0 1-.2l1.3-1.3Z'/%3E%3C/svg%3E");
}
.why-card.blue span { color: #245aaf; background: #eef4ff; }
.why-card.gold span { color: #c08c08; background: #fff7e2; }
.why-card.green span { color: #0d9470; background: #eafaf5; }
.why-card.orange span { color: #ef6a1f; background: #fff1e7; }
.why-card.purple span { color: #7b48e8; background: #f0ebff; }
.why-card.cyan span { color: #128fbd; background: #e8f8fd; }
.why-card.blue .why-icon { background: linear-gradient(135deg, #2d69d8, #2453b8); }
.why-card.gold .why-icon { background: linear-gradient(135deg, #e1a31a, #d68c09); }
.why-card.green .why-icon { background: linear-gradient(135deg, #17b58f, #0b9d7b); }
.why-card.orange .why-icon { background: linear-gradient(135deg, #ff6f2d, #f04d2d); }
.why-card.purple .why-icon { background: linear-gradient(135deg, #8d4df7, #7c35d8); }
.why-card.cyan .why-icon { background: linear-gradient(135deg, #1594e7, #1976ff); }
.cta-band, .impact-band, .mini-stats {
  margin-top: 64px;
  padding: 50px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(120deg, #123866, #225baa);
  text-align: left;
}
.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-band small, .impact-band small { color: var(--gold); font-weight: 900; text-transform: uppercase; letter-spacing: 2px; }
.cta-band h3, .impact-band h3 { margin: 10px 0 6px; font-family: "Playfair Display", Georgia, serif; font-size: 31px; line-height: 1.05; }

.tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 36px; }
.tabs span { padding: 12px 18px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: #6a7381; font-weight: 900; }
.tabs .active { color: var(--white); background: #25c76b; box-shadow: 0 12px 22px rgba(37,199,107,.28); }
.portfolio-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 26px;
  border: 1px solid #cdeedc;
  border-radius: 14px;
  background: #f2fcf6;
  color: #1b6e45;
  text-align: left;
}
.portfolio-note span { color: #7a8896; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 34px; text-align: left; }
.case-card { overflow: hidden; }
.case-card img { width: 100%; height: 200px; object-fit: cover; }
.case-card img { transition: transform .35s ease, filter .35s ease; }
.case-card:hover img { transform: scale(1.04); filter: saturate(1.06); }
.case-card div { padding: 22px; }
.case-card small { color: #8290a0; }
.case-card h3 { margin: 12px 0; font-family: "Playfair Display", Georgia, serif; color: var(--deep); }
.case-card p { color: #667386; }
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 0 !important; }
.case-metrics b { padding: 12px 8px; border-radius: 12px; background: #effcf6; color: #286a5a; text-align: center; }
.case-card a { display: inline-flex; margin-top: 18px; color: #24b865; font-weight: 900; }
.impact-band { text-align: center; }
.impact-band div { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 28px 0; }
.impact-band b { display: block; color: var(--gold); font-size: 32px; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; text-align: left; }
.testimonial-grid article { padding: 30px; }
.testimonial-grid b { color: var(--gold); }
.testimonial-grid p { min-height: 112px; color: #4f5c6d; font-weight: 600; }
.testimonial-grid strong { display: block; margin-top: 22px; color: var(--deep); }
.testimonial-grid small { color: #788393; }
.mini-stats { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; padding: 26px; }
.mini-stats b { display: block; color: var(--gold); font-size: 25px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 54px; text-align: left; }
.contact-card {
  padding: 42px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, #123866, #225baa);
  box-shadow: var(--shadow);
}
.contact-card p { color: #d7e2f3; font-weight: 700; }
.contact-card .btn { width: 100%; margin-top: 12px; }
.hours { margin-top: 22px; padding: 26px; }
.hours h3, .form-card h3 { margin-top: 0; font-family: "Playfair Display", Georgia, serif; color: var(--deep); font-size: 29px; }
.hours p { display: flex; justify-content: space-between; color: #677487; }
.form-card { padding: 42px; }
.form-card p { color: #6f7a89; }
.form-card label { display: block; margin-top: 18px; color: #445269; font-weight: 800; }
input, select, textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #dfe5ed;
  border-radius: 10px;
  padding: 15px 16px;
  color: var(--ink);
  background: #f9fafc;
  font: inherit;
}
textarea { min-height: 130px; resize: vertical; }
.form-card button { width: 100%; margin-top: 24px; border-radius: 10px; }
.form-card small { display: block; margin-top: 18px; color: #9aa3af; text-align: center; }

.footer {
  padding: 70px 0 28px;
  color: #c9d5e7;
  background:
    linear-gradient(rgba(15,47,91,.98), rgba(15,47,91,.98)),
    repeating-linear-gradient(0deg, transparent 0 59px, rgba(255,255,255,.05) 60px),
    repeating-linear-gradient(90deg, transparent 0 59px, rgba(255,255,255,.05) 60px);
}
.footer-grid { display: grid; grid-template-columns: 1.25fr .92fr 1.08fr 1.18fr; gap: 48px; align-items: start; }
.footer-brand p { max-width: 300px; color: #c6d3e6; margin: 18px 0 10px; }
.footer-brand em { display: block; color: var(--gold); font-weight: 900; font-style: normal; margin-top: 12px; }
.footer h3 {
  margin: 10px 0 18px;
  color: var(--white);
  font-size: 20px;
}
.footer h3::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  margin: 0 10px 5px 0;
  background: var(--gold);
}
.footer-links a {
  display: block;
  margin: 10px 0;
  color: #c6d3e6;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  font-weight: 900;
}
.footer-social a:hover { background: rgba(255, 255, 255, .2); }
.social-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.social-icon[data-icon="whatsapp"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M26.7 18.5A11 11 0 1 1 28 13a10.9 10.9 0 0 1-1.3 5.5L28 28l-9.1-1.2a11 11 0 0 1-5.9 1.7h-.2a11 11 0 0 1-5.9-20.2'/%3E%3Cpath d='M12.2 10.8c.4-.8 1-.8 1.5-.8h.7c.2 0 .6.1.9.8l1 2.3c.1.4.1.8-.1 1.1l-.7.8c-.2.2-.3.5-.1.8.5 1 1.8 2.7 3.2 3.4.4.2.8.2 1.1 0l1.1-.6c.4-.2.8-.2 1.1 0l2 .9c.6.3.7.7.6 1.2-.2 1.1-1.1 2.2-2.3 2.5-1.2.3-2.7.1-5.5-1.3-3.6-1.8-5.9-4.8-6.9-7.7-.6-1.7-.4-3.5.4-4.6Z' fill='%23ffffff' stroke='none'/%3E%3C/svg%3E");
}
.social-icon[data-icon="phone"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v2.8a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.2 19.2 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4A2 2 0 0 1 4.1 1.8h2.8a2 2 0 0 1 2 1.7c.1.9.4 1.8.8 2.6a2 2 0 0 1-.5 2.1L8 9.5a16 16 0 0 0 6.5 6.5l1.3-1.3a2 2 0 0 1 2.1-.5c.8.4 1.7.7 2.6.8a2 2 0 0 1 1.5 1.9Z'/%3E%3C/svg%3E");
}
.social-icon[data-icon="mail"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}
.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
}
.footer-contact-line::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex: 0 0 38px;
  color: var(--gold-2);
  background: rgba(216, 173, 36, .14);
  font-size: 18px;
  font-weight: 700;
}
.footer-contact-line[data-icon="phone"]::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f2c331' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v2.8a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.2 19.2 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4A2 2 0 0 1 4.1 1.8h2.8a2 2 0 0 1 2 1.7c.1.9.4 1.8.8 2.6a2 2 0 0 1-.5 2.1L8 9.5a16 16 0 0 0 6.5 6.5l1.3-1.3a2 2 0 0 1 2.1-.5c.8.4 1.7.7 2.6.8a2 2 0 0 1 1.5 1.9Z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.footer-contact-line[data-icon="mail"]::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f2c331' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.footer-contact-line[data-icon="pin"]::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f2c331' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s6-4.8 6-10a6 6 0 0 0-12 0c0 5.2 6 10 6 10Z'/%3E%3Ccircle cx='12' cy='11' r='2.2'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.footer-contact-line p { margin: 0; }
.footer-contact-line span { display: block; color: #9eb1cd; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.footer-contact-line strong { color: var(--white); }
.footer-cta { width: 100%; margin-top: 8px; }
.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #8fa3bf;
  font-size: 12px;
}

.float-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px 12px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  color: var(--deep);
  box-shadow: 0 14px 34px rgba(7, 23, 50, .22);
  font-size: 13px;
  backdrop-filter: blur(10px);
}
.float-chat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #24d366, #14b85a);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.24);
  overflow: hidden;
}
.float-chat-icon img { width: 76%; height: 76%; object-fit: contain; }
.float-chat-icon::before {
  content: none;
}
.float-chat-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.float-chat strong { display: block; font-size: 14px; }
.float-chat small { display: block; color: #7b8695; font-size: 12px; }
.bolt-badge {
  position: fixed;
  right: 22px;
  bottom: 18px;
  z-index: 10;
  padding: 9px 18px;
  border-radius: 8px;
  background: var(--white);
  color: #111827;
  box-shadow: var(--shadow);
  font-weight: 900;
  font-size: 13px;
}

@media (max-width: 1050px) {
  .site-header { position: sticky; top: 0; }
  .nav {
    flex-wrap: wrap;
    gap: 14px;
    padding: 14px 0;
  }
  .nav-links {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    gap: 0;
    margin-top: 14px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    background: rgba(11, 34, 74, .94);
    box-shadow: 0 22px 48px rgba(2, 12, 34, .28);
  }
  .site-header.nav-open .nav-links { display: flex; }
  .nav-links a {
    padding: 14px 2px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-cta-mobile {
    display: inline-flex;
    width: 100%;
    margin-top: 16px;
    border-radius: 999px;
    justify-content: center;
    color: #173a69 !important;
  }
  .menu-toggle {
    display: inline-flex;
    order: 2;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1.5px solid rgba(255, 255, 255, .7);
    border-radius: 6px;
    color: var(--white);
    background: transparent;
  }
  .hamburger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 18px;
    height: 18px;
  }
  .hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
    transform-origin: center;
  }
  .site-header.nav-open .hamburger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .site-header.nav-open .hamburger span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .hamburger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav > .btn { display: none; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .about .split { grid-template-columns: 1fr; }
  .hero-grid { gap: 40px; padding: 34px 0 120px; }
  .metrics-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid, .testimonial-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 28px, 1180px); }
  .hero { min-height: auto; }
  .nav { gap: 12px; }
  .nav-links { margin-top: 12px; }
  .nav-cta-mobile { min-height: 44px; }
  .brand img { width: 42px; height: 42px; }
  .hero h1 { font-size: 44px; }
  .hero-card { padding: 26px; }
  .badge, .happy-badge { position: static; display: inline-flex; margin-bottom: 18px; }
  .service-chips, .hero-stats, .feature-row, .check-list, .metrics-grid, .service-grid, .why-grid, .case-grid, .testimonial-grid, .impact-band div, .mini-stats, .footer-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 66px 0; }
  .cta-band { display: block; padding: 30px; }
  .impact-band { padding: 30px 20px; }
  .portfolio-note { display: block; }
  .contact-card, .form-card { padding: 28px; }
  .copyright { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-contact-line { padding: 10px 12px; }
  .float-chat {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    padding: 8px;
  }
  .float-chat-text { display: none; }
  .float-chat-icon {
    width: 44px;
    height: 44px;
  }
  .bolt-badge { right: 14px; }
}

