@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── Variables ─────────────────────────────────────────── */
:root {
  --navy:   #0b1c35;
  --navy2:  #112240;
  --gold:   #c9a84c;
  --gold2:  #e8c96a;
  --white:  #f5f7fa;
  --grey:   #8892a4;
  --light:  #eef1f6;
  --card:   #ffffff;
  --shadow: 0 8px 40px rgba(11,28,53,0.13);
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── Utility ────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Navbar ─────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
  padding: 22px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  background: var(--navy);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(11,28,53,0.25);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 900;
  color: var(--white);
  letter-spacing: 0.5px;
}
.logo span { color: var(--gold); margin-left: 2px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(245,247,250,0.85); font-size: 0.9rem;
  font-weight: 500; letter-spacing: 0.4px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  padding: 9px 22px; border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold2) !important; }

/* Hamburger */
#menu-btn {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
#menu-btn span {
  display: block; width: 25px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
#menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#menu-btn.active span:nth-child(2) { opacity: 0; }
#menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-menu {
  display: none; flex-direction: column;
  background: var(--navy2); padding: 0;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
#mobile-menu.open { max-height: 400px; padding: 16px 0 24px; }
#mobile-menu a {
  color: var(--white); padding: 12px 24px;
  font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
#mobile-menu a:hover { color: var(--gold); }

/* ─── Hero ───────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #1a3a5c 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 80px;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg, var(--gold) 0, var(--gold) 1px,
    transparent 0, transparent 50%
  );
  background-size: 30px 30px;
}
.hero-glow {
  position: absolute; width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeDown 0.8s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900; line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-title .highlight {
  color: var(--gold);
  position: relative; display: inline-block;
}
.hero-subtitle {
  font-size: 1.15rem; color: rgba(245,247,250,0.72);
  line-height: 1.7; max-width: 560px;
  margin-bottom: 44px;
  animation: fadeUp 0.9s 0.4s ease both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.9s 0.6s ease both;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 15px 34px; border-radius: 4px;
  font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid rgba(245,247,250,0.35);
  color: var(--white); background: transparent;
  padding: 15px 34px; border-radius: 4px;
  font-weight: 600; font-size: 0.95rem;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(245,247,250,0.4); font-size: 0.75rem; letter-spacing: 1px;
  animation: bounce 2s infinite;
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}
.hero-scroll::after {
  content: ''; display: block;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
}

/* ─── Pain Points ────────────────────────────────────────── */
#pain {
  background: var(--navy);
  padding: 90px 0;
}
.pain-label {
  text-align: center;
  font-size: 0.78rem; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600; margin-bottom: 16px;
}
.pain-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700; color: var(--white);
  text-align: center; max-width: 640px;
  margin: 0 auto 60px;
  line-height: 1.3;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pain-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.pain-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.pain-icon {
  font-size: 2rem; margin-bottom: 18px;
}
.pain-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--white);
  margin-bottom: 10px;
}
.pain-card p { color: var(--grey); font-size: 0.92rem; line-height: 1.65; }

/* ─── Services ───────────────────────────────────────────── */
#services {
  background: var(--white);
  padding: 100px 0;
}
.section-label {
  text-align: center;
  font-size: 0.78rem; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600; margin-bottom: 16px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700; color: var(--navy);
  text-align: center; max-width: 600px;
  margin: 0 auto 12px; line-height: 1.3;
}
.section-sub {
  text-align: center; color: var(--grey);
  font-size: 1rem; max-width: 500px;
  margin: 0 auto 60px; line-height: 1.6;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--light);
  border-radius: 14px; padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(11,28,53,0.15); }
.service-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 22px;
  border: 1px solid rgba(201,168,76,0.2);
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem; color: var(--navy);
  margin-bottom: 12px;
}
.service-card p { color: var(--grey); font-size: 0.92rem; line-height: 1.7; }

/* ─── Stats ──────────────────────────────────────────────── */
#stats {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px; text-align: center;
}
.stat-item {}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900;
  color: var(--gold); line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  color: rgba(245,247,250,0.65);
  font-size: 0.9rem; letter-spacing: 0.5px;
}

