/* ============================================================
   GTB CREATIONS — gtbcreations.com
   Global Stylesheet v2 — Coastal Boutique + Tropical
   ============================================================ */

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

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --navy:        #0D3B5E;
  --navy-dark:   #092d48;
  --teal:        #18B7C9;
  --teal-mid:    #12a0b0;
  --teal-light:  #e4f6f8;
  --teal-pale:   #f0fbfc;
  --coral:       #F4845F;
  --coral-light: #fef0eb;
  --orange:      #E8843A;
  --sand:        #C8A96E;
  --sand-light:  #faf5ec;
  --cream:       #fdf9f4;
  --white:       #ffffff;
  --warm-gray:   #f7f4f0;
  --gray-100:    #f1f3f5;
  --gray-200:    #e4e8ed;
  --gray-400:    #adb5bd;
  --gray-600:    #6c757d;
  --gray-800:    #343a40;
  --text:        #1e2a35;
  --text-light:  #5a6a77;
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-sm:   0 2px 8px rgba(13,59,94,.07);
  --shadow:      0 4px 20px rgba(13,59,94,.10);
  --shadow-lg:   0 8px 40px rgba(13,59,94,.14);
  --shadow-card: 0 2px 16px rgba(13,59,94,.08);
  --max-width:   1140px;
  --font-script: 'Pacifico', cursive;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); line-height: 1.65; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ── UTILITY ───────────────────────────────────────────────── */
.container  { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
.text-teal  { color: var(--teal); }
.text-coral { color: var(--coral); }
.text-orange{ color: var(--orange); }
.text-navy  { color: var(--navy); }
.text-sand  { color: var(--sand); }
.text-center{ text-align: center; }
.script     { font-family: var(--font-script); }
.serif      { font-family: var(--font-serif); }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px; font-family: var(--font-sans);
  font-size: 15px; font-weight: 600; cursor: pointer;
  border: 2px solid transparent; transition: all .2s; text-decoration: none;
  white-space: nowrap; letter-spacing: .2px;
}
.btn-primary   { background: var(--coral); color: var(--white); border-color: var(--coral); box-shadow: 0 4px 16px rgba(244,132,95,.35); }
.btn-primary:hover { background: #e06d45; border-color: #e06d45; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(244,132,95,.4); text-decoration: none; }
.btn-teal      { background: var(--teal); color: var(--white); border-color: var(--teal); box-shadow: 0 4px 16px rgba(24,183,201,.3); }
.btn-teal:hover{ background: var(--teal-mid); border-color: var(--teal-mid); transform: translateY(-1px); text-decoration: none; }
.btn-outline   { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); text-decoration: none; }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.8); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); text-decoration: none; }
.btn-outline-teal { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline-teal:hover { background: var(--teal); color: var(--white); text-decoration: none; }
.btn-sm  { padding: 10px 22px; font-size: 13px; }
.btn-lg  { padding: 16px 38px; font-size: 17px; }

/* ── HEADER / NAV ──────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 16px rgba(13,59,94,.07);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 46px; width: 46px; object-fit: contain; border-radius: 8px; }
.nav-logo-text h1 { font-family: var(--font-serif); font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.1; }
.nav-logo-text p  { font-size: 11px; color: var(--teal); margin-top: 1px; letter-spacing: .3px; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: var(--text-light); font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; transition: all .15s; text-decoration: none;
}
.nav-links a:hover { color: var(--navy); background: var(--warm-gray); }
.nav-links a.active { color: var(--teal); background: var(--teal-pale); }
.nav-cta { margin-left: 6px; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: .2s; }
.mobile-menu { display: none; background: var(--white); border-top: 1px solid var(--gray-200); padding: 16px 28px 24px; }
.mobile-menu a { display: block; color: var(--text); font-size: 15px; font-weight: 500; padding: 10px 0; border-bottom: 1px solid var(--gray-100); text-decoration: none; }
.mobile-menu a:last-child { border: none; }
.mobile-menu .btn { margin-top: 14px; width: 100%; justify-content: center; }

/* ── HERO — SPLIT LAYOUT ───────────────────────────────────── */
.hero-split {
  background: linear-gradient(145deg, #e8f8fa 0%, #fdf9f4 50%, #fef5ee 100%);
  padding: 72px 0 0;
  overflow: hidden;
  position: relative;
}
.hero-split::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,183,201,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-left { padding-bottom: 72px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-light); color: var(--teal-mid);
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
}
.hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--coral);
  margin-bottom: 10px;
  line-height: 1.3;
}
.hero-split h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero-split h1 .accent { color: var(--teal); }
.hero-split p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero Right — product showcase panel */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 40px;
  align-self: stretch;
  justify-content: center;
}
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.hero-card:hover { transform: translateX(4px); box-shadow: var(--shadow); text-decoration: none; }
.hero-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.hero-card-text h4 { font-family: var(--font-serif); font-size: 15px; color: var(--navy); margin-bottom: 2px; }
.hero-card-text p  { font-size: 12px; color: var(--text-light); }
.hero-card-arrow { margin-left: auto; color: var(--teal); font-size: 18px; flex-shrink: 0; }

