:root {
  --color-navy: #072638;
  --color-navy-dark: #051c2a;
  --color-text: #10202b;
  --color-muted: #506270;
  --color-muted-2: #6d7d88;
  --color-green: #072638;
  --color-cyan: #356b7e;
  --color-soft-green: #f4f8fa;
  --color-green-light: #eaf3f6;
  --color-page: #fbfdfe;
  --color-white: #ffffff;
  --color-border: rgba(7, 38, 56, 0.09);

  --gradient-brand: linear-gradient(135deg, #072638, #2f6074);
  --gradient-dark: linear-gradient(135deg, #072638, #1a485d);
  --gradient-soft: linear-gradient(135deg, #ffffff, #edf5f8);
  --hover-accent-1: #0F4C75;
  --hover-accent-1b: #3282B8;
  --hover-accent-2: #0F766E;
  --hover-accent-2b: #14B8A6;
  --hover-accent-3: #5B21B6;
  --hover-accent-3b: #7C3AED;
  --hover-accent-4: #1E293B;
  --hover-accent-4b: #334155;

  --shadow-soft: 0 16px 38px rgba(7, 38, 56, 0.07);
  --shadow-card: 0 18px 42px rgba(7, 38, 56, 0.08);
  --shadow-card-hover: 0 28px 64px rgba(7, 38, 56, 0.16);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --radius-2xl: 30px;

  --header-height: 82px;
}

/* RESET */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-page);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--color-navy);
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.12;
}

h3 {
  line-height: 1.22;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* ACCESSIBILITY */

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--color-white);
  color: var(--color-text);
  padding: 10px 14px;
  z-index: 999999;
  border-radius: 4px;
  font-weight: 800;
}

.skip-link:focus {
  left: 12px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #06b6d4;
  outline-offset: 3px;
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 12px;
  padding-right: 20px;
}

.header-inner {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 6px 0;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  justify-self: start;
}

.header-home-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.header-home-back svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-home-back:hover {
  transform: translateX(-2px);
  background: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: start;
  font-size: 18px;
  font-weight: 800;
  color: var(--color-white);
  white-space: nowrap;
  transition: color 0.35s ease;
}

.logo img {
  max-height: 58px;
  width: auto;
  display: block;
  transform-origin: center;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

body.home .site-header .logo {
  color: var(--color-white);
}

body.home .site-header .logo img {
  filter: brightness(0) invert(1);
}

.logo img.spin-horizontal {
  animation: spinHorizontalOnce 0.55s ease 1;
}

.site-header.scrolled {
  background:
    linear-gradient(135deg, rgba(7, 38, 56, 0.97), rgba(26, 72, 93, 0.96));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 34px rgba(7, 38, 56, 0.22);
  backdrop-filter: blur(18px);
}

.site-header.scrolled .logo {
  color: var(--color-white);
}

/* Optional gradient header for inner pages */

body.tera-gradient-header-page .site-header:not(.scrolled) {
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.tera-gradient-header-page .site-header:not(.scrolled) .logo {
  color: var(--color-navy);
}

body.tera-gradient-header-page .site-header:not(.scrolled) .header-home-back {
  background: rgba(7, 38, 56, 0.08);
  border-color: rgba(7, 38, 56, 0.16);
  color: var(--color-navy);
}

body.tera-gradient-header-page .site-header:not(.scrolled) .menu-toggle {
  background: rgba(7, 38, 56, 0.08);
  border-color: rgba(7, 38, 56, 0.16);
}

body.tera-gradient-header-page .site-header:not(.scrolled) .menu-toggle span {
  background: var(--color-navy);
}

body.tera-offer-page .site-header:not(.scrolled) .logo,
body.tera-testimonials-page .site-header:not(.scrolled) .logo {
  color: var(--color-white);
}

body.tera-offer-page .site-header:not(.scrolled) .logo img,
body.tera-testimonials-page .site-header:not(.scrolled) .logo img {
  filter: brightness(0) invert(1);
}

body.tera-offer-page .site-header:not(.scrolled) .menu-toggle,
body.tera-testimonials-page .site-header:not(.scrolled) .menu-toggle {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
}

body.tera-offer-page .site-header:not(.scrolled) .header-home-back,
body.tera-testimonials-page .site-header:not(.scrolled) .header-home-back {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--color-white);
}

body.tera-offer-page .site-header:not(.scrolled) .menu-toggle span,
body.tera-testimonials-page .site-header:not(.scrolled) .menu-toggle span {
  background: var(--color-white);
}

body.tera-offer-page .site-header:not(.scrolled) .menu-toggle:hover,
body.tera-testimonials-page .site-header:not(.scrolled) .menu-toggle:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

/* DRAWER MENU */

.main-nav,
.nav-menu {
  display: none;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: 0.35s ease;
  z-index: 1201;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  border-radius: 4px;
  background: var(--color-white);
  display: block;
  transition: 0.35s ease;
}

.menu-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(7, 38, 56, 0.18);
}

.site-header.scrolled .menu-toggle,
body.drawer-open .menu-toggle {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 10px 24px rgba(7, 38, 56, 0.24);
}

.site-header.scrolled .menu-toggle span,
body.drawer-open .menu-toggle span {
  background: var(--color-white);
}

body.drawer-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.drawer-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.drawer-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.35s ease;
  z-index: 1090;
}

body.drawer-open .drawer-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.drawer-open {
  overflow: hidden;
}

.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 86vw);
  height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(8, 145, 178, 0.12), transparent 34%),
    radial-gradient(circle at bottom left, rgba(7, 38, 56, 0.12), transparent 34%),
    var(--color-white);
  color: var(--color-text);
  transform: translateX(100%);
  transition: transform 0.38s ease;
  z-index: 1100;
  box-shadow: -24px 0 70px rgba(15, 23, 42, 0.22);
  padding: 82px 22px 24px;
  overflow-y: auto;
}

body.drawer-open .site-drawer {
  transform: translateX(0);
}

.drawer-header {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.drawer-header span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--color-cyan);
}

.drawer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 12px;
  border-radius: 4px;
  color: var(--color-text);
  font-size: clamp(16px, 1.7vw, 18px);
  font-weight: 750;
  line-height: 1.15;
  transition: 0.3s ease;
}

.drawer-nav a::after {
  content: "\2192";
  font-size: 15px;
  color: var(--color-cyan);
  opacity: 0;
  transform: translateX(-6px);
  transition: 0.3s ease;
}

.drawer-nav a:hover {
  background: var(--color-soft-green);
  color: var(--color-green);
  padding-left: 17px;
}

.drawer-nav a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.drawer-nav-group {
  padding: 7px;
  border: 1px solid rgba(7, 38, 56, 0.08);
  border-radius: 4px;
  background: rgba(232, 238, 241, 0.54);
}

.drawer-nav-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 7px;
  border: 0;
  background: transparent;
  color: var(--color-green);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.3px;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

.drawer-nav-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(8, 145, 178, 0.12);
  color: var(--color-cyan);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.drawer-nav-indicator::before {
  content: "+";
}

.drawer-nav-group.is-open .drawer-nav-indicator::before {
  content: "-";
}

.drawer-nav-group.has-current .drawer-nav-parent {
  color: var(--color-navy);
}

.drawer-subnav[hidden] {
  display: none;
}

.drawer-subnav {
  display: grid;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer-subnav a {
  padding-left: 16px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.drawer-subnav a:hover {
  padding-left: 20px;
}

.drawer-nav > ul > li:last-child > a {
  margin-top: 10px;
  background: var(--gradient-brand);
  color: var(--color-white);
  box-shadow: 0 14px 34px rgba(7, 38, 56, 0.22);
}

.drawer-nav > ul > li:last-child > a::after {
  color: var(--color-white);
  opacity: 1;
  transform: translateX(0);
}

.drawer-nav > ul > li:last-child > a:hover {
  color: var(--color-white);
  padding-left: 12px;
  transform: translateY(-2px);
}

/* WordPress admin bar support */

body.admin-bar .site-drawer {
  top: 32px;
  height: calc(100vh - 32px);
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-drawer {
    top: 46px;
    height: calc(100vh - 46px);
  }

  body.admin-bar .site-header {
    top: 46px;
  }
}

/* ANCHOR OFFSET */

#homeHero,
#about,
#services,
#portfolio,
#process,
#testimonials,
#blog,
#quote,
#book,
#contact,
#offer-pricing {
  scroll-margin-top: 100px;
}

/* BUTTONS */

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--color-white);
  box-shadow: 0 12px 30px rgba(7, 38, 56, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(7, 38, 56, 0.32);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
}

.btn-secondary.dark-text {
  background: var(--color-white);
  color: var(--color-text);
  border-color: #d1d5db;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow: 0 14px 34px rgba(7, 38, 56, 0.16);
}

.btn-secondary.dark-text:hover {
  border-color: rgba(7, 38, 56, 0.18);
  color: var(--color-navy);
}

/* HERO */

.hero-video-section {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(7, 38, 56, 0.3), transparent 34%),
    radial-gradient(circle at top right, rgba(8, 145, 178, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.58) 0%, rgba(15, 23, 42, 0.84) 100%);
  z-index: 2;
}

.hero-video-content {
  position: relative;
  z-index: 3;
  padding: 150px 0 120px;
}

.eyebrow,
.section-kicker {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--color-cyan);
  font-weight: 900;
  margin-bottom: 12px;
}

.hero-video-section .eyebrow {
  color: #d8e3e8;
}

.hero-video-section h1 {
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 1.05;
  max-width: 980px;
  margin: 0 auto 18px;
  color: var(--color-white);
}

.professional-hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(7, 38, 56, 0.06), rgba(234, 243, 246, 0.9)),
    var(--color-page);
  color: var(--color-white);
}

body.home .professional-hero {
  overflow: visible;
}

.professional-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(7, 38, 56, 0.82), rgba(7, 38, 56, 0.48) 56%, rgba(255, 255, 255, 0.72)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1800&q=80") center/cover;
  opacity: 1;
  z-index: 0;
}

