html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  color: var(--blue-ink);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--blue-ink);
  line-height: 1.1;
}

p {
  color: var(--gray-text);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding: var(--section-pad) 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 16px;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-head h2 {
  font-size: var(--text-display);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-head p {
  font-size: var(--text-lead);
  color: var(--gray-text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  position: relative;
  color: var(--white);
  background: var(--blue-mid);
  overflow: hidden;
  z-index: 1;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--blue-mid-dark), var(--blue-mid), var(--blue-mid-dark));
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.4s ease;
  z-index: -1;
}
.btn-primary:hover::before {
  background-position: 0 0;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(59, 91, 219, 0.45);
}

.btn-ghost {
  color: var(--blue-mid);
  border: 1.5px solid var(--blue-mid);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--blue-deep);
  border: 1.5px solid var(--gray-soft);
  background: var(--white);
}
.btn-outline:hover {
  border-color: var(--blue-mid);
  color: var(--blue-mid);
}

.btn-white {
  color: var(--blue-mid);
  background: var(--white);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(0,0,0,0.2);
}

.btn-ghost-white {
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: transparent;
}
.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* NAV */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--gray-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 28px;
  width: auto;
}
.nav-logo-white {
  display: none;
  filter: brightness(0) invert(1);
}

/* Nav on a page whose hero is a dark background: while un-scrolled
   (transparent nav) the default dark-ink logo/links would be invisible
   against the dark hero, so swap to light variants until scroll kicks in. */
.site-nav.nav-on-dark:not(.scrolled) .nav-logo-default {
  display: none;
}
.site-nav.nav-on-dark:not(.scrolled) .nav-logo-white {
  display: inline-block;
}
.site-nav.nav-on-dark:not(.scrolled) .nav-links > a,
.site-nav.nav-on-dark:not(.scrolled) .nav-links > .nav-item-dropdown > a {
  color: rgba(255, 255, 255, 0.85);
}
.site-nav.nav-on-dark:not(.scrolled) .nav-links > a:hover,
.site-nav.nav-on-dark:not(.scrolled) .nav-links > a.active,
.site-nav.nav-on-dark:not(.scrolled) .nav-links > .nav-item-dropdown > a:hover,
.site-nav.nav-on-dark:not(.scrolled) .nav-links > .nav-item-dropdown > a.active {
  color: var(--white);
  border-bottom-color: var(--white);
}
.site-nav.nav-on-dark:not(.scrolled) .btn-portal {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.site-nav.nav-on-dark:not(.scrolled) .btn-portal:hover {
  background: rgba(255, 255, 255, 0.1);
}
.site-nav.nav-on-dark:not(.scrolled) .nav-toggle span {
  background: var(--white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--blue-ink);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-mid);
  border-bottom-color: var(--blue-mid);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.btn-portal {
  border: 1.5px solid var(--blue-mid);
  color: var(--blue-mid);
  border-radius: var(--radius-xl);
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  transition: background 0.2s ease;
}
.btn-portal:hover {
  background: var(--blue-light);
}
.portal-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--blue-ink);
  color: var(--white);
  font-size: 13px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.portal-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

/* Services dropdown */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -4px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 48px -12px rgba(15, 30, 74, 0.18);
  padding: 12px;
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  border-bottom: none;
}
.dropdown-menu a:hover {
  background: var(--blue-light);
  color: var(--blue-mid);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 1100;
}
.nav-toggle span {
  height: 2px;
  background: var(--blue-ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  padding: 96px 32px 40px;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 20px 60px rgba(15, 30, 74, 0.15);
  display: flex;
  flex-direction: column;
  max-height: 100vh;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-overlay a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 600;
  padding: 10px 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-overlay.open a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-overlay.open > a:nth-child(2) { transition-delay: 0.1s; }
.mobile-overlay.open > a:nth-child(3) { transition-delay: 0.15s; }
.mobile-overlay.open > a:nth-child(4) { transition-delay: 0.2s; }
.mobile-overlay.open > a:nth-child(5) { transition-delay: 0.25s; }

.mobile-nav-item-dropdown {
  display: flex;
  flex-direction: column;
}
.mobile-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mobile-nav-toggle-btn {
  background: none;
  border: none;
  padding: 10px;
  margin: 0;
  color: var(--blue-ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.mobile-nav-item-dropdown.open .mobile-nav-toggle-btn {
  transform: rotate(180deg);
}
.mobile-nav-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.mobile-nav-item-dropdown.open .mobile-nav-submenu {
  max-height: 320px;
}
.mobile-nav-submenu a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-text);
  padding: 8px 0 8px 4px;
  transition: color 0.2s ease;
}
.mobile-nav-submenu a:hover {
  color: var(--blue-mid);
}

/* FOOTER */
.site-footer {
  background: var(--blue-ink);
  color: var(--gray-muted);
  padding: 96px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer-grid img { height: 26px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-grid h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.footer-grid ul li { margin-bottom: 12px; }
.footer-grid a, .footer-grid p {
  color: var(--gray-muted);
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-grid a:hover { color: var(--white); }
.footer-contact p { margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid var(--white-glass);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-badges .badge {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-muted);
  border: 1px solid var(--white-glass);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  color: var(--gray-muted);
  font-size: 13px;
}
.footer-social a:hover { color: var(--white); }
.footer-legal {
  font-size: 13px;
}

/* Custom cursor */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-ink);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.15s ease;
  opacity: 0;
}
.cursor-dot.active { opacity: 1; }
.cursor-dot.grow {
  transform: translate(-50%, -50%) scale(2.5);
  background: transparent;
  border: 1.5px solid #3B5BDB;
  opacity: 0.6;
}

@media (hover: none) {
  .cursor-dot { display: none; }
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links, .nav-right .btn-portal { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 0 80px;
  overflow: hidden;
  background-color: var(--white);
  background-image: radial-gradient(circle, rgba(59, 91, 219, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 80px;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}
/* Text and buttons live in one grid column, sized to their own content, so the
   taller calendar column next to them can never stretch/inflate the gap
   between the subtext and the buttons below it. */
.hero-col-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hero-accent-line {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--blue-mid);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 300;
  color: var(--blue-ink);
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.hero-headline .hl {
  color: var(--blue-mid);
  font-weight: 600;
}
.hero-headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.hero-headline .word.in-view {
  opacity: 1;
  transform: translateY(0);
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--gray-text);
  max-width: 400px;
  margin: 28px 0 0;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
/* Hero CTAs follow the spec's exact hover values without altering the
   shared .btn-primary/.btn-ghost styles used elsewhere on the site. */
.hero-ctas .btn-primary:hover {
  box-shadow: 0 8px 24px rgba(59, 91, 219, 0.35);
}
.hero-ctas .btn-ghost {
  border-color: var(--blue-deep);
  color: var(--blue-deep);
}
.hero-ctas .btn-ghost:hover {
  background: var(--blue-deep);
  color: var(--white);
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ============ TAX DEADLINE CALENDAR WIDGET ============ */
.tax-calendar-widget {
  width: 100%;
  max-width: 400px;
  background: var(--white);
  border-top: 3px solid var(--blue-mid);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(15, 30, 74, 0.10), 0 4px 16px rgba(15, 30, 74, 0.06);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}
.tax-calendar-widget.tcw-ready {
  opacity: 1;
  transform: translateY(0);
}
.tcw-header h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-ink);
  margin-bottom: 18px;
}
.tcw-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-soft);
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}
.tcw-row:last-child {
  border-bottom: none;
}
.tcw-row:hover {
  background: var(--blue-light);
}
.tcw-badge {
  flex-shrink: 0;
  width: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 0;
  border-radius: 12px;
  background: var(--blue-mid);
  color: var(--white);
}
.tcw-row.tcw-status-urgent .tcw-badge {
  background: var(--red-urgent);
}
.tcw-row.tcw-status-done .tcw-badge {
  background: var(--gray-soft);
  color: var(--gray-muted);
}
.tcw-badge-month {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-variant: small-caps;
  text-transform: uppercase;
}
.tcw-badge-day {
  font-family: var(--font-mono);
  font-size: 22px;
  line-height: 1;
}
.tcw-info {
  flex: 1;
  min-width: 0;
}
.tcw-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-ink);
}
.tcw-desc {
  font-size: 12px;
  color: var(--gray-text);
  margin-top: 2px;
}
.tcw-row.tcw-status-done .tcw-label,
.tcw-row.tcw-status-done .tcw-desc {
  color: var(--gray-muted);
}
.tcw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.tcw-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
}
.tcw-tag-individual { background: var(--tag-individual-bg); color: var(--tag-individual-text); }
.tcw-tag-business { background: var(--tag-business-bg); color: var(--tag-business-text); }
.tcw-tag-extended { background: var(--tag-extended-bg); color: var(--tag-extended-text); }
.tcw-tag-estimated { background: var(--tag-estimated-bg); color: var(--tag-estimated-text); }
.tcw-row.tcw-status-done .tcw-tag {
  background: var(--gray-soft);
  color: var(--gray-muted);
}
.tcw-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--blue-ink);
}
.tcw-next-label {
  font-size: 13px;
  color: var(--white);
}
.tcw-next-label strong {
  font-weight: 700;
}
.tcw-days-short {
  display: none;
}
.tcw-book-btn {
  flex-shrink: 0;
  background: var(--blue-mid);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  transition: transform 0.2s ease;
}
.tcw-book-btn:hover {
  transform: translateY(-1px);
}

