/* ============================================================
   gotaminute? — main.css
   All styles live here. No inline <style> blocks anywhere.
   ============================================================ */

/* ── Fonts ─────────────────────────────────────────────────── */
@font-face {
  font-family: 'Quicksand';
  src: url('/assets/fonts/quicksand-v37-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Quicksand';
  src: url('/assets/fonts/quicksand-v37-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Quicksand';
  src: url('/assets/fonts/quicksand-v37-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Quicksand';
  src: url('/assets/fonts/quicksand-v37-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Comfortaa';
  src: url('/assets/fonts/comfortaa-v47-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Comfortaa';
  src: url('/assets/fonts/comfortaa-v47-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  --teal:      #4ABBCB;
  --teal-dk:   #38a0af;
  --navy:      #04475E;
  --navy-dk:   #032f40;
  --yellow:    #FECF0A;
  --yellow-dk: #d4ae00;
  --offwhite:  #f5f5f0;
  --white:     #ffffff;
  --text:      #1a2a30;
  --muted:     #5a7080;
  --border:    #d0d8dc;
  --font-head: 'Quicksand', 'Comfortaa', sans-serif;
  --font-body: 'Quicksand', 'Comfortaa', sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dk); }
ul, ol { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: #111111;
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ─────────────────────────────────────────────────── */
.section-inner {
  max-width: 1060px;
  margin: 0 auto;
}
.section-inner.narrow {
  max-width: 860px;
}

/* ── Nav ────────────────────────────────────────────────────── */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 40px;
  height: 68px;
  background: var(--navy);
}
.nav-logo { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--yellow-dk); color: var(--navy); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}
.nav-mobile {
  flex-direction: column;
  background: var(--navy-dk);
  padding: 16px 24px 24px;
}
.nav-mobile a {
  display: block;
  padding: 10px 0;
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile a:hover { color: var(--teal); }
.nav-mobile a:last-child { border-bottom: none; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy-dk);
  color: var(--white);
  padding: 96px 40px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero.centered .hero-inner {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 760px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero p {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero.centered p { margin-left: auto; margin-right: auto; }
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero.centered .hero-ctas { justify-content: center; }
.hero-image {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ── Sections ───────────────────────────────────────────────── */
.section {
  padding: 80px 40px;
  background: var(--white);
}
.section-alt {
  padding: 80px 40px;
  background: var(--offwhite);
}
.section-yellow {
  padding: 80px 40px;
  background: var(--yellow);
  color: #111111;
}
.section-yellow h2,
.section-yellow h3 { color: #111111; }
.section-yellow .section-label { color: #111111; opacity: 0.6; }
.section-yellow .section-title { color: #111111; }
.section-yellow .section-desc { color: #111111; opacity: 0.75; }
.section-yellow .section-divider { background: #111111; }
.section-yellow .vertical-simple-card { background: rgba(255,255,255,0.55); border-color: rgba(0,0,0,0.12); }
.section-yellow .vertical-simple-card h3 { color: #111111; }
.section-yellow .vertical-simple-card p { color: #111111; opacity: 0.7; }
.section-yellow .btn-primary { background: #111111; color: var(--white); }
.section-yellow .btn-primary:hover { background: #000000; }
.section-yellow .btn-outline { color: #111111; border-color: #111111; }
.section-yellow .btn-outline:hover { background: rgba(0,0,0,0.08); }

.section-black {
  padding: 80px 40px;
  background: #111111;
  color: var(--white);
}
.section-black h2,
.section-black h3 { color: var(--yellow); }
.section-black .section-label { color: rgba(255,255,255,0.5); }
.section-black .section-title { color: var(--yellow); }
.section-black .section-desc { color: rgba(255,255,255,0.75); }
.section-black .section-divider { background: var(--yellow); }
.section-black .faq-item { border-color: rgba(255,255,255,0.12); }
.section-black .faq-question { color: var(--yellow); }
.section-black .faq-answer p { color: rgba(255,255,255,0.7); }
.section-black .btn-primary { background: var(--yellow); color: #111111; }
.section-black .btn-primary:hover { background: var(--yellow-dk); }
.section-black .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.4); }
.section-black .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }
.section-dark {
  padding: 80px 40px;
  background: var(--navy);
  color: var(--white);
}
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-dark p  { color: rgba(255,255,255,0.8); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-dark .section-label { color: var(--yellow); }
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 16px;
  color: #111111;
}
.section-dark .section-title { color: var(--white); }
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--yellow);
  margin: 0 auto 32px;
  border-radius: 2px;
}
.section-divider.left { margin-left: 0; }
.section-desc {
  font-size: 17px;
  max-width: 580px;
  margin-bottom: 40px;
  color: var(--muted);
}
.section-dark .section-desc { color: rgba(255,255,255,0.7); }
.centered { text-align: center; }
.centered .section-desc { margin-left: auto; margin-right: auto; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  border: 2px solid var(--yellow);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--yellow-dk); border-color: var(--yellow-dk); color: var(--navy); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--teal);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  border: 2px solid var(--teal);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.btn-outline:hover { background: var(--teal); color: var(--white); }
.section-dark .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.5); }
.section-dark .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); color: var(--white); }

/* ── Cards ───────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
}
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(4,71,94,0.10);
  transform: translateY(-2px);
}
.section-dark .card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.section-dark .card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.card-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.card-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--offwhite);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.section-dark .card-label { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
.card-featured .card-label { background: var(--yellow); color: var(--navy); }
.card-title {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
  line-height: 1.3;
}
.section-dark .card-title { color: var(--white); }
.card p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
}
.section-dark .card p { color: rgba(255,255,255,0.65); }
.card-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
}
.card-link:hover { color: var(--teal-dk); }
.section-dark .card-link { color: var(--yellow); }
.card-featured {
  border-color: var(--yellow);
  border-width: 2px;
  background: rgba(254,207,10,0.04);
}
.card-featured:hover { box-shadow: 0 8px 32px rgba(254,207,10,0.2); }
.card-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.section-dark .card-badge { background: var(--yellow); color: var(--navy); }

/* ── Verticals / Industry Cards ─────────────────────────────── */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.vertical-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.vertical-card:hover {
  box-shadow: 0 8px 32px rgba(4,71,94,0.10);
  transform: translateY(-2px);
}
.vertical-card-img {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.vertical-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.vertical-card-body p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0;
}

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}
.testimonial {
  background: var(--offwhite);
  border-radius: 8px;
  padding: 28px;
  border-left: 4px solid var(--teal);
}
.section-dark .testimonial {
  background: rgba(255,255,255,0.07);
  border-left-color: var(--yellow);
}
.testimonial-quote {
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.65;
}
.section-dark .testimonial-quote { color: rgba(255,255,255,0.85); }
.testimonial-attr {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.section-dark .testimonial-attr { color: rgba(255,255,255,0.45); }

/* ── Split section ───────────────────────────────────────────── */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
}
.section-split p {
  color: var(--muted);
  margin-bottom: 16px;
}
.section-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ── Pricing Banner ──────────────────────────────────────────── */
.pricing-banner {
  background: var(--navy-dk);
  padding: 48px 40px;
  text-align: center;
  color: var(--white);
}
.pricing-banner h2 {
  color: var(--white);
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 8px;
}
.pricing-banner .price {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-banner .price-note {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 720px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  font-size: 17px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
}
.faq-answer p { font-size: 15px; color: var(--muted); margin-bottom: 0; }

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  padding: 72px 40px;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,0.75); font-size: 17px; max-width: 560px; margin: 0 auto 32px; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Forms ───────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(74,187,203,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-success {
  background: #e6f7f9;
  border: 1px solid var(--teal);
  color: var(--navy);
  padding: 16px 20px;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 20px;
}
.form-error {
  background: #fff0f0;
  border: 1px solid #e05050;
  color: #c02020;
  padding: 16px 20px;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 20px;
}
.form-wrapper {
  max-width: 680px;
}
.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

/* ── Contact / Ticket page layout ───────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
}
.contact-sidebar h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--navy);
}
.contact-sidebar p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
}
.contact-sidebar a { color: var(--teal); font-weight: 600; }

/* ── Blog ────────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  background: var(--white);
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(4,71,94,0.10);
  transform: translateY(-2px);
}
.blog-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.blog-card-body { padding: 20px; }
.blog-card-date {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.blog-card-excerpt {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 14px;
}
.blog-card-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
}
.blog-card-link:hover { color: var(--teal-dk); }

/* Blog post page */
.post-hero {
  background: var(--navy);
  padding: 64px 40px;
}
.post-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.post-hero-date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.post-hero h1 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 0;
}
.post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 40px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}
.post-body h2 { font-size: 28px; margin: 40px 0 16px; color: var(--navy); }
.post-body h3 { font-size: 22px; margin: 32px 0 12px; color: var(--navy); }
.post-body p  { margin-bottom: 20px; }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 20px; }
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { margin-bottom: 6px; }
.post-body a  { color: var(--teal); font-weight: 600; }
.post-body blockquote {
  border-left: 4px solid var(--teal);
  padding: 12px 20px;
  margin: 24px 0;
  background: var(--offwhite);
  border-radius: 0 4px 4px 0;
  font-style: italic;
  color: var(--muted);
}
.post-body pre {
  background: var(--navy-dk);
  color: rgba(255,255,255,0.9);
  padding: 20px;
  border-radius: 6px;
  overflow-x: auto;
  margin-bottom: 20px;
  font-size: 14px;
}
.post-body code { font-family: monospace; font-size: 0.9em; }
.post-img { width: 100%; max-height: 400px; object-fit: cover; }

/* Blog empty state */
.blog-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

/* ── Legal pages ─────────────────────────────────────────────── */
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 40px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}
.legal-body h2 { font-size: 22px; margin: 36px 0 12px; color: var(--navy); }
.legal-body p  { margin-bottom: 16px; }
.legal-body ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a  { color: var(--teal); }

.terms-body {
  max-width: 1060px;
  margin: 0 auto;
  padding: 56px 40px 80px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 15px;
  line-height: 1.65;
}
.legal-table tr {
  border-bottom: 1px solid var(--border);
}
.legal-table tr:first-child td {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  padding: 16px 20px;
}
.legal-table td {
  padding: 14px 16px;
  vertical-align: top;
  color: var(--text);
}
.legal-table tr:not(:first-child) td:first-child {
  font-weight: 600;
  width: 30%;
  background: var(--offwhite);
  color: var(--text);
}
.legal-table tr:not(:first-child) td:last-child {
  width: 70%;
}

.legal-footer-links {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--border);
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.legal-footer-links div {
  flex: 1;
  min-width: 200px;
}
.legal-footer-links h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 8px;
}
.legal-footer-links a {
  font-size: 14px;
  color: var(--teal);
}
.legal-footer-links a:hover { color: var(--teal-dk); }

@media (max-width: 720px) {
  .terms-body { padding: 40px 20px 60px; }
  .legal-table tr:not(:first-child) td:first-child,
  .legal-table tr:not(:first-child) td:last-child {
    display: block;
    width: 100%;
  }
  .legal-table tr:not(:first-child) td:first-child {
    border-bottom: 2px solid var(--teal);
  }
  .legal-footer-links { flex-direction: column; }
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer { background: var(--navy-dk); color: var(--white); }

.footer-links { padding: 56px 40px 40px; }
.footer-links-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact { padding: 0 40px 24px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; }
.footer-contact-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-contact-inner a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}
.footer-contact-inner a:hover { color: var(--teal); }
.footer-contact-separator { color: rgba(255,255,255,0.2); }

.footer-bottom { padding: 16px 40px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0;
}
.footer-bottom a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a:hover { color: var(--teal); }

/* ── 404 page ────────────────────────────────────────────────── */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 40px;
  text-align: center;
}
.error-code {
  font-size: 96px;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.error-page h1 { font-size: 32px; margin-bottom: 12px; }
.error-page p  { font-size: 17px; color: var(--muted); max-width: 440px; margin-bottom: 28px; }

/* ── About page ──────────────────────────────────────────────── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.about-stat {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.about-stat .stat-number {
  font-size: 44px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat .stat-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

/* ── Services list ───────────────────────────────────────────── */
.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.service-item:last-child { border-bottom: none; }
.service-item.reverse { direction: rtl; }
.service-item.reverse > * { direction: ltr; }
.service-item-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 320px;
  box-shadow: 0 8px 32px rgba(4,71,94,0.12);
}
.service-item h3 { font-size: 26px; margin-bottom: 14px; color: var(--navy); }
.service-item p  { color: var(--muted); font-size: 16px; margin-bottom: 14px; }
.service-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(74,187,203,0.12);
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ── Utilities ───────────────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-0  { margin-bottom: 0; }

/* ── Mobile (max 720px) ──────────────────────────────────────── */
@media (max-width: 720px) {
  .nav { padding: 0 20px; height: 60px; gap: 16px; }
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 60px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-image { max-height: 260px; }

  .section,
  .section-alt,
  .section-yellow,
  .section-black,
  .section-dark { padding: 52px 24px; }

  .cards-grid   { grid-template-columns: 1fr; }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .verticals-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .section-split { grid-template-columns: 1fr; gap: 32px; }
  .about-stats { grid-template-columns: 1fr; }

  .service-item { grid-template-columns: 1fr; gap: 28px; }
  .service-item.reverse { direction: ltr; }

  .form-2col { grid-template-columns: 1fr; gap: 0; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }

  .blog-grid { grid-template-columns: 1fr; }
  .post-body { padding: 40px 24px; }
  .legal-body { padding: 40px 24px; }

  .footer-links { padding: 40px 24px 24px; }
  .footer-links-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-contact { padding: 20px 24px; }
  .footer-bottom { padding: 16px 24px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }

  .pricing-banner { padding: 48px 24px; }
  .cta-banner { padding: 52px 24px; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .hero-ctas { flex-direction: column; }
  .section-cta-group { flex-direction: column; }

  .error-page { padding: 80px 24px; }
  .error-code { font-size: 64px; }

  .post-hero { padding: 48px 24px; }

  .testimonial-featured { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .testimonial-featured-photo { width: 180px; height: 180px; margin: 0 auto; }
  .testimonial-featured-section { padding: 48px 24px; }

  .verticals-simple { grid-template-columns: repeat(2, 1fr); }
}

/* ── Featured Testimonial (with photo) ──────────────────────── */
.testimonial-featured-section {
  padding: 64px 40px;
}
.testimonial-featured {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
}
.testimonial-featured-photo {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid rgba(254,207,10,0.6);
  box-shadow: 0 0 0 8px rgba(254,207,10,0.1);
  flex-shrink: 0;
}
.testimonial-featured-quote {
  font-size: clamp(17px, 1.8vw, 22px);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-featured-attr {
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}

/* ── Service inline testimonial pull-quote ───────────────────── */
.service-testimonial {
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(74,187,203,0.08);
  border-left: 4px solid var(--teal);
  border-radius: 0 6px 6px 0;
}
.service-testimonial-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 8px;
}
.service-testimonial-attr {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0;
}

/* ── Sendmarc widget form inside card ────────────────────────── */
.sendmarc-card-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
  margin-bottom: 12px;
}
.sendmarc-card-form input[type="email"] {
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  width: 100%;
  transition: border-color 0.15s;
}
.sendmarc-card-form input[type="email"]:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(74,187,203,0.15);
}
.sendmarc-card-form .sendmarc-consent {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sendmarc-card-form input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--teal);
  flex-shrink: 0;
  cursor: pointer;
}
.sendmarc-card-form label {
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
}
.sendmarc-card-form button[type="submit"] {
  align-self: flex-start;
  padding: 9px 18px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.sendmarc-card-form button[type="submit"]:hover { background: var(--teal-dk); }

/* ── Standalone testimonial (below service cards) ────────────── */
.testimonial-standalone {
  max-width: 860px;
  margin: 48px auto 0;
  padding: 28px 32px;
  background: var(--offwhite);
  border-left: 4px solid var(--yellow);
  border-radius: 0 8px 8px 0;
}
.testimonial-standalone .testimonial-quote {
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 12px;
}
.testimonial-standalone .testimonial-attr {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0;
}

/* ── Simple verticals (homepage, lighter treatment) ──────────── */
.verticals-simple {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.vertical-simple-card {
  padding: 22px 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
}
.vertical-simple-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.vertical-simple-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0;
}

/* ── Privacy Notice (accordion layout) ───────────────────────── */
.gm-privacy *,
.gm-privacy *::before,
.gm-privacy *::after { box-sizing: border-box; }

.gm-privacy {
  font-family: var(--font-body);
  background-color: var(--offwhite);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 40px 80px;
}

.gm-privacy__header {
  background-color: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 40px 40px 36px;
  margin-bottom: 40px;
}
.gm-privacy__badge {
  display: inline-block;
  background-color: var(--yellow);
  color: #111111;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 16px;
}
.gm-privacy__header h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--white);
}
.gm-privacy__intro {
  font-size: 16px;
  opacity: 0.92;
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--white);
}
.gm-privacy__intro strong { color: var(--yellow); }
.gm-privacy__updated {
  font-size: 13px;
  opacity: 0.75;
  margin-top: 10px;
  color: var(--white);
}

