﻿/* ============================================================
   MCas Accountants — Global Stylesheet
   ============================================================ */

/* ─── 1. CSS VARIABLES ─────────────────────────────────────── */
:root {
  --navy:          #0f1e3c;
  --navy-mid:      #1a3158;
  --navy-light:    #1e3d6b;
  --teal:          #6595a1;
  --teal-light:    #88b4c0;
  --teal-dark:     #4e7e8c;
  --teal-pale:     #eaf3f5;
  --charcoal:      #2d3748;
  --text:          #111827;
  --text-body:     #374151;
  --text-muted:    #6b7280;
  --text-light:    #9ca3af;
  --white:         #ffffff;
  --off-white:     #f8fafc;
  --light:         #f1f5f9;
  --border:        #e2e8f0;
  --border-mid:    #cbd5e1;
  --gold:          #f59e0b;
  --gold-light:    #fef3c7;
  --font-head:     'Plus Jakarta Sans', sans-serif;
  --font-body:     'Inter', sans-serif;
  --section-pad:   96px;
  --container:     1200px;
  --radius:        8px;
  --radius-lg:     14px;
  --radius-xl:     20px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.08);
  --shadow:        0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:     0 8px 30px rgba(0,0,0,0.1);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.12);
  --shadow-teal:   0 8px 24px rgba(101,149,161,0.25);
  --shadow-navy:   0 8px 24px rgba(15,30,60,0.25);
  --transition:    0.2s ease;
  --transition-md: 0.3s ease;
}

