:root {
  --blue: #2515ef;
  --blue-deep: #160d86;
  --blue-dark: #0e0a46;
  --blue-soft: #eceaff;
  --ink: #111327;
  --muted: #5d627a;
  --line: #dfe2ee;
  --white: #ffffff;
  --surface: #f5f6fb;
  --shadow: 0 24px 70px rgba(18, 14, 83, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  background: var(--white);
  color: var(--blue-dark);
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(19, 17, 64, 0.08);
}
.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  text-decoration: none;
}
.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong {
  font-size: 1.04rem;
  letter-spacing: .015em;
}
.brand-copy small {
  margin-top: 5px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  font-size: .68rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.primary-nav a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  font-size: .93rem;
  transition: color .2s ease, transform .2s ease;
}
.primary-nav a:hover,
.primary-nav a:focus-visible { color: var(--blue); }
.primary-nav .nav-cta {
  color: var(--white);
  background: var(--blue);
  padding: 11px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(37, 21, 239, .22);
}
.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus-visible {
  color: var(--white);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: var(--blue-soft);
  padding: 11px;
  cursor: pointer;
}
.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--blue-dark);
  border-radius: 10px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(10, 6, 58, .98), rgba(31, 15, 176, .97) 54%, rgba(37, 21, 239, .92));
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  pointer-events: none;
}
.hero-orb-one {
  width: 420px;
  height: 420px;
  right: -120px;
  top: -130px;
  background: rgba(255,255,255,.12);
}
.hero-orb-two {
  width: 280px;
  height: 280px;
  left: 46%;
  bottom: -130px;
  background: rgba(255,255,255,.07);
}
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  gap: 70px;
  align-items: center;
  padding-block: 95px 105px;
}
.eyebrow {
  margin: 0 0 14px;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
.eyebrow.dark { color: var(--blue); }
.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(3rem, 6.6vw, 5.8rem);
  line-height: .97;
  letter-spacing: -.055em;
}
.hero-lead {
  max-width: 650px;
  margin: 27px 0 0;
  color: rgba(255,255,255,.79);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 21px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button-primary {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: 0 13px 34px rgba(0,0,0,.17);
}
.button-secondary {
  border-color: rgba(255,255,255,.32);
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.button-outline {
  border-color: rgba(37,21,239,.28);
  color: var(--blue-dark);
  background: transparent;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-top: 45px;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}
.trust-row span {
  position: relative;
  padding-left: 18px;
}
.trust-row span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .64em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  opacity: .85;
}
.trust-row b { color: var(--white); }

.hero-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.095);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 70px rgba(6,4,37,.3);
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255,255,255,.11), transparent 42%);
  pointer-events: none;
}
.hero-card-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.hero-card-top img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 22px;
  background: var(--white);
}
.hero-card-top p {
  margin: 0 0 4px;
  color: rgba(255,255,255,.65);
  font-weight: 700;
  font-size: .83rem;
}
.hero-card h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -.025em;
}
.tick-list {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 16px;
}
.tick-list li {
  position: relative;
  padding-left: 31px;
  color: rgba(255,255,255,.82);
}
.faq-account-badge {
  display: inline-block;

  margin-top: 14px;
  padding: 10px 16px;

  border-radius: 999px;

  background: #2515ef;
  color: #ffffff;

  font-size: 13px;
  font-weight: 850;

  text-decoration: none;

  box-shadow:
    0 8px 20px rgba(37, 21, 239, .18);

  transition:
    transform .2s ease,
    background .2s ease;
}

.faq-account-badge:hover {
  background: #160d86;
  transform: translateY(-1px);
}
.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  color: var(--white);
  font-size: .75rem;
  font-weight: 900;
}