.gm-privacy__nav {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 36px;
}
.gm-privacy__nav-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin: 0 0 14px;
}
.gm-privacy__nav ol {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px 20px;
  padding: 0;
  margin: 0;
}
.gm-privacy__nav ol li a {
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.gm-privacy__nav ol li a::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}
.gm-privacy__nav ol li a:hover { color: var(--teal); text-decoration: underline; }

.gm-privacy__accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gm-privacy__item {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.gm-privacy__item[open] {
  box-shadow: 0 4px 20px rgba(4, 71, 94, 0.10);
  border-color: var(--navy);
}
.gm-privacy__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  gap: 16px;
  user-select: none;
}
.gm-privacy__item summary::-webkit-details-marker { display: none; }
.gm-privacy__summary-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.gm-privacy__num {
  background-color: var(--navy);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gm-privacy__item[open] .gm-privacy__num {
  background-color: var(--yellow);
  color: #111111;
}
.gm-privacy__summary-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}
.gm-privacy__tagline {
  font-size: 13px;
  color: var(--muted);
  margin: 2px 0 0;
}
.gm-privacy__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--navy);
  transition: transform 0.25s ease;
}
.gm-privacy__item[open] .gm-privacy__chevron { transform: rotate(180deg); }

.gm-privacy__body {
  padding: 0 24px 24px;
  border-top: 1px solid var(--border);
}
.gm-privacy__body p,
.gm-privacy__body ul,
.gm-privacy__body ol {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.75;
}
.gm-privacy__body ul,
.gm-privacy__body ol { padding-left: 20px; }
.gm-privacy__body li { margin-top: 6px; }
.gm-privacy__body strong { color: var(--navy); }

.gm-privacy__vendors {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.gm-privacy__chip {
  background-color: var(--offwhite);
  border: 1px solid var(--border);
  border-left: 3px solid var(--yellow);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.gm-privacy__chip span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}

.gm-privacy__highlight {
  background-color: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 18px;
  font-size: 14px;
}
.gm-privacy__highlight strong { color: var(--yellow) !important; }

.gm-privacy__contact {
  background-color: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 36px 40px;
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.gm-privacy__contact-icon {
  background-color: var(--yellow);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gm-privacy__contact h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--white);
}
.gm-privacy__contact p { font-size: 15px; opacity: 0.9; margin: 0; }
.gm-privacy__contact a {
  color: var(--yellow);
  font-weight: 600;
  text-decoration: none;
}
.gm-privacy__contact a:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .gm-privacy { padding: 32px 20px 60px; }
  .gm-privacy__header { padding: 28px 22px; }
  .gm-privacy__nav { padding: 18px; }
  .gm-privacy__body { padding: 0 16px 18px; }
  .gm-privacy__item summary { padding: 16px; }
  .gm-privacy__contact { flex-direction: column; padding: 28px 22px; }
}
