:root {
  --pink: #e6437a;
  --pink-dark: #c82753;
  --dark: #1f2129;
  --near-black: #050505;
  --yellow: #e8b91b;
  --blue: #004cff;
  --navy: #2b2e39;
  --footer-bg: #edf0f7;
  --tan: #f4df96;
  --border-gray: #979797;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: #0c1220;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://content.app-us1.com/ZJKEd4/2025/06/05/4d034736-6336-4c3a-9a93-fc3437784fc2.jpeg");
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.33);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
  padding-top: 56px;
  padding-bottom: 64px;
}
.logo { width: 220px; margin-bottom: 40px; }
.eyebrow {
  color: var(--pink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.hero-content h1 {
  color: #fdfdfe;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.25;
  margin: 0 0 20px;
}
.hero-content h1 .accent { font-size: 30px; }
.hero-text {
  color: #e7e9ef;
  font-size: 16px;
  line-height: 1.6;
  max-width: 460px;
  margin: 0 0 32px;
}
.whatsapp-badge {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-top: 217px;
  transform: scale(0.8);
}
.whatsapp-icon {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #25d366;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}
.whatsapp-text {
  background: var(--blue);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
  padding: 12px 28px 12px 44px;
  margin-left: -28px;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.hero-form-col { padding-top: 8px; }
.form-heading {
  color: #fdfdfe;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
  margin: 0 0 16px;
}
.form-card {
  background: #fff;
  border-radius: 11px;
  padding: 20px;
  max-width: 420px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-family: arial, helvetica, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  margin-bottom: 6px;
}
.required { color: red; margin-left: 2px; }
.form-group input[type="text"],
.form-group input[type="tel"] {
  width: 100%;
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  padding: 8px;
  font-family: arial, helvetica, sans-serif;
  font-size: 14px;
  background: #fff;
}
.form-group input:focus { outline: 2px solid var(--blue); outline-offset: 1px; }
.iti { width: 100%; }

.consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.4;
  color: #333;
  margin: 4px 0 18px;
  cursor: pointer;
}
.consent input { margin-top: 3px; }

.submit-btn {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 12px 10px;
  font-family: arial, helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.submit-btn:hover { background: #0040d6; }

/* ---------- Bands ---------- */
.band { text-align: center; padding: 22px 24px; }
.band-yellow {
  background: var(--yellow);
  color: var(--near-black);
}
.band-yellow p {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
}

.band-blue {
  background: var(--blue);
  padding: 56px 0;
}
.section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  color: #000;
  margin: 0 0 40px;
}
.section-title--light { color: #fdfdfe; }
.section-title--accent { color: var(--pink-dark); }

.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.value-prop img { width: 130px; margin: 0 auto 16px; }
.value-prop span {
  display: block;
  color: var(--tan);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* ---------- White section / photo grid ---------- */
.section-white { padding: 64px 0; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 20px;
}
.photo-grid figure { margin: 0; }
.photo-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 4px;
}
.photo-grid figcaption {
  margin-top: 10px;
  font-weight: 700;
  font-size: 15px;
  color: #111;
  text-align: center;
}

/* ---------- Team ---------- */
.team-section {
  background: var(--navy);
  padding: 64px 0 56px;
  text-align: center;
}
.team-section .section-title { color: #fff; }
.team-photo-wrap {
  width: min(560px, 90%);
  aspect-ratio: 4 / 3;
  margin: 0 auto;
  border-radius: 50% 50% 4px 4px / 60% 60% 4px 4px;
  overflow: hidden;
}
.team-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.team-quote {
  color: #f2f3f6;
  font-size: 19px;
  line-height: 1.6;
  max-width: 720px;
  margin: 40px auto 0;
}

/* ---------- Clients ---------- */
.clients-section {
  padding: 56px 0;
  text-align: center;
  border-bottom: 1px solid #e5e5ea;
}
.clients-collage { max-width: 720px; margin: 0 auto; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://content.app-us1.com/ZJKEd4/2025/06/09/27ffc3dd-8f06-453a-9613-2e0c5744a382.jpeg");
  background-size: cover;
  background-position: center;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-text {
  color: var(--pink-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.35;
  margin: 0;
  text-shadow: 0 1px 2px rgba(255,255,255,0.4);
}

/* ---------- Footer ---------- */
footer { background: var(--footer-bg); padding: 56px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-logo { width: 170px; margin-bottom: 20px; }
.footer-info .tagline {
  font-weight: 700;
  font-size: 17px;
  color: #111;
  max-width: 320px;
  margin: 0 0 20px;
}
.footer-info .address { margin: 0 0 8px; color: #333; }
.footer-info .phone { margin: 0 0 20px; color: #333; }
.footer-info .phone a { color: #1a56db; text-decoration: none; font-weight: 600; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-map iframe { border-radius: 8px; }
.copyright {
  text-align: center;
  margin: 40px 0 0;
  color: #555;
  font-size: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 32px; padding-bottom: 40px; }
  .hero-content h1 { font-size: 28px; }
  .hero-content h1 .accent { font-size: 24px; }
  .value-props { grid-template-columns: 1fr; gap: 40px; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .photo-grid { grid-template-columns: 1fr; }
  .logo { width: 170px; }
  .cta-text { font-size: 24px; }
}