/* ─── Why Us ─────────────────────────────────────────────── */
#why {
  background: var(--light);
  padding: 100px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.why-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.25; margin-bottom: 20px;
}
.why-text p {
  color: var(--grey); font-size: 1rem;
  line-height: 1.75; margin-bottom: 36px;
}
.why-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.why-list li {
  display: flex; gap: 14px; align-items: flex-start;
}
.why-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.why-list li p { color: var(--navy); font-size: 0.95rem; line-height: 1.6; margin: 0; }
.why-list li p strong { display: block; margin-bottom: 2px; }
.why-visual {
  background: var(--navy);
  border-radius: 16px; padding: 44px 36px;
  box-shadow: var(--shadow);
}
.process-step {
  display: flex; gap: 20px; align-items: flex-start;
  margin-bottom: 0;
}
.process-step:last-child { margin-bottom: 0; }
.step-num {
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--gold); flex-shrink: 0;
  line-height: 1;
}
.step-content h4 {
  color: var(--white); font-size: 1rem;
  font-weight: 600; margin-bottom: 4px; padding-top: 10px;
}
.step-content p { color: var(--grey); font-size: 0.88rem; line-height: 1.55; padding-bottom: 8px; }
.step-connector {
  width: 2px; height: 24px;
  background: rgba(201,168,76,0.3);
  margin-left: 20px;
}

/* ─── Contact ────────────────────────────────────────────── */
#contact {
  background: var(--white);
  padding: 100px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px; align-items: start;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.3; margin-bottom: 16px;
}
.contact-info p {
  color: var(--grey); font-size: 0.97rem;
  line-height: 1.7; margin-bottom: 36px;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; gap: 16px; align-items: center;
}
.contact-ico {
  width: 46px; height: 46px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item-text span {
  display: block; font-size: 0.75rem;
  color: var(--grey); letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-item-text a {
  color: var(--navy); font-weight: 500; font-size: 0.95rem;
  transition: color 0.2s;
}
.contact-item-text a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--light);
  border-radius: 16px; padding: 44px 40px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label {
  font-size: 0.82rem; font-weight: 600;
  color: var(--navy); letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  border: 1.5px solid var(--light);
  border-radius: 8px; font-family: inherit;
  font-size: 0.93rem; color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%; padding: 15px;
  background: var(--navy); color: var(--white);
  border: none; border-radius: 8px;
  font-family: inherit; font-size: 1rem;
  font-weight: 700; cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.25s, transform 0.2s;
}
.btn-submit:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), #1a3a5c);
  border-radius: 16px; padding: 60px 48px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
  margin-top: 80px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  right: -50px; top: -50px; pointer-events: none;
}
.cta-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white); line-height: 1.3;
}
.cta-banner p { color: rgba(245,247,250,0.65); margin-top: 8px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-wa {
  background: #25D366; color: #fff;
  padding: 14px 28px; border-radius: 6px;
  font-weight: 700; font-size: 0.92rem;
  display: flex; align-items: center; gap: 8px;
  transition: background 0.2s;
}
.cta-wa:hover { background: #1ebc57; }
.cta-call {
  background: transparent;
  border: 1.5px solid rgba(245,247,250,0.3);
  color: var(--white);
  padding: 14px 28px; border-radius: 6px;
  font-weight: 600; font-size: 0.92rem;
  display: flex; align-items: center; gap: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.cta-call:hover { border-color: var(--gold); color: var(--gold); }

/* ─── Footer ─────────────────────────────────────────────── */
#footer {
  background: var(--navy);
  padding: 60px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
/* On desktop, the wrapper is invisible — cols slot into parent grid */
.footer-cols-mobile {
  display: contents;
}
.footer-brand .logo { font-size: 1.35rem; margin-bottom: 14px; }
.footer-brand p {
  color: var(--grey); font-size: 0.88rem;
  line-height: 1.65; max-width: 280px;
}
.footer-col h4 {
  color: var(--white); font-size: 0.85rem;
  font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 18px;
}
.footer-col-header {
  display: flex; align-items: center;
  justify-content: space-between;
  cursor: default;
}
.footer-chevron { display: none; color: var(--grey); }
.footer-col-links {
  list-style: none; display: flex;
  flex-direction: column; gap: 10px;
}
.footer-col-links li a {
  color: var(--grey); font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col-links li a:hover { color: var(--gold); }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey); font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}
.social-link:hover { background: var(--gold); color: var(--navy); }
.footer-divider {
  height: 1px; background: rgba(255,255,255,0.07);
  margin-bottom: 24px;
}
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--grey); font-size: 0.82rem; }
.footer-bottom a { color: var(--gold); }

