/* ============================================================
   Pearl Property Phuket — Luxury condo management website
   Shared stylesheet — v2 (brand palette + Jost font)
   Brand colours: #20366f (navy) · #115ac3 (mid-blue) · #40c0db (cyan)
   Typography: Jost (Century Gothic alternative, geometric sans-serif)
   ============================================================ */

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

:root {
  /* Brand colour palette */
  --navy: #20366f;            /* primary brand navy */
  --navy-deep: #16264F;       /* darker navy for hover/contrast */
  --navy-soft: #2A4685;       /* lighter navy for cards on dark bg */
  --blue: #115ac3;            /* secondary blue — links, deep accents */
  --blue-deep: #0E47A0;
  --cyan: #40c0db;            /* accent cyan — dividers, badges, hairlines */
  --cyan-soft: #6BD3E2;
  --cyan-pale: rgba(64,192,219,0.12);

  /* Legacy aliases retained so existing markup keeps working */
  --gold: var(--cyan);
  --gold-soft: var(--cyan-soft);
  --gold-deep: var(--blue);

  /* Neutrals */
  --ivory: #F6F8FB;
  --ivory-warm: #ECF1F7;
  --paper: #FFFFFF;
  --ink: #1B1B1B;
  --ink-soft: #3D3D3D;
  --muted: #6E6E6E;
  --hairline: #DDE3EC;
  --hairline-dark: rgba(255,255,255,0.12);

  --shadow-sm: 0 1px 2px rgba(32,54,111,0.04);
  --shadow-md: 0 8px 24px rgba(32,54,111,0.10);
  --shadow-lg: 0 24px 60px rgba(32,54,111,0.18);
  --radius: 4px;
  --radius-lg: 8px;
  --maxw: 1200px;
  --gutter: clamp(1rem, 4vw, 2.5rem);

  /* Font stacks — Century Gothic alternative */
  --font-display: 'Jost', 'Century Gothic', 'Avenir Next', 'Avenir', 'Futura', system-ui, sans-serif;
  --font-body: 'Jost', 'Century Gothic', 'Avenir Next', 'Avenir', 'Futura', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { color: var(--blue); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); font-weight: 600; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: 0.6em; font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); margin-bottom: 0.5em; font-weight: 600; }
h4 { font-size: 1rem; margin-bottom: 0.4em; font-weight: 600; letter-spacing: 0.01em; }

p { margin-bottom: 1em; color: var(--ink-soft); }

ul, ol { padding-left: 1.2em; margin-bottom: 1em; }
li { margin-bottom: .35em; color: var(--ink-soft); }

strong { font-weight: 600; color: var(--ink); }

/* ---------- Layout ---------- */

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }

section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
section.tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.section-title { margin-bottom: 0.8rem; }
.section-intro { font-size: 1.1rem; color: var(--muted); max-width: 720px; margin-bottom: 3rem; }

.divider-gold {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--cyan) 100%);
  margin: 1rem 0 1.5rem;
  border: none;
}
.divider-gold.center { margin-left: auto; margin-right: auto; }

/* ---------- Top utility bar ---------- */

.utility-bar {
  background: var(--navy-deep);
  color: var(--ivory-warm);
  font-size: 0.82rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--hairline-dark);
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.utility-left, .utility-right { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }
.utility-bar a { color: var(--ivory-warm); opacity: 0.9; }
.utility-bar a:hover { opacity: 1; color: var(--cyan); }
.utility-bar .sep { width: 1px; height: 12px; background: var(--hairline-dark); }

/* ========== Custom language picker (drives Google Translate via cookie) ========== */
.lang-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 0.25rem 0.85rem 0.25rem 0.75rem;
  transition: background .2s ease, border-color .2s ease;
}
.lang-wrap:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(64,192,219,0.5);
}
.lang-wrap .lang-icon { color: var(--cyan); flex-shrink: 0; }
.lang-picker {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none' stroke='%2340c0db' stroke-width='1.4'%3E%3Cpath d='M2 4l3 3 3-3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 9px 9px;
  border: none;
  outline: none;
  color: var(--ivory-warm);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0 14px 0 0;
  cursor: pointer;
  line-height: 1;
}
.lang-picker:focus { outline: none; }
.lang-picker option { color: var(--ink); background: var(--paper); font-family: var(--font-body); }