.professional-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.3));
}

.professional-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 44px;
  align-items: center;
  padding: 150px 0 96px;
}

.professional-hero-copy h1 {
  max-width: 980px;
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  line-height: 1.05;
}

.hero-seo-summary {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.65;
}

.professional-hero .eyebrow {
  color: #f4fbfd;
}

.hero-service-panel {
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-text);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 4px;
  padding: 30px;
  box-shadow: 0 28px 70px rgba(7, 38, 56, 0.18);
  backdrop-filter: blur(18px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.hero-service-panel:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 34px 78px rgba(7, 38, 56, 0.22);
}

.hero-service-panel h2 {
  color: var(--color-navy);
  margin-bottom: 20px;
}

.hero-action-panel {
  align-self: end;
  justify-self: end;
  max-width: max-content;
}

.hero-action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.hero-action-buttons .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  overflow: hidden;
  padding: 9px 15px;
  font-size: 12px;
  letter-spacing: 0.06em;
  isolation: isolate;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(7, 38, 56, 0.16);
}

.hero-action-buttons .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.42) 50%, transparent 78%);
  transform: translateX(-100%);
  transition: opacity 0.35s ease, transform 0.45s ease;
}

.hero-action-buttons .btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 3px;
  opacity: 0.7;
  transition: opacity 0.35s ease, border-color 0.35s ease;
}

.hero-action-buttons .btn:hover::before {
  opacity: 1;
  transform: translateX(100%);
}

.hero-action-buttons .btn:hover::after {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.48);
}

.hero-call-btn {
  background: linear-gradient(135deg, #35a69b 0%, #2f6074 46%, #072638 100%);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 30px rgba(7, 38, 56, 0.26);
}

.hero-offer-btn {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(234, 243, 246, 0.96));
  color: var(--color-navy);
  border-color: rgba(7, 38, 56, 0.18);
  box-shadow: 0 12px 26px rgba(7, 38, 56, 0.13);
}

.hero-offer-btn::after {
  border-color: rgba(7, 38, 56, 0.12);
}

.hero-call-btn:hover,
.hero-offer-btn:hover {
  background: linear-gradient(135deg, var(--hover-accent-1), var(--hover-accent-1b));
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 18px 38px rgba(7, 38, 56, 0.3);
}

.service-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-pill-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--color-green-light);
  color: var(--color-green);
  border: 1px solid rgba(7, 38, 56, 0.12);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.service-pill-grid span:hover {
  transform: translateY(-4px);
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: 0 14px 28px rgba(7, 38, 56, 0.16);
}

.hero-text {
  max-width: 820px;
  margin: 0 auto 28px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.professional-hero .hero-text {
  margin-left: 0;
  margin-right: 0;
}

.professional-hero .hero-buttons {
  justify-content: flex-start;
}

.home-services-dropdown {
  position: relative;
  z-index: 5;
}

.home-services-toggle {
  gap: 8px;
}

.home-services-toggle span {
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.25s ease;
}

.home-services-dropdown.is-open .home-services-toggle span {
  transform: translateY(2px) rotate(225deg);
}

.home-services-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  z-index: 80;
  display: grid;
  width: max-content;
  min-width: 240px;
  max-width: min(320px, calc(100vw - 32px));
  padding: 8px;
  border: 1px solid rgba(7, 38, 56, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 44px rgba(7, 38, 56, 0.16);
}

.home-services-menu[hidden] {
  display: none;
}

.home-services-menu a {
  padding: 10px 12px;
  border-radius: 4px;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.home-services-menu a:hover {
  background: var(--color-soft-green);
  color: var(--color-green);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* SECTIONS */

.section {
  padding: 90px 0;
  background: var(--color-page);
  color: var(--color-text);
}

.section-alt {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--color-soft-green) 100%);
}

.intro-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}

.location-section {
  background: var(--color-page);
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading p,
.lead {
  max-width: 820px;
  color: var(--color-muted);
}

.lead {
  font-size: 18px;
}

.center-text {
  text-align: center;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

/* GRID + CARDS */

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(135deg, var(--card-accent, var(--hover-accent-1)), var(--card-accent-2, var(--hover-accent-1b)));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(7, 38, 56, 0.18);
  box-shadow: var(--shadow-card-hover);
  background: var(--color-white);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 18px;
}

.large-image {
  height: 360px;
}

.image-card {
  display: grid;
  gap: 24px;
}

.card-label {
  display: inline-block;
  color: var(--color-green);
  background: #eff7fa;
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 10px;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card p {
  color: var(--color-muted);
}

.service-card h2,
.service-card h3 {
  color: var(--color-navy);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--gradient-brand);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.5px;
  box-shadow: 0 16px 30px rgba(7, 38, 56, 0.2);
  transition: transform 0.32s ease, box-shadow 0.32s ease, background 0.32s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-4px) rotate(-3deg) scale(1.06);
  box-shadow: 0 20px 36px rgba(7, 38, 56, 0.25);
}

.service-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(7, 38, 56, 0.96), rgba(47, 96, 116, 0.9)),
    var(--color-navy);
  color: var(--color-white);
  border-radius: 4px;
  padding: 34px;
  box-shadow: 0 24px 58px rgba(7, 38, 56, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-banner:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 68px rgba(7, 38, 56, 0.24);
}

.service-banner .section-kicker {
  color: var(--color-green-light);
}

.service-banner h2 {
  margin-bottom: 0;
  color: var(--color-white);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.industry-card {
  --industry-accent: var(--hover-accent-1);
  --industry-accent-2: var(--hover-accent-1b);
  --industry-soft: #eaf3f6;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  border-radius: 4px;
  padding: 26px;
  color: var(--color-text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 250, 0.98));
  border: 1px solid rgba(7, 38, 56, 0.1);
  box-shadow: 0 18px 42px rgba(7, 38, 56, 0.08);
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(135deg, var(--industry-accent), var(--industry-accent-2));
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx, 85%) var(--my, 18%), rgba(255, 255, 255, 0.38), transparent 28%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.22) 45%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-18%);
  transition: opacity 0.35s ease, transform 0.45s ease;
  z-index: 0;
}

.industry-icon {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: var(--industry-soft);
  color: var(--industry-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 14px 26px rgba(7, 38, 56, 0.12);
  transition: transform 0.38s ease, background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.industry-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-builders {
  --industry-accent: var(--hover-accent-1);
  --industry-accent-2: var(--hover-accent-1b);
  --industry-soft: #e8f1f5;
}

.industry-business {
  --industry-accent: var(--hover-accent-2);
  --industry-accent-2: var(--hover-accent-2b);
  --industry-soft: #e3f7f3;
}

.industry-property {
  --industry-accent: var(--hover-accent-3);
  --industry-accent-2: var(--hover-accent-3b);
  --industry-soft: #e8f0ff;
}

.industry-medical {
  --industry-accent: var(--hover-accent-4);
  --industry-accent-2: var(--hover-accent-4b);
  --industry-soft: #eef2f6;
}

.industry-real-estate {
  --industry-accent: var(--hover-accent-1);
  --industry-accent-2: var(--hover-accent-1b);
  --industry-soft: #e8f1f5;
}

.industry-cafe {
  --industry-accent: var(--hover-accent-2);
  --industry-accent-2: var(--hover-accent-2b);
  --industry-soft: #e3f7f3;
}

.industry-franchise {
  --industry-accent: var(--hover-accent-3);
  --industry-accent-2: var(--hover-accent-3b);
  --industry-soft: #f1edff;
}

.industry-smsf {
  --industry-accent: var(--hover-accent-4);
  --industry-accent-2: var(--hover-accent-4b);
  --industry-soft: #eef2f6;
}

.industry-grid > .industry-card:nth-child(4n+1) {
  --industry-accent: var(--hover-accent-1);
  --industry-accent-2: var(--hover-accent-1b);
  --industry-soft: #e8f1f5;
}

.industry-grid > .industry-card:nth-child(4n+2) {
  --industry-accent: var(--hover-accent-2);
  --industry-accent-2: var(--hover-accent-2b);
  --industry-soft: #e3f7f3;
}

.industry-grid > .industry-card:nth-child(4n+3) {
  --industry-accent: var(--hover-accent-3);
  --industry-accent-2: var(--hover-accent-3b);
  --industry-soft: #f1edff;
}

.industry-grid > .industry-card:nth-child(4n+4) {
  --industry-accent: var(--hover-accent-4);
  --industry-accent-2: var(--hover-accent-4b);
  --industry-soft: #eef2f6;
}

.industry-card:hover {
  transform: translateY(-10px) scale(1.015) rotate(-0.45deg);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 70px rgba(7, 38, 56, 0.2);
  background: linear-gradient(135deg, var(--industry-accent), var(--industry-accent-2));
}

.industry-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.industry-card:hover .industry-icon {
  transform: translateY(-5px) rotate(7deg) scale(1.08);
  background: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
  box-shadow: 0 18px 34px rgba(7, 38, 56, 0.24);
}

.industry-card:hover .industry-icon svg {
  animation: iconPop 0.55s ease both;
}

.industry-card h2,
.industry-card h3 {
  position: relative;
  z-index: 1;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.industry-card p {
  position: relative;
  z-index: 1;
  color: var(--color-muted);
  margin-bottom: 0;
}

/* PAGE CONTENT */

.page-content {
  padding: 140px 0 80px;
  background: var(--color-page);
  min-height: 70vh;
}

.page-content h1 {
  margin-bottom: 14px;
}

.content-section {
  margin-top: 48px;
}

.styled-list {
  padding-left: 20px;
}

.styled-list li {
  margin-bottom: 8px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

/* FORMS */

.custom-form {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.custom-form input,
.custom-form textarea,
.custom-form select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font: inherit;
  background: var(--color-white);
  transition: 0.25s ease;
}

.custom-form input:focus,
.custom-form textarea:focus,
.custom-form select:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 4px rgba(7, 38, 56, 0.12);
}

.custom-form button {
  border: none;
}

.form-message {
  max-width: 760px;
  padding: 16px 18px;
  border-radius: 4px;
  margin: 20px 0;
  font-weight: 800;
}

.form-message.success {
  background: var(--color-green-light);
  color: var(--color-green);
  border: 1px solid #9fb3bd;
}

/* BLOG */

.post-meta {
  color: #6b7280;
  font-size: 14px;
}

.insights-accordion {
  display: grid;
  gap: 14px;
}

.insight-detail {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.insight-detail summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--color-navy);
  font-weight: 900;
  list-style: none;
}

.insight-detail summary::-webkit-details-marker {
  display: none;
}

.insight-detail summary::after {
  content: "+";
  float: right;
  color: var(--color-cyan);
  font-size: 22px;
  line-height: 1;
}

.insight-detail[open] summary::after {
  content: "-";
}

.insight-detail p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--color-muted);
}