.section { padding: 105px 0; }
.split-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: start;
}
.section-heading h2 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(2.3rem, 4.2vw, 4.15rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.section-heading.centred {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-heading.centred h2 { margin-inline: auto; }
.section-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.section-heading.light h2,
.section-heading.light > p:last-child { color: var(--white); }
.section-heading.light > p:last-child { opacity: .72; }
.intro-copy {
  padding-top: 8px;
  font-size: 1.1rem;
  color: var(--muted);
}
.intro-copy p { margin: 0 0 20px; }

.services { background: var(--surface); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.services-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.service-card {
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(20, 18, 73, .08);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(31, 26, 83, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37,21,239,.18);
  box-shadow: 0 24px 56px rgba(31,26,83,.12);
}
.icon-shell {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--blue);
}
.icon-shell svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  margin: 24px 0 10px;
  font-size: 1.27rem;
  letter-spacing: -.02em;
}
.service-card p { margin: 0; color: var(--muted); }

.branches {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 5%, rgba(255,255,255,.1), transparent 25%),
    linear-gradient(135deg, var(--blue-dark), var(--blue-deep));
}
.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
.branch-card {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 24px 58px rgba(0,0,0,.2);
}
.branch-card-head {
  display: flex;
  align-items: center;
  gap: 17px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}
.branch-number {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
  letter-spacing: .05em;
}
.branch-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.branch-card h3 {
  margin: 2px 0 0;
  font-size: 1.8rem;
  letter-spacing: -.035em;
}
.branch-card address {
  margin: 28px 0;
  min-height: 175px;
  color: var(--muted);
  font-style: normal;
  font-size: 1.05rem;
}
.branch-links {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.branch-links a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.branch-links span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}
.branch-links strong {
  color: var(--blue-dark);
  font-size: .94rem;
  overflow-wrap: anywhere;
}
.button-branch {
  width: 100%;
  background: var(--blue-soft);
  color: var(--blue-deep);
}
.button-branch:hover,
.button-branch:focus-visible {
  background: var(--blue);
  color: var(--white);
}

.cta-strip {
  padding: 72px 0;
  background: var(--white);
}
.cta-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}
.cta-layout h2 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.cta-actions { margin-top: 0; justify-content: flex-end; }
.cta-strip .button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 35px rgba(37,21,239,.22);
}

.site-footer {
  padding: 58px 0 24px;
  color: rgba(255,255,255,.75);
  background: #09072d;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-brand img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 20px;
  background: var(--white);
}
.footer-brand strong { color: var(--white); font-size: 1.2rem; }
.footer-brand p { margin: 4px 0 0; }
.footer-meta {
  display: grid;
  gap: 7px;
  text-align: right;
}
.footer-meta a {
  text-decoration: none;
  color: rgba(255,255,255,.73);
}
.footer-meta a:hover,
.footer-meta a:focus-visible { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.48);
  font-size: .84rem;
}
.footer-bottom p { margin: 0; }

.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .menu-button { display: block; }
  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(20,18,73,.09);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 13px 8px; }
  .primary-nav .nav-cta { margin-top: 8px; text-align: center; }

  .hero { min-height: auto; }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-block: 78px 88px;
  }
  .hero-card { max-width: 670px; }

  .split-layout { grid-template-columns: 1fr; gap: 36px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-layout { grid-template-columns: 1fr; gap: 28px; }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .nav-wrap { min-height: 76px; }
  .brand img { width: 54px; height: 54px; }
  .brand-copy strong { font-size: .94rem; }
  .brand-copy small { font-size: .58rem; }

  .hero-layout { padding-block: 64px 72px; }
  .hero h1 { font-size: clamp(2.85rem, 13vw, 4.6rem); }
  .hero-card { padding: 22px; }
  .hero-card-top { grid-template-columns: 72px 1fr; gap: 15px; }
  .hero-card-top img { width: 72px; height: 72px; border-radius: 16px; }
  .hero-card h2 { font-size: 1.25rem; }
  .trust-row { gap: 12px 20px; }

  .section { padding: 78px 0; }
  .section-heading.centred { margin-bottom: 34px; }
  .service-grid,
  .branch-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .branch-card { padding: 25px; }
  .branch-card address { min-height: auto; }
  .branch-links a { display: grid; }
  .cta-strip { padding: 58px 0; }
  .cta-actions { display: grid; width: 100%; }
  .cta-actions .button { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* Google reviews */
.reviews-section {
  background: var(--surface);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 34px auto 0;
}
.review-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(18, 14, 83, .08);
  text-align: left;
}
.review-card h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}
.review-card p {
  margin: 0 0 20px;
  color: var(--muted);
}
.review-card .button {
  width: 100%;
}
@media (max-width: 700px) {
  .reviews-grid { grid-template-columns: 1fr; }
}