/* ============ TRUST / CREDENTIALS STRIP ============ */
.trust-strip {
  background: var(--blue-deep);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.trust-strip.in-view {
  opacity: 1;
  transform: translateY(0);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.trust-item:last-child {
  border-right: none;
}
.trust-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg {
  width: 20px;
  height: 20px;
}
.trust-text {
  display: flex;
  flex-direction: column;
}
.trust-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  line-height: 1.3;
  white-space: nowrap;
}
.trust-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
  white-space: nowrap;
}

/* ============ FEATURED IN STRIP ============ */
.featured-in-strip {
  background: #F7F8FC;
  padding: 14px 80px;
  border-top: 1px solid #E8EAF0;
  border-bottom: 1px solid #E8EAF0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.featured-in-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #9CA3AF;
  white-space: nowrap;
  text-transform: uppercase;
}
.featured-in-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.featured-in-logo {
  height: 32px;
  width: auto;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.3s ease;
  display: block;
}
.featured-in-logo:hover {
  filter: grayscale(0%) opacity(1);
}

@media (max-width: 768px) {
  .featured-in-strip {
    padding: 16px 24px;
    gap: 16px;
    justify-content: center;
  }
  .featured-in-label {
    font-size: 10px;
  }
  .featured-in-logo {
    height: 28px;
  }
}

/* Mobile-only auto-scrolling ribbon version of the trust strip.
   Kept as a fully separate section (rather than reusing .trust-strip)
   so the desktop layout above can never be affected by ribbon changes. */
.trust-strip-mobile {
  display: none;
}

@media (max-width: 768px) {
  .nav-logo img {
    height: 20px;
  }
  .trust-strip {
    display: none;
  }
  .trust-strip-mobile {
    display: block;
    background: var(--blue-deep);
    padding: 24px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  .trust-strip-mobile.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  .trust-strip-viewport {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }
  .trust-strip-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: trust-strip-scroll 22s linear infinite;
  }
  .trust-strip-track:hover {
    animation-play-state: paused;
  }
  .trust-strip-mobile .trust-item {
    flex: 0 0 auto;
    padding: 0 28px;
  }
}

@keyframes trust-strip-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes trust-strip-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SERVICES SECTION (home, interactive rows) ============ */
.services-v2-section {
  background: var(--white);
  padding: 80px 48px;
}
.services-v2-head .eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
}
.services-v2-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--blue-ink);
  line-height: 1.15;
  margin-bottom: 10px;
}
.services-v2-head p {
  font-size: 16px;
  color: var(--gray-text);
  margin-bottom: 48px;
}

.service-row-v2 {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 16px;
  border-top: 1px solid var(--gray-soft);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.25s ease;
  opacity: 0;
  transform: translateY(24px);
}
.service-row-v2.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.services-list-v2 > .service-row-v2:last-child {
  border-bottom: 1px solid var(--gray-soft);
}
.service-row-num {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 28px;
  color: var(--gray-soft);
  transition: color 0.3s ease;
}
.service-row-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--blue-ink);
  margin-bottom: 4px;
}
.service-row-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-text);
}
.service-row-tags-mobile {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.35s ease;
}
.service-row-learnmore {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-mid);
  margin-top: 10px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}
.service-tag-pill {
  display: inline-flex;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(59, 91, 219, 0.10);
  color: var(--blue-mid);
}
.service-row-arrow {
  font-size: 20px;
  color: var(--gray-muted);
  transition: transform 0.3s ease, color 0.3s ease;
}
.service-row-tags-desktop {
  display: flex;
  gap: 8px;
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translate(12px, -50%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.service-row-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Desktop: pure CSS hover (no JS) */
.service-row-v2:hover {
  background: var(--blue-light);
}
.service-row-v2:hover .service-row-num {
  color: var(--blue-mid);
}
.service-row-v2:hover .service-row-tags-desktop {
  transform: translate(0, -50%);
  opacity: 1;
}
.service-row-v2:hover .service-row-arrow {
  transform: rotate(45deg);
  color: var(--blue-mid);
}

/* Touch devices: JS-driven tap-to-expand instead of CSS hover */
.services-v2-section.is-touch .service-row-v2:hover {
  background: none;
}
.services-v2-section.is-touch .service-row-v2:hover .service-row-num {
  color: var(--gray-soft);
}
.services-v2-section.is-touch .service-row-v2:hover .service-row-arrow {
  transform: none;
  color: var(--gray-muted);
}
.services-v2-section.is-touch .service-row-tags-desktop,
.services-v2-section.is-touch .service-row-arrow {
  display: none;
}
.services-v2-section.is-touch .service-row-v2.active {
  background: var(--blue-light);
  border-left: 3px solid var(--blue-mid);
}
.services-v2-section.is-touch .service-row-v2.active .service-row-num {
  color: var(--blue-mid);
}
.services-v2-section.is-touch .service-row-v2.active .service-row-tags-mobile {
  max-height: 80px;
  margin-top: 12px;
}
.services-v2-section.is-touch .service-row-v2.active .service-row-learnmore {
  opacity: 1;
  max-height: 30px;
}

@media (max-width: 768px) {
  .services-v2-section {
    padding: 48px 24px;
  }
  .service-row-num {
    font-size: 22px;
  }
  .service-row-title {
    font-size: 17px;
  }
  .service-row-v2 {
    grid-template-columns: 48px 1fr;
  }
  .service-row-tags-desktop,
  .service-row-arrow {
    display: none;
  }
}

/* ============ INDUSTRIES CAROUSEL ============ */
.industries-scroll {
  position: relative;
  overflow: hidden;
}
.industries-scroll::before,
.industries-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.industries-scroll::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.industries-scroll::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}
.industries-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding-top: 12px;
  padding-bottom: 20px;
  animation: industries-scroll-left 60s linear infinite;
}
.industries-track:hover {
  animation-play-state: paused;
}
@keyframes industries-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.industry-card {
  flex: 0 0 340px;
  min-width: 340px;
  background: var(--white);
  border: 1px solid var(--gray-soft);
  border-top: 3px solid var(--blue-mid);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(15, 30, 74, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 30, 74, 0.12);
}
.industry-card-img-wrap {
  height: 240px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.industry-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}
.industry-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.industry-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--blue-ink);
  margin-bottom: 8px;
}
.industry-card p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .industries-section {
    padding: 48px 0;
  }
  .industries-scroll::before,
  .industries-scroll::after {
    width: 60px;
  }
  .industries-track-wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .industry-card {
    flex: 0 0 280px;
    min-width: 280px;
  }
  .industry-card-img-wrap {
    height: 180px;
  }
}

/* ============ WHY SECTION (differentiators) ============ */
.why-v2-section {
  background: var(--off-white);
  padding: 80px;
  border-top: 1px solid var(--gray-soft);
}
.why-v2-row {
  display: flex;
  align-items: flex-start;
}
.why-v2-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 0 32px;
  border-right: 1px solid var(--gray-soft);
}
.why-v2-item:first-child {
  padding-left: 0;
}
.why-v2-item:last-child {
  border-right: none;
  padding-right: 0;
}
.why-v2-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--blue-ink);
}
.why-v2-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-text);
}

@media (max-width: 800px) {
  .why-v2-section {
    padding: 48px 24px;
  }
  .why-v2-row {
    flex-direction: column;
    gap: 32px;
  }
  .why-v2-item {
    border-right: none;
    padding: 0;
  }
}

/* ============ TESTIMONIALS (live Google reviews carousel) ============ */
.reviews-summary {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}
.reviews-summary.is-visible {
  display: flex;
}
.reviews-summary-number {
  font-family: var(--font-mono);
  font-size: 48px;
  color: var(--blue-ink);
  line-height: 1;
}
.reviews-summary-stars {
  display: flex;
  gap: 4px;
  margin: 12px 0;
}
.reviews-summary-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--gray-text);
}
.reviews-summary-count svg {
  flex-shrink: 0;
}

.reviews-carousel-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.reviews-carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviews-scroll 36s linear infinite;
}
.reviews-carousel-track:hover {
  animation-play-state: paused;
}
.testimonial-card-v2 {
  flex: 0 0 340px;
  background: var(--off-white);
  border-left: 4px solid var(--blue-mid);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.tc-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.tc-quote {
  color: var(--blue-ink);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tc-avatar,
.tc-avatar-fallback {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}
.tc-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.tc-avatar-fallback {
  background: var(--blue-light);
  color: var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
}
.tc-author-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--blue-ink);
}
.tc-author-role {
  font-size: 12px;
  color: var(--gray-muted);
  margin-top: 2px;
}
.google-link {
  display: inline-block;
  margin-top: 40px;
  color: var(--blue-mid);
  font-weight: 600;
}