/* ─── Animations ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── React-specific overrides ───────────────────────────── */
.menu-btn-react { display: none !important; }
.mobile-menu-react {
  display: flex; flex-direction: column;
  background: var(--navy2); padding: 16px 0 24px;
}
.mobile-menu-react a {
  color: var(--white); padding: 12px 24px;
  font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s; text-decoration: none;
}
.mobile-menu-react a:hover { color: var(--gold); }
.contact-ico svg { width: 20px; height: 20px; color: var(--white); }
.social-link svg { color: var(--grey); }
.social-link:hover svg { color: var(--navy); }
.cta-wa svg, .cta-call svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET LANDSCAPE  (max 1024px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav-links { gap: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { padding: 48px 40px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET PORTRAIT  (max 900px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Sections */
  #pain     { padding: 70px 0; }
  #services { padding: 70px 0; }
  #stats    { padding: 60px 0; }
  #why      { padding: 70px 0; }
  #contact  { padding: 70px 0; }

  /* Grids collapse to single column */
  .why-grid     { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top   { grid-template-columns: 1fr; gap: 32px; }

  /* Why visual full width */
  .why-visual { width: 100%; }

  /* CTA banner stacks */
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 44px 36px;
    gap: 28px;
  }
  .cta-actions { width: 100%; }
  .cta-wa, .cta-call { flex: 1; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (max 700px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 700px) {
  /* Container */
  .container { padding: 0 20px; }

  /* Navbar */
  .nav-links { display: none; }
  .menu-btn-react { display: flex !important; }

  /* Hero */
  #hero { padding-top: 72px; min-height: 100svh; }
  .hero-content { padding-bottom: 60px; }
  .hero-badge { font-size: 0.7rem; letter-spacing: 1.5px; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 36px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-outline {
    width: 100%; text-align: center;
    padding: 15px 24px;
  }
  .hero-scroll { display: none; }

  /* Sections padding */
  #pain     { padding: 56px 0; }
  #services { padding: 56px 0; }
  #stats    { padding: 48px 0; }
  #why      { padding: 56px 0; }
  #contact  { padding: 56px 0; }

  /* Pain grid — single column */
  .pain-grid { grid-template-columns: 1fr; gap: 16px; }
  .pain-card { padding: 28px 22px; }
  .pain-heading { margin-bottom: 40px; }

  /* Services — single column */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 32px 24px; }

  /* Stats — 2 col */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stat-number { font-size: 2.4rem; }

  /* Why us */
  .why-grid { gap: 32px; }
  .why-visual { padding: 32px 24px; }

  /* Contact */
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-items { gap: 16px; }

  /* CTA Banner */
  .cta-banner {
    padding: 36px 24px;
    border-radius: 12px;
    margin-top: 48px;
  }
  .cta-banner h3 { font-size: 1.4rem; }
  .cta-actions { flex-direction: column; gap: 10px; }
  .cta-wa, .cta-call { width: 100%; justify-content: center; }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }
  .footer-brand {
    padding-bottom: 32px;
    margin-bottom: 0;
  }
  .footer-brand p { max-width: 100%; }
  #footer { padding: 48px 0 24px; }

  /* Restore cols wrapper as a proper 2-col grid on mobile */
  .footer-cols-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  /* Collapsible footer columns on mobile */
  .footer-col {
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .footer-col-header {
    cursor: pointer;
    padding: 16px 0;
    user-select: none;
  }
  .footer-col-header h4 { margin-bottom: 0; }
  .footer-chevron { display: flex; }

  /* Links hidden by default, shown when open */
  .footer-col-links {
    max-height: 0;
    overflow: hidden;
    gap: 0;
    transition: max-height 0.35s ease, padding 0.3s ease;
  }
  .footer-col-links.footer-col-open {
    max-height: 300px;
    padding-bottom: 16px;
  }
  .footer-col-links li { padding: 5px 0; }

  /* Add border after last col */
  .footer-col:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  .footer-divider { margin-top: 16px; }}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  (max 480px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Typography scale down */
  .hero-title { line-height: 1.1; }
  .pain-heading { font-size: 1.6rem; }
  .section-heading { font-size: 1.6rem; }

  /* Stats 2x2 compact */
  .stats-grid { gap: 20px; }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.8rem; }

  /* Process steps */
  .step-num { width: 36px; height: 36px; font-size: 0.9rem; }
  .step-connector { margin-left: 17px; }

  /* Contact icons */
  .contact-ico { width: 40px; height: 40px; border-radius: 8px; }

  /* Form inputs larger touch target */
  .form-group input,
  .form-group textarea,
  .form-group select { padding: 14px 14px; font-size: 1rem; }
  .btn-submit { padding: 16px; font-size: 1rem; }

  /* Footer */
  .social-links { gap: 10px; }
  .social-link { width: 36px; height: 36px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — VERY SMALL  (max 360px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 360px) {
  .container { padding: 0 16px; }
  .logo { font-size: 1.25rem; }
  .hero-badge { font-size: 0.65rem; padding: 5px 12px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 1.8rem; }
  .pain-card { padding: 22px 18px; }
  .service-card { padding: 26px 20px; }
  .cta-banner { padding: 28px 18px; }
  .contact-form-wrap { padding: 22px 16px; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICE PAGES
═══════════════════════════════════════════════════════════ */

/* ── Service card Learn More link ───────────────────────── */
.service-card {
  display: flex; flex-direction: column;
}
.service-card p { flex: 1; }
.service-learn-more {
  display: inline-block; margin-top: 16px;
  color: var(--gold); font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.3px; transition: color 0.2s;
}
.service-learn-more:hover { color: var(--gold2); }

/* ── Hero ───────────────────────────────────────────────── */
.sp-hero {
  min-height: 92vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #1a3a5c 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 100px; padding-bottom: 60px;
}
.sp-hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}
.sp-hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.sp-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.sp-back {
  display: block; color: rgba(245,247,250,0.5);
  font-size: 0.85rem; margin-bottom: 20px;
  transition: color 0.2s; width: fit-content;
}
.sp-back:hover { color: var(--gold); }
.sp-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 14px;
  border-radius: 50px; margin-bottom: 20px;
}
.sp-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900; line-height: 1.12;
  color: var(--white); margin-bottom: 20px;
}
.sp-subtitle {
  font-size: 1.08rem; color: rgba(245,247,250,0.7);
  line-height: 1.75; max-width: 500px; margin-bottom: 36px;
}
.sp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.sp-hero-visual {
  display: flex; align-items: center; justify-content: center;
}
.sp-icon-wrap {
  width: 340px; height: 300px; border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
}
.sp-icon-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.sp-icon-wrap.sp-icon-svg img {
  object-fit: contain; padding: 20px;
  background: #fff;
}

/* ── Sections ───────────────────────────────────────────── */
.sp-section { padding: 100px 0; }
.sp-features { background: var(--white); }
.sp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 56px;
}
.sp-feature-card {
  background: var(--card); border: 1px solid var(--light);
  border-radius: 16px; padding: 32px 28px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.sp-feature-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.sp-feature-icon { font-size: 2rem; margin-bottom: 16px; }
.sp-feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--navy); margin-bottom: 8px;
}
.sp-feature-card p { color: var(--grey); font-size: 0.9rem; line-height: 1.65; }

/* ── Why section (dark) ─────────────────────────────────── */
.sp-why { padding: 100px 0; }
.sp-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 56px;
}
.sp-why-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 28px 24px;
  transition: border-color 0.3s;
}
.sp-why-card:hover { border-color: rgba(201,168,76,0.35); }
.sp-why-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900;
  color: rgba(201,168,76,0.3); flex-shrink: 0; line-height: 1;
}
.sp-why-card h4 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.sp-why-card p  { color: var(--grey); font-size: 0.88rem; line-height: 1.6; }