/* ─── 2. RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
svg { display: block; flex-shrink: 0; }

/* ─── 3. TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: #008799; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-body); }
.lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  color: var(--text-muted);
}

/* ─── 4. LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.section          { padding: var(--section-pad) 0; }
.section--sm      { padding: 64px 0; }
.section--dark    { background: linear-gradient(135deg, #2a4d5c 0%, var(--teal-dark) 100%); }
.section--light   { background: var(--off-white); }
.section--grey    { background: var(--light); }
.section--border  { border-top: 1px solid var(--border); }

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

/* ─── 5. SECTION HEADERS ─────────────────────────────────────── */
.section-header           { margin-bottom: 56px; }
.section-header.centered  { text-align: center; margin-left: auto; margin-right: auto; max-width: 640px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.section-label.on-dark { color: var(--teal-light); }
.section-title { margin-bottom: 16px; }
.section-title.on-dark { color: #fff; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; max-width: 560px; }
.section-subtitle.on-dark { color: rgba(255,255,255,0.6); }

/* ─── 6. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius);
  transition: all var(--transition-md);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn-sm  { padding: 9px 20px; font-size: 0.83rem; }
.btn-lg  { padding: 16px 36px; font-size: 0.95rem; }
.btn-primary {
  background: #008799;
  color: #fff;
  border-color: #008799;
  box-shadow: 0 8px 24px rgba(0,135,153,0.28);
}
.btn-primary:hover {
  background: #006b78;
  border-color: #006b78;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,135,153,0.38);
}
.btn-secondary {
  background: #008799;
  color: #fff;
  border-color: #008799;
}
.btn-secondary:hover {
  background: #006b78;
  border-color: #006b78;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #008799;
  border-color: #008799;
}
.btn-outline:hover {
  background: #008799;
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-navy {
  background: transparent;
  color: #008799;
  border-color: #008799;
}
.btn-outline-navy:hover {
  background: #008799;
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}
.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: #fff;
  border-color: rgba(255,255,255,0.14);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-1px);
}

/* ─── 7. HEADER & NAV ────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: all var(--transition-md);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: 0 4px 28px rgba(0,0,0,0.1);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
}
.logo-tagline {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  padding-left: 12px;
  border-left: 1px solid var(--border-mid);
  line-height: 1.4;
  white-space: nowrap;
}
.logo-accent { color: var(--teal-light); }
.logo-sub {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(0,0,0,0.35);
  margin-left: 8px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(0,0,0,0.65);
  padding: 7px 12px;
  border-radius: 6px;
  transition: all var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: rgba(0,0,0,0.05); }
.nav-link-arrow { font-size: 1.1rem; opacity: 0.9; transition: transform 0.2s; }
.has-dropdown { position: relative; }
.has-dropdown:hover .nav-link-arrow { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.22s ease;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  z-index: 200;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(0,0,0,0.65);
  padding: 9px 14px;
  border-radius: 6px;
  transition: all var(--transition);
}
.dropdown li a:hover { background: rgba(0,0,0,0.05); color: var(--text); }
.nav-cta-wrap { flex-shrink: 0; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(0,0,0,0.75);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(0,0,0,0.7);
  padding: 11px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.mobile-nav a:hover { background: rgba(0,0,0,0.05); color: var(--text); }
.mobile-nav .mobile-cta {
  margin-top: 10px;
  background: var(--teal);
  color: #fff;
  text-align: center;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 13px;
}
.mobile-nav .mobile-cta:hover { background: var(--teal-dark); }

/* ─── 8. CREDENTIALS BAR ────────────────────────────────────── */
.credentials-bar {
  background: #ffffff;
  padding: 48px 0;
  border-top: 1px solid #e2e8ea;
  border-bottom: 1px solid #e2e8ea;
}
.credentials-logos {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 32px;
  flex-wrap: wrap;
}
.credentials-logo {
  flex: 1;
  min-width: 100px;
  max-width: 220px;
  height: 100px;
  object-fit: contain;
}

/* ─── 9. FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(160deg, #1a3540 0%, #2a4d5c 100%);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.footer-brand-name .accent { color: var(--teal-light); }
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 290px;
  margin-bottom: 22px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(126,173,185,0.08);
  border: 1px solid rgba(126,173,185,0.18);
  padding: 5px 12px;
  border-radius: 20px;
}
.footer-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 5px 12px;
  border-radius: 20px;
  margin-top: 8px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.footer-google-badge:hover {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.8);
}
.footer-yell-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 5px 12px;
  border-radius: 20px;
  margin-top: 8px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.footer-yell-badge:hover {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.8);
}
.footer-yell-badge .fy-stars {
  display: flex;
  gap: 1px;
  color: #FBBF24;
}
.footer-google-badge .fg-g {
  font-weight: 800;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #4285F4, #EA4335, #FBBC05, #34A853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.footer-google-badge .fg-stars {
  display: flex;
  gap: 1px;
  color: #FBBF24;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: rgba(255,255,255,0.9); }
.footer-phone {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  margin-bottom: 4px;
  transition: color var(--transition);
}
.footer-phone:hover { color: rgba(255,255,255,0.75); }
.footer-email {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  transition: color var(--transition);
}
.footer-email:hover { color: #fff; }
.footer-location {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.footer-address {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.5;
  margin-bottom: 16px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.5);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ─── 9. PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #0a6b7a 0%, #13a5b8 100%);
  padding: 130px 0 76px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 90% 50%, rgba(19,165,184,0.12) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb .sep { opacity: 0.3; }
.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(126,173,185,0.1);
  border: 1px solid rgba(126,173,185,0.2);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  width: fit-content;
}
.page-hero h1 { color: #fff; margin-bottom: 18px; max-width: 740px; }
.page-hero .lead { color: rgba(255,255,255,0.6); max-width: 580px; }
.page-hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── 10. CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-md);
}
.card:hover {
  border-color: rgba(101,149,161,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--teal-pale);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 22px; height: 22px; }
.card-icon.gold { background: var(--gold-light); color: var(--gold); }
.card-icon.navy { background: rgba(15,30,60,0.06); color: var(--navy); }
.card-title { font-family: var(--font-head); font-size: 1.1rem; color: var(--text); margin-bottom: 10px; }
.card-text  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* ─── 11. WHO WE HELP CARDS ──────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.who-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition-md);
  position: relative;
  overflow: hidden;
}
.who-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  opacity: 0;
  transition: opacity var(--transition-md);
}
.who-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(101,149,161,0.2); }
.who-card:hover::after { opacity: 1; }
.who-icon { font-size: 2rem; margin-bottom: 14px; display: block; line-height: 1; }
.who-title { font-family: var(--font-head); font-size: 0.95rem; color: var(--text); margin-bottom: 8px; }
.who-text  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; }

/* ─── 12. SERVICE OVERVIEW CARDS ─────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-md);
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  border-color: rgba(101,149,161,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.svc-card-top { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.svc-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--teal-pale);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-icon svg { width: 19px; height: 19px; }
.svc-title { font-family: var(--font-head); font-size: 1rem; color: var(--text); line-height: 1.3; }
.svc-text  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; flex: 1; margin-bottom: 14px; }
.svc-for   {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-light); border-top: 1px solid var(--border); padding-top: 12px; margin-top: auto;
}
.svc-for span { color: var(--teal); }

/* ─── 13. DETAILED SERVICE CARDS (services.html) ─────────────── */
.service-detail {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  transition: all var(--transition-md);
}
.service-detail:hover { border-color: rgba(101,149,161,0.2); box-shadow: var(--shadow); }
.sd-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.sd-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--teal-pale);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sd-icon svg { width: 22px; height: 22px; }
.sd-title   { font-family: var(--font-head); font-size: 1.2rem; color: var(--text); margin-bottom: 4px; }
.sd-for     { font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--teal); }
.sd-body    { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; }
.sd-benefits { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.sd-benefit {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: var(--text-body);
}
.sd-benefit svg { color: var(--teal); margin-top: 2px; width: 16px; height: 16px; }

/* ─── 14. CLOUD SOFTWARE ─────────────────────────────────────── */
.software-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sw-badge {
  background: var(--white);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition-md);
}
.sw-badge:hover { border-color: rgba(101,149,161,0.25); box-shadow: var(--shadow); transform: translateY(-3px); }
.sw-logo { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; min-height: 52px; display: flex; align-items: center; justify-content: center; }
.sw-logo img { height: 52px; width: auto; display: block; object-fit: contain; }
.sw-name { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-muted); }
.sw-xero .sw-logo  { color: #1ab4d7; }
.sw-qb .sw-logo    { color: #2ca01c; }
.sw-sage .sw-logo  { color: #00be50; }
.sw-fa .sw-logo    { color: #e84e2d; }

/* ─── 15. WHY CHOOSE US ──────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.why-item {
  padding: 38px 32px;
  background: rgba(255,255,255,0.025);
  transition: background var(--transition-md);
}
.why-item:hover { background: rgba(255,255,255,0.055); }
.why-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(126,173,185,0.1);
  color: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-icon svg { width: 20px; height: 20px; }
.why-title { font-family: var(--font-head); font-size: 1.05rem; color: #fff; margin-bottom: 10px; }
.why-text  { font-size: 0.875rem; color: rgba(255,255,255,0.52); line-height: 1.75; }

/* ─── 16. MTD TEASER ─────────────────────────────────────────── */
.mtd-teaser {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  border-radius: var(--radius-xl);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.mtd-teaser::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.mtd-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  width: fit-content;
}
.mtd-teaser h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); color: #fff; margin-bottom: 10px; }
.mtd-teaser p  { color: rgba(255,255,255,0.68); font-size: 0.95rem; line-height: 1.75; max-width: 520px; }

/* ─── 17. PACKAGES ───────────────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pkg-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-md);
}
.pkg-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: rgba(101,149,161,0.25); }
.pkg-card.featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px var(--teal), var(--shadow-md);
}
.pkg-header {
  padding: 26px 26px 20px;
  background: linear-gradient(135deg, #2a4d5c 0%, var(--teal-dark) 100%);
}
.pkg-header.teal { background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%); }
.pkg-tag {
  display: inline-flex;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(126,173,185,0.12);
  border: 1px solid rgba(126,173,185,0.25);
  padding: 3px 9px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.pkg-tag.gold {
  color: var(--gold);
  background: rgba(245,158,11,0.1);
  border-color: rgba(245,158,11,0.25);
}
.pkg-name  { font-family: var(--font-head); font-size: 1.4rem; color: #fff; font-weight: 800; margin-bottom: 4px; }
.pkg-ideal { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.pkg-price {
  padding: 14px 26px 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.01em;
}
.pkg-body {
  padding: 18px 26px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pkg-body ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.pkg-body li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--text-body); }
.pkg-body li svg { color: var(--teal); margin-top: 2px; width: 15px; height: 15px; }
.pkg-featured-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-pale);
  border: 1px solid rgba(101,149,161,0.15);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ─── 18. TIMELINE ───────────────────────────────────────────── */
.timeline { position: relative; padding-left: 36px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, #008799, rgba(0,135,153,0.08));
  border-radius: 1px;
}
.tl-item { position: relative; margin-bottom: 36px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute;
  left: -30px; top: 5px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #008799;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px #008799;
}
.tl-item.key .tl-dot {
  background: #008799;
  box-shadow: 0 0 0 2px #008799;
  width: 16px; height: 16px;
  left: -31px; top: 4px;
}
.tl-date  { font-size: 0.73rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #008799; margin-bottom: 5px; }
.tl-title { font-family: var(--font-head); font-size: 1.05rem; color: var(--text); margin-bottom: 6px; }
.tl-text  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.72; }
.tl-item.key .tl-card {
  background: #008799;
  border-radius: var(--radius-lg);
  padding: 18px 22px;
}
.tl-item.key .tl-date  { color: rgba(255,255,255,0.75); }
.tl-item.key .tl-title { color: #fff; }
.tl-item.key .tl-text  { color: rgba(255,255,255,0.6); }

/* MTD Threshold cards */
.threshold-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.threshold-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-md);
}
.threshold-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.threshold-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.tc-1::before { background: #008799; }
.tc-2::before { background: linear-gradient(90deg, var(--navy), var(--navy-mid)); }
.tc-3::before { background: linear-gradient(90deg, var(--gold), #fbbf24); }
.tc-date   { font-family: var(--font-head); font-size: 0.95rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.tc-amount { font-family: var(--font-head); font-size: 2rem; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.tc-1 .tc-amount { color: #008799; }
.tc-2 .tc-amount { color: var(--navy); }
.tc-3 .tc-amount { color: var(--gold); }
.tc-label { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

/* ─── 19. FD/CFO PAGE ────────────────────────────────────────── */
.fd-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  position: relative;
  overflow: hidden;
}
.fd-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--teal), var(--teal-light));
}
.fd-block.navy-bar::before { background: linear-gradient(to bottom, var(--navy), var(--navy-mid)); }
.fd-block-title { font-family: var(--font-head); font-size: 1.6rem; color: var(--text); margin-bottom: 10px; }
.fd-block-sub   { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 30px; max-width: 600px; }
.fd-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fd-feat {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.fd-feat:hover { border-color: rgba(101,149,161,0.2); background: var(--teal-pale); }
.fd-feat-icon {
  width: 30px; height: 30px;
  background: var(--teal-pale);
  color: var(--teal);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fd-feat-icon svg { width: 14px; height: 14px; }
.fd-feat-text { font-size: 0.875rem; color: var(--text-body); font-weight: 500; line-height: 1.4; }

/* ─── 20. ABOUT PAGE ─────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-item {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-md);
}
.value-item:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: rgba(101,149,161,0.2); }
.value-num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--teal); opacity: 0.18; line-height: 1; margin-bottom: 12px; }
.value-title { font-family: var(--font-head); font-size: 1rem; color: var(--text); margin-bottom: 8px; }
.value-text  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
.quote-block {
  background: #008799;
  border-radius: var(--radius-xl);
  padding: 52px 56px;
  position: relative;
  overflow: hidden;
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: -30px; left: 32px;
  font-family: var(--font-head);
  font-size: 12rem;
  color: rgba(126,173,185,0.07);
  line-height: 1;
  pointer-events: none;
}
.quote-text {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: #fff;
  line-height: 1.4;
  margin-bottom: 20px;
  position: relative; z-index: 1;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.quote-author { font-size: 0.875rem; color: rgba(255,255,255,0.45); position: relative; z-index: 1; }

/* Stats row */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.stat-item {
  padding: 36px 28px;
  text-align: center;
  background: rgba(255,255,255,0.03);
  transition: background var(--transition-md);
}
.stat-item:hover { background: rgba(255,255,255,0.055); }
.stat-num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--teal-light); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); font-weight: 500; }

/* ─── 21. CONTACT FORM ───────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.65fr; gap: 52px; align-items: start; }
.contact-info-panel {
  background: linear-gradient(135deg, #005f6b 0%, #008799 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: sticky;
  top: 100px;
}
.contact-info-panel h3 { color: #fff; margin-bottom: 14px; }
.contact-info-panel .lead { color: rgba(255,255,255,0.55); font-size: 0.93rem; margin-bottom: 32px; }
.c-benefit {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 20px;
}
.c-benefit-icon {
  width: 36px; height: 36px;
  background: rgba(126,173,185,0.1);
  color: var(--teal-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.c-benefit-icon svg { width: 16px; height: 16px; }
.c-benefit-text { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.c-benefit-text strong { color: rgba(255,255,255,0.9); }
.c-email {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 600;
  color: var(--teal-light);
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.c-email:hover { color: #fff; }
.c-email svg { width: 17px; height: 17px; }
.c-email + .c-email { margin-top: 10px; padding-top: 0; border-top: none; }

.form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
}
.form-panel-title { font-family: var(--font-head); font-size: 1.5rem; color: var(--text); margin-bottom: 5px; }
.form-panel-sub   { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-label {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; color: var(--text);
}
.form-input, .form-textarea, .form-select {
  background: var(--off-white);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  padding: 11px 15px;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-light); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(101,149,161,0.1);
}
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.65; }
.form-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
}
.form-error { font-size: 0.73rem; color: #dc2626; display: none; margin-top: 3px; }
.form-input.error, .form-textarea.error, .form-select.error { border-color: #dc2626; }
.form-success {
  display: none;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.form-success.visible { display: block; }
.form-success h3  { color: #fff; margin-bottom: 10px; }
.form-success p   { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.success-ico {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
}

/* ─── 22. CTA SECTION ────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #004a55 0%, #006b78 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 75% at 50% 0%, rgba(101,149,161,0.13) 0%, transparent 65%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; margin-bottom: 14px; }
.cta-section .lead { color: rgba(255,255,255,0.58); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── 23. PRIVACY PAGE ───────────────────────────────────────── */
.privacy-content { max-width: 760px; margin: 0 auto; }
.privacy-content h2 {
  font-size: 1.35rem; color: var(--text); margin: 44px 0 16px;
  padding-top: 44px; border-top: 1px solid var(--border);
}
.privacy-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.privacy-content h3 { font-size: 1.05rem; color: var(--text); margin: 22px 0 8px; }
.privacy-content p  { font-size: 0.93rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 14px; }
.privacy-content ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.privacy-content li { font-size: 0.93rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 5px; }
.privacy-content a  { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }

/* ─── 24. REVEAL ANIMATIONS ──────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal="left"]  { transform: translateX(-24px); }
[data-reveal="left"].revealed  { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(24px); }
[data-reveal="right"].revealed { transform: translateX(0); }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.18s; }
[data-delay="3"] { transition-delay: 0.26s; }
[data-delay="4"] { transition-delay: 0.34s; }
[data-delay="5"] { transition-delay: 0.42s; }
[data-delay="6"] { transition-delay: 0.5s; }

/* ─── 25. UTILITIES ──────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 20px;
}
.badge-teal { background: var(--teal-pale); color: var(--teal-dark); border: 1px solid rgba(101,149,161,0.14); }
.badge-navy { background: rgba(15,30,60,0.06); color: var(--navy); border: 1px solid rgba(15,30,60,0.1); }
.divider { border: none; height: 1px; background: var(--border); margin: 0; }
.text-center { text-align: center; }
.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; } .mt-48 { margin-top:  48px; }
.mb-8  { margin-bottom:  8px; } .mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }

/* ─── 26. RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid    { grid-template-columns: 1fr 1fr; }
  .grid-4, .packages-grid, .software-grid { grid-template-columns: repeat(2,1fr); }
  .who-grid    { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  :root { --section-pad: 72px; }
  .nav-links, .nav-cta-wrap { display: none; }
  .mobile-toggle  { display: flex; }
  .logo img       { height: 34px; }
  .service-grid   { grid-template-columns: 1fr 1fr; }
  .grid-3         { grid-template-columns: 1fr 1fr; }
  .grid-2         { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-panel { position: static; }
  .mtd-teaser     { grid-template-columns: 1fr; padding: 40px 36px; }
  .threshold-grid { grid-template-columns: 1fr; gap: 14px; }
  .values-grid    { grid-template-columns: 1fr 1fr; }
  .fd-features    { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .stats-row      { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  :root { --section-pad: 56px; }
  .grid-3, .service-grid, .who-grid { grid-template-columns: 1fr; }
  .grid-4, .packages-grid, .software-grid { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
  .values-grid  { grid-template-columns: 1fr; }
  .stats-row    { grid-template-columns: 1fr 1fr; }
  .form-panel, .contact-info-panel { padding: 28px 24px; }
  .fd-block     { padding: 32px 28px; }
  .quote-block  { padding: 36px 28px; }
  .cta-actions  { flex-direction: column; align-items: center; }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn { width: 100%; justify-content: center; }
}
@media (max-width: 420px) {
  .software-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Footer layout on mobile */
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
  }
  .footer-grid > div:first-child { order: 1; }
  .footer-grid > div:nth-child(2) { order: 3; }
  .footer-grid > div:nth-child(3) { order: 4; }
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 0;
    margin-bottom: 36px;
    order: 2;
  }
  .footer-grid .footer-col { text-align: center; }
  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3) { margin-top: 0; }
  .footer-social { justify-content: center; }
  .footer-google-badge { flex-wrap: wrap; justify-content: center; }
  .fg-text { flex-basis: 100%; text-align: center; margin-top: 2px; }
  .footer-badge,
  .footer-google-badge,
  .footer-yell-badge {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    margin-bottom: 10px;
  }
  .credentials-logos {
    flex-direction: column;
    align-items: center;
  }
  .credentials-logo {
    flex: none;
    width: auto;
    max-width: 240px;
    height: 90px;
  }
}

/* Reviews page CTA buttons — stack vertically on mobile */
@media (max-width: 640px) {
  .google-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .google-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .google-cta-strip { flex-direction: column; }
}