/* ============ TEAM TEASER (home) ============ */
.team-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.team-teaser-card {
  display: flex;
  gap: 20px;
  align-items: center;
}
.team-teaser-card img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  flex-shrink: 0;
}
.team-teaser-card h3 {
  font-size: 20px;
  font-weight: 600;
}
.team-teaser-card .cred {
  font-size: 13px;
  color: var(--gray-text);
  margin: 4px 0 8px;
}
.team-teaser-card a {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-mid);
}

@media (max-width: 700px) {
  .team-teaser-grid { grid-template-columns: 1fr; }
}

/* ============ CTA BANNER ============ */
.cta-banner {
  position: relative;
  background: var(--blue-mid);
  color: var(--white);
  overflow: hidden;
  padding: clamp(64px, 8vw, 100px) 0;
  text-align: center;
}
.cta-banner .drift-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-banner .drift-circle.one { width: 420px; height: 420px; top: -160px; left: -100px; }
.cta-banner .drift-circle.two { width: 320px; height: 320px; bottom: -140px; right: -60px; }
.cta-banner h2 {
  color: var(--white);
  font-size: var(--text-display);
  font-weight: 600;
  margin-bottom: 32px;
  position: relative;
}
.cta-banner .btn { position: relative; }

/* ============ FAQ ACCORDION ============ */
.faq-item {
  border-bottom: 1px solid var(--gray-soft);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 16px;
  margin: 0 -16px;
  border-radius: 10px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  color: var(--blue-ink);
  transition: background 0.2s ease, color 0.2s ease;
}
.faq-item.open .faq-question {
  background: var(--off-white);
  color: var(--blue-mid);
}
.faq-icon {
  font-size: 20px;
  color: var(--blue-mid);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
}
.faq-answer p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.7;
  padding: 16px 0 24px;
  max-width: 640px;
}

/* ============ ABOUT HERO ============ */
.about-hero {
  padding: 140px 0 60px;
  background-color: var(--white);
  background-image: radial-gradient(circle, rgba(59, 91, 219, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.about-hero-text .eyebrow {
  margin-bottom: 16px;
}
.about-hero-text h1 {
  font-size: var(--text-display);
  font-weight: 600;
  margin: 0 0 20px;
}
.about-hero-text p {
  font-size: var(--text-lead);
  color: var(--gray-text);
  max-width: 480px;
}
.about-hero-quote {
  position: relative;
  border-left: 3px solid var(--blue-mid);
  padding-left: 24px;
}
.about-hero-quote-mark {
  position: absolute;
  top: -10px;
  left: 24px;
  z-index: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 120px;
  color: var(--blue-light);
  line-height: 1;
  pointer-events: none;
}
.about-hero-quote-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: normal;
  font-size: 22px;
  color: var(--blue-ink);
  line-height: 1.6;
  padding-top: 40px;
}
.about-hero-quote-attribution {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  color: var(--blue-mid);
  margin-top: 16px;
}

@media (max-width: 800px) {
  .about-hero { padding: 120px 0 48px; }
  .about-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-hero-quote-mark { font-size: 80px; }
  .about-hero-quote-text { font-size: 20px; padding-top: 32px; }
}

/* ============ FIRM TIMELINE ============ */
.timeline-section {
  background: var(--white);
  padding: 72px 80px;
}
.timeline-track {
  position: relative;
}
.timeline-line {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gray-soft);
  overflow: hidden;
}
.timeline-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--blue-mid);
  transition: width 1s var(--ease-out-expo);
}
.timeline-line.in-view::before {
  width: 100%;
}
.timeline-items {
  display: flex;
}
.timeline-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}
.timeline-year {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 18px;
  color: var(--blue-mid);
}
.timeline-year-desktop {
  display: block;
  height: 28px;
  line-height: 28px;
}
.timeline-year-mobile {
  display: none;
}
.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-mid);
  margin: 14px 0 20px;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.3);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.timeline-items.in-view .timeline-item:nth-child(1) .timeline-dot { transition-delay: 0.2s; }
.timeline-items.in-view .timeline-item:nth-child(2) .timeline-dot { transition-delay: 0.4s; }
.timeline-items.in-view .timeline-item:nth-child(3) .timeline-dot { transition-delay: 0.6s; }
.timeline-items.in-view .timeline-item:nth-child(4) .timeline-dot { transition-delay: 0.8s; }
.timeline-items.in-view .timeline-dot {
  opacity: 1;
  transform: scale(1);
}
.timeline-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--blue-ink);
  margin-bottom: 6px;
}
.timeline-desc {
  font-size: 13px;
  color: var(--gray-text);
  max-width: 200px;
}

@media (max-width: 800px) {
  .timeline-section { padding: 48px 24px; }
  .timeline-line {
    top: 0;
    bottom: 0;
    left: 5px;
    right: auto;
    width: 1px;
    height: auto;
  }
  .timeline-line::before {
    width: 100%;
    height: 0;
    transition: height 1s var(--ease-out-expo);
  }
  .timeline-line.in-view::before {
    height: 100%;
    width: 100%;
  }
  .timeline-items {
    flex-direction: column;
    gap: 32px;
    padding-left: 28px;
  }
  .timeline-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    position: relative;
  }
  .timeline-year-desktop {
    display: none;
  }
  .timeline-year-mobile {
    display: inline-block;
    margin-bottom: 4px;
  }
  .timeline-dot {
    position: absolute;
    left: -28px;
    top: 4px;
    margin: 0;
  }
  .timeline-item-content {
    display: flex;
    flex-direction: column;
  }
  .timeline-desc {
    max-width: none;
  }
}

/* ============ TEAM CARDS (about, vertical layout) ============ */
.team-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* ---- Flip card ---- */
.team-flip-card {
  perspective: 1200px;
  height: auto;
  min-height: 500px;
  cursor: pointer;
  width: 100%;
  position: relative;
  border-radius: 20px;
}
.team-flip-inner {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 500px;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
}
.team-flip-card:hover .team-flip-inner,
.team-flip-card.flipped .team-flip-inner {
  transform: rotateY(180deg);
}
.team-flip-front,
.team-flip-back {
  position: absolute;
  inset: 0;
  height: 100%;
  border-radius: 20px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}
.team-flip-ghost {
  visibility: hidden;
  pointer-events: none;
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
}

/* FRONT face */
.team-flip-front {
  background: var(--white);
  border: 1px solid #E8EAF0;
  box-shadow: 0 4px 24px rgba(15, 30, 74, 0.08);
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  transform: rotateY(0deg);
}
.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 3px solid #EEF2FF;
  flex-shrink: 0;
  position: relative;
}
.team-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-avatar-img--jigna {
  object-position: center center;
}
.team-initials-fallback {
  display: none;
  width: 100%;
  height: 100%;
  background: #EEF2FF;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #3B5BDB;
}
.team-flip-hint {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #E8EAF0;
}
.team-flip-hint-inner {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #F7F8FC;
  border: 1px solid #E8EAF0;
  border-radius: 50px;
  padding: 7px 16px;
  color: #9CA3AF;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.team-flip-hint-inner svg {
  stroke: #9CA3AF;
  flex-shrink: 0;
  transition: stroke 0.2s;
}
.team-flip-card:hover .team-flip-hint-inner {
  background: #EEF2FF;
  border-color: rgba(59, 91, 219, 0.2);
  color: #3B5BDB;
}
.team-flip-card:hover .team-flip-hint-inner svg {
  stroke: #3B5BDB;
}
@media (hover: hover) and (pointer: fine) {
  .team-flip-hint-text::after { content: 'Hover to see photo'; }
}
@media (hover: none) {
  .team-flip-hint-text::after { content: 'Tap to see photo'; }
}