/* ── Process ────────────────────────────────────────────── */
.sp-process { background: var(--light); }
.sp-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0; margin-top: 56px; position: relative;
}
.sp-process-step {
  padding: 32px 28px; position: relative; text-align: center;
}
.sp-process-step:not(:last-child)::after {
  content: '→'; position: absolute; right: -12px; top: 44px;
  color: var(--gold); font-size: 1.4rem; z-index: 1;
}
.sp-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 900;
  color: rgba(201,168,76,0.25); margin-bottom: 8px;
}
.sp-step-line {
  width: 40px; height: 3px;
  background: var(--gold); border-radius: 2px;
  margin: 0 auto 16px;
}
.sp-process-step h4 { color: var(--navy); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.sp-process-step p  { color: var(--grey); font-size: 0.88rem; line-height: 1.6; }

/* ── Bottom CTA ─────────────────────────────────────────── */
.sp-cta-section { background: var(--white); padding: 80px 0; }
.sp-cta-box {
  background: linear-gradient(135deg, var(--navy), #1a3a5c);
  border-radius: 20px; padding: 70px 60px;
  text-align: center; position: relative; overflow: hidden;
}
.sp-cta-glow {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.sp-cta-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white); margin-bottom: 14px;
}
.sp-cta-box p  { color: rgba(245,247,250,0.65); font-size: 1rem; margin-bottom: 36px; }
.sp-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Service page responsive ────────────────────────────── */
@media (max-width: 900px) {
  .sp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .sp-hero-visual { display: none; }
}
@media (max-width: 700px) {
  .sp-hero { min-height: auto; padding-top: 100px; padding-bottom: 56px; }
  .sp-title { font-size: 2rem; }
  .sp-section { padding: 60px 0; }
  .sp-cta-box { padding: 44px 24px; }
  .sp-process-step:not(:last-child)::after { display: none; }
  .sp-process-grid { gap: 4px; }
  .sp-hero-actions { flex-direction: column; }
  .sp-hero-actions .btn-primary,
  .sp-hero-actions .btn-outline { text-align: center; }
}
@media (max-width: 480px) {
  .sp-cta-actions { flex-direction: column; }
  .sp-cta-actions .btn-primary,
  .sp-cta-actions .cta-wa { width: 100%; justify-content: center; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   COMPANY PAGES
═══════════════════════════════════════════════════════════ */
.cp-stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px; text-align: center; margin-top: 20px;
}
.cp-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.cp-stat-label { color: var(--grey); font-size: 0.9rem; font-weight: 500; }

.cp-faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.cp-faq-item {
  border: 1px solid var(--light); border-radius: 12px;
  overflow: hidden; cursor: pointer; transition: border-color 0.2s;
}
.cp-faq-item:hover { border-color: var(--gold); }
.cp-faq-dark { border-color: rgba(255,255,255,0.08) !important; }
.cp-faq-dark:hover { border-color: rgba(201,168,76,0.4) !important; }
.cp-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; gap: 12px;
  font-weight: 600; font-size: 0.95rem; color: var(--navy);
}
.cp-faq-dark .cp-faq-q { color: var(--white); }
.cp-faq-a {
  padding: 0 22px 18px; color: var(--grey);
  font-size: 0.9rem; line-height: 1.7;
  border-top: 1px solid var(--light);
}
.cp-faq-dark .cp-faq-a { border-color: rgba(255,255,255,0.06); }