/* Hide Google Translate's default UI completely — we drive it via cookie */
#google_translate_element { display: none !important; }
.goog-te-banner-frame, .goog-te-banner, .skiptranslate > iframe.skiptranslate { display: none !important; visibility: hidden !important; }
body { top: 0 !important; position: static !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: transparent !important; box-shadow: none !important; }
.goog-te-spinner-pos, .goog-te-spinner { display: none !important; }
font[style*="background-color"] { background: transparent !important; }

/* ---------- Header / sticky nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
}
.brand img { height: 44px; width: auto; max-width: 200px; }
.nav { display: flex; align-items: center; gap: 1.5rem; flex-wrap: nowrap; }
.nav a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}
.nav a:hover { color: var(--blue); }
.nav a.active { color: var(--navy); }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--cyan) 100%);
}

.nav-toggle { display: none; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--navy);
  color: var(--ivory);
}
.btn-primary:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--blue);
  color: #fff;
}
.btn-gold:hover {
  background: var(--cyan);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-cyan {
  background: var(--cyan);
  color: var(--navy);
}
.btn-cyan:hover {
  background: var(--blue);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--ivory);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover { background: #1FBA57; color: #fff; transform: translateY(-1px); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(32,54,111,0.78) 0%, rgba(17,90,195,0.55) 60%, rgba(22,38,79,0.92) 100%),
    radial-gradient(ellipse at top right, #2A4685 0%, #16264F 70%);
  color: var(--ivory);
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(64,192,219,0.10) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(64,192,219,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 { color: var(--ivory); margin-bottom: 1.2rem; }
.hero .lead {
  font-size: 1.15rem;
  color: rgba(246,248,251,0.88);
  margin-bottom: 1.8rem;
  max-width: 520px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 500;
  margin-bottom: 1.4rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(64,192,219,0.4);
}
.hero-cta-row { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.hero-trust {
  display: flex;
  gap: 1.3rem;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(246,248,251,0.80);
  flex-wrap: wrap;
}
.hero-trust .stars { color: var(--cyan); letter-spacing: 1px; }

/* Hero form card */
.hero-form {
  background: var(--ivory);
  color: var(--ink);
  padding: 2.2rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--cyan);
}
.hero-form h3 { margin-bottom: 0.4rem; }
.hero-form p.small { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.4rem; }

.form-field { margin-bottom: 0.9rem; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(64,192,219,0.18);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-error { color: #B0294B; font-size: 0.82rem; margin-top: 0.3rem; display: none; }
.form-success {
  display: none;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--cyan-pale);
  color: var(--navy);
  border-left: 3px solid var(--cyan);
  margin-bottom: 1rem;
  font-size: 0.92rem;
}
.form-tiny {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.8rem;
  text-align: center;
}

/* ---------- Trust bar ---------- */

.trust-bar {
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 2.2rem 0;
}
.trust-bar .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.trust-stat .num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--navy);
  display: block;
  line-height: 1;
}
.trust-stat .num .gold { color: var(--cyan); }
.trust-stat .label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
  display: block;
  font-weight: 500;
}

/* ---------- Pain points ---------- */

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pain-card {
  background: var(--paper);
  padding: 2rem 1.8rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  border-top: 2px solid var(--cyan);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pain-card .icon { color: var(--blue); margin-bottom: 1rem; }
.pain-card h3 { color: var(--navy); margin-bottom: 0.6rem; }
.pain-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 0; }

/* ---------- Services grid ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-tile {
  background: var(--paper);
  padding: 2rem 1.8rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan);
}
.service-tile .icon-wrap {
  width: 52px; height: 52px;
  background: var(--cyan-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 1.2rem;
}
.service-tile h3 { margin-bottom: 0.6rem; }
.service-tile ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.3rem;
}
.service-tile ul li {
  font-size: 0.92rem;
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.45rem;
  color: var(--ink-soft);
}
.service-tile ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 8px; height: 2px;
  background: var(--cyan);
}
.service-tile .tile-link {
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.service-tile .tile-link:hover { color: var(--navy); }

/* ---------- Why us / differentiators ---------- */

.why-section {
  background: var(--paper);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--hairline);
}
.why-item:last-child, .why-item:nth-last-child(2) { border-bottom: none; }
.why-item .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--blue);
  font-weight: 600;
  line-height: 1;
}
.why-item h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.why-item p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 0; }

/* ---------- Process / how it works ---------- */