/* BACK face */
.team-flip-back {
  transform: rotateY(180deg);
  background: #0F1E4A;
}
.team-flip-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.back-initials {
  display: none;
}
.team-flip-back.no-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.team-flip-back.no-photo .back-initials {
  display: block;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
}
.team-flip-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 28px 28px;
  background: linear-gradient(to top, rgba(15, 30, 74, 0.92) 0%, rgba(15, 30, 74, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.team-flip-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.team-flip-title {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}
.team-flip-back-hint {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 6px 14px;
}

/* ---- Shared bio content (front face) ---- */
.team-v2-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.team-v2-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--blue-ink);
}
.team-v2-badge {
  display: inline-block;
  background: var(--blue-mid);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  flex-shrink: 0;
}
.team-v2-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-muted);
  margin-bottom: 14px;
}
.team-v2-years {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--blue-mid);
  margin-bottom: 14px;
}
.team-v2-bio {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 24px;
}
.team-v2-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-muted);
  margin-bottom: 12px;
}
.team-v2-tags {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.team-v2-tag {
  background: var(--blue-light);
  color: var(--blue-mid);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
}
.team-v2-credentials {
  border-top: 1px solid #E8EAF0;
  margin-top: 0;
  margin-bottom: 24px;
  width: 100%;
}
.team-v2-credentials .team-v2-label {
  margin-top: 24px;
  margin-bottom: 12px;
}
.team-v2-credentials .team-v2-tags {
  margin-bottom: 0;
}
.team-v2-credential-tag {
  background: var(--off-white);
  color: var(--blue-ink);
  border: 1px solid var(--gray-soft);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
}

@media (prefers-reduced-motion: reduce) {
  .team-flip-inner {
    transition: none;
  }
}

@media (max-width: 768px) {
  .team-v2-grid { grid-template-columns: 1fr; }
  .team-flip-card {
    height: auto;
    min-height: unset;
  }
  .team-flip-card:hover .team-flip-inner {
    transform: rotateY(0deg);
  }
  .team-flip-card.flipped .team-flip-inner {
    transform: rotateY(180deg);
  }
  .team-flip-inner {
    min-height: unset;
  }
  .team-flip-front,
  .team-flip-ghost {
    padding: 28px 24px 24px;
  }
}

/* ============ ABOUT: BY THE NUMBERS STRIP ============ */
.about-stats-strip {
  background: var(--blue-mid);
  padding: 48px 80px;
}
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.about-stat-item {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.about-stat-item + .about-stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.about-stat-number {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 48px;
  color: var(--white);
}
.about-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
}

@media (max-width: 800px) {
  .about-stats-strip { padding: 28px 16px; }
  .about-stats-row { grid-template-columns: repeat(4, 1fr); }
  .about-stat-item { padding: 0 4px; }
  .about-stat-number { font-size: 22px; }
  .about-stat-label { font-size: 10px; margin-top: 4px; }
}

/* ============ CREDENTIALS (about, card grid) ============ */
.credentials-v2-section {
  background: var(--off-white);
  padding: 72px 80px;
}
.credentials-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.credential-v2-card {
  background: var(--white);
  border: 1px solid var(--gray-soft);
  border-top: 3px solid var(--blue-mid);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.credential-v2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 30, 74, 0.10);
}
.credential-v2-icon {
  display: block;
  margin-bottom: 16px;
}
.credential-v2-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--blue-ink);
  margin-bottom: 6px;
}
.credential-v2-desc {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .credentials-v2-section { padding: 48px 24px; }
  .credentials-v2-grid { grid-template-columns: 1fr; }
}

/* ============ ABOUT CTA BANNER ============ */
.about-cta-accent-bar {
  height: 4px;
  background: linear-gradient(90deg, #3B5BDB, #1E3A8A);
}
.about-cta-banner {
  position: relative;
  background: var(--white);
  padding: 80px;
  border-top: 1px solid var(--gray-soft);
}
.about-cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}
.about-cta-text h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  color: var(--blue-ink);
}
.about-cta-text p {
  font-size: 16px;
  color: var(--gray-text);
  margin-top: 12px;
}
.about-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.about-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-mid);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  padding: 14px 32px;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.about-cta-btn-primary:hover {
  background: var(--blue-mid-dark);
}
.about-cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--blue-deep);
  color: var(--blue-deep);
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  padding: 13px 32px;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.about-cta-btn-ghost:hover {
  background: var(--blue-light);
}

@media (max-width: 700px) {
  .about-cta-banner { padding: 48px 24px; }
  .about-cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-cta-buttons { width: 100%; }
  .about-cta-btn-primary,
  .about-cta-btn-ghost {
    width: 100%;
  }
}

/* ============ SERVICES PAGE HERO (two-column) ============ */
.services-v2-hero {
  padding: 112px 80px 64px;
  background-color: var(--white);
  background-image: radial-gradient(circle, rgba(59, 91, 219, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.services-v2-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.services-v2-hero-text h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--blue-ink);
  line-height: 1.1;
  margin-bottom: 20px;
}
.services-v2-hero-text p {
  font-size: 17px;
  color: var(--gray-text);
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 36px;
}
.services-v2-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.services-v2-hero-pill {
  background: var(--blue-light);
  color: var(--blue-mid);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 50px;
  border: 1px solid rgba(59, 91, 219, 0.15);
  transition: background 0.2s ease, color 0.2s ease;
}
.services-v2-hero-pill:hover {
  background: var(--blue-mid);
  color: var(--white);
}
.services-v2-hero-nav {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-soft);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(15, 30, 74, 0.08);
}
.services-v2-hero-nav-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-muted);
  margin-bottom: 20px;
}
.services-v2-hero-nav-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-soft);
  cursor: pointer;
}
.services-v2-hero-nav-row:last-child {
  border-bottom: none;
}
.services-v2-hero-nav-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-muted);
  min-width: 24px;
}
.services-v2-hero-nav-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--blue-ink);
  flex: 1;
  transition: color 0.2s ease;
}
.services-v2-hero-nav-arrow {
  color: var(--gray-muted);
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
.services-v2-hero-nav-row:hover .services-v2-hero-nav-name {
  color: var(--blue-mid);
}
.services-v2-hero-nav-row:hover .services-v2-hero-nav-arrow {
  color: var(--blue-mid);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .services-v2-hero {
    padding: 96px 24px 48px;
  }
  .services-v2-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .services-v2-hero-nav {
    display: none;
  }
}

/* ============ SERVICES PAGE (full-width rows) ============ */
.service-row-v3 {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 56px 80px;
  border-top: 1px solid var(--gray-soft);
  scroll-margin-top: 90px;
}
.service-row-v3:first-child {
  border-top: none;
}
.service-row-v3:last-child {
  border-bottom: 1px solid var(--gray-soft);
}
.service-row-v3:nth-child(odd) {
  background: var(--white);
}
.service-row-v3:nth-child(even) {
  background: var(--off-white);
}
.service-row-v3-num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--blue-mid);
  margin-bottom: 16px;
}
.service-row-v3-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--blue-ink);
  margin-bottom: 12px;
}
.service-row-v3-desc {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-row-v3-bestfor-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-muted);
  margin-bottom: 8px;
}
.service-row-v3-bestfor-text {
  font-size: 14px;
  color: var(--gray-text);
}
.service-row-v3-learnmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-mid);
  margin-top: 24px;
}
.service-row-v3-learnmore .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.service-row-v3-learnmore:hover .arrow {
  transform: translateX(4px);
}
.service-row-v3-details {
  background: var(--blue-light);
  border-radius: 16px;
  padding: 28px;
}
.service-row-v3-includes-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-mid);
  margin-bottom: 16px;
}
.service-row-v3-includes-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-row-v3-includes-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--blue-ink);
}
.service-row-v3-includes-item svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.service-row-v3-divider {
  height: 1px;
  background: rgba(59, 91, 219, 0.15);
  margin: 20px 0;
}
.service-row-v3-fact-number {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 28px;
  color: var(--blue-ink);
}
.service-row-v3-fact-desc {
  font-size: 12px;
  color: var(--gray-text);
  margin-top: 4px;
}
.service-row-v3-mobile-badge {
  display: none;
}

@media (max-width: 768px) {
  .service-row-v3 {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 24px;
  }
  .service-row-v3-num-col {
    display: none;
  }
  .service-row-v3-mobile-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }
  .service-row-v3-mobile-num {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--blue-mid);
  }
}

/* ============ INDUSTRIES SECTION (services page) ============ */
.industries-v3-section {
  background: var(--blue-ink);
  padding: 80px;
}
.industries-v3-head .eyebrow {
  color: rgba(255, 255, 255, 0.4);
}
.industries-v3-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 16px;
}
.industries-v3-head p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin-bottom: 56px;
}
.industries-v3-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.industry-v3-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--white);
  border-radius: 16px;
  border-top: 3px solid var(--blue-mid);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(15, 30, 74, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.industry-v3-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(15, 30, 74, 0.15);
}
.industry-v3-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.industry-v3-icon svg {
  display: block;
}
.industry-v3-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--blue-ink);
  margin-bottom: 10px;
}
.industry-v3-desc {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 20px;
}
.industry-v3-divider {
  height: 1px;
  background: var(--gray-soft);
  margin-bottom: 16px;
}
.industry-v3-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-muted);
  letter-spacing: 0.05em;
}
.industries-v3-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.industries-v3-cta a {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  border-radius: 50px;
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.industries-v3-cta a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .industries-v3-section {
    padding: 48px 24px;
  }
  .industries-v3-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .industries-v3-grid::-webkit-scrollbar {
    display: none;
  }
  .industry-v3-card {
    flex: 0 0 280px;
  }
}

/* ============ SERVICES PAGE CTA BANNER ============ */
.services-cta-banner {
  background: var(--blue-mid);
  padding: 80px;
}
.services-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}
.services-cta-text h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  color: var(--white);
}
.services-cta-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
  max-width: 480px;
}
.services-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--blue-mid);
  font-weight: 700;
  border-radius: 50px;
  padding: 14px 32px;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.services-cta-button:hover {
  background: var(--blue-light);
}