/* Wave divider */
.wave-divider { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* ── PAGE HERO (inner pages) ───────────────────────────────── */
.hero-page {
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero-page.teal-warm {
  background: linear-gradient(135deg, #e4f6f8 0%, #fdf9f4 60%, #fef0eb 100%);
}
.hero-page.navy-warm {
  background: linear-gradient(135deg, var(--navy) 0%, #1a5276 60%, #0e3d5f 100%);
  color: var(--white);
}
.hero-page h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-page.navy-warm h1 { color: var(--white); }
.hero-page p { font-size: 17px; color: var(--text-light); max-width: 540px; line-height: 1.75; margin-bottom: 28px; }
.hero-page.navy-warm p { color: rgba(255,255,255,.8); }

/* ── SECTION STRUCTURE ─────────────────────────────────────── */
section { padding: 72px 0; }
section.bg-cream  { background: var(--cream); }
section.bg-warm   { background: var(--warm-gray); }
section.bg-teal-pale { background: var(--teal-pale); }
section.bg-sand   { background: var(--sand-light); }
section.bg-light  { background: var(--gray-100); }
section.bg-navy   { background: var(--navy); color: var(--white); }
section.bg-coral-light { background: var(--coral-light); }

.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--teal); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--navy); line-height: 1.2; margin-bottom: 14px;
}
.section-title .script-accent {
  font-family: var(--font-script);
  font-size: 1.1em; color: var(--coral);
  font-weight: normal;
}
.section-title.light { color: var(--white); }
.section-sub { font-size: 17px; color: var(--text-light); max-width: 600px; line-height: 1.7; margin-bottom: 48px; }
.section-sub.light { color: rgba(255,255,255,.75); }

/* ── CARDS ─────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid rgba(13,59,94,.05);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--teal-light); display: flex; align-items: center; justify-content: center; }
.card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85); font-size: 13px; font-weight: 500; gap: 10px;
}
.card-body { padding: 22px 24px 26px; }
.card-tag  { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--teal); margin-bottom: 7px; }
.card-title{ font-family: var(--font-serif); font-size: 1.15rem; color: var(--navy); margin-bottom: 8px; }
.card-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.card-price{ font-size: 13px; font-weight: 600; color: var(--coral); }

/* ── GRIDS ─────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── SERVE CARDS ───────────────────────────────────────────── */
.serve-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.serve-card {
  border-radius: var(--radius-lg); padding: 40px 36px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.serve-card.consumer {
  background: linear-gradient(140deg, var(--teal) 0%, #0ea8b8 100%);
  color: var(--white);
}
.serve-card.corporate {
  background: linear-gradient(140deg, var(--navy) 0%, #1a5276 100%);
  color: var(--white);
}
.serve-card-emoji { font-size: 40px; margin-bottom: 14px; }
.serve-card h3 { font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: 10px; }
.serve-card p  { opacity: .88; font-size: 15px; line-height: 1.65; margin-bottom: 20px; }
.serve-card ul { margin-bottom: 28px; }
.serve-card ul li { font-size: 14px; opacity: .9; padding: 5px 0; display: flex; gap: 8px; }
.serve-card ul li::before { content: '✦'; font-size: 10px; margin-top: 4px; opacity: .8; flex-shrink: 0; }

/* ── TRUST BAR ─────────────────────────────────────────────── */
.trust-bar { background: var(--teal); padding: 16px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: var(--white); font-size: 13px; font-weight: 600; }
.trust-item .emoji { font-size: 16px; }
.trust-divider { width: 1px; height: 18px; background: rgba(255,255,255,.3); }

/* ── HOW IT WORKS ──────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { text-align: center; }
.step-num {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-script); font-size: 1.8rem;
  margin: 0 auto 18px; box-shadow: 0 4px 16px rgba(24,183,201,.35);
}
.step-title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.step-desc  { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ── VALUE PROPS ───────────────────────────────────────────── */
.value-props { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-prop { text-align: center; padding: 32px 24px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.value-prop-icon { width: 64px; height: 64px; border-radius: 18px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 28px; }
.value-prop h3 { font-family: var(--font-serif); font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.value-prop p  { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-card); border-top: 3px solid var(--coral); }
.testimonial-stars { color: var(--sand); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-quote { font-size: 15px; color: var(--gray-800); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-size: 13px; font-weight: 700; color: var(--navy); }
.testimonial-detail { font-size: 12px; color: var(--gray-400); }

/* ── SPLIT SECTIONS ────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-visual { order: -1; }
.split-visual {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); min-height: 320px;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-pale));
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px;
}

/* ── EQUIPMENT ─────────────────────────────────────────────── */
.equipment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.equipment-card { background: var(--white); border-radius: var(--radius-lg); padding: 26px 22px; box-shadow: var(--shadow-sm); border-top: 3px solid var(--teal); }
.equipment-card h4 { font-family: var(--font-serif); font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; }
.equipment-card .eq-type { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.equipment-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item { background: var(--white); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); border-left: 3px solid var(--teal-light); }
.faq-q { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.faq-a { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ── TURNAROUND ────────────────────────────────────────────── */
.turnaround-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.turnaround-card { border-radius: var(--radius-lg); padding: 32px; text-align: center; }
.turnaround-card.standard { background: var(--teal-light); border: 2px solid var(--teal); }
.turnaround-card.rush     { background: var(--coral-light); border: 2px solid var(--coral); }
.turnaround-card .days    { font-family: var(--font-script); font-size: 3rem; margin-bottom: 6px; }
.turnaround-card.standard .days { color: var(--teal-mid); }
.turnaround-card.rush     .days { color: var(--coral); }
.turnaround-card h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .5px; }
.turnaround-card p  { font-size: 13px; color: var(--text-light); }

/* ── FORMS ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--gray-200); border-radius: 10px;
  font-size: 15px; font-family: var(--font-sans); color: var(--text);
  background: var(--white); outline: none; transition: border-color .15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; color: var(--text-light); margin-top: 5px; }

/* ── CLIENT CHIPS ──────────────────────────────────────────── */
.client-chip { padding: 8px 18px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: 20px; color: rgba(255,255,255,.9); font-size: 14px; font-weight: 500; }

/* ── CTA BAND ──────────────────────────────────────────────── */
.cta-band { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%); padding: 64px 0; text-align: center; }
.cta-band h2 { font-family: var(--font-serif); font-size: 2.2rem; color: var(--white); margin-bottom: 10px; }
.cta-band .script-sub { font-family: var(--font-script); font-size: 1.4rem; color: rgba(255,255,255,.75); margin-bottom: 28px; display: block; }
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── HIGHLIGHT BAND ────────────────────────────────────────── */
.highlight-band { background: var(--coral-light); border-top: 1px solid rgba(244,132,95,.2); border-bottom: 1px solid rgba(244,132,95,.2); padding: 20px 0; }
.highlight-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.highlight-band p { color: var(--navy); font-size: 15px; font-weight: 500; }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.75); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 40px; width: 40px; object-fit: contain; border-radius: 6px; }
.footer-brand h3 { color: var(--white); font-family: var(--font-serif); font-size: 16px; font-weight: 700; }
.footer-brand p { font-size: 14px; line-height: 1.75; max-width: 260px; margin-bottom: 16px; }
.footer-tagline-script { font-family: var(--font-script); color: var(--teal); font-size: 1.1rem; }
.footer-col h4 { color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a  { display: block; color: rgba(255,255,255,.6); font-size: 14px; padding: 4px 0; transition: color .15s; text-decoration: none; }
.footer-col a:hover { color: var(--teal); text-decoration: none; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.social-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.8); font-size: 15px; text-decoration: none; transition: all .15s; }
.social-icon:hover { background: var(--teal); color: white; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 10px; }

/* ── CATEGORY TABS ─────────────────────────────────────────── */
.category-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0; }
.cat-tab { padding: 10px 20px; border-radius: 50px; border: 2px solid var(--gray-200); background: var(--white); font-size: 14px; font-weight: 500; cursor: pointer; transition: all .15s; font-family: var(--font-sans); color: var(--text-light); text-decoration: none; }
.cat-tab:hover, .cat-tab.active { border-color: var(--teal); background: var(--teal); color: var(--white); text-decoration: none; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-split-inner { grid-template-columns: 1fr; }
  .hero-left { padding-bottom: 0; }
  .hero-right { flex-direction: row; flex-wrap: wrap; padding-bottom: 40px; }
  .hero-card  { flex: 1 1 calc(50% - 7px); min-width: 200px; }
  .grid-3     { grid-template-columns: repeat(2, 1fr); }
  .grid-4     { grid-template-columns: repeat(2, 1fr); }
  .value-props{ grid-template-columns: repeat(2, 1fr); }
  .steps      { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr 1fr; }
  .equipment-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .nav-hamburger { display: block; }
  .split      { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-visual { order: 0; }
  .serve-cards{ grid-template-columns: 1fr; }
  .grid-2     { grid-template-columns: 1fr; }
  .form-row   { grid-template-columns: 1fr; }
  .faq-list   { grid-template-columns: 1fr; }
  .turnaround-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns  { flex-direction: column; }
  section     { padding: 52px 0; }
  .highlight-band-inner { justify-content: center; text-align: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}
@media (max-width: 520px) {
  .grid-3     { grid-template-columns: 1fr; }
  .grid-4     { grid-template-columns: 1fr; }
  .value-props{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .equipment-grid { grid-template-columns: 1fr; }
  .steps      { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 14px; }
  .trust-divider { display: none; }
  .hero-right { flex-direction: column; }
  .hero-card  { flex: 1 1 100%; }
  .turnaround-grid { grid-template-columns: 1fr; }
}
