/* ============================================================
   JAGOO — Corporate Stylesheet
   Palette: #FFC107 accent · #1A1A2E navy · #FFFFFF · #F8F9FA
   Fonts: Inter (body) · Playfair Display (headings)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ── Variables ── */
:root {
  --yellow:        #FFC107;
  --yellow-hover:  #E6AC00;
  --yellow-light:  #FFF8E1;
  --yellow-mid:    #FFE082;
  --navy: 		   #0D0D0D;
  --navy-soft:     #1A1A1A;
  --charcoal:      #2D2D2D;
  --ink:           #3C3C3C;
  --body:          #555A6E;
  --border:        #E4E6EF;
  --bg-light:      #F8F9FA;
  --bg-off:        #F4F5F8;
  --white:         #FFFFFF;
  --success:       #2E7D32;
  --danger:        #C62828;
  --success-bg:    #E8F5E9;
  --danger-bg:     #FFEBEE;

  --shadow-xs:  0 1px 4px rgba(0,0,0,.06);
  --shadow-sm:  0 2px 12px rgba(0,0,0,.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.12);
  --shadow-xl:  0 32px 80px rgba(0,0,0,.14);

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  24px;

  --transition: all .25s ease;

--font-head: 'Poppins', sans-serif;
--font-body: 'Inter', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--font-body); }

/* ── Typography ── */
h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--navy);
}

h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--navy);
}

h3 {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--body);
  line-height: 1.82;
  letter-spacing: -0.01em;
}

.text-yellow { color: var(--yellow-hover); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white) !important; }
.text-center { text-align: center; }

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }

.section-alt  { background: var(--bg-light); }
.section-navy { background: var(--navy); }
.section-yellow { background: var(--yellow); }

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

/* ── Label / Badge ── */
.label-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; padding: 5px 14px;
  border-radius: 100px; margin-bottom: 14px;
  background: var(--yellow-light);
  color: var(--yellow-hover);
  border: 1px solid var(--yellow-mid);
}
.section-navy .label-tag {
  background: rgba(255,193,7,.12); color: var(--yellow);
  border-color: rgba(255,193,7,.3);
}

.section-title {
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.section-intro  { font-size: 1.02rem; color: var(--body); max-width: 580px; margin: 0 auto 52px; }
.section-navy .section-intro { color: rgba(255,255,255,.65); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 14px 30px;
  border-radius: var(--r-sm);

  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -0.01em;

  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow); color: var(--navy);
  box-shadow: 0 4px 16px rgba(255,193,7,.35);
}
.btn-primary:hover { background: var(--yellow-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,193,7,.4); }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-soft); transform: translateY(-2px); }

.btn-outline-navy { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

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

.btn-ghost-yellow { background: transparent; border: 2px solid var(--yellow); color: var(--yellow-hover); }
.btn-ghost-yellow:hover { background: var(--yellow); color: var(--navy); }

.btn-wa  { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1db954; transform: translateY(-2px); }

.btn-lg { padding: 16px 36px; font-size: .98rem; }
.btn-sm { padding: 9px 20px; font-size: .82rem; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-wrap {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 92px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img {
  height: 62px;
  width: auto;

  object-fit: contain;
  display: block;
}

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: -0.01em;

  color: var(--ink);

  padding: 8px 14px;
  border-radius: var(--r-sm);

  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--bg-light); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-size: .82rem; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: 6px;
}

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 20px 24px 28px; z-index: 999;
  box-shadow: var(--shadow-md); flex-direction: column; gap: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: .95rem; font-weight: 500; color: var(--ink);
  padding: 12px 14px; border-radius: var(--r-sm); transition: var(--transition);
}
.mobile-menu a:hover { color: var(--navy); background: var(--bg-light); }
.mobile-menu-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }

/* ── Hero ── */
.hero {
  min-height: 92vh;
  padding-top: 92px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, #0D1B3E 60%, #1A2A5E 100%);
  position: relative; overflow: hidden;
}
.hero-texture {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-glow {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,193,7,.12) 0%, transparent 65%);
  right: -100px; top: 50%; transform: translateY(-50%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  padding: 72px 0 88px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,193,7,.15); border: 1px solid rgba(255,193,7,.3);
  color: var(--yellow); font-size: .72rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 22px;
}
.hero-badge .pulse { width: 7px; height: 7px; background: var(--yellow); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 800;
}
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero-sub {
  color: rgba(255,255,255,.74);
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 38px;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; gap: 36px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1); }
.hstat .num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--yellow); display: block; line-height: 1; }
.hstat .lbl { font-size: .72rem; color: rgba(255,255,255,.55); letter-spacing: .5px; text-transform: uppercase; margin-top: 4px; display: block; }

/* Hero image panel */
.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,.1);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a2744, #2a3a5c);
  position: relative;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }

.hero-float-card {
  position: absolute; background: var(--white);
  border-radius: var(--r-md); padding: 14px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
}
.hero-float-card.card-top { top: -16px; right: -16px; }
.hero-float-card.card-bottom { bottom: -16px; left: -16px; }
.hfc-icon { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--yellow); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.hfc-text .t1 { font-weight: 700; font-size: .85rem; color: var(--navy); display: block; }
.hfc-text .t2 { font-size: .72rem; color: var(--body); }

/* ── Trust bar ── */
.trust-bar {
  background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--ink); }
.trust-item .ico { color: var(--yellow-hover); font-size: 1rem; }
.trust-sep { width: 1px; height: 22px; background: var(--border); }

/* ── Cards ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 28px;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); border-color: transparent; transform: translateY(-3px); }

.card-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--yellow-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px; flex-shrink: 0;
}

/* Problem cards */
.prob-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 24px; transition: var(--transition); }
.prob-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.prob-card .p-icon { width: 48px; height: 48px; border-radius: var(--r-md); background: var(--danger-bg); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; }
.prob-card h4 { margin-bottom: 8px; font-size: .95rem; }

/* Feature cards – navy bg */
.feat-card {
  background: var(--navy); border-radius: var(--r-lg); padding: 32px 28px;
  border: 1px solid rgba(255,255,255,.07); transition: var(--transition);
}
.feat-card:hover { border-color: rgba(255,193,7,.3); transform: translateY(-3px); }
.feat-card .f-icon { width: 52px; height: 52px; background: rgba(255,193,7,.12); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 20px; }
.feat-card h3 { color: var(--white); margin-bottom: 10px; font-size: 1.1rem; }
.feat-card p { color: rgba(255,255,255,.6); font-size: .88rem; }
.feat-card .big-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--yellow); margin-top: 18px; display: block; }

/* ── Steps ── */
.steps-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps-wrap::before {
  content: ''; position: absolute;
  top: 36px; left: calc(12.5% + 18px); right: calc(12.5% + 18px);
  height: 1px; background: var(--border); z-index: 0;
}
.step { padding: 0 16px; text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--yellow); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(255,193,7,.35);
  border: 3px solid var(--white); outline: 3px solid var(--yellow-mid);
}
.step-icon { font-size: 1.4rem; margin-bottom: 10px; display: block; }
.step h4 { font-family: var(--font-head); font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: .83rem; }