@media (max-width: 700px) {
  .services-cta-banner { padding: 48px 24px; }
  .services-cta-grid { grid-template-columns: 1fr; gap: 24px; text-align: left; }
}

/* ============ SERVICE SUB-PAGE TEMPLATE ============ */
.service-hero {
  padding: clamp(160px, 20vw, 220px) 0 var(--section-pad);
  text-align: left;
}
.service-hero + .section {
  padding-top: 0;
}
.service-hero h1 {
  font-size: var(--text-display);
  font-weight: 600;
  margin: 16px 0 20px;
}
.service-hero p {
  font-size: var(--text-lead);
  max-width: 560px;
}
.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  margin-top: 8px;
}
.checklist li {
  display: flex;
  gap: 14px;
  font-size: 16px;
  color: var(--blue-ink);
  align-items: flex-start;
}
.checklist .check {
  color: var(--white);
  background: var(--blue-mid);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-top: 2px;
}
.service-for p { max-width: 640px; font-size: var(--text-lead); }
.service-cta {
  text-align: center;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 8vw, 80px) 24px;
}
.service-cta h2 {
  font-size: var(--text-title);
  font-weight: 600;
  margin-bottom: 28px;
}

@media (max-width: 700px) {
  .checklist { grid-template-columns: 1fr; }
}

/* ============ SERVICE SUB-PAGE V2 TEMPLATE ============ */
.svc2-hero {
  padding: 80px 80px 72px;
  background-color: var(--white);
  background-image: radial-gradient(circle, rgba(59, 91, 219, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.svc2-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.svc2-breadcrumb {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-muted);
  margin-bottom: 14px;
}
.svc2-breadcrumb a {
  color: var(--gray-muted);
  transition: color 0.2s ease;
}
.svc2-breadcrumb a:hover {
  color: var(--blue-mid);
}
.svc2-hero-text .eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
}
.svc2-hero-text h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 60px);
  color: var(--blue-ink);
  line-height: 1.1;
  margin-bottom: 20px;
}
.svc2-hero-text p {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--gray-text);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.svc2-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.svc2-card {
  background: var(--blue-ink);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(15, 30, 74, 0.2);
}
.svc2-stat-row {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.svc2-stat-row:first-child {
  padding-top: 0;
}
.svc2-stat-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.svc2-stat-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}
.svc2-stat-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--white);
}
.svc2-note {
  background: rgba(59, 91, 219, 0.2);
  border-radius: 12px;
  border-left: 3px solid var(--blue-mid);
  padding: 16px;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.svc2-includes {
  background: var(--off-white);
  padding: 72px 80px;
}
.svc2-includes-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.svc2-includes-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--blue-ink);
  line-height: 1.2;
}
.svc2-includes-head p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-text);
  max-width: 320px;
  margin-top: 12px;
}
.svc2-includes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.svc2-includes-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.svc2-includes-icon {
  min-width: 28px;
  height: 28px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc2-includes-item span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--blue-ink);
  line-height: 1.5;
}

.svc2-for {
  background: var(--white);
  padding: 72px 80px;
}
.svc2-for-head {
  margin-bottom: 40px;
}
.svc2-for-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--blue-ink);
}
.svc2-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc2-for-card {
  background: var(--off-white);
  border-radius: 14px;
  border-top: 2px solid var(--blue-mid);
  padding: 24px;
}
.svc2-for-card svg {
  margin-bottom: 14px;
}
.svc2-for-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--blue-ink);
  margin-bottom: 8px;
}
.svc2-for-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.5;
}

.svc2-facts {
  background: var(--blue-mid);
  padding: 48px 80px;
}
.svc2-facts-row {
  display: flex;
}
.svc2-fact {
  flex: 1;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.svc2-fact:first-child {
  border-left: none;
}
.svc2-fact-number {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 48px;
  color: var(--white);
  line-height: 1;
}
.svc2-fact-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
}

.svc2-process {
  background: var(--off-white);
  padding: 72px 80px;
}
.svc2-process-head {
  margin-bottom: 48px;
}
.svc2-process-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--blue-ink);
}
.svc2-process-row {
  display: flex;
  position: relative;
  gap: 40px;
}
.svc2-process-row::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  border-top: 1px dashed #CBD5E1;
  z-index: 0;
}
.svc2-process-step {
  flex: 1;
  position: relative;
  z-index: 1;
}
.svc2-process-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--blue-mid);
  background: var(--white);
  color: var(--blue-mid);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.svc2-process-step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--blue-ink);
  margin-bottom: 8px;
}
.svc2-process-step p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.5;
}

.svc2-cta {
  position: relative;
  background: linear-gradient(135deg, #3B5BDB, #1E3A8A);
  padding: 72px 80px;
}
.svc2-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #60A5FA, #3B5BDB);
}
.svc2-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}
.svc2-cta-text h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  color: var(--white);
}
.svc2-cta-text p {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
}
.svc2-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.svc2-cta-buttons .btn {
  justify-content: center;
  border-radius: 50px;
  font-weight: 700;
  white-space: nowrap;
}
.svc2-cta-buttons .btn-white {
  padding: 14px 32px;
}
.svc2-cta-buttons .btn-ghost-white {
  padding: 13px 32px;
}

@media (max-width: 768px) {
  .svc2-hero {
    padding: 80px 24px 48px;
  }
  .svc2-includes,
  .svc2-for,
  .svc2-process,
  .svc2-cta,
  .svc2-facts {
    padding: 48px 24px;
  }
  .svc2-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .svc2-hero-ctas {
    flex-wrap: nowrap;
    gap: 10px;
  }
  .svc2-hero-ctas .btn {
    flex: 1 1 0;
    padding: 13px 14px;
    font-size: 14px;
    justify-content: center;
    white-space: nowrap;
  }
  .svc2-card {
    padding: 24px;
  }
  .svc2-includes-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .svc2-includes-list {
    grid-template-columns: 1fr;
  }
  .svc2-for-grid {
    grid-template-columns: 1fr;
  }
  .svc2-facts-row {
    gap: 8px;
  }
  .svc2-fact-number {
    font-size: 22px;
  }
  .svc2-fact-label {
    font-size: 11px;
    margin-top: 4px;
  }
  .svc2-process-row {
    flex-direction: column;
    gap: 32px;
  }
  .svc2-process-row::before {
    top: 0;
    bottom: 0;
    left: 22px;
    right: auto;
    border-top: none;
    border-left: 1px dashed #CBD5E1;
  }
  .svc2-cta-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .svc2-cta-buttons {
    width: 100%;
  }
  .svc2-cta-buttons a {
    width: 100%;
  }
}

/* ============ LOCATIONS PAGE ============ */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 64px);
}
.location-col h2 {
  font-size: var(--text-title);
  font-weight: 600;
  margin-bottom: 8px;
}
.location-col .area {
  color: var(--blue-mid);
  font-weight: 600;
  margin-bottom: 24px;
}
.location-detail {
  margin-bottom: 8px;
  color: var(--blue-ink);
  font-size: 15px;
}
.location-detail a { color: var(--blue-mid); font-weight: 600; }
.map-frame {
  margin-top: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-soft);
}
.map-frame iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}
.map-pin-anim {
  position: relative;
  padding-left: 22px;
}
.map-pin-anim::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--blue-mid);
  border-radius: 50%;
  animation: pin-pulse 2s ease-in-out infinite;
}

@media (max-width: 800px) {
  .locations-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ============ LOCATIONS PAGE V2 ============ */
.loc2-hero {
  padding: 100px 80px 72px;
  background-color: var(--white);
  background-image: radial-gradient(circle, rgba(59, 91, 219, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.loc2-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.loc2-hero-text .eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.loc2-hero-text h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--blue-ink);
  line-height: 1.08;
  margin-bottom: 20px;
}
.loc2-hero-text p {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--gray-text);
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 36px;
}
.loc2-hero-pills {
  display: flex;
  gap: 12px;
}
.loc2-hero-pill {
  background: var(--blue-light);
  border: 1px solid rgba(59, 91, 219, 0.2);
  border-radius: 50px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--blue-mid);
}