.single-post {
  max-width: 850px;
}

.featured-image {
  margin: 28px 0;
}

.featured-image img {
  border-radius: 4px;
}

.pagination {
  color: var(--color-text);
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  margin-right: 6px;
  border-radius: 4px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  font-weight: 800;
}

.pagination .current {
  background: var(--gradient-brand);
  color: var(--color-white);
}

/* METRICS */

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.metric-box {
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-page) 100%);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.metric-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
}

.metric-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  color: var(--color-muted);
  font-size: 15px;
}

.service-detail-grid {
  align-items: stretch;
}

.service-detail-grid.grid-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-detail-card {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid rgba(7, 38, 56, 0.1);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-detail-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(135deg, var(--card-accent, var(--hover-accent-1)), var(--card-accent-2, var(--hover-accent-1b)));
}

.service-detail-card:hover {
  transform: translateY(-9px);
  border-color: rgba(7, 38, 56, 0.22);
  box-shadow: var(--shadow-card-hover);
}

.service-detail-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  margin: 6px 0 14px;
  border-radius: 4px;
  background: #eff7fa;
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.service-detail-card h3 {
  margin-bottom: 12px;
}

.service-detail-card p {
  color: var(--color-muted);
}

.mini-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  color: #344653;
  font-size: 14px;
  font-weight: 650;
}

.mini-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
}

.mini-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 4px;
  margin-top: 8px;
  background: var(--color-cyan);
  box-shadow: 0 0 0 5px rgba(53, 107, 126, 0.12);
}

.service-card .mini-list {
  margin-top: auto;
  padding-top: 16px;
}

/* PROCESS */

.process-section {
  background: var(--color-page);
}

.process-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 34px;
  align-items: start;
  margin-top: 30px;
}

.process-panel {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 30px;
  box-shadow: var(--shadow-card);
}

.process-steps {
  display: grid;
  gap: 18px;
}

.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-page) 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: 0.3s ease;
}

.process-step:hover {
  transform: translateX(6px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.process-badge {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--color-white);
  background: var(--gradient-brand);
  box-shadow: 0 10px 24px rgba(7, 38, 56, 0.24);
}

.process-copy h3 {
  margin-bottom: 8px;
}

.process-copy p {
  margin: 0;
  color: var(--color-muted);
}

.highlight-stack {
  display: grid;
  gap: 18px;
}

.highlight-card {
  border-radius: 4px;
  padding: 28px;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  min-height: 150px;
}

.highlight-card.primary {
  background: var(--gradient-dark);
}

.highlight-card.secondary {
  background: var(--gradient-brand);
}

.highlight-card::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  right: 28px;
  bottom: 28px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.34);
  filter: none;
}

.highlight-card h3,
.highlight-card p {
  position: relative;
  z-index: 1;
}

.highlight-card p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 90%;
}

/* ASSURANCE */

.assurance-section {
  background: var(--color-soft-green);
}

.assurance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 30px;
}

.assurance-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 30px;
  box-shadow: var(--shadow-card);
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
  color: #334155;
}

.check-mark {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 145, 178, 0.14);
  color: var(--color-cyan);
  font-weight: 900;
}

.assurance-quote {
  background: linear-gradient(135deg, var(--color-white), var(--color-page));
  border-left: 5px solid var(--color-green);
}

.assurance-quote blockquote {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-text);
}

.assurance-quote strong {
  color: var(--color-muted);
}

/* CTA */

.cta-panel {
  background:
    radial-gradient(circle at top left, rgba(7, 38, 56, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(8, 145, 178, 0.12), transparent 28%),
    var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 34px;
  box-shadow: var(--shadow-card);
}

.cta-section {
  background:
    linear-gradient(135deg, #ffffff 0%, #edf5f8 100%);
  color: var(--color-text);
  border-top: 1px solid rgba(7, 38, 56, 0.08);
  border-bottom: 1px solid rgba(7, 38, 56, 0.08);
}

.cta-section p {
  color: var(--color-muted);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-secondary {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: rgba(7, 38, 56, 0.14);
  box-shadow: 0 12px 28px rgba(7, 38, 56, 0.1);
}

/* SLIDER */

.slider {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.35s ease;
}

.slide {
  min-width: 100%;
  padding: 0 48px;
}

.testimonial-card {
  text-align: center;
}

.testimonial-card.large {
  max-width: 820px;
  margin: 0 auto;
}

.avatar-initial {
  width: 86px;
  height: 86px;
  border-radius: 4px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  color: var(--color-white);
  font-size: 34px;
  font-weight: 900;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 18px;
}

.slider-btn.prev {
  left: 0;
}

.slider-btn.next {
  right: 0;
}

/* TESTIMONIALS PAGE */

.testimonials-page {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(53, 166, 155, 0.08), transparent 28%),
    linear-gradient(225deg, rgba(249, 115, 22, 0.08), transparent 26%),
    var(--color-page);
}

.testimonials-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 92px;
  background:
    linear-gradient(135deg, rgba(7, 38, 56, 0.96), rgba(15, 118, 110, 0.9)),
    repeating-linear-gradient(135deg, transparent 0 34px, rgba(255, 255, 255, 0.08) 34px 35px);
  color: var(--color-white);
}

.testimonials-hero::before,
.testimonials-hero::after {
  content: "";
  position: absolute;
  inset: auto -18% 12% -18%;
  height: 110px;
  pointer-events: none;
  background: linear-gradient(90deg, #22d3ee, #35a69b, #f97316, #eab308, #2563eb, #22d3ee);
  background-size: 900px 100%;
  opacity: 0.42;
  transform: rotate(-4deg);
  animation: testimonialColorSlide 9s linear infinite;
}

.testimonials-hero::after {
  inset: 18% -20% auto -20%;
  height: 78px;
  opacity: 0.25;
  transform: rotate(5deg);
  animation-duration: 13s;
  animation-direction: reverse;
}

.testimonial-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 42px;
  align-items: center;
}

.testimonial-hero-copy h1 {
  max-width: 900px;
  color: var(--color-white);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.04;
}

.testimonial-hero-copy .lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.testimonial-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.testimonial-chip-row span,
.testimonial-badge,
.testimonial-mini-card span,
.testimonial-spark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.testimonial-chip-row span {
  min-height: 38px;
  padding: 9px 13px;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 34px rgba(1, 16, 24, 0.18);
  animation: testimonialChipFloat 4s ease-in-out infinite;
}

.testimonial-chip-row span:nth-child(2) {
  animation-delay: 0.4s;
}

.testimonial-chip-row span:nth-child(3) {
  animation-delay: 0.8s;
}

.testimonial-chip-row span:nth-child(4) {
  animation-delay: 1.2s;
}

.testimonial-hero-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    linear-gradient(135deg, rgba(34, 211, 238, 0.22), rgba(249, 115, 22, 0.16));
  box-shadow: 0 34px 90px rgba(1, 16, 24, 0.3);
  backdrop-filter: blur(16px);
  animation: testimonialPanelFloat 5.5s ease-in-out infinite;
}

.testimonial-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: translateX(-100%);
  animation: testimonialSweep 4.8s ease-in-out infinite;
}

.testimonial-hero-panel > * {
  position: relative;
  z-index: 1;
}

.testimonial-spark {
  margin-bottom: 18px;
  padding: 8px 11px;
  color: var(--color-navy);
  background: #fef3c7;
}

.testimonial-hero-panel strong {
  display: block;
  margin-bottom: 12px;
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
}

.testimonial-hero-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.testimonial-slider-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #eef7f9 100%);
}

.testimonial-showcase {
  overflow: hidden;
}

.testimonial-showcase .slide {
  padding: 18px 64px 28px;
}

.testimonial-story {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 38px;
  border: 1px solid rgba(7, 38, 56, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 249, 0.98));
  box-shadow: 0 28px 70px rgba(7, 38, 56, 0.14);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.testimonial-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, transparent 0%, rgba(53, 166, 155, 0.16) 24%, rgba(249, 115, 22, 0.16) 52%, transparent 78%),
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(7, 38, 56, 0.04) 58px 59px);
  opacity: 0;
  transform: translateX(-20%);
  transition: opacity 0.35s ease, transform 0.55s ease;
}

.testimonial-story::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 4px;
  border: 1px solid rgba(53, 166, 155, 0.18);
  pointer-events: none;
}

.testimonial-story > * {
  position: relative;
  z-index: 1;
}

.testimonial-story:hover {
  transform: translateY(-12px) scale(1.015) rotate(-0.4deg);
  background: linear-gradient(135deg, var(--hover-accent-1), var(--hover-accent-1b));
  color: var(--color-white);
  box-shadow: 0 38px 90px rgba(7, 38, 56, 0.26);
}

.testimonial-story:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-story:hover p,
.testimonial-story:hover small {
  color: rgba(255, 255, 255, 0.86);
}