.process-section { background: var(--ivory-warm); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.process-step {
  position: relative;
  padding: 1.5rem;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
}
.process-step .step-num {
  position: absolute;
  top: -16px;
  left: 1.5rem;
  background: var(--navy);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
}
.process-step h3 { font-size: 1.05rem; margin: 0.6rem 0 0.5rem; }
.process-step p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 0; }

/* ---------- Testimonials ---------- */

.testimonials-section { background: var(--navy); color: var(--ivory); }
.testimonials-section .section-label { color: var(--cyan); }
.testimonials-section h2 { color: var(--ivory); }
.testimonials-section .section-intro { color: rgba(246,248,251,0.80); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonial {
  background: var(--navy-soft);
  padding: 2rem 1.8rem;
  border-radius: var(--radius-lg);
  border-top: 2px solid var(--cyan);
  display: flex;
  flex-direction: column;
}
.testimonial .quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--cyan);
  line-height: 0.8;
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.testimonial .quote {
  font-style: italic;
  font-size: 0.98rem;
  color: rgba(246,248,251,0.94);
  margin-bottom: 1.2rem;
  flex-grow: 1;
}
.testimonial .stat {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cyan);
  font-weight: 500;
  margin-bottom: 1rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}
.testimonial .author { font-size: 0.92rem; color: var(--ivory); font-weight: 500; }
.testimonial .author-meta { font-size: 0.82rem; color: rgba(246,248,251,0.70); margin-top: 0.2rem; }
.testimonial .flag { margin-right: 0.4rem; }

/* ---------- Comparison table ---------- */