/* ── Compare ── */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.compare-col { padding: 40px 36px; }
.compare-col.bad  { background: #fff8f8; }
.compare-col.good { background: var(--navy); }
.compare-head {
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 700;
  padding-bottom: 16px; margin-bottom: 24px; border-bottom: 2px solid;
  display: flex; align-items: center; gap: 10px;
}
.bad  .compare-head { color: var(--danger); border-color: var(--danger); }
.good .compare-head { color: var(--yellow); border-color: var(--yellow); }
.compare-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.compare-row .ci {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: .65rem; margin-top: 2px;
}
.bad  .ci { background: var(--danger-bg); color: var(--danger); }
.good .ci { background: rgba(46,125,50,.15); color: #66BB6A; }
.bad  .compare-row p { color: #7A2020; font-size: .88rem; }
.good .compare-row p { color: rgba(255,255,255,.8); font-size: .88rem; }

/* ── Testimonials ── */
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px 26px; transition: var(--transition); }
.testi-card:hover { box-shadow: var(--shadow-md); border-color: var(--yellow-mid); }
.stars { color: var(--yellow); font-size: .88rem; letter-spacing: 2px; margin-bottom: 14px; }
.quote { font-size: .9rem; color: var(--body); line-height: 1.72; margin-bottom: 22px; }
.author-row { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .88rem; color: var(--navy); flex-shrink: 0; }
.author-name { font-weight: 600; font-size: .88rem; color: var(--charcoal); }
.author-loc  { font-size: .75rem; color: var(--body); }

/* ── Stats ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-radius: var(--r-xl); overflow: hidden; }
.stat-box { background: rgba(255,255,255,.04); border-right: 1px solid rgba(255,255,255,.08); padding: 44px 28px; text-align: center; }
.stat-box:last-child { border-right: none; }
.stat-num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; color: var(--yellow); display: block; line-height: 1; margin-bottom: 8px; }
.stat-lbl { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .5px; }

/* ── FAQ ── */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r-md); margin-bottom: 10px; overflow: hidden; }
.faq-item.open { border-color: var(--yellow); }
.faq-q {
  width: 100%; padding: 18px 22px; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: .9rem; font-weight: 600; color: var(--charcoal); background: var(--white); transition: var(--transition);
}
.faq-q:hover { background: var(--bg-light); }
.faq-item.open .faq-q { background: var(--yellow-light); color: var(--navy); }
.faq-arrow { width: 26px; height: 26px; border-radius: 50%; background: var(--bg-light); display: flex; align-items: center; justify-content: center; font-size: .7rem; flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-arrow { background: var(--yellow); transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-body { max-height: 280px; }
.faq-body-inner { padding: 0 22px 18px; font-size: .88rem; color: var(--body); line-height: 1.72; }

/* ── CTA Band ── */
.cta-band { background: var(--yellow); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231A1A2E' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E"); }
.cta-band h2 { color: var(--navy); position: relative; z-index:1; margin-bottom: 12px; }
.cta-band p  { color: rgba(26,26,46,.72); position: relative; z-index:1; font-size: 1.02rem; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index:1; }

/* ── Footer ── */
.site-footer {
  background: var(--navy); border-top: 3px solid var(--yellow);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .86rem; line-height: 1.68; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.fsoc { width: 36px; height: 36px; border-radius: var(--r-sm); background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: .8rem; font-weight: 700; transition: var(--transition); }
.fsoc:hover { background: var(--yellow); color: var(--navy); }
.footer-col h5 { color: var(--white); font-size: .78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-col a { display: block; color: rgba(255,255,255,.55); font-size: .86rem; margin-bottom: 10px; transition: var(--transition); }
.footer-col a:hover { color: var(--yellow); padding-left: 4px; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px; }
.footer-contact-row .ico { color: var(--yellow); font-size: .95rem; margin-top: 1px; flex-shrink: 0; }
.footer-contact-row span { color: rgba(255,255,255,.6); font-size: .84rem; line-height: 1.55; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,.38); font-size: .78rem; }

/* ── Floating WA ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 54px; height: 54px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: var(--transition); text-decoration: none;
}
.wa-float:hover { background: #1db954; transform: scale(1.08); }

/* ── Forms ── */
.form-field { margin-bottom: 18px; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--charcoal); margin-bottom: 7px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 15px;

  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);

  font-size: .9rem;
  font-family: var(--font-body);
  font-weight: 500;

  color: var(--charcoal);
  background: var(--white);

  transition: var(--transition);

  -webkit-appearance: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,193,7,.15); }
.form-input::placeholder { color: #B0B4C1; }
.form-textarea { resize: vertical; min-height: 90px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Page Hero ── */
.page-hero {
  background: var(--navy); padding: 116px 0 72px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px; background: var(--yellow);
}
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(255,193,7,.06), transparent); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.65); max-width: 520px; margin: 0 auto; font-size: 1rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; font-size: .78rem; }
.breadcrumb a   { color: rgba(255,255,255,.45); transition: var(--transition); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb .sep, .breadcrumb span { color: var(--yellow); }

/* ── Inline image ── */
.img-rounded { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e8eaf6, #c5cae9);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  font-size: 2.5rem; color: #9FA8DA; border-radius: var(--r-xl);
}
/* AI image fill */
.ai-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Pricing */
.pricing-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--r-xl); padding: 40px 34px; position: relative; transition: var(--transition); }
.pricing-card.featured { border-color: var(--yellow); background: var(--navy); transform: scale(1.02); box-shadow: var(--shadow-xl); }
.pricing-card:hover:not(.featured) { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pop-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--yellow); color: var(--navy); font-size: .7rem; font-weight: 700; letter-spacing: 1px; padding: 5px 18px; border-radius: 100px; white-space: nowrap; }
.plan-name { font-size: .72rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 8px; }
.featured .plan-name { color: var(--yellow); }
.plan-price { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; line-height: 1; margin-bottom: 4px; display: flex; align-items: flex-start; gap: 3px; }
.plan-price .rp { font-size: 1.2rem; margin-top: 6px; font-weight: 600; }
.featured .plan-price { color: var(--white); }
.plan-range { font-size: .78rem; color: var(--body); margin-bottom: 28px; }
.featured .plan-range { color: rgba(255,255,255,.45); }
.plan-feat-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 11px; }
.plan-feat-item .pi { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .6rem; flex-shrink: 0; margin-top: 2px; }
.pi.yes { background: var(--success-bg); color: var(--success); }
.pi.no  { background: var(--bg-off); color: #B0B4C1; }
.plan-feat-item span { font-size: .86rem; color: var(--body); }
.featured .plan-feat-item span { color: rgba(255,255,255,.72); }

/* Tools */
.tool-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 22px; text-align: center; transition: var(--transition); }
.tool-card:hover { border-color: var(--yellow); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.tool-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }

/* Report preview */
.report-outer { background: var(--white); border-radius: var(--r-xl); box-shadow: var(--shadow-xl); overflow: hidden; border: 1px solid var(--border); }
.report-hdr { background: var(--navy); padding: 22px 30px; display: flex; align-items: center; justify-content: space-between; }
.report-hdr .logo-t { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--white); }
.report-hdr .logo-t em { color: var(--yellow); font-style: normal; }
.report-score-pill { background: var(--yellow); color: var(--navy); font-weight: 700; font-size: .95rem; padding: 8px 18px; border-radius: 100px; }
.report-bdy { padding: 28px 30px; }
.r-section-lbl { font-size: .7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--body); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.cat-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 11px; }
.cat-lbl { width: 130px; font-size: .82rem; font-weight: 600; color: var(--charcoal); flex-shrink: 0; }
.cat-track { flex: 1; height: 8px; background: var(--bg-off); border-radius: 100px; overflow: hidden; }
.cat-fill { height: 100%; border-radius: 100px; }
.cat-val { width: 32px; font-size: .78rem; font-weight: 700; text-align: right; }
.issue-row { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; border-radius: var(--r-sm); margin-bottom: 8px; }
.issue-row.crit { background: var(--danger-bg); border-left: 3px solid var(--danger); }
.issue-row.warn { background: var(--yellow-light); border-left: 3px solid var(--yellow-hover); }
.issue-row.info { background: #E3F2FD; border-left: 3px solid #1565C0; }
.issue-t  { font-weight: 600; font-size: .83rem; color: var(--charcoal); }
.issue-d  { font-size: .78rem; color: var(--body); margin-top: 2px; }
.i-tag { font-size: .65rem; font-weight: 700; padding: 2px 9px; border-radius: 100px; text-transform: uppercase; white-space: nowrap; margin-top: 3px; }
.i-tag.tc { background: var(--danger-bg); color: var(--danger); }
.i-tag.tw { background: var(--yellow-light); color: var(--yellow-hover); }
.i-tag.ti { background: #E3F2FD; color: #1565C0; }
.photo-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.photo-ph { aspect-ratio: 4/3; border-radius: var(--r-sm); background: linear-gradient(135deg,#f5f5f5,#e0e0e0); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; font-size: 1.4rem; color: #BDBDBD; border: 1px dashed #DDD; }
.photo-ph-lbl { font-size: .65rem; color: #BDBDBD; font-weight: 500; text-align: center; }

/* Inspect categories */
.inspect-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.inspect-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px 18px; text-align: center; transition: var(--transition); }
.inspect-card:hover { border-color: var(--yellow); background: var(--yellow-light); transform: translateY(-2px); }
.inspect-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.inspect-card h4 { font-size: .84rem; margin-bottom: 5px; }
.inspect-card p  { font-size: .74rem; }

/* Value card (about) */
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px 24px; text-align: center; transition: var(--transition); }
.value-card:hover { border-color: var(--yellow); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.v-emoji { font-size: 2rem; margin-bottom: 14px; display: block; }

/* Mission block */
.mission-block { background: var(--navy); border-radius: var(--r-xl); padding: 56px 48px; text-align: center; position: relative; overflow: hidden; }
.mission-block::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 55% at 50% 50%, rgba(255,193,7,.07), transparent); }
.mission-block h2 { color: var(--white); position: relative; z-index:1; margin-bottom: 16px; }
.mission-block h2 em { color: var(--yellow); font-style: normal; }
.mission-block p  { color: rgba(255,255,255,.65); max-width: 580px; margin: 0 auto; position: relative; z-index:1; font-size: 1rem; }

/* Contact layout */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.contact-method { display: flex; align-items: center; gap: 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 18px 22px; margin-bottom: 12px; text-decoration: none; transition: var(--transition); }
.contact-method:hover { border-color: var(--yellow); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.cm-icon { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--yellow-light); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.cm-lbl { font-size: .72rem; color: var(--body); }
.cm-val { font-weight: 600; font-size: .9rem; color: var(--navy); }

/* Plan selector */
.plan-btn { border: 2px solid var(--border); border-radius: var(--r-sm); padding: 13px 16px; text-align: center; cursor: pointer; transition: var(--transition); background: var(--white); }
.plan-btn.active { border-color: var(--yellow); background: var(--yellow-light); }
.plan-btn .pn { font-weight: 700; font-size: .88rem; color: var(--navy); }
.plan-btn .pp { font-size: .75rem; color: var(--body); margin-top: 2px; }

/* Booking form card */
.booking-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 44px 38px; box-shadow: var(--shadow-md); }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ── Urgency note ── */
.urgency-note { background: #FFF3E0; border: 1px solid #FFB74D; border-radius: var(--r-md); padding: 13px 18px; display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; }
.urgency-note p { color: #E65100; font-size: .83rem; font-weight: 500; margin: 0; }

/* ── Inline check list ── */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--body); }
.check-list li span.ck { color: var(--yellow-hover); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .steps-wrap { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-wrap::before { display: none; }
  .inspect-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

.footer-logo img {
  width: 220px;
  max-width: 100%;
  height: auto;

  object-fit: contain;
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 72px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid-wrap { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .inspect-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-layout { grid-template-columns: 1fr; }
  .booking-card { padding: 28px 20px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .photo-grid-4 { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner .trust-sep { display: none; }
  .trust-bar-inner { gap: 18px; justify-content: flex-start; padding: 0 4px; overflow-x: auto; }
  .mission-block { padding: 36px 24px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .inspect-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {

  .nav-wrap {
    height: 78px;
  }

  .hero {
    padding-top: 78px;
  }

  .nav-logo img {
    height: 48px;
  }

  .footer-logo img {
    width: 170px;
  }
}



/* =========================================================
   SERVICES PAGE MOBILE FIXES
========================================================= */

@media (max-width: 768px) {

  /* ===============================
     GENERAL SECTION SPACING
  =============================== */

  .section {
    padding: 64px 0;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  /* ===============================
     PAGE HERO
  =============================== */

  .page-hero-content h1 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .page-hero-content p {
    font-size: .98rem;
    line-height: 1.7;
  }

  /* ===============================
     GRID FIXES
  =============================== */

  .grid-2 {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* ===============================
     INSPECTION SUMMARY STRIP
  =============================== */

  .inspection-summary-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1px !important;
  }

  .inspection-summary-grid > div {
    padding: 18px 10px !important;
  }

  .inspection-summary-grid div div:first-child {
    font-size: 1.6rem !important;
  }

  .inspection-summary-grid div div:last-child {
    font-size: .7rem !important;
  }

  /* ===============================
     WHAT WE INSPECT
  =============================== */

  .inspect-grid-3 {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .inspect-grid-2 {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .service-detail-card {
    padding: 24px 20px;
  }

  .sdc-head {
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  .sdc-icon {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  /* ===============================
     TOOLS SECTION
  =============================== */

  .tools-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .tool-card {
    padding: 22px 20px;
  }

  .tool-card h4 {
    font-size: 1rem;
  }

  /* ===============================
     DELIVERABLES SECTION
  =============================== */

  .deliverables-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .deliverable-card {
    padding: 24px 20px;
  }

  /* ===============================
     WHO SHOULD USE
  =============================== */

  .who-card {
    padding: 24px 20px;
  }

  /* ===============================
     CTA SECTION
  =============================== */

  .cta-band h2 {
    font-size: 1.8rem;
    line-height: 1.12;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

}



/* =========================================
   PRICING PAGE MOBILE FIXES
========================================= */

@media (max-width: 768px) {

  /* =========================
     BASIC VS PREMIUM CARDS
  ========================= */

  .pricing-grid-wrap {
    grid-template-columns: 1fr !important;
    gap: 22px !important;

    max-width: 100% !important;
  }

  .pricing-card {
    padding: 30px 22px !important;
  }

  .pricing-card.featured {
    transform: none !important;
  }

  .plan-price {
    font-size: 2.2rem !important;
  }

  .plan-feat-item {
    align-items: flex-start;
  }

  .plan-feat-item span {
    line-height: 1.5;
  }

  .pricing-card .btn {
    width: 100%;
  }

  /* =========================
     COMPARISON TABLE
  ========================= */

  .compare-table {
    min-width: 620px;
  }

  /* =========================
     REPAIR COMPARISON BLOCKS
  ========================= */

  .repair-grid {
    grid-template-columns: 1fr !important;
  }

  .repair-cell {
    border: none !important;
    border-bottom: 1px solid var(--border) !important;
  }

  .repair-cell:last-child {
    border-bottom: none !important;
  }

  .repair-cell:nth-child(2) {
    border-left: none !important;
    border-right: none !important;
  }

  .rc-amt {
    font-family: var(--font-head) !important;
    font-size: 1.7rem !important;
  }

}



/* =========================================
   ABOUT PAGE MOBILE FIXES
========================================= */

@media (max-width: 768px) {

  /* =========================
     JAGOO IN NUMBERS
  ========================= */

  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  .team-stat {
    padding: 24px 16px !important;
  }

  .team-stat div[style*='font-size:2rem'] {
    font-size: 1.6rem !important;
  }

  .team-stat div[data-count] {
    font-family: var(--font-head) !important;
    font-size: 1.8rem !important;
  }

  /* =========================
     GET IN TOUCH
  ========================= */

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .contact-grid a {
    padding: 20px 16px !important;
  }

  .contact-grid a span {
    font-size: 1.4rem !important;
  }

  /* =========================
     GENERAL ABOUT PAGE FIXES
  ========================= */

  .vision-item {
    gap: 14px;
  }

  .vi-icon {
    width: 40px;
    height: 40px;
  }

}