.testimonial-avatar {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border-radius: 4px;
  background: linear-gradient(135deg, #22d3ee, #35a69b, #f97316);
  color: var(--color-white);
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(7, 38, 56, 0.22);
  animation: testimonialAvatarPop 3.8s ease-in-out infinite;
}

.testimonial-story:hover .testimonial-avatar {
  transform: rotate(5deg) scale(1.08);
  animation-play-state: paused;
}

.testimonial-badge {
  min-height: 32px;
  margin-bottom: 18px;
  padding: 7px 11px;
  color: #064e3b;
  background: #d9fbef;
}

.testimonial-story p {
  max-width: 700px;
  margin: 0 auto 20px;
  color: var(--color-text);
  font-size: 19px;
  line-height: 1.7;
}

.testimonial-story strong,
.testimonial-story small {
  display: block;
}

.testimonial-story strong {
  color: currentColor;
  font-size: 20px;
}

.testimonial-story small {
  margin-top: 4px;
  color: var(--color-muted);
  font-weight: 800;
}

.testimonial-showcase .slider-btn {
  overflow: hidden;
  background: linear-gradient(135deg, var(--hover-accent-1), var(--hover-accent-1b));
  box-shadow: 0 16px 34px rgba(7, 38, 56, 0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-showcase .slider-btn:hover {
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 24px 52px rgba(7, 38, 56, 0.3);
}

.testimonial-pulse-strip {
  overflow: hidden;
  background: linear-gradient(90deg, #072638, #0f766e, #2563eb, #f97316, #072638);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.testimonial-pulse-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 18px 0;
  animation: testimonialMarquee 24s linear infinite;
}

.testimonial-pulse-track span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.testimonial-grid-section {
  background: var(--color-white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-mini-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid rgba(7, 38, 56, 0.1);
  background:
    linear-gradient(145deg, #ffffff, #eef7f9);
  box-shadow: var(--shadow-card);
  transition: transform 0.38s ease, box-shadow 0.38s ease, background 0.38s ease, color 0.38s ease;
}

.testimonial-mini-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.62) 42%, transparent 72%),
    linear-gradient(135deg, rgba(15, 76, 117, 0.22), rgba(50, 130, 184, 0.18));
  transform: translateX(-14%) scale(1.04);
  transition: opacity 0.35s ease, transform 0.5s ease;
}

.testimonial-mini-card > * {
  position: relative;
  z-index: 1;
}

.testimonial-mini-card span {
  min-height: 30px;
  margin-bottom: 22px;
  padding: 7px 10px;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--card-accent, var(--hover-accent-1)), var(--card-accent-2, var(--hover-accent-1b)));
}

.testimonial-mini-card p {
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.55;
}

.testimonial-mini-card strong,
.testimonial-mini-card small {
  display: block;
}

.testimonial-mini-card strong {
  margin-top: 22px;
  color: var(--color-navy);
  font-size: 17px;
}

.testimonial-mini-card small {
  margin-top: 4px;
  color: var(--color-muted);
  font-weight: 800;
}

.testimonial-mini-card:nth-child(2n) span {
  background: linear-gradient(135deg, var(--card-accent), var(--card-accent-2));
}

.testimonial-mini-card:nth-child(3n) span {
  background: linear-gradient(135deg, var(--card-accent), var(--card-accent-2));
}

.testimonial-mini-card:hover {
  transform: translateY(-10px) rotate(0.6deg);
  background: linear-gradient(135deg, var(--card-accent, var(--hover-accent-1)), var(--card-accent-2, var(--hover-accent-1b)));
  color: var(--color-white);
  box-shadow: 0 30px 70px rgba(7, 38, 56, 0.22);
}

.testimonial-mini-card:hover::before {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.testimonial-mini-card:hover p,
.testimonial-mini-card:hover strong,
.testimonial-mini-card:hover small {
  color: var(--color-white);
}

.testimonial-final-section {
  background:
    linear-gradient(135deg, rgba(7, 38, 56, 0.98), rgba(15, 118, 110, 0.94));
}

.testimonial-final-card {
  position: relative;
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  color: var(--color-white);
  text-align: center;
  box-shadow: 0 34px 90px rgba(1, 16, 24, 0.3);
}

.testimonial-final-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-100%);
  animation: testimonialSweep 5s ease-in-out infinite;
}

.testimonial-final-card > * {
  position: relative;
  z-index: 1;
}

.testimonial-final-card h2 {
  color: var(--color-white);
}

.testimonial-final-card p {
  color: rgba(255, 255, 255, 0.84);
}

@keyframes testimonialColorSlide {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 900px 0;
  }
}

@keyframes testimonialChipFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes testimonialPanelFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(0.8deg);
  }
}

@keyframes testimonialSweep {
  0% {
    transform: translateX(-100%);
  }

  48%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes testimonialAvatarPop {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.08) rotate(-4deg);
  }
}

@keyframes testimonialMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1000px) {
  .testimonial-hero-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-hero-panel {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .testimonials-hero {
    padding: 118px 0 64px;
  }

  .testimonial-hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .testimonial-showcase .slide {
    padding: 12px 44px 24px;
  }

  .testimonial-story {
    min-height: auto;
    padding: 26px 20px;
  }

  .testimonial-story p,
  .testimonial-mini-card p {
    font-size: 16px;
  }

  .testimonial-avatar {
    width: 58px;
    height: 58px;
    font-size: 19px;
  }

  .testimonial-mini-card,
  .testimonial-final-card,
  .testimonial-hero-panel {
    padding: 22px;
  }
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

/* FOOTER */

.footer-logo-bar {
  position: relative;
  overflow: hidden;
  padding: 24px 0;
  background: var(--color-white);
}

.footer-logo-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
  align-items: center;
}

.footer-logo-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 128px;
  padding: 4px 10px;
  background: transparent;
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.34s ease;
}

.footer-logo-card.reveal:not(.active):nth-child(2) {
  transition-delay: 0.08s;
}

.footer-logo-card.reveal:not(.active):nth-child(3) {
  transition-delay: 0.16s;
}

.footer-logo-card.reveal:not(.active):nth-child(4) {
  transition-delay: 0.24s;
}

.footer-logo-card img {
  position: relative;
  z-index: 1;
  width: 290px;
  height: 126px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transform: translateZ(0);
  transition: transform 0.34s ease;
}

.footer-logo-a2 img {
  width: 114px;
  height: 114px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo-a5 img {
  width: 326px;
  height: 142px;
  transform: translateY(8px);
}

.footer-logo-card:hover {
  transform: translateY(-6px);
}

.footer-logo-card:hover img {
  transform: scale(1.08);
}

.footer-logo-a5:hover img {
  transform: translateY(8px) scale(1.08);
}

.site-footer {
  background: var(--color-navy-dark);
  color: var(--color-white);
}

.site-footer h3,
.site-footer h4 {
  color: var(--color-white);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer a:hover {
  color: var(--color-white);
}

.footer-cta-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #061f31 0%, #2f6074 48%, #0f766e 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta-band::before,
.footer-cta-band::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.footer-cta-band::before {
  inset: -40% auto -40% -24%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  animation: footerSheen 7s ease-in-out infinite;
}

.footer-cta-band::after {
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 42px);
  background-size: 72px 72px;
  animation: footerPatternSlide 18s linear infinite;
}

.footer-cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 34px;
}

.footer-callout h3 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.footer-callout h3 a {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 16px 42px rgba(1, 16, 24, 0.22);
  line-height: 1.12;
  overflow-wrap: anywhere;
  animation: footerCallGlow 3.6s ease-in-out infinite;
}

.footer-callout h3 a::before {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #f8d57e;
  box-shadow: 0 0 0 8px rgba(248, 213, 126, 0.14);
  animation: footerDotPulse 1.8s ease-in-out infinite;
}

.footer-callout p {
  margin-bottom: 0;
}

.footer-callout p {
  max-width: 620px;
  font-size: 18px;
  font-weight: 700;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr) minmax(220px, 0.7fr);
  gap: 36px;
  padding-top: 46px;
  padding-bottom: 36px;
}

.footer-about p {
  max-width: 620px;
  line-height: 1.75;
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.footer-contact-list p {
  margin-bottom: 0;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 900;
}

.footer-hours p {
  margin-bottom: 10px;
}

.footer-hours span {
  display: inline-flex;
  margin-top: 4px;
  padding: 7px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom-links a {
  font-size: 14px;
  font-weight: 800;
}

@keyframes footerSheen {
  0%,
  18% {
    transform: translateX(0) skewX(-18deg);
    opacity: 0;
  }

  38% {
    opacity: 1;
  }

  62%,
  100% {
    transform: translateX(380%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes footerPatternSlide {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 144px 72px;
  }
}

@keyframes footerCallGlow {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 42px rgba(1, 16, 24, 0.22);
  }

  50% {
    border-color: rgba(248, 213, 126, 0.5);
    box-shadow: 0 20px 54px rgba(1, 16, 24, 0.3), 0 0 0 5px rgba(248, 213, 126, 0.08);
  }
}

@keyframes footerDotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(248, 213, 126, 0.14);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(248, 213, 126, 0.04);
  }
}

/* CALENDLY */

.calendly-wrapper {
  background: var(--color-white);
  border-radius: 4px;
  padding: 12px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.calendly-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
  border-radius: 4px;
  background: var(--color-white);
}

.calendly-availability-panel {
  margin-bottom: 24px;
}

.calendly-time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.calendly-time-grid div {
  padding: 16px;
  border: 1px solid rgba(7, 38, 56, 0.12);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(234, 243, 246, 0.92));
}

.calendly-time-grid span,
.calendly-time-grid strong {
  display: block;
}