.loc2-card {
  background: var(--blue-ink);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(15, 30, 74, 0.2);
}
.loc2-card-head {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}
.loc2-contact-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.loc2-contact-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.loc2-contact-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 6px;
}
.loc2-contact-phone {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.loc2-contact-phone a {
  color: #60A5FA;
  font-weight: 500;
  text-decoration: none;
}
.loc2-contact-hours {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}
.loc2-card-btn {
  display: block;
  background: var(--blue-mid);
  color: var(--white);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  width: 100%;
  margin-top: 4px;
  transition: background 0.2s ease;
}
.loc2-card-btn:hover {
  background: #2D4BC4;
}

.loc2-cards {
  background: var(--off-white);
  padding: 80px;
}
.loc2-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.loc2-card-full {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--gray-soft);
  box-shadow: 0 4px 24px rgba(15, 30, 74, 0.07);
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: box-shadow 0.3s ease;
  scroll-margin-top: 90px;
}
.loc2-card-full:hover {
  box-shadow: 0 12px 48px rgba(15, 30, 74, 0.12);
}
.loc2-card-info {
  padding: 48px;
}
.loc2-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  border-radius: 50px;
  padding: 6px 14px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--blue-mid);
}
.loc2-card-info h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--blue-ink);
  margin-bottom: 6px;
}
.loc2-card-area {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--blue-mid);
  font-weight: 500;
  margin-bottom: 28px;
}
.loc2-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-muted);
  margin-bottom: 10px;
}
.loc2-address {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--blue-ink);
  line-height: 1.6;
}
.loc2-divider {
  height: 1px;
  background: var(--gray-soft);
  margin: 20px 0;
}
.loc2-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.loc2-value-phone {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--blue-mid);
}
.loc2-value-fax {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-text);
}
.loc2-expect-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.loc2-expect-item svg {
  min-width: 20px;
  margin-top: 2px;
}
.loc2-expect-item span {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-text);
}
.loc2-card-buttons {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.loc2-card-buttons .btn-outline {
  border-color: var(--blue-deep);
}
.loc2-card-map {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.loc2-card-map::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(to right, var(--white), transparent);
  z-index: 1;
  pointer-events: none;
}
.loc2-card-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

.loc2-service-strip {
  background: var(--blue-ink);
  padding: 56px 80px;
}
.loc2-service-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.loc2-service-strip-head .eyebrow {
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}
.loc2-service-strip-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--white);
  line-height: 1.3;
}
.loc2-service-strip-head p {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 10px;
}
.loc2-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}
.loc2-area-tag {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.loc2-cta {
  position: relative;
  background: linear-gradient(135deg, #3B5BDB, #1E3A8A);
  padding: 72px 80px;
}
.loc2-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #60A5FA, #3B5BDB);
}
.loc2-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
}
.loc2-cta-text .eyebrow {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}
.loc2-cta-text h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  color: var(--white);
}
.loc2-cta-text p {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 12px;
}
.loc2-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.loc2-cta-buttons .btn {
  justify-content: center;
  border-radius: 50px;
  white-space: nowrap;
}
.loc2-cta-buttons .btn-white {
  color: var(--blue-deep);
  font-weight: 700;
  padding: 14px 32px;
}
.loc2-cta-buttons .btn-ghost-white {
  font-weight: 600;
  padding: 13px 32px;
}

@media (max-width: 768px) {
  .loc2-hero {
    padding: 80px 24px 48px;
  }
  .loc2-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .loc2-hero-pills {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .loc2-hero-pill {
    padding: 6px 12px;
    gap: 6px;
    font-size: 12px;
    white-space: nowrap;
  }
  .loc2-hero-pill svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }
  .loc2-cards {
    padding: 48px 24px;
  }
  .loc2-card-full {
    grid-template-columns: 1fr;
  }
  .loc2-card-info {
    padding: 32px 24px;
  }
  .loc2-card-map {
    min-height: 260px;
  }
  .loc2-card-map::before {
    display: none;
  }
  .loc2-card-map iframe {
    min-height: 260px;
  }
  .loc2-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .loc2-card-buttons {
    flex-direction: column;
  }
  .loc2-card-buttons a {
    width: 100%;
    justify-content: center;
  }
  .loc2-service-strip {
    padding: 48px 24px;
  }
  .loc2-service-strip-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .loc2-cta {
    padding: 48px 24px;
  }
  .loc2-cta-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 24px;
  }
  .loc2-cta-buttons {
    width: 100%;
  }
  .loc2-cta-buttons a {
    width: 100%;
  }
}

/* ============ CONTACT PAGE V2 ============ */
.ct2-hero {
  background-color: var(--blue-ink);
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  padding: 100px 80px 72px;
}
.ct2-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ct2-hero-text .eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}
.ct2-hero-text h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 5.5vw, 72px);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.ct2-hero-text h1 strong {
  font-weight: 700;
  color: var(--white);
}
.ct2-hero-text p {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 440px;
}
.ct2-promise-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ct2-promise-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 16px;
}
.ct2-promise-icon {
  width: 40px;
  height: 40px;
  background: rgba(59, 91, 219, 0.3);
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct2-promise-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}
.ct2-promise-card p {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.ct2-main {
  background: var(--white);
  padding: 80px;
}
.ct2-main-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
}
.ct2-form-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--blue-ink);
  margin-bottom: 8px;
}
.ct2-form-head p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-text);
  margin-bottom: 36px;
}
.ct2-field {
  margin-bottom: 24px;
}
.ct2-field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--blue-ink);
  margin-bottom: 8px;
}
.ct2-field label .req {
  color: var(--blue-mid);
}
.ct2-field input,
.ct2-field select,
.ct2-field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-soft);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--blue-ink);
  background: var(--off-white);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.ct2-field input:focus,
.ct2-field select:focus,
.ct2-field textarea:focus {
  border-color: var(--blue-mid);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(59, 91, 219, 0.08);
}
.ct2-field input::placeholder,
.ct2-field textarea::placeholder {
  color: var(--gray-muted);
}
.ct2-field input.input-error,
.ct2-field select.input-error,
.ct2-field textarea.input-error {
  border-color: #DC2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}
.ct2-field .field-error {
  display: block;
  color: #DC2626;
  font-size: 12px;
  margin-top: 6px;
  font-family: var(--font-body);
}
.ct2-field textarea {
  min-height: 140px;
  resize: vertical;
}
.ct2-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ct2-select-wrap {
  position: relative;
}
.ct2-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
}
.ct2-select-wrap svg {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.ct2-privacy-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray-muted);
  margin-bottom: 20px;
}
.ct2-submit {
  width: 100%;
  background: var(--blue-mid);
  color: var(--white);
  border-radius: 12px;
  padding: 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ct2-submit:hover {
  background: #2D4BC4;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 91, 219, 0.3);
}
.ct2-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.ct2-form-error {
  font-family: var(--font-body);
  font-size: 14px;
  color: #B42318;
  background: #FDEDEE;
  padding: 14px 18px;
  border-radius: 10px;
  margin-top: 16px;
  display: none;
}
.ct2-form-error.show {
  display: block;
}

.ct2-success {
  display: none;
  text-align: left;
  padding: 20px 0;
}
.ct2-success.show {
  display: block;
}
.ct2-success h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--blue-ink);
  margin: 20px 0 12px;
}
.ct2-success p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 24px;
}
.ct2-success-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ct2-success-pills a {
  background: var(--blue-light);
  color: var(--blue-mid);
  border-radius: 50px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.ct2-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: fit-content;
}
.ct2-panel-offices {
  background: var(--blue-ink);
  border-radius: 16px;
  padding: 28px;
}
.ct2-panel-head {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}
.ct2-office-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 6px;
}
.ct2-office-serving {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}
.ct2-office-address {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-bottom: 8px;
}
.ct2-office-phone {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: #60A5FA;
  text-decoration: none;
}
.ct2-office-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 20px 0;
}
.ct2-email-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ct2-email-row a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.ct2-panel-hours {
  background: var(--blue-light);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(59, 91, 219, 0.15);
}
.ct2-panel-hours .ct2-panel-head {
  color: var(--blue-mid);
  margin-bottom: 8px;
}
.ct2-panel-hours h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--blue-ink);
  margin-bottom: 8px;
}
.ct2-panel-hours p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 20px;
}
.ct2-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--white);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-ink);
}
.ct2-panel-response {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--gray-soft);
  display: flex;
  align-items: center;
  gap: 16px;
}
.ct2-response-number {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 48px;
  color: var(--blue-mid);
  line-height: 1;
}
.ct2-response-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--blue-ink);
}
.ct2-response-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-text);
  margin-top: 2px;
}

.ct2-trust {
  background: var(--off-white);
  padding: 48px 80px;
  border-top: 1px solid var(--gray-soft);
}
.ct2-trust-row {
  display: flex;
}
.ct2-trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  border-right: 1px solid var(--gray-soft);
}
.ct2-trust-item:first-child {
  padding-left: 0;
}
.ct2-trust-item:last-child {
  border-right: none;
  padding-right: 0;
}
.ct2-trust-item h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--blue-ink);
}
.ct2-trust-item p {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray-text);
  margin-top: 2px;
}

.ct2-cta {
  position: relative;
  background: linear-gradient(135deg, #3B5BDB, #1E3A8A);
  padding: 72px 80px;
}
.ct2-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #60A5FA, #3B5BDB);
}
.ct2-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
}
.ct2-cta-text .eyebrow {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}
.ct2-cta-text h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  color: var(--white);
}
.ct2-cta-text p {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 12px;
}
.ct2-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ct2-cta-buttons .btn-white {
  color: var(--blue-deep);
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 700;
  white-space: nowrap;
  justify-content: center;
}