/* ===== GOOGLE CUSTOMER REVIEWS MASTER ===== */
.customer-reviews{background:#f7f8fc}.customer-reviews .section-heading{margin-bottom:34px}.reviews-stars{margin-top:12px;color:#ffb400;font-size:2rem;letter-spacing:.12em}.customer-review-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}.customer-review-card{position:relative;min-height:360px;padding:29px 28px 25px;display:flex;flex-direction:column;border:1px solid #e3e5ee;border-radius:18px;background:#fff;box-shadow:0 10px 28px rgba(18,19,47,.07);transition:transform .2s ease,box-shadow .2s ease}.customer-review-card:hover{transform:translateY(-3px);box-shadow:0 18px 38px rgba(18,19,47,.11)}.review-stars{margin-bottom:15px;color:#ffb400;font-size:1.25rem;letter-spacing:.08em}.review-quote{position:absolute;top:54px;left:26px;color:#2515ef;font-family:Georgia,serif;font-size:3rem;font-weight:900;line-height:1}.review-text{margin:7px 0 28px;padding-left:39px;color:#272938;font-size:.97rem;line-height:1.62}.review-footer{margin-top:auto;padding-top:20px;border-top:1px solid #e4e6ed;display:flex;align-items:center;gap:13px}.review-avatar{flex:0 0 46px;width:46px;height:46px;border-radius:50%;display:grid;place-items:center;background:#2515ef;color:#fff;font-size:.9rem;font-weight:850}.review-author{min-width:0;display:grid}.review-author strong{color:#111327;font-size:.94rem;line-height:1.3}.review-author span{margin-top:4px;color:#2515ef;font-size:.78rem;font-weight:750}.review-support{margin-top:34px;padding:26px 28px;display:grid;grid-template-columns:.9fr 1.4fr;gap:30px;align-items:center;border:1px solid #e0e6ff;border-radius:20px;background:#eef4ff}.review-support-copy{display:flex;align-items:center;gap:18px}.support-icon{flex:0 0 54px;width:54px;height:54px;border:2px solid #2515ef;border-radius:50%;display:grid;place-items:center;color:#2515ef;font-size:1.9rem;font-weight:700}.review-support h3{margin:0 0 5px;color:#0e286f;font-size:1.2rem;text-transform:uppercase;letter-spacing:.03em}.review-support p{margin:0;color:#5d627a;font-size:.9rem}.review-buttons{display:grid;grid-template-columns:1fr 1fr;gap:13px}.review-button{min-height:80px;padding:15px 20px;border-radius:12px;display:flex;flex-direction:column;justify-content:center;text-decoration:none;transition:transform .2s ease,box-shadow .2s ease}.review-button:hover{transform:translateY(-2px)}.review-button strong{font-size:.94rem;text-transform:uppercase}.review-button span{margin-top:4px;font-size:.8rem}.review-button-primary{background:#1452d8;color:#fff;box-shadow:0 10px 25px rgba(20,82,216,.2)}.review-button-secondary{border:2px solid #2458de;background:#fff;color:#1748c8}.customer-review-card.extra-review{display:none}.customer-review-grid.reviews-expanded .customer-review-card.extra-review{display:flex}.all-review-toggle-wrap{display:flex;justify-content:center;margin-top:22px}.all-review-toggle{border:0;border-radius:999px;padding:13px 23px;background:#2515ef;color:#fff;font:inherit;font-weight:800;cursor:pointer;box-shadow:0 10px 24px rgba(37,21,239,.18);transition:transform .2s ease,background .2s ease}.all-review-toggle:hover{background:#160d86;transform:translateY(-2px)}@media(max-width:980px){.customer-review-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.review-support{grid-template-columns:1fr}}@media(max-width:720px){.customer-reviews{padding-top:55px;padding-bottom:55px}.customer-reviews .section-heading{margin-bottom:26px}.customer-reviews .section-heading h2{font-size:2rem;line-height:1.1}.reviews-stars{margin-top:8px;font-size:1.45rem;letter-spacing:.08em}.customer-review-grid{grid-template-columns:1fr;gap:14px}.customer-review-card{min-height:0;padding:20px 18px 18px;border-radius:14px}.review-stars{margin-bottom:9px;font-size:1rem}.review-quote{top:46px;left:17px;font-size:2.1rem}.review-text{margin:4px 0 20px;padding-left:30px;font-size:.9rem;line-height:1.55}.review-footer{padding-top:14px;gap:10px}.review-avatar{flex:0 0 38px;width:38px;height:38px;font-size:.78rem}.review-author strong{font-size:.87rem}.review-author span{margin-top:2px;font-size:.72rem}.customer-review-card.mobile-hidden-review{display:none}.customer-review-grid.reviews-expanded .customer-review-card.mobile-hidden-review,.customer-review-grid.reviews-expanded .customer-review-card.extra-review{display:flex}.review-support{margin-top:22px;padding:20px 17px;grid-template-columns:1fr;gap:18px;border-radius:15px}.review-support-copy{gap:12px;align-items:flex-start}.support-icon{flex:0 0 42px;width:42px;height:42px;font-size:1.45rem}.review-support h3{font-size:.95rem}.review-support p{font-size:.8rem;line-height:1.45}.review-buttons{grid-template-columns:1fr;gap:10px}.review-button{min-height:64px;padding:12px 15px}.review-button strong{font-size:.82rem}.review-button span{font-size:.73rem}}


/* =========================================
   BRANCH PHOTOS - CORRECTED
   ========================================= */

.branch-photo {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  margin: 0 0 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(18, 19, 47, .10);
}

.branch-card:first-child .branch-photo {
  object-position: center 48%;
}

.branch-card:nth-child(2) .branch-photo {
  object-position: center 42%;
}

@media (max-width: 720px) {
  .branch-photo {
    height: 220px;
    margin-bottom: 19px;
    border-radius: 14px;
  }
}

/* =========================================
   FAQ DROPDOWN SECTION
   ========================================= */
.faq-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(20, 18, 73, .08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(31, 26, 83, .06);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 24px 64px 24px 26px;
  cursor: pointer;
  list-style: none;
  font-size: 1.08rem;
  font-weight: 800;
  color: #141249;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  font-weight: 400;
  color: #2515ef;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 26px 26px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.faq-item[open] summary {
  padding-bottom: 14px;
}

.faq-account-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #2515ef;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: .9rem;
}

.faq-account-badge:hover {
  background: #160d86;
}

@media (max-width: 600px) {
  .faq-item summary {
    padding: 20px 55px 20px 20px;
  }

  .faq-answer {
    padding: 0 20px 22px;
  }

  .faq-item summary::after {
    right: 20px;
  }
}



/* WHY BUY LOCAL HOMEPAGE BUTTON */
.hero-actions .button-local {
  flex-basis: 100%;
  width: fit-content;
  max-width: 100%;
  border-color: rgba(255,255,255,.32);
  color: var(--white);
  background: rgba(255,255,255,.12);
}
.hero-actions .button-local:hover,
.hero-actions .button-local:focus-visible {
  background: var(--white);
  color: var(--blue-dark);
}
@media (min-width: 721px) {
  .hero-actions .button-local {
    flex-basis: auto;
    width: auto;
  }
}
@media (max-width: 720px) {
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .hero-actions .button {
    width: 100%;
    min-width: 0;
    padding-left: 14px;
    padding-right: 14px;
    text-align: center;
  }
  .hero-actions .button-local {
    grid-column: 1 / -1;
    width: 100%;
  }
}