.calendly-time-grid span {
  margin-bottom: 8px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.calendly-time-grid strong {
  color: var(--color-navy);
  font-size: 20px;
}

@media (max-width: 640px) {
  .calendly-time-grid {
    grid-template-columns: 1fr;
  }
}

/* WHATSAPP */

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.whatsapp-link:hover {
  color: var(--color-white);
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 4px;
  background: #25d366;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.34);
}

.floating-whatsapp svg {
  display: block;
}

body.drawer-open .floating-whatsapp {
  opacity: 0;
  pointer-events: none;
}

/* PRICING PAGES */

.pricing-page {
  background: var(--color-page);
}

.pricing-hero {
  padding-top: 150px;
  background:
    radial-gradient(circle at top left, rgba(7, 38, 56, 0.1), transparent 32%),
    radial-gradient(circle at top right, rgba(8, 145, 178, 0.12), transparent 32%),
    var(--color-page);
}

.pricing-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.pricing-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--color-navy);
  max-width: 920px;
}

.pricing-hero-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 18px;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}

.pricing-hero-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.pricing-hero-card h3 {
  margin-bottom: 8px;
}

.pricing-hero-card p {
  color: var(--color-muted);
  margin-bottom: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pricing-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.14);
}

.pricing-card.featured {
  border-color: rgba(8, 145, 178, 0.3);
  box-shadow: 0 24px 60px rgba(8, 145, 178, 0.14);
}

.pricing-card.featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--gradient-brand);
}

.pricing-card-top {
  margin-bottom: 18px;
}

.pricing-badge {
  display: inline-block;
  color: var(--color-green);
  background: var(--color-green-light);
  border-radius: 4px;
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.pricing-badge.blue {
  color: #0b3347;
  background: #e2edf1;
}

.pricing-badge.purple {
  color: #072638;
  background: #eef5f7;
}

.pricing-badge.green {
  color: var(--color-green);
  background: var(--color-green-light);
}

.price {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 900;
  color: var(--color-navy);
  margin: 14px 0 0;
}

.price span {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-muted-2);
}

.package-subtitle {
  color: var(--color-muted-2);
  font-weight: 800;
  margin-bottom: 0;
}

.package-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  color: #334155;
}

.package-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
}

.package-list li::before {
  content: "\2713";
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 145, 178, 0.12);
  color: var(--color-cyan);
  font-size: 13px;
  font-weight: 900;
  margin-top: 1px;
}

.package-note {
  background: var(--color-soft-green);
  border: 1px solid #9fb3bd;
  color: var(--color-green);
  padding: 12px 14px;
  border-radius: 4px;
  font-weight: 800;
  margin: 18px 0 0;
}

.pricing-btn {
  margin-top: auto;
  text-align: center;
  width: 100%;
}

.pricing-card .package-list + .pricing-btn,
.pricing-card .package-note + .pricing-btn {
  margin-top: auto;
}

.pricing-card .package-list,
.pricing-card .package-note {
  margin-bottom: 24px;
}

.construction-pricing-section {
  background: var(--color-white);
}

.discount-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(8, 145, 178, 0.14), transparent 32%),
    var(--gradient-dark);
  color: var(--color-white);
  border-radius: 4px;
  padding: 34px;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.18);
}

.discount-banner .section-kicker {
  color: #d8e3e8;
}

.discount-banner p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 0;
}

.discount-amount {
  width: 150px;
  height: 150px;
  border-radius: 4px;
  background: var(--gradient-brand);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(8, 145, 178, 0.25);
}

.service-price-list {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.service-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}

.service-price-row:last-child {
  border-bottom: none;
}

.service-price-row span {
  color: #334155;
  font-weight: 800;
}

.service-price-row strong {
  color: var(--color-green);
  white-space: nowrap;
}

/* TAX AND ACCOUNTING PAGE */

.tax-accounting-page {
  background: var(--color-page);
}

.tax-accounting-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at top left, rgba(8, 145, 178, 0.16), transparent 34%),
    linear-gradient(180deg, var(--color-soft-green) 0%, var(--color-page) 100%);
}

.tax-accounting-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.tax-accounting-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--color-navy);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.02;
}

.tax-accounting-hero-copy p {
  max-width: 760px;
  color: var(--color-muted);
  font-size: 18px;
}

.tax-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tax-service-tags span {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid rgba(8, 145, 178, 0.2);
  border-radius: 4px;
  background: var(--color-white);
  color: var(--color-green);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.tax-accounting-visual {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.tax-accounting-visual > p {
  margin: 0;
  color: var(--color-green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.tax-visual-card {
  display: grid;
  gap: 5px;
  padding: 16px;
  border-left: 4px solid var(--color-cyan);
  border-radius: 4px;
  background: var(--color-soft-green);
}

.tax-visual-card span {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 800;
}

.tax-visual-card strong {
  color: var(--color-navy);
  font-size: 20px;
}

.tax-efficiency-section {
  background: var(--color-white);
}

.tax-efficiency-section .split-section {
  align-items: center;
}

.tax-efficiency-section .btn {
  margin-top: 12px;
}

.tax-efficiency-panel {
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(234, 243, 246, 0.92));
  box-shadow: var(--shadow-card);
}

/* NEW CLIENT OFFER */

.offer-page {
  background: #f7f9fb;
}

.offer-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 58px;
  background:
    linear-gradient(135deg, rgba(7, 38, 56, 0.98), rgba(47, 96, 116, 0.94));
  color: var(--color-white);
}

.offer-hero-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.offer-hero-copy h1 {
  margin-bottom: 18px;
  color: var(--color-white);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.04;
}

.offer-hero-copy .lead {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.offer-hero .section-kicker,
.offer-final-card .section-kicker {
  color: #d9edf3;
}

.offer-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.offer-final-section::before {
  content: none;
}

.offer-price-card,
.offer-final-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 38, 56, 0.1);
  border-radius: 4px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.offer-price-card > *,
.offer-final-card > * {
  position: relative;
  z-index: 1;
}

.offer-price-card::after,
.offer-final-card::after {
  content: none;
}

.offer-price-card p {
  color: var(--color-muted);
}

.offer-pricing-section {
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  background: #ffffff;
}

.offer-pricing-section > .container,
.offer-final-section > .container {
  position: relative;
  z-index: 1;
}

.offer-pricing-intro {
  margin-top: 22px;
  text-align: center;
}

.offer-pricing-intro h3 {
  margin-bottom: 0;
  color: var(--color-navy);
}

.offer-pricing-grid,
.offer-fee-grid,
.offer-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.offer-price-card {
  --tier-color: #2f6074;
  --tier-soft: #edf5f8;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(7, 38, 56, 0.1);
  border-top: 8px solid var(--tier-color);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94));
  box-shadow: 0 18px 42px rgba(7, 38, 56, 0.08);
}

.offer-tier-bronze {
  --tier-color: #a66a33;
  --tier-soft: #fff4e8;
}

.offer-tier-silver {
  --tier-color: #7e8a98;
  --tier-soft: #f1f5f9;
}

.offer-tier-gold {
  --tier-color: #bf8f20;
  --tier-soft: #fff8df;
}

.offer-price-head span {
  display: inline-flex;
  padding: 7px 11px;
  margin-bottom: 14px;
  border-radius: 4px;
  background: var(--tier-soft);
  color: var(--tier-color);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-price-head h3 {
  margin-bottom: 20px;
}

.offer-price-main {
  margin: 4px 0 22px;
}

.offer-price-main strong {
  display: block;
  color: var(--tier-color);
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 0.92;
}

.offer-price-main span {
  display: block;
  margin-top: 10px;
  color: var(--color-muted);
  font-weight: 900;
}

.offer-price-lines {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.offer-price-lines-centered {
  align-content: center;
  flex: 1;
  text-align: center;
}

.offer-price-lines div {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(7, 38, 56, 0.1);
  border-radius: 4px;
  background: var(--tier-soft);
}

.offer-price-lines span {
  color: #344653;
  font-weight: 800;
}

.offer-price-lines strong {
  color: var(--tier-color);
  font-size: 20px;
  line-height: 1.15;
}

.offer-business-card .offer-price-lines strong {
  font-size: 18px;
}

.offer-fee-card {
  gap: 22px;
}

.offer-fee-card-head {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.offer-fee-icon {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  background:
    linear-gradient(145deg, var(--tier-soft), rgba(255, 255, 255, 0.92));
  color: var(--tier-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 38, 56, 0.1);
  box-shadow: 0 14px 28px rgba(7, 38, 56, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-fee-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-fee-card .offer-price-head h3 {
  margin-bottom: 0;
}

.offer-fee-card:hover .offer-fee-icon {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(7, 38, 56, 0.12);
}

.offer-fee-card .offer-price-lines div {
  border-left: 4px solid var(--tier-color);
  background:
    linear-gradient(135deg, var(--tier-soft), rgba(255, 255, 255, 0.92));
}

.offer-rate-note {
  max-width: 980px;
  margin: 30px auto 0;
  padding: 22px 24px;
  border-left: 5px solid var(--color-green);
  border-radius: 4px;
  background: var(--color-soft-green);
  color: #334155;
  font-weight: 700;
  line-height: 1.75;
}

.offer-package-section {
  padding-top: 76px;
}

.offer-package-card {
  --tier-color: #2f6074;
  --tier-soft: #edf5f8;
  border-top: 8px solid var(--tier-color);
}

.offer-package-card .pricing-badge {
  background: var(--tier-soft);
  color: var(--tier-color);
}

.offer-package-price {
  display: grid;
  gap: 5px;
  margin: 18px 0 0;
  color: var(--color-muted-2);
  font-weight: 900;
}

.offer-package-price strong {
  color: var(--tier-color);
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.offer-package-card .package-list {
  margin-top: 4px;
}

.offer-package-note {
  background: var(--color-white);
}

.offer-final-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 38, 56, 0.98), rgba(47, 96, 116, 0.95));
}

.offer-final-card {
  padding: 40px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 28px 70px rgba(1, 16, 24, 0.28);
}

.offer-final-card h2 {
  color: var(--color-white);
}

.offer-final-card p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
}

/* CONTACT PAGE */

.contact-page {
  background: var(--color-page);
}

.contact-hero {
  padding-top: 150px;
  background:
    radial-gradient(circle at top left, rgba(7, 38, 56, 0.12), transparent 34%),
    radial-gradient(circle at top right, rgba(8, 145, 178, 0.14), transparent 34%),
    linear-gradient(180deg, var(--color-page) 0%, var(--color-soft-green) 100%);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.contact-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--color-navy);
  max-width: 900px;
}

.contact-hero .lead {
  font-size: 18px;
  max-width: 780px;
}

.contact-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-hero-points div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 10px 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.contact-hero-points span {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(8, 145, 178, 0.12);
  color: var(--color-cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
}

.contact-hero-points p {
  margin: 0;
  color: #334155;
  font-weight: 800;
  font-size: 14px;
}

.contact-hero-card {
  background:
    radial-gradient(circle at top right, rgba(8, 145, 178, 0.16), transparent 34%),
    var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 72px rgba(15, 23, 42, 0.16);
}

.contact-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  color: var(--color-white);
  font-size: 34px;
  margin-bottom: 22px;
  box-shadow: 0 18px 34px rgba(7, 38, 56, 0.22);
}

.contact-hero-card h2 {
  margin-bottom: 12px;
}

.contact-hero-card p {
  color: var(--color-muted);
}

.contact-action-stack {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-action-stack .btn {
  text-align: center;
}

.contact-form-section {
  background: var(--color-page);
}

.contact-form-section.quote-first-section {
  padding-top: 112px;
}

.contact-success {
  max-width: none;
  margin-bottom: 28px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 30px;
  align-items: start;
}

.contact-form-card {
  max-width: none;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 34px;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--gradient-brand);
}

.form-heading {
  margin-bottom: 24px;
}

.form-heading h1,
.form-heading h2 {
  margin-bottom: 10px;
}

.form-heading p {
  color: var(--color-muted-2);
  margin-bottom: 0;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-card label {
  display: grid;
  gap: 8px;
}

.contact-form-card label span {
  color: #334155;
  font-size: 14px;
  font-weight: 900;
}

.quote-interest-options {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.quote-interest-options legend {
  margin-bottom: 2px;
  color: #334155;
  font-size: 14px;
  font-weight: 900;
}

.quote-interest-options label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  width: fit-content;
  max-width: 100%;
  padding: 8px 10px;
  border: 1px solid rgba(7, 38, 56, 0.1);
  border-radius: 4px;
  background: var(--color-page);
  cursor: pointer;
}

.quote-interest-options input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--color-cyan);
  flex: 0 0 auto;
}