@media (max-width: 768px) {
  .ct2-hero {
    padding: 80px 24px 48px;
  }
  .ct2-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ct2-main {
    padding: 48px 24px;
  }
  .ct2-main-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ct2-field-row {
    grid-template-columns: 1fr;
  }
  .ct2-trust {
    padding: 48px 24px;
  }
  .ct2-trust-row {
    flex-wrap: wrap;
    gap: 24px;
  }
  .ct2-trust-item {
    flex: 0 0 calc(50% - 12px);
    border-right: none;
    padding: 0;
  }
  .ct2-cta {
    padding: 48px 24px;
  }
  .ct2-cta-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 24px;
  }
  .ct2-cta-buttons {
    width: 100%;
  }
  .ct2-cta-buttons a {
    width: 100%;
  }
}


/* ============ HERO MOBILE (≤768px) ============ */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 20px 48px;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  /* Unwrap the desktop-only text/buttons column so hero-left and
     hero-buttons become direct flex items of .hero-grid, alongside
     hero-visual, allowing the order values below to interleave them. */
  .hero-col-text {
    display: contents;
  }
  .hero-left { order: 1; }
  .hero-visual { order: 2; }
  .hero-buttons { order: 3; }
  .hero-accent-line { margin-left: auto; margin-right: auto; }
  .hero-headline {
    font-size: clamp(42px, 10vw, 56px);
    text-align: center;
  }
  .hero-sub {
    text-align: center;
    max-width: 340px;
    margin: 28px auto 0;
  }
  .tax-calendar-widget {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 20px;
    box-shadow: 0 12px 40px rgba(15, 30, 74, 0.12);
    text-align: left;
  }
  .tcw-header h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .tcw-row {
    gap: 12px;
    padding: 12px 0;
  }
  .tcw-badge {
    width: 44px;
    padding: 6px 0;
  }
  .tcw-badge-day {
    font-size: 19px;
  }
  .tcw-label {
    font-size: 13px;
  }
  .tcw-desc {
    font-size: 11px;
  }
  .tcw-tags {
    gap: 5px;
    margin-top: 6px;
  }
  .tcw-tag {
    font-size: 9px;
    padding: 3px 8px;
  }
  .tcw-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding: 12px 16px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 15px;
  }
  .hero-ctas .btn-ghost {
    border-width: 1.5px;
  }
  .tcw-book-btn {
    font-size: 13px;
    padding: 8px 16px;
  }
}

@media (max-width: 400px) {
  .tcw-days-full { display: none; }
  .tcw-days-short { display: inline; }
}

/* ============ TAX RESOURCES PAGE ============ */
.tr-hero {
  background-color: var(--blue-ink);
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  padding: 100px 80px 72px;
}
.tr-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.tr-hero-inner .eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
}
.tr-hero-inner h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 60px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.tr-hero-inner p {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}
.tr-anchor-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.tr-anchor-link {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s ease;
}
.tr-anchor-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

.tr-section-head {
  max-width: 640px;
}
.tr-section-head .eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
}
.tr-section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--blue-ink);
  margin-bottom: 12px;
}
.tr-section-head p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-text);
}

/* Section 2: IRS Quick Tools */
.tr-tools {
  background: var(--white);
  padding: 80px;
  border-top: 4px solid var(--blue-mid);
  scroll-margin-top: 90px;
}
.tr-tools .tr-section-head {
  margin-bottom: 48px;
}
.tr-tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.tr-tool-card {
  background: var(--off-white);
  border: 1px solid var(--gray-soft);
  border-radius: 16px;
  padding: 28px;
  border-top: 3px solid var(--blue-mid);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.tr-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 30, 74, 0.10);
  border-color: transparent;
}
.tr-tool-card-icon {
  margin-bottom: 16px;
}
.tr-tool-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--blue-ink);
  margin-bottom: 8px;
}
.tr-tool-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 20px;
}
.tr-tool-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-mid);
  color: var(--white);
  border-radius: 50px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s ease;
}
.tr-tool-btn:hover {
  background: #2D4BC4;
}

/* Section 3: State Refund Tracker */
.tr-refund {
  background: var(--off-white);
  padding: 80px;
  scroll-margin-top: 90px;
}
.tr-refund .tr-section-head {
  margin-bottom: 40px;
}
.tr-search-wrap {
  position: relative;
  max-width: 400px;
  margin-bottom: 32px;
}
.tr-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
#state-search {
  width: 100%;
  padding: 12px 18px 12px 44px;
  border: 1.5px solid var(--gray-soft);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
  color: var(--blue-ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#state-search::placeholder {
  color: var(--gray-muted);
}
#state-search:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 4px rgba(59, 91, 219, 0.08);
}
.tr-state-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.state-item {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--gray-soft);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.state-item-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--blue-ink);
  transition: color 0.2s ease;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.state-item svg {
  flex-shrink: 0;
  color: var(--gray-muted);
  transition: color 0.2s ease;
}
.state-item:hover {
  background: var(--blue-light);
  border-color: var(--blue-mid);
}
.state-item:hover .state-item-name {
  color: var(--blue-mid);
}
.state-item:hover svg {
  color: var(--blue-mid);
}
.state-item.no-tax {
  background: var(--off-white);
  cursor: default;
}
.state-item.no-tax:hover {
  background: var(--off-white);
  border-color: var(--gray-soft);
}
.state-item.no-tax .state-item-name {
  font-weight: 400;
  color: var(--gray-muted);
}
.state-item-badge {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--gray-muted);
  background: var(--gray-soft);
  border-radius: 20px;
  padding: 2px 8px;
  white-space: nowrap;
}
.tr-state-hint {
  display: none;
}

/* Section 4: Required Documents */
.tr-documents {
  background: var(--white);
  padding: 80px;
  scroll-margin-top: 90px;
}
.tr-documents .tr-section-head {
  margin-bottom: 32px;
}
.tr-print-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-muted);
  margin-bottom: 32px;
}
.tr-doc-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tr-doc-card {
  background: var(--off-white);
  border: 1px solid var(--gray-soft);
  border-radius: 16px;
  overflow: hidden;
  scroll-margin-top: 90px;
}
.tr-doc-card-header {
  background: var(--blue-ink);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.tr-doc-card-header h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  flex: 1;
}
.tr-doc-count-badge {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 20px;
  padding: 3px 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
}
.tr-doc-card-body {
  padding: 28px;
}
.tr-doc-progress {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-text);
  margin-bottom: 16px;
}
.tr-doc-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tr-doc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.tr-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--gray-soft);
  background: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.tr-checkbox svg {
  display: none;
}
.tr-doc-item.checked .tr-checkbox {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
}
.tr-doc-item.checked .tr-checkbox svg {
  display: block;
}
.tr-doc-item-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--blue-ink);
  line-height: 1.5;
  transition: color 0.2s ease;
}
.tr-doc-item.checked .tr-doc-item-text {
  color: var(--gray-muted);
  text-decoration: line-through;
}
.tr-info-box {
  background: var(--blue-light);
  border-radius: 12px;
  padding: 20px 24px;
  border-left: 3px solid var(--blue-mid);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 24px;
}
.tr-info-box svg {
  flex-shrink: 0;
}
.tr-info-box p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--blue-ink);
  line-height: 1.6;
}
.tr-reset-btn {
  display: block;
  margin: 20px auto 0;
  background: transparent;
  border: 1.5px solid var(--gray-soft);
  border-radius: 50px;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--gray-text);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.tr-reset-btn:hover {
  border-color: var(--blue-mid);
  color: var(--blue-mid);
}

/* Section 5: Useful Contacts */
.tr-contacts {
  background: var(--off-white);
  padding: 80px;
  scroll-margin-top: 90px;
}
.tr-contacts .tr-section-head {
  margin-bottom: 48px;
}
.tr-contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tr-contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--gray-soft);
  border-top: 3px solid var(--blue-mid);
}
.tr-contact-card-icon {
  margin-bottom: 16px;
}
.tr-contact-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--blue-ink);
  margin-bottom: 8px;
}
.tr-contact-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.5;
  margin-bottom: 20px;
}
.tr-contact-phone-display {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 22px;
  color: var(--blue-mid);
}
.tr-contact-phone-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray-muted);
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .tr-state-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .tr-hero {
    padding: 80px 24px 48px;
  }
  .tr-anchor-link {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .tr-tools,
  .tr-refund,
  .tr-documents,
  .tr-contacts {
    padding: 48px 24px;
  }
  .tr-tools-grid {
    grid-template-columns: 1fr;
  }
  .tr-state-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tr-state-grid.tr-collapsed .state-item:nth-child(n+7) {
    display: none;
  }
  .tr-state-hint {
    display: block;
    text-align: center;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray-muted);
    margin-top: 16px;
  }
  .tr-doc-items {
    grid-template-columns: 1fr;
  }
  .tr-contacts-grid {
    grid-template-columns: 1fr;
  }
}

/* Tax resources CTA: a gradient variant (not the shared .svc2-cta navy,
   which would blend into the footer directly below it on this page). */