.compare-section { background: var(--paper); }
.compare-table-wrap { margin-top: 2.5rem; overflow-x: auto; }
.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.94rem;
}
.compare-table th, .compare-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--hairline);
  vertical-align: middle;
}
.compare-table th {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
  background: var(--ivory-warm);
}
.compare-table th.highlight {
  background: var(--navy);
  color: var(--ivory);
  position: relative;
}
.compare-table th.highlight::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-weight: 600;
}
.compare-table td.feature {
  font-weight: 500;
  color: var(--ink);
  width: 28%;
}
.compare-table td.highlight {
  background: rgba(64,192,219,0.08);
  color: var(--navy);
  font-weight: 500;
  border-left: 1px solid rgba(64,192,219,0.4);
  border-right: 1px solid rgba(64,192,219,0.4);
}
.compare-table .yes { color: #1F8A4C; font-weight: 600; }
.compare-table .no { color: #B0294B; font-weight: 600; }
.compare-table .meh { color: var(--muted); }

/* ---------- Service areas ---------- */

.areas-section { background: var(--ivory-warm); }
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.area-pill {
  background: var(--paper);
  border: 1px solid var(--hairline);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  transition: all .2s ease;
}
.area-pill:hover {
  border-color: var(--cyan);
  background: var(--cyan);
  color: var(--navy);
}

/* ---------- FAQ ---------- */

.faq-section { background: var(--paper); }
.faq-list { margin-top: 2.5rem; max-width: 880px; margin-left: auto; margin-right: auto; }
.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
  gap: 1rem;
  transition: color .2s ease;
}
.faq-item summary:hover { color: var(--blue); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--blue);
  transition: transform .25s ease;
  flex-shrink: 0;
  font-weight: 300;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer {
  padding: 0 0 1.4rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ---------- Final CTA band ---------- */

.cta-band {
  background:
    linear-gradient(135deg, rgba(32,54,111,0.94) 0%, rgba(22,38,79,0.96) 100%),
    radial-gradient(circle at top right, rgba(64,192,219,0.22), transparent 50%);
  color: var(--ivory);
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
}
.cta-band h2 { color: var(--ivory); }
.cta-band p { color: rgba(246,248,251,0.90); max-width: 580px; margin: 0 auto 1.8rem; }
.cta-band .cta-row { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-deep);
  color: rgba(246,248,251,0.78);
  padding: 4rem 0 2rem;
  font-size: 0.92rem;
}
.site-footer a { color: rgba(246,248,251,0.78); }
.site-footer a:hover { color: var(--cyan); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .brand img { height: 44px; max-width: 200px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand p { color: rgba(246,248,251,0.72); font-size: 0.9rem; margin-top: 1rem; }
.footer-col h4 {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.5rem; font-size: 0.92rem; }
.footer-bottom {
  border-top: 1px solid var(--hairline-dark);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(246,248,251,0.55);
}
.footer-bottom a { color: rgba(246,248,251,0.65); }

/* ---------- Sticky mobile CTA bar ---------- */

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  background: var(--navy);
  border-top: 2px solid var(--cyan);
  padding: 0.6rem;
  gap: 0.5rem;
}
.mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 0.85rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ivory);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.mobile-cta .mc-call { background: var(--cyan); color: var(--navy); }
.mobile-cta .mc-wa { background: #25D366; color: #fff; }

/* ---------- Floating WhatsApp ---------- */

.float-wa {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 70;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform .2s ease;
}
.float-wa:hover { transform: scale(1.06); color: #fff; }

/* ---------- Exit-intent / lead magnet popup ---------- */

.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(22,38,79,0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-backdrop.active { display: flex; }
.modal {
  background: var(--ivory);
  max-width: 480px;
  width: 100%;
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--cyan);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.modal-close {
  position: absolute;
  top: 0.8rem; right: 0.8rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 300;
  line-height: 1;
}
.modal-close:hover { background: var(--hairline); color: var(--navy); }
.modal h3 { color: var(--navy); margin-bottom: 0.6rem; }
.modal p { color: var(--muted); font-size: 0.94rem; margin-bottom: 1.4rem; }
.modal .form-field { text-align: left; }

/* ---------- Page hero (subpages) ---------- */

.page-hero {
  background:
    linear-gradient(135deg, rgba(32,54,111,0.94) 0%, rgba(17,90,195,0.65) 100%),
    radial-gradient(circle at top right, #2A4685 0%, #16264F 80%);
  color: var(--ivory);
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}
.page-hero h1 { color: var(--ivory); margin-bottom: 1rem; }
.page-hero .lead { color: rgba(246,248,251,0.88); font-size: 1.1rem; max-width: 720px; margin: 0 auto; }
.page-hero .breadcrumbs {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.2rem;
}
.page-hero .breadcrumbs a { color: var(--cyan); opacity: 0.85; }

/* ---------- Two-column content blocks ---------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.two-col .col-image {
  background: var(--ivory-warm);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex; align-items: center; justify-content: center;
  min-height: 320px;
  border: 1px solid var(--hairline);
}
.two-col h2 { margin-bottom: 1rem; }
.two-col ul { list-style: none; padding: 0; }
.two-col ul li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.7rem;
  color: var(--ink-soft);
}
.two-col ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 12px; height: 2px;
  background: var(--cyan);
}

/* ---------- Area cards ---------- */

.area-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--cyan);
  padding: 1.8rem 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.3rem;
}
.area-card h3 { margin-bottom: 0.5rem; }
.area-card .area-meta {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.area-card p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 0; }

/* ---------- Misc ---------- */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.scarcity-note {
  display: inline-block;
  background: var(--cyan-pale);
  border: 1px solid var(--cyan);
  color: var(--navy);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  margin-top: 1rem;
}
.scarcity-note strong { color: var(--blue); }

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--cyan-pale);
  border: 1px solid var(--cyan);
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 1rem 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-form { margin-top: 1rem; }
  .pain-grid, .services-grid, .testimonials-grid, .process-grid, .why-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar .grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 1.2rem var(--gutter);
    border-bottom: 1px solid var(--hairline);
    gap: 1rem;
    align-items: flex-start;
    box-shadow: var(--shadow-md);
  }
  .nav.open a { font-size: 1rem; }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: var(--radius);
    color: var(--navy);
    background: transparent;
  }
  .nav-toggle svg { width: 22px; height: 22px; }
  .pain-grid, .services-grid, .testimonials-grid, .process-grid, .why-grid, .footer-grid { grid-template-columns: 1fr; }
  .utility-bar { font-size: 0.78rem; }
  .utility-bar .container { gap: 0.6rem; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 70px; }
  .float-wa { display: none; }
  .hero { padding-bottom: 6rem; }
  section { padding: 3rem 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .brand img { height: 38px; }
}

@media (max-width: 480px) {
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .utility-left .sep, .utility-bar .hide-mobile { display: none; }
}

/* ---------- Print ---------- */

@media print {
  .utility-bar, .nav, .mobile-cta, .float-wa, .modal-backdrop, .hero-form, .cta-band { display: none; }
  body { background: white; color: black; }
}