.quote-interest-options label span {
  color: #334155;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select {
  border-radius: 4px;
  background: var(--color-page);
  border: 1px solid #dbe3ea;
}

.contact-form-card input:hover,
.contact-form-card textarea:hover,
.contact-form-card select:hover {
  border-color: rgba(8, 145, 178, 0.45);
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus {
  background: var(--color-white);
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.12);
}

.contact-submit {
  width: 100%;
  margin-top: 4px;
  border-radius: 4px;
  padding: 15px 24px;
}

.contact-side-panel {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 120px;
}

.contact-mini-card,
.contact-promise-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-mini-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-mini-card:hover,
.contact-promise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
}

.mini-icon {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  background: var(--color-soft-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.contact-mini-card h3 {
  margin-bottom: 4px;
}

.contact-mini-card p {
  margin: 0;
  color: var(--color-muted);
  word-break: break-word;
}

.contact-mini-card a {
  color: var(--color-green);
  font-weight: 900;
}

.contact-promise-card {
  background:
    radial-gradient(circle at top right, rgba(8, 145, 178, 0.12), transparent 34%),
    var(--color-white);
}

.contact-promise-card .check-list {
  margin-top: 16px;
}

.whatsapp-mini-icon {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.whatsapp-mini-icon svg {
  display: block;
}

/* WORDPRESS CONTENT HELPERS */

.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin: 0 24px 24px 0;
}

.alignright {
  float: right;
  margin: 0 0 24px 24px;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  color: var(--color-muted);
  font-size: 14px;
  margin-top: 8px;
}

/* ANIMATIONS */

@keyframes spinHorizontalOnce {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .site-header .container {
    padding-left: 12px;
    padding-right: 16px;
  }
}

@media (max-width: 1000px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-cta-grid,
  .footer-main-grid,
  .metrics-grid,
  .process-wrap,
  .assurance-layout,
  .split-section,
  .pricing-hero-grid,
  .pricing-grid,
  .pricing-grid-3,
  .offer-pricing-grid,
  .offer-fee-grid,
  .offer-package-grid,
  .discount-banner,
  .contact-hero-grid,
  .contact-layout,
  .tax-accounting-hero-grid,
  .form-grid-2,
  .professional-hero-grid,
  .service-banner,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .contact-side-panel {
    position: static;
  }

  .discount-amount {
    width: 130px;
    height: 130px;
    font-size: 24px;
  }
}

@media (max-height: 760px) {
  .contact-side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 72px;
  }

  .site-header .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .logo {
    font-size: 14px;
    min-width: 0;
    white-space: normal;
  }

  .header-brand {
    gap: 6px;
  }

  .header-home-back {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .logo span {
    white-space: normal;
    line-height: 1.15;
  }

  .logo img {
    max-height: 46px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .site-drawer {
    width: min(340px, 88vw);
    padding: 78px 18px 22px;
  }

  .footer-cta-grid {
    gap: 18px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .footer-callout {
    text-align: center;
  }

  .footer-callout h3 a {
    justify-content: center;
    width: 100%;
    padding: 12px;
  }

  .footer-logo-bar {
    padding: 16px 0;
  }

  .footer-logo-row {
    grid-template-columns: repeat(4, 246px);
    justify-content: start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .footer-logo-card {
    height: 110px;
    padding: 4px 10px;
    scroll-snap-align: center;
  }

  .footer-logo-card img {
    width: 226px;
    height: 98px;
  }

  .footer-logo-a2 img {
    width: 84px;
    height: 84px;
  }

  .footer-logo-a5 img {
    width: 250px;
    height: 108px;
    transform: translateY(6px);
  }

  .drawer-nav a {
    font-size: 16px;
    padding: 12px 10px;
  }

  #homeHero,
  #about,
  #services,
  #portfolio,
  #process,
  #testimonials,
  #blog,
  #quote,
  #book,
  #contact,
  #offer-pricing {
    scroll-margin-top: 82px;
  }

  .section {
    padding: 70px 0;
  }

  .page-content {
    padding-top: 120px;
  }

  .hero-video-section {
    min-height: 86vh;
  }

  .professional-hero {
    min-height: auto;
  }

  .professional-hero-grid {
    padding: 130px 0 76px;
    gap: 28px;
  }

  .hero-service-panel,
  .service-banner {
    padding: 24px;
  }

  .service-pill-grid {
    grid-template-columns: 1fr;
  }

  .hero-video-content {
    padding: 130px 0 90px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-buttons {
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-action-buttons {
    align-items: stretch;
    flex-direction: column;
    justify-content: stretch;
    width: 100%;
  }

  .hero-action-buttons .btn {
    width: 100%;
    white-space: normal;
  }

  .home-services-dropdown {
    width: 100%;
  }

  .home-services-menu {
    position: static;
    margin-top: 10px;
    min-width: 0;
    width: 100%;
  }

  .card,
  .process-panel,
  .assurance-card,
  .cta-panel,
  .pricing-card,
  .contact-hero-card,
  .contact-form-card {
    padding: 22px;
  }

  .process-step {
    grid-template-columns: 52px 1fr;
    padding: 16px;
  }

  .process-badge {
    width: 52px;
    height: 52px;
    border-radius: 4px;
  }

  .highlight-card {
    padding: 24px;
  }

  .highlight-card p {
    max-width: 100%;
  }

  .slide {
    padding: 0 34px;
  }

  .pricing-hero,
  .contact-hero,
  .offer-hero {
    padding-top: 130px;
  }

  .offer-hero {
    padding-top: 54px;
    padding-bottom: 168px;
  }

  .pricing-hero-card img {
    height: 230px;
  }

  .service-price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-price-row strong {
    white-space: normal;
  }

  .hero-action-panel {
    justify-self: stretch;
    max-width: none;
  }

  .offer-final-card {
    padding: 28px;
  }

  .contact-hero-points {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-hero-points div {
    border-radius: 4px;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }

  .calendly-wrapper iframe {
    min-height: 650px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .hero-video-section h1,
  .professional-hero-copy h1,
  .contact-hero h1,
  .pricing-hero h1 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .btn {
    padding: 12px 18px;
  }

  .contact-mini-card {
    grid-template-columns: 44px 1fr;
  }

  .mini-icon {
    width: 44px;
    height: 44px;
    border-radius: 4px;
  }
}

/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .btn:hover,
  .card:hover,
  .metric-box:hover,
  .process-step:hover,
  .pricing-card:hover,
  .contact-hero-card:hover,
  .contact-mini-card:hover,
  .contact-promise-card:hover,
  .floating-whatsapp:hover {
    transform: none;
  }
}
/* DRAWER OPEN FIXES */

/* Keep focus on the drawer while it is open */
body.drawer-open {
  overflow: hidden;
}

/* Allow backdrop clicks to close the drawer */
body.drawer-open .drawer-backdrop {
  pointer-events: auto;
}

/* Cross icon must always be black when drawer is open */
body.drawer-open .menu-toggle {
  background: #ffffff !important;
  border-color: rgba(15, 23, 42, 0.12) !important;
}

body.drawer-open .menu-toggle span {
  background: #0f172a !important;
}

/* Highlight current drawer page */
.drawer-nav a.is-current {
  background: #e8eef1;
  color: #072638;
  cursor: default;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(7, 38, 56, 0.16);
}

.drawer-nav a.is-current::after {
  content: "Current";
  opacity: 1;
  transform: none;
  color: #072638;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* If the current item is the last CTA-style item, keep it readable */
.drawer-nav > ul > li:last-child > a.is-current {
  background: #e8eef1;
  color: #072638;
  box-shadow: inset 0 0 0 1px rgba(7, 38, 56, 0.16);
}

.drawer-nav > ul > li:last-child > a.is-current::after {
  color: #072638;
}

/* SITE-WIDE COMPACT POLISH PASS */

:root {
  --radius-sm: 4px;
  --radius-md: 4px;
  --radius-lg: 4px;
  --radius-xl: 4px;
  --radius-2xl: 4px;
}

*,
*::before,
*::after {
  border-radius: 4px;
}

body {
  font-size: 15px;
  line-height: 1.55;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.06;
}

h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  line-height: 1.12;
}

h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

p {
  margin-bottom: 14px;
}

.lead,
.hero-text,
.contact-hero .lead {
  font-size: 16px;
  line-height: 1.58;
}

.section {
  padding: 64px 0;
}

.page-content {
  padding: 112px 0 58px;
  min-height: auto;
}

.content-section {
  margin-top: 34px;
}

.section-heading {
  margin-bottom: 22px;
}

.mt-32 {
  margin-top: 24px;
}

.mt-48 {
  margin-top: 34px;
}

.grid,
.industry-grid,
.pricing-grid,
.contact-layout,
.assurance-layout,
.process-wrap,
.contact-hero-grid,
.pricing-hero-grid,
.form-grid-2 {
  gap: 18px;
}

.professional-hero {
  min-height: 80vh;
}

.professional-hero-grid {
  gap: 30px;
  padding: 126px 0 70px;
}

.professional-hero-copy h1,
.contact-hero h1,
.pricing-hero h1,
.hero-video-section h1 {
  font-size: clamp(2rem, 4.3vw, 3.75rem);
  line-height: 1.06;
  margin-bottom: 14px;
}

.hero-service-panel,
.card,
.service-detail-card,
.service-banner,
.industry-card,
.process-panel,
.assurance-card,
.cta-panel,
.pricing-card,
.pricing-hero-card,
.contact-hero-card,
.contact-form-card,
.contact-mini-card,
.contact-promise-card,
.calendly-wrapper {
  padding: 20px;
}

.service-detail-card,
.industry-card,
.metric-box,
.highlight-card {
  min-height: auto;
}

.card-image {
  height: 190px;
  margin-bottom: 14px;
}

.large-image {
  height: 300px;
}

.service-icon,
.contact-icon-wrap,
.mini-icon,
.process-badge,
.avatar-initial {
  width: 48px;
  height: 48px;
  font-size: 18px;
  margin-bottom: 14px;
}

.service-pill-grid span,
.card-label,
.service-detail-tag,
.pricing-badge,
.contact-hero-points div,
.pagination a,
.pagination span {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 12px;
}

.btn {
  padding: 10px 16px;
  font-size: 14px;
}

.drawer-nav a {
  padding: 11px 10px;
  font-size: 15px;
}

.custom-form input,
.custom-form textarea,
.custom-form select,
.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select {
  padding: 12px 13px;
  font-size: 14px;
}

.form-heading,
.pricing-card-top {
  margin-bottom: 14px;
}

.package-list,
.check-list,
.mini-list,
.insights-accordion {
  gap: 9px;
}

.service-price-row {
  padding: 15px 18px;
}

.card,
.service-detail-card,
.pricing-card,
.contact-hero-card,
.contact-mini-card,
.contact-promise-card,
.process-step,
.metric-box,
.insight-detail,
.testimonial-mini-card,
.service-price-row {
  --card-accent: var(--hover-accent-1);
  --card-accent-2: var(--hover-accent-1b);
  position: relative;
  overflow: hidden;
}

.grid > .card:nth-child(4n+1),
.service-detail-grid > .service-detail-card:nth-child(4n+1),
.pricing-grid > .pricing-card:nth-child(4n+1),
.contact-side-panel > *:nth-child(4n+1),
.metrics-grid > .metric-box:nth-child(4n+1),
.process-steps > .process-step:nth-child(4n+1),
.testimonial-grid > .testimonial-mini-card:nth-child(4n+1),
.service-price-list > .service-price-row:nth-child(4n+1) {
  --card-accent: var(--hover-accent-1);
  --card-accent-2: var(--hover-accent-1b);
}

.grid > .card:nth-child(4n+2),
.service-detail-grid > .service-detail-card:nth-child(4n+2),
.pricing-grid > .pricing-card:nth-child(4n+2),
.contact-side-panel > *:nth-child(4n+2),
.metrics-grid > .metric-box:nth-child(4n+2),
.process-steps > .process-step:nth-child(4n+2),
.testimonial-grid > .testimonial-mini-card:nth-child(4n+2),
.service-price-list > .service-price-row:nth-child(4n+2) {
  --card-accent: var(--hover-accent-2);
  --card-accent-2: var(--hover-accent-2b);
}

.grid > .card:nth-child(4n+3),
.service-detail-grid > .service-detail-card:nth-child(4n+3),
.pricing-grid > .pricing-card:nth-child(4n+3),
.contact-side-panel > *:nth-child(4n+3),
.metrics-grid > .metric-box:nth-child(4n+3),
.process-steps > .process-step:nth-child(4n+3),
.testimonial-grid > .testimonial-mini-card:nth-child(4n+3),
.service-price-list > .service-price-row:nth-child(4n+3) {
  --card-accent: var(--hover-accent-3);
  --card-accent-2: var(--hover-accent-3b);
}

.grid > .card:nth-child(4n+4),
.service-detail-grid > .service-detail-card:nth-child(4n+4),
.pricing-grid > .pricing-card:nth-child(4n+4),
.contact-side-panel > *:nth-child(4n+4),
.metrics-grid > .metric-box:nth-child(4n+4),
.process-steps > .process-step:nth-child(4n+4),
.testimonial-grid > .testimonial-mini-card:nth-child(4n+4),
.service-price-list > .service-price-row:nth-child(4n+4) {
  --card-accent: var(--hover-accent-4);
  --card-accent-2: var(--hover-accent-4b);
}

.card::after,
.service-detail-card::after,
.pricing-card::after,
.contact-hero-card::after,
.contact-mini-card::after,
.contact-promise-card::after,
.process-step::after,
.metric-box::after,
.insight-detail::after,
.service-price-row::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 18%), rgba(255, 255, 255, 0.42), transparent 26%),
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.24) 48%, transparent 72%);
  transform: translateX(-16%);
  transition: opacity 0.35s ease, transform 0.45s ease;
}

.card > *,
.service-detail-card > *,
.pricing-card > *,
.contact-hero-card > *,
.contact-mini-card > *,
.contact-promise-card > *,
.process-step > *,
.metric-box > *,
.insight-detail > *,
.service-price-row > * {
  position: relative;
  z-index: 1;
}

.card:hover,
.service-detail-card:hover,
.industry-card:hover,
.pricing-card:hover,
.contact-hero-card:hover,
.contact-mini-card:hover,
.contact-promise-card:hover,
.process-step:hover,
.metric-box:hover,
.insight-detail:hover,
.service-price-row:hover {
  background: linear-gradient(135deg, var(--card-accent), var(--card-accent-2));
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 54px rgba(7, 38, 56, 0.22);
}

.card:hover::after,
.service-detail-card:hover::after,
.pricing-card:hover::after,
.contact-hero-card:hover::after,
.contact-mini-card:hover::after,
.contact-promise-card:hover::after,
.process-step:hover::after,
.metric-box:hover::after,
.insight-detail:hover::after,
.service-price-row:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.industry-card:hover {
  background: linear-gradient(135deg, var(--industry-accent), var(--industry-accent-2));
}

.card:hover :where(h2, h3, h4, p, li, strong),
.service-detail-card:hover :where(h2, h3, h4, p, li, strong),
.industry-card:hover :where(h2, h3, h4, p, li, strong),
.pricing-card:hover :where(h2, h3, h4, p, li, strong, .price, .package-subtitle),
.contact-hero-card:hover :where(h2, h3, h4, p, li, strong),
.contact-mini-card:hover :where(h2, h3, h4, p, a),
.contact-promise-card:hover :where(h2, h3, h4, p, li, strong),
.process-step:hover :where(h2, h3, h4, p, li, strong),
.metric-box:hover :where(.metric-number, .metric-label),
.insight-detail:hover :where(summary, p),
.service-price-row:hover :where(span, strong) {
  color: var(--color-white);
  -webkit-text-fill-color: currentColor;
}

.card:hover .card-label,
.service-detail-card:hover .service-detail-tag,
.pricing-card:hover .pricing-badge,
.contact-hero-card:hover .section-kicker,
.contact-promise-card:hover .section-kicker {
  background: rgba(255, 255, 255, 0.16);
  color: var(--color-white);
}

.service-card:hover .service-icon,
.contact-hero-card:hover .contact-icon-wrap,
.contact-mini-card:hover .mini-icon,
.process-step:hover .process-badge,
.pricing-card:hover .package-list li::before,
.check-list li:hover .check-mark {
  background: var(--color-white);
  color: var(--color-navy);
  box-shadow: 0 12px 24px rgba(7, 38, 56, 0.18);
}

.card:hover .mini-list li::before,
.service-detail-card:hover .mini-list li::before {
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.service-pill-grid span:hover,
.contact-hero-points div:hover,
.pagination a:hover,
.drawer-nav a:hover {
  background: linear-gradient(135deg, var(--hover-accent-1), var(--hover-accent-1b));
  color: var(--color-white);
  border-color: transparent;
  transform: translateY(-3px);
}

.contact-hero-points div:hover span {
  background: var(--color-white);
  color: var(--color-navy);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-secondary.dark-text:hover,
.pricing-btn:hover,
.contact-submit:hover {
  background: linear-gradient(135deg, var(--hover-accent-1), var(--hover-accent-1b));
  color: var(--color-white);
  border-color: transparent;
  transform: translateY(-4px);
}

.custom-form input:hover,
.custom-form textarea:hover,
.custom-form select:hover,
.contact-form-card input:hover,
.contact-form-card textarea:hover,
.contact-form-card select:hover {
  background: var(--color-white);
  border-color: rgba(7, 38, 56, 0.36);
}

@media (max-width: 640px) {
  .card,
  .service-detail-card,
  .industry-card,
  .testimonial-mini-card,
  .pricing-card,
  .contact-hero-card,
  .contact-mini-card,
  .contact-promise-card {
    transition-property: background, background-color, border-color, color;
    transition-duration: 0.62s;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    background: var(--mobile-card-base-bg);
    transform: none !important;
  }

  .card {
    --mobile-card-base-bg: rgba(255, 255, 255, 0.96);
  }

  .service-detail-card {
    --mobile-card-base-bg: var(--color-white);
  }

  .industry-card {
    --mobile-card-base-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 250, 0.98));
  }

  .testimonial-mini-card {
    --mobile-card-base-bg: linear-gradient(145deg, #ffffff, #eef7f9);
  }

  .pricing-card {
    --mobile-card-base-bg: rgba(255, 255, 255, 0.96);
  }

  .contact-hero-card {
    --mobile-card-base-bg: radial-gradient(circle at top right, rgba(8, 145, 178, 0.16), transparent 34%), var(--color-white);
  }

  .contact-mini-card,
  .contact-promise-card {
    --mobile-card-base-bg: rgba(255, 255, 255, 0.96);
  }

  .card,
  .service-detail-card {
    --mobile-card-shadow: var(--shadow-soft);
    --mobile-focus-bg: linear-gradient(135deg, var(--card-accent), var(--card-accent-2));
  }

  .industry-card,
  .testimonial-mini-card,
  .pricing-card,
  .contact-mini-card,
  .contact-promise-card {
    --mobile-card-shadow: var(--shadow-card);
    --mobile-focus-bg: linear-gradient(135deg, var(--card-accent), var(--card-accent-2));
  }

  .industry-card {
    --mobile-focus-bg: linear-gradient(135deg, var(--industry-accent), var(--industry-accent-2));
  }

  .testimonial-mini-card {
    --mobile-focus-bg: linear-gradient(135deg, var(--card-accent), var(--card-accent-2));
  }

  .contact-hero-card {
    --mobile-card-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    --mobile-focus-bg: linear-gradient(135deg, var(--card-accent), var(--card-accent-2));
  }

  .pricing-card.featured {
    --mobile-card-shadow: 0 24px 60px rgba(8, 145, 178, 0.14);
  }

  .card::after,
  .service-detail-card::after,
  .industry-card::after,
  .testimonial-mini-card::after,
  .pricing-card::after,
  .contact-hero-card::after,
  .contact-mini-card::after,
  .contact-promise-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    background: var(--mobile-focus-bg);
    transform: none !important;
    transition: opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .card > *,
  .service-detail-card > *,
  .industry-card > *,
  .testimonial-mini-card > *,
  .pricing-card > *,
  .contact-hero-card > *,
  .contact-mini-card > *,
  .contact-promise-card > * {
    position: relative;
    z-index: 1;
  }

  .card *,
  .service-detail-card *,
  .industry-card *,
  .testimonial-mini-card *,
  .pricing-card *,
  .contact-hero-card *,
  .contact-mini-card *,
  .contact-promise-card * {
    transition-property: color, background-color, border-color, -webkit-text-fill-color;
    transition-duration: 0.62s;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }

  .card:is(:hover, .is-scroll-focus),
  .service-detail-card:is(:hover, .is-scroll-focus),
  .pricing-card:is(:hover, .is-scroll-focus),
  .contact-hero-card:is(:hover, .is-scroll-focus),
  .contact-mini-card:is(:hover, .is-scroll-focus),
  .contact-promise-card:is(:hover, .is-scroll-focus) {
    background: var(--mobile-card-base-bg);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: var(--mobile-card-shadow);
    transform: none !important;
  }

  .industry-card:is(:hover, .is-scroll-focus) {
    background: var(--mobile-card-base-bg);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: var(--mobile-card-shadow);
    transform: none !important;
  }

  .testimonial-mini-card:is(:hover, .is-scroll-focus) {
    background: var(--mobile-card-base-bg);
    color: var(--color-white);
    box-shadow: var(--mobile-card-shadow);
    transform: none !important;
  }

  .card:is(:hover, .is-scroll-focus) :where(h2, h3, h4, p, li, strong),
  .service-detail-card:is(:hover, .is-scroll-focus) :where(h2, h3, h4, p, li, strong),
  .industry-card:is(:hover, .is-scroll-focus) :where(h2, h3, h4, p, li, strong),
  .testimonial-mini-card:is(:hover, .is-scroll-focus) :where(p, strong, small),
  .pricing-card:is(:hover, .is-scroll-focus) :where(h2, h3, h4, p, li, strong, .price, .package-subtitle),
  .contact-hero-card:is(:hover, .is-scroll-focus) :where(h2, h3, h4, p, li, strong),
  .contact-mini-card:is(:hover, .is-scroll-focus) :where(h2, h3, h4, p, a),
  .contact-promise-card:is(:hover, .is-scroll-focus) :where(h2, h3, h4, p, li, strong) {
    color: var(--color-white);
    -webkit-text-fill-color: currentColor;
  }

  .card:is(:hover, .is-scroll-focus) .card-label,
  .service-detail-card:is(:hover, .is-scroll-focus) .service-detail-tag,
  .pricing-card:is(:hover, .is-scroll-focus) .pricing-badge,
  .contact-hero-card:is(:hover, .is-scroll-focus) .section-kicker,
  .contact-promise-card:is(:hover, .is-scroll-focus) .section-kicker {
    background: rgba(255, 255, 255, 0.16);
    color: var(--color-white);
    transform: none !important;
  }

  .service-card:is(:hover, .is-scroll-focus) .service-icon,
  .industry-card:is(:hover, .is-scroll-focus) .industry-icon,
  .contact-hero-card:is(:hover, .is-scroll-focus) .contact-icon-wrap,
  .contact-mini-card:is(:hover, .is-scroll-focus) .mini-icon,
  .pricing-card:is(:hover, .is-scroll-focus) .package-list li::before {
    background: var(--color-white);
    color: var(--color-navy);
    box-shadow: none;
    transform: none !important;
  }

  .industry-card:is(:hover, .is-scroll-focus) .industry-icon svg {
    animation: none !important;
  }

  .card:hover::before,
  .card.is-scroll-focus::before {
    transform: scaleX(0) !important;
  }

  .card:is(:hover, .is-scroll-focus)::after,
  .service-detail-card:is(:hover, .is-scroll-focus)::after,
  .industry-card:is(:hover, .is-scroll-focus)::after,
  .testimonial-mini-card:is(:hover, .is-scroll-focus)::after,
  .pricing-card:is(:hover, .is-scroll-focus)::after,
  .contact-hero-card:is(:hover, .is-scroll-focus)::after,
  .contact-mini-card:is(:hover, .is-scroll-focus)::after,
  .contact-promise-card:is(:hover, .is-scroll-focus)::after {
    opacity: 1 !important;
    transform: none !important;
  }

  .testimonial-mini-card:is(:hover, .is-scroll-focus)::before {
    opacity: 0 !important;
    transform: none !important;
  }
}

@keyframes iconPop {
  0% {
    transform: scale(1) rotate(0deg);
  }

  45% {
    transform: scale(1.18) rotate(-8deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

@keyframes softPopIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.reveal.active {
  animation: softPopIn 0.7s ease both;
}

@media (max-width: 640px) {
  .section {
    padding: 50px 0;
  }

  .page-content {
    padding-top: 96px;
  }

  .contact-form-section.quote-first-section {
    padding-top: 92px;
  }

  .professional-hero-grid,
  .hero-video-content,
  .pricing-hero,
  .offer-hero,
  .tax-accounting-hero,
  .contact-hero {
    padding-top: 108px;
  }

  .offer-hero {
    padding-top: 42px;
    padding-bottom: 158px;
  }

  .professional-hero-copy h1,
  .offer-hero-copy h1,
  .tax-accounting-hero-copy h1,
  .contact-hero h1,
  .pricing-hero h1,
  .hero-video-section h1 {
    font-size: clamp(1.85rem, 10vw, 2.65rem);
  }

  .hero-service-panel,
  .card,
  .service-detail-card,
  .service-banner,
  .offer-price-card,
  .offer-final-card,
  .tax-accounting-visual,
  .tax-efficiency-panel,
  .industry-card,
  .pricing-card,
  .contact-hero-card,
  .contact-form-card,
  .contact-mini-card,
  .contact-promise-card {
    padding: 16px;
  }

  .offer-fee-card-head {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
  }

  .offer-fee-icon {
    width: 54px;
    height: 54px;
  }

  .offer-fee-icon svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .hero-action-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-action-buttons .btn {
    width: 100%;
  }

  .offer-hero-actions .btn {
    width: 100%;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .btn:hover,
  .card:hover,
  .service-detail-card:hover,
  .industry-card:hover,
  .pricing-card:hover,
  .contact-hero-card:hover,
  .contact-mini-card:hover,
  .contact-promise-card:hover,
  .process-step:hover,
  .metric-box:hover,
  .insight-detail:hover,
  .testimonial-story:hover,
  .testimonial-mini-card:hover,
  .service-price-row:hover,
  .service-pill-grid span:hover,
  .contact-hero-points div:hover,
  .pagination a:hover,
  .drawer-nav a:hover {
    opacity: 1;
    transform: none !important;
  }

  .testimonials-hero::before,
  .testimonials-hero::after,
  .testimonial-chip-row span,
  .testimonial-hero-panel,
  .testimonial-hero-panel::before,
  .testimonial-avatar,
  .testimonial-pulse-track,
  .testimonial-final-card::before {
    animation: none !important;
  }
}