.tr-cta {
  position: relative;
  background: linear-gradient(135deg, #3B5BDB, #1E3A8A);
  padding: 72px 80px;
}
.tr-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #60A5FA, #3B5BDB);
}
.tr-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
}
.tr-cta-text .eyebrow {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}
.tr-cta-text h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  color: var(--white);
}
.tr-cta-text p {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 12px;
}
.tr-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tr-cta-buttons .btn {
  justify-content: center;
  border-radius: 50px;
  white-space: nowrap;
}
.tr-cta-buttons .btn-white {
  color: var(--blue-deep);
  font-weight: 700;
  padding: 14px 32px;
}
.tr-cta-buttons .btn-ghost-white {
  font-weight: 600;
  padding: 13px 32px;
}

@media (max-width: 768px) {
  .tr-cta {
    padding: 48px 24px;
  }
  .tr-cta-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 24px;
  }
  .tr-cta-buttons {
    width: 100%;
  }
  .tr-cta-buttons a {
    width: 100%;
  }
}


/* ============ INDUSTRIES PAGE ============ */
.ind-hero {
  background-color: var(--blue-ink);
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  padding: 100px 80px 80px;
}
.ind-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ind-hero-text .eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
}
.ind-hero-text h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 60px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.ind-hero-text p {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 36px;
}
.ind-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ind-hero-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s ease;
}
.ind-hero-pill:hover {
  background: rgba(255, 255, 255, 0.15);
}
.ind-hero-stats {
  display: flex;
  flex-direction: column;
}
.ind-hero-stat-number {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 64px;
  color: var(--white);
  line-height: 1;
}
.ind-hero-stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
  margin-bottom: 32px;
}
.ind-hero-stats > div:last-child .ind-hero-stat-label {
  margin-bottom: 0;
}

.ind-section {
  padding: 80px;
  scroll-margin-top: 90px;
}
.ind-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.ind-section.reverse .ind-content {
  order: 2;
}
.ind-section.reverse .ind-visual {
  order: 1;
}
.ind-number {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--blue-mid);
  margin-bottom: 8px;
}
.ind-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--blue-ink);
  margin-bottom: 16px;
}
.ind-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 28px;
}
.ind-situations-label,
.ind-forms-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-muted);
  margin-bottom: 14px;
}
.ind-situations {
  margin-bottom: 4px;
}
.ind-situation-item {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}
.ind-situation-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-mid);
  margin-top: 7px;
  flex-shrink: 0;
}
.ind-situation-item span {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--blue-ink);
  line-height: 1.5;
}
.ind-forms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.ind-form-tag {
  background: var(--blue-light);
  color: var(--blue-mid);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
}
.ind-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--blue-mid);
  text-decoration: none;
}
.ind-cta-link svg {
  transition: transform 0.2s ease;
}
.ind-cta-link:hover svg {
  transform: translateX(4px);
}

.ind-visual-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 50px rgba(15, 30, 74, 0.12);
}

.ind-visual-panel {
  background: var(--blue-ink);
  border-radius: 20px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.ind-visual-panel::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(59, 91, 219, 0.08);
  top: -60px;
  right: -60px;
}
.ind-visual-panel::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(59, 91, 219, 0.05);
  bottom: -40px;
  left: -40px;
}
.ind-visual-icon {
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.ind-visual-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.ind-visual-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  width: 100%;
  max-width: 240px;
  position: relative;
  z-index: 1;
}
.ind-visual-stat:last-child {
  margin-bottom: 0;
}
.ind-visual-stat svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.4);
}
.ind-visual-stat span {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.ind-compare {
  background: var(--blue-ink);
  padding: 72px 80px;
}
.ind-compare-head .eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}
.ind-compare-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 12px;
}
.ind-compare-head p {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.6;
}
.ind-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ind-compare-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 24px;
}
.ind-compare-card-icon {
  margin-bottom: 12px;
}
.ind-compare-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}
.ind-compare-card p {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .ind-hero {
    padding: 80px 24px 48px;
  }
  .ind-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ind-hero-stats {
    flex-direction: row;
    gap: 8px;
  }
  .ind-hero-stats > div {
    flex: 1;
  }
  .ind-hero-stat-number {
    font-size: 26px;
  }
  .ind-hero-stat-label {
    font-size: 11px;
    margin-top: 4px;
    margin-bottom: 0;
  }
  .ind-section {
    padding: 48px 24px;
  }
  .ind-section-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ind-section .ind-content,
  .ind-section.reverse .ind-content {
    order: 2;
  }
  .ind-section .ind-visual,
  .ind-section.reverse .ind-visual {
    order: 1;
  }
  .ind-visual-panel {
    min-height: 260px;
  }
  .ind-compare {
    padding: 48px 24px;
  }
  .ind-compare-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ SERVICES DIAL (mobile-only, index.html) ============ */
.services-dial {
  display: none;
}

@media (max-width: 768px) {

  .services-list-v2 {
    display: none;
  }

  .services-dial {
    display: block;
    padding: 0 24px;
  }

  .dial-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    margin-bottom: 16px;
  }

  .dial-n {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: #9CA3AF;
    width: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    line-height: 1;
    user-select: none;
    display: block;
  }

  .dial-n.active {
    font-size: 52px;
    font-weight: 700;
    color: #3B5BDB;
    width: 68px;
  }

  .dial-n.near-1 {
    font-size: 24px;
    color: #6B7280;
    width: 50px;
  }

  .dial-n.near-2 {
    font-size: 15px;
    color: #9CA3AF;
    width: 40px;
  }

  .dial-divider {
    height: 1px;
    background: #E8EAF0;
    margin-bottom: 12px;
  }

  .dial-auto-bar {
    height: 2px;
    background: #E8EAF0;
    border-radius: 2px;
    margin-bottom: 28px;
    overflow: hidden;
  }

  .dial-auto-fill {
    height: 100%;
    width: 0%;
    background: #3B5BDB;
    border-radius: 2px;
  }

  .dial-body {
    min-height: 200px;
    position: relative;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .dial-body.fade-out {
    opacity: 0;
    transform: translateY(8px);
  }

  .dial-body.fade-in {
    opacity: 1;
    transform: translateY(0);
  }

  .dial-eye {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: #3B5BDB;
    margin-bottom: 10px;
    text-transform: uppercase;
    display: block;
  }

  .dial-title {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0F1E4A;
    line-height: 1.1;
    margin-bottom: 12px;
    display: block;
  }

  .dial-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 18px;
    display: block;
  }

  .dial-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
  }

  .dial-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #3B5BDB;
    border: 1px solid rgba(59, 91, 219, 0.25);
    border-radius: 4px;
    padding: 4px 10px;
    background: transparent;
    display: inline-block;
  }

  .dial-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0F1E4A;
    text-decoration: none;
    border-bottom: 1.5px solid #0F1E4A;
    padding-bottom: 2px;
    display: inline-block;
  }

}

@media (min-width: 769px) {
  .services-dial {
    display: none !important;
  }
}

/* ============ PRIVACY POLICY PAGE ============ */
.pp-hero {
  background-color: var(--blue-ink);
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  padding: 100px 80px 72px;
}
.pp-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.pp-hero-inner .eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
}
.pp-hero-inner h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--white);
}
.pp-hero-updated {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
}
.pp-hero-inner p {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 560px;
}

.pp-main {
  background: var(--white);
  padding: 72px 80px;
}
.pp-main-inner {
  max-width: 800px;
  margin: 0 auto;
}
.pp-main-inner h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--blue-ink);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-soft);
}
.pp-main-inner h2:first-child {
  margin-top: 0;
}
.pp-main-inner p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 16px;
}
.pp-main-inner ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.pp-main-inner li {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 8px;
  list-style-type: disc;
}
.pp-highlight {
  background: var(--blue-light);
  border-left: 3px solid var(--blue-mid);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 24px 0;
}
.pp-highlight p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--blue-ink);
  line-height: 1.6;
  margin-bottom: 0;
}
.pp-main-inner p a,
.pp-highlight p a {
  color: var(--blue-mid);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(59, 91, 219, 0.3);
}
.pp-main-inner p a:hover,
.pp-highlight p a:hover {
  border-bottom-color: var(--blue-mid);
}

.pp-contact-block {
  background: var(--off-white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--gray-soft);
  margin-top: 16px;
}
.pp-contact-block h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--blue-ink);
  margin-bottom: 16px;
}
.pp-contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.pp-contact-row:last-child {
  margin-bottom: 0;
}
.pp-contact-row svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue-mid);
}
.pp-contact-row span {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.6;
}
.pp-contact-row a {
  color: var(--blue-mid);
  text-decoration: none;
}
.pp-contact-row a:hover {
  text-decoration: underline;
}

.pp-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--blue-mid);
  text-decoration: none;
}

@media (max-width: 768px) {
  .pp-hero {
    padding: 80px 24px 48px;
  }
  .pp-main {
    padding: 48px 24px;
  }
  .pp-contact-block {
    padding: 24px;
  }
}
