:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --navy: #0a2540;
  --navy-light: #12365a;
  --background: #f4f7fb;
  --surface: #ffffff;
  --surface-muted: #edf3fb;
  --text: #0a2540;
  --muted: #5a6d85;
  --primary: #0066ff;
  --primary-dark: #0052cc;
  --accent: #ff9900;
  --accent-dark: #e08600;
  --border: #d8e2ef;
  --shadow: 0 20px 60px rgba(10, 37, 64, 0.1);
  --shadow-lg: 0 30px 80px rgba(10, 37, 64, 0.16);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  transition: top 200ms var(--ease-out);
}

.skip-link:focus {
  top: 16px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(0, 102, 255, 0.45);
  outline-offset: 2px;
}

/* Top bar — Rick Cargo style */
.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
}

.top-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 16px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 24px;
}

.top-bar-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 18px;
  min-width: 0;
}

.top-bar a {
  color: #ffffff;
  font-weight: 700;
}

.top-bar a:hover {
  color: var(--accent);
}

/* Header / Nav — Huboo style */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 226, 239, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  transition: box-shadow 280ms var(--ease-out);
}

.nav-scrolled {
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  z-index: 2;
}

.brand-logo {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: block;
}

.brand-logo-full {
  display: block;
  width: auto;
  height: 48px;
  max-width: min(220px, 58vw);
}

.brand-mark {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--primary));
  color: #ffffff;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.brand-name {
  font-size: 1.05rem;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  white-space: nowrap;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.is-active {
  color: var(--primary);
}

.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-links a::after {
  display: block;
  height: 2px;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease-out);
  content: "";
}

.nav-cta {
  min-height: 46px;
  padding: 0 20px;
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle-bar,
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  margin-inline: auto;
  border-radius: 999px;
  background: var(--navy);
  transition:
    transform 260ms var(--ease-out),
    opacity 200ms var(--ease-out);
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(1),
.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(2),
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(3),
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

/* Sections */
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px 24px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.muted-section {
  max-width: none;
  background: var(--surface-muted);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

/* Hero — Huboo / ShipHype style */
.hero {
  position: relative;
  max-width: none;
  padding-top: 56px;
  padding-bottom: 56px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(0, 102, 255, 0.12), transparent 30%),
    radial-gradient(circle at 10% 80%, rgba(255, 153, 0, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--surface-muted) 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  content: "";
}

.hero::before {
  top: 10%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(0, 102, 255, 0.16);
  animation: float-soft 9s var(--ease-out) infinite alternate;
}

.hero::after {
  bottom: 5%;
  left: 8%;
  width: 220px;
  height: 220px;
  background: rgba(255, 153, 0, 0.12);
  animation: float-soft 11s var(--ease-out) infinite alternate-reverse;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-content > * {
  animation: hero-enter 0.85s var(--ease-out) both;
}

.hero-content > :nth-child(1) { animation-delay: 0.05s; }
.hero-content > :nth-child(2) { animation-delay: 0.12s; }
.hero-content > :nth-child(3) { animation-delay: 0.18s; }
.hero-content > :nth-child(4) { animation-delay: 0.24s; }
.hero-content > :nth-child(5) { animation-delay: 0.3s; }
.hero-content > :nth-child(6) { animation-delay: 0.36s; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.quote-widget {
  margin-bottom: 28px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.quote-widget-label {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
}

.quote-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quote-option {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    transform 220ms var(--ease-out),
    background 220ms var(--ease-out),
    border-color 220ms var(--ease-out);
}

.quote-option:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  background: rgba(0, 102, 255, 0.08);
}

.hero-visual-card {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 55%, #1a4d8c 100%);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  animation: float-card 5s var(--ease-out) infinite alternate;
}

.hero-visual-card li {
  opacity: 0;
  animation: hero-list-in 0.6s var(--ease-out) forwards;
}

.hero-visual-card li:nth-child(1) { animation-delay: 0.55s; }
.hero-visual-card li:nth-child(2) { animation-delay: 0.65s; }
.hero-visual-card li:nth-child(3) { animation-delay: 0.75s; }
.hero-visual-card li:nth-child(4) { animation-delay: 0.85s; }

.hero-visual-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 153, 0, 0.18);
  color: #ffd699;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual-card h2,
.hero-card-title {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-visual-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-visual-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-visual-card li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  content: "✓";
  font-weight: 900;
}

/* Stats band — Huboo / Rick Cargo */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border-block: 1px solid var(--border);
}

.stat-item.is-visible .stat-value {
  animation: stat-pop 0.6s var(--ease-out);
}

.stat-item {
  padding: 36px 24px;
  background: var(--navy);
  color: #ffffff;
  text-align: center;
  transition: background 300ms var(--ease-out);
}

.stat-item:hover {
  background: var(--navy-light);
}

.stat-value {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--accent);
}

.stat-label {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
}

/* Service cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    transform 280ms var(--ease-out),
    box-shadow 280ms var(--ease-out),
    border-color 280ms var(--ease-out);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 102, 255, 0.25);
  box-shadow: var(--shadow-lg);
}

.service-card.is-visible:hover .service-icon {
  animation: icon-bounce 0.6s var(--ease-out);
}

.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-4deg);
}

.service-icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--surface-muted);
  font-size: 1.5rem;
  transition: transform 300ms var(--ease-out);
}

.service-card p {
  flex: 1;
  color: var(--muted);
}

.card-link {
  margin-top: 18px;
  color: var(--primary-dark);
  font-weight: 800;
}

.card-link:hover {
  color: var(--accent-dark);
}

/* Feature / Why us cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 88px;
}

.feature-card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  transition: transform 260ms var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 102, 255, 0.2);
  box-shadow: var(--shadow);
}

.feature-icon {
  display: block;
  margin-bottom: 14px;
  font-size: 1.6rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  counter-reset: process;
}

.process-card {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  transition:
    transform 280ms var(--ease-out),
    box-shadow 280ms var(--ease-out),
    border-color 280ms var(--ease-out);
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 102, 255, 0.22);
  box-shadow: var(--shadow);
}

.process-card:not(:last-child)::after {
  position: absolute;
  top: 42px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  content: "";
}

.process-step {
  display: block;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.process-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* About */
.about-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.about-visual-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: 32px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(10, 37, 64, 0.08), rgba(10, 37, 64, 0.72)),
    linear-gradient(135deg, #c8d9ef 0%, #8aaed4 100%);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.about-visual-inner span {
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-visual-inner strong {
  font-size: 1.5rem;
  line-height: 1.2;
}

.about-content p {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-content .button {
  margin-top: 24px;
}

/* Industries */
.industries-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industries-list li {
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  font-weight: 700;
  transition: transform 220ms var(--ease-out);
}

.industries-list li:hover {
  transform: translateX(4px);
  border-color: rgba(0, 102, 255, 0.22);
}

/* Pricing */
.pricing-section {
  position: relative;
  max-width: none;
  padding-top: 96px;
  padding-bottom: 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 102, 255, 0.14), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(255, 153, 0, 0.1), transparent 30%),
    linear-gradient(165deg, var(--navy) 0%, #0d3052 48%, var(--navy-light) 100%);
  color: #ffffff;
}

.pricing-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.pricing-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.pricing-orb-a {
  top: -8%;
  right: 6%;
  width: 340px;
  height: 340px;
  background: rgba(0, 102, 255, 0.22);
  animation: float-soft 10s var(--ease-out) infinite alternate;
}

.pricing-orb-b {
  bottom: -12%;
  left: 4%;
  width: 280px;
  height: 280px;
  background: rgba(255, 153, 0, 0.16);
  animation: float-soft 12s var(--ease-out) infinite alternate-reverse;
}

.pricing-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.pricing-section .section-heading p,
.pricing-footnote {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-eyebrow {
  color: var(--accent);
}

.pricing-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.pricing-highlight {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  transition:
    transform 320ms var(--ease-out),
    border-color 320ms var(--ease-out),
    box-shadow 320ms var(--ease-out);
}

.pricing-highlight:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.pricing-highlight.is-featured {
  border-color: rgba(255, 153, 0, 0.45);
  background: linear-gradient(160deg, rgba(255, 153, 0, 0.14) 0%, rgba(255, 255, 255, 0.06) 100%);
  box-shadow: 0 20px 50px rgba(255, 153, 0, 0.12);
}

.pricing-highlight.is-featured::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 23px;
  background: linear-gradient(135deg, rgba(255, 153, 0, 0.5), rgba(0, 102, 255, 0.35));
  opacity: 0;
  transition: opacity 320ms var(--ease-out);
  content: "";
}

.pricing-highlight.is-featured:hover::before {
  opacity: 0.35;
}

.pricing-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 153, 0, 0.2);
  color: #ffd699;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-highlight h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1.05rem;
}

.pricing-highlight-rate {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 10px;
}

.pricing-highlight-value {
  color: var(--accent);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-highlight.is-featured .pricing-highlight-value {
  animation: rate-glow 3s var(--ease-out) infinite alternate;
}

.pricing-highlight-unit {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-highlight-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.pricing-included {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 36px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.pricing-included-icon {
  display: inline-grid;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 153, 0, 0.2);
  color: var(--accent);
  font-weight: 900;
}

.pricing-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pricing-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition:
    transform 320ms var(--ease-out),
    box-shadow 320ms var(--ease-out);
}

.pricing-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.pricing-panel-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.pricing-panel-icon {
  display: inline-grid;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: rgba(0, 102, 255, 0.18);
  font-size: 1.4rem;
}

.pricing-panel-header h3 {
  margin-bottom: 4px;
  color: #ffffff;
}

.pricing-panel-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.pricing-list {
  display: grid;
}

.pricing-list-head,
.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 14px 26px;
}

.pricing-list-head {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  transform: translateX(-12px);
  transition:
    transform 0.5s var(--ease-out),
    background 220ms var(--ease-out);
}

.pricing-row.is-visible {
  transform: translateX(0);
}

.pricing-row:last-child {
  border-bottom: 0;
}

.pricing-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.pricing-row.is-highlight {
  background: rgba(0, 102, 255, 0.1);
  border-left: 3px solid var(--primary);
  padding-left: 23px;
}

.pricing-row.is-highlight:hover {
  background: rgba(0, 102, 255, 0.14);
}

.pricing-rate data {
  display: inline-block;
  min-width: 72px;
  padding: 6px 12px;
  border-radius: 10px;
  background: rgba(255, 153, 0, 0.12);
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
  transition:
    transform 220ms var(--ease-out),
    background 220ms var(--ease-out);
}

.pricing-row:hover .pricing-rate data {
  transform: scale(1.05);
  background: rgba(255, 153, 0, 0.2);
}

.pricing-footnote {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: 0.92rem;
  line-height: 1.6;
  text-align: center;
}

.pricing-footnote a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-footnote a:hover {
  color: #ffd699;
}

.pricing-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.pricing-cta .button {
  min-width: 220px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    transform 300ms var(--ease-out),
    box-shadow 300ms var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card p {
  color: var(--muted);
  font-size: 1rem;
  font-style: italic;
}

.testimonial-card footer {
  margin-top: 20px;
}

.testimonial-card strong {
  display: block;
  color: var(--text);
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* CTA band */
.cta-band {
  position: relative;
  max-width: none;
  padding: 72px 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy-light) 100%);
  color: #ffffff;
}

.cta-band::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  animation: cta-shine 6s var(--ease-out) infinite;
  content: "";
  pointer-events: none;
}

.cta-band-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta-band h2 {
  color: #ffffff;
}

.cta-band p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

/* FAQ / SEO */
.seo-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.seo-copy {
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.seo-copy a {
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-list details {
  display: grid;
  grid-template-rows: auto 0fr;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  transition: grid-template-rows 360ms var(--ease-out);
}

.faq-list details[open] {
  grid-template-rows: auto 1fr;
}

.faq-list details > p {
  overflow: hidden;
  margin: 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  transition: color 220ms var(--ease-out);
}

.faq-list summary:hover {
  color: var(--primary);
}

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

.faq-list summary::after {
  float: right;
  color: var(--primary);
  content: "+";
}

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

.faq-list details p {
  margin: 10px 0 0;
  color: var(--muted);
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 320ms var(--ease-out),
    transform 320ms var(--ease-out);
}

.faq-list details[open] p {
  opacity: 1;
  transform: translateY(0);
}

.resources-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.resources-list li {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
}

.resources-list a {
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.resources-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Contact */
.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-card,
.contact-form {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.contact-details a {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--primary-dark);
  font-weight: 800;
}

.contact-address {
  margin: 16px 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-style: normal;
  line-height: 1.6;
}

.section-cta-link {
  margin-top: 28px;
  text-align: center;
}

.section-cta-link a:not(.button) {
  color: var(--primary-dark);
  font-weight: 800;
}

.centered-cta {
  text-align: center;
}

.centered-cta p {
  max-width: 640px;
  margin: 0 auto 20px;
  color: var(--muted);
}

.page-hero {
  padding-top: 48px;
  padding-bottom: 32px;
}

.page-hero-copy {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: var(--border);
  content: "/";
}

.breadcrumbs a {
  color: var(--primary-dark);
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: var(--accent-dark);
}

.about-page-grid,
.service-detail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.about-page-content p,
.service-detail-content p {
  color: var(--muted);
  font-size: 1.02rem;
}

.about-page-map iframe,
.service-detail-aside iframe {
  width: 100%;
  border: 0;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.aside-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.aside-card h2 {
  font-size: 1.1rem;
}

.aside-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.aside-card a {
  color: var(--primary-dark);
  font-weight: 700;
}

.inline-link-list {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.inline-link-list a {
  color: var(--primary-dark);
  font-weight: 700;
}

.areas-list {
  max-width: 900px;
  margin: 0 auto;
}

.not-found .hero-actions {
  justify-content: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    transform 280ms var(--ease-out),
    box-shadow 280ms var(--ease-out),
    border-color 280ms var(--ease-out);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 102, 255, 0.25);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface-muted);
}

.blog-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.blog-card h2 {
  font-size: 1.25rem;
}

.blog-card h2 a {
  color: var(--text);
}

.blog-card h2 a:hover {
  color: var(--primary);
}

.blog-card-excerpt {
  flex: 1;
  margin: 0 0 4px;
  color: var(--muted);
}

.blog-pagination {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
}

.blog-pagination a {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  transition:
    transform 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    color 220ms var(--ease-out);
}

.blog-pagination a:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  color: var(--primary);
}

.blog-pagination a:active {
  transform: translateY(0) scale(0.96);
}

.blog-meta {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.blog-article {
  max-width: 760px;
}

.blog-article h1 {
  margin-bottom: 28px;
}

.blog-section {
  margin-bottom: 28px;
}

.blog-section p,
.blog-article p {
  color: var(--muted);
  font-size: 1.05rem;
}

.blog-article-cta {
  margin-top: 48px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface-muted);
}

/* Key takeaways summary box above the article body */
.blog-takeaways {
  margin: 32px 0 40px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.blog-takeaways h2 {
  margin: 0 0 14px;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.blog-takeaways ul {
  margin: 0;
  padding-left: 20px;
}

.blog-takeaways li {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 1rem;
}

.blog-takeaways li:last-child {
  margin-bottom: 0;
}

/* In-article bullet lists */
.blog-list {
  margin: 0 0 20px;
  padding-left: 22px;
}

.blog-list li {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.blog-list li::marker {
  color: var(--primary);
}

.blog-list strong {
  color: var(--text);
}

.blog-article a,
.blog-takeaways a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-article a:hover,
.blog-takeaways a:hover {
  color: var(--primary);
}

.blog-article .breadcrumbs a,
.blog-article .button,
.blog-article .card-link {
  text-decoration: none;
}

.blog-faq {
  margin-top: 48px;
}

.blog-faq h2 {
  margin-bottom: 18px;
}

.faq-category {
  margin-bottom: 40px;
}

.faq-category h2 {
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.faq-resources {
  margin-top: 48px;
}

.centered-block {
  max-width: 760px;
  margin: 0 auto;
}

.centered-actions {
  justify-content: center;
  margin-top: 28px;
}

.location-links {
  margin-top: 20px;
  color: var(--muted);
}

.location-links a {
  color: var(--primary-dark);
  font-weight: 700;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: none;
  margin: 0;
  background: var(--border);
  border-block: 1px solid var(--border);
}

.trust-item {
  padding: 24px 20px;
  background: var(--surface);
  text-align: center;
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 0.92rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.content-block p {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-highlights {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.service-highlights li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-weight: 600;
}

.service-highlights li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  content: "✓";
  font-weight: 900;
}

.pricing-note {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-muted);
  color: var(--muted);
}

.pricing-note a {
  color: var(--primary-dark);
  font-weight: 800;
}

.aside-cta {
  margin-top: 16px;
}

.aside-cta p {
  color: var(--muted);
  font-size: 0.92rem;
}

.quote-checklist-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.quote-checklist-card p {
  color: var(--muted);
}

.quote-checklist {
  display: grid;
  gap: 10px;
  margin: 16px 0;
  padding: 0;
  list-style: none;
}

.quote-checklist li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  font-weight: 600;
}

.quote-checklist li::before {
  position: absolute;
  left: 0;
  color: var(--primary);
  content: "→";
  font-weight: 900;
}

.faq-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.faq-jump a {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--primary-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.faq-jump a:hover {
  border-color: var(--primary);
  background: rgba(0, 102, 255, 0.06);
}

.testimonial-note {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.92rem;
}

.page-cta.cta-band {
  margin-top: 0;
}

.page-cta .cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #ffffff;
  box-shadow: none;
}

.page-cta .cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.hero-call {
  display: none;
}

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

.contact-points li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-weight: 600;
}

.contact-points li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  content: "✓";
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--text);
  font: inherit;
  transition:
    border-color 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: 3px solid rgba(0, 102, 255, 0.14);
  transform: translateY(-1px);
}

.label-optional {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.form-notice,
.form-status {
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-notice {
  border: 1px dashed var(--border);
  background: var(--surface-muted);
  color: var(--muted);
}

.form-status-success {
  border: 1px solid rgba(0, 102, 255, 0.18);
  background: rgba(0, 102, 255, 0.08);
  color: var(--primary-dark);
}

.form-status-error {
  border: 1px solid rgba(220, 38, 38, 0.18);
  background: rgba(220, 38, 38, 0.08);
  color: #b91c1c;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    background 220ms var(--ease-out);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.96);
  transition-duration: 100ms;
}

.button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.button-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 102, 255, 0.28);
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-secondary {
  background: var(--surface);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--border);
}

.button-accent {
  background: var(--accent);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(255, 153, 0, 0.35);
}

.button-accent:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

/* Footer — Huboo style */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 36px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 24px 40px;
}

.footer-brand p {
  margin: 16px 0 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.footer-address {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-style: normal;
  line-height: 1.5;
}

.footer-logo {
  color: #ffffff;
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact a {
  color: #ffffff;
  font-weight: 700;
}

.footer-contact a:hover {
  color: var(--accent);
}

.site-footer h3,
.footer-heading {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #ffffff;
  font-weight: 700;
}

/* WhatsApp quick access */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 14px 36px rgba(18, 140, 70, 0.35);
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    background 220ms var(--ease-out);
}

.whatsapp-float:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(18, 140, 70, 0.42);
}

.whatsapp-float-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.whatsapp-float-label {
  letter-spacing: 0.01em;
}

.button-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(18, 140, 70, 0.28);
}

.button-whatsapp:hover {
  background: #1ebe57;
}

.button-whatsapp-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* On the light secondary button the icon carries the brand colour itself. */
.button-secondary .button-whatsapp-icon {
  color: #25d366;
}

/* Phone number paired with an inline WhatsApp link */
.phone-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

a.whatsapp-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #25d366;
  transition: color 220ms var(--ease-out);
}

a.whatsapp-inline:hover {
  color: #4ae287;
}

.whatsapp-inline-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

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

/* Cookie banner */
.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 50;
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 320ms var(--ease-out),
    transform 320ms var(--ease-out);
}

.cookie-banner.is-shown {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-title {
  margin: 0 0 6px;
  font-weight: 800;
}

.cookie-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-copy a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.cookie-actions .button {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.88rem;
}

/* Legal pages */
.legal-page .legal-hero {
  padding-bottom: 24px;
}

.legal-intro {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-content {
  max-width: 760px;
  padding-top: 0;
}

.legal-content h2 {
  margin-top: 36px;
  font-size: 1.4rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: underline;
}

/* Animations */
/* Scroll reveal — content stays visible for SEO and no-JS users */
[data-reveal] {
  transform: translateY(28px);
  transition: transform 0.7s var(--ease-out);
}

[data-reveal][data-reveal-dir="left"] {
  transform: translateX(-32px);
}

[data-reveal][data-reveal-dir="right"] {
  transform: translateX(32px);
}

[data-reveal][data-reveal-dir="scale"] {
  transform: scale(0.96);
}

[data-reveal][data-reveal-dir="up"] {
  transform: translateY(32px);
}

[data-reveal].is-visible {
  transform: translate(0) scale(1);
}

[data-reveal][data-reveal-dir="up"].is-visible {
  transform: translateY(0);
}

@keyframes rate-glow {
  from {
    text-shadow: 0 0 0 transparent;
  }

  to {
    text-shadow: 0 0 24px rgba(255, 153, 0, 0.35);
  }
}

@keyframes icon-bounce {
  0%,
  100% {
    transform: scale(1) rotate(0);
  }

  40% {
    transform: scale(1.12) rotate(-6deg);
  }

  70% {
    transform: scale(1.04) rotate(2deg);
  }
}

@keyframes row-shine {
  from {
    background-position: -200% center;
  }

  to {
    background-position: 200% center;
  }
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-soft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(18px, -14px, 0);
  }
}

@keyframes float-card {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-8px);
  }
}

@keyframes hero-list-in {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes stat-pop {
  0% {
    transform: scale(0.92);
  }

  60% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes nav-drop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cta-shine {
  0%,
  100% {
    transform: translateX(-100%);
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    transform: none;
  }

  .hero-visual-card li {
    opacity: 1;
    animation: none;
  }

  .hero::before,
  .hero::after,
  .hero-visual-card,
  .cta-band::before,
  .pricing-orb {
    animation: none;
  }

  .pricing-row {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner,
  .about-section,
  .contact-section,
  .seo-section {
    grid-template-columns: 1fr;
  }

  .pricing-highlights {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-card:not(:last-child)::after {
    display: none;
  }

  .stats-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .top-bar {
    font-size: 0.8rem;
  }

  .top-bar-inner {
    justify-content: center;
    gap: 4px 14px;
    padding: 8px 16px;
    text-align: center;
  }

  .top-bar-group {
    justify-content: center;
    gap: 4px 14px;
  }

  .brand-tagline {
    display: none;
  }

  .brand-name {
    font-size: 0.95rem;
    white-space: normal;
    line-height: 1.2;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-logo-full {
    height: 40px;
    max-width: min(180px, 52vw);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header {
    position: sticky;
  }

  .nav {
    position: relative;
    flex-wrap: nowrap;
    padding: 12px 16px;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    z-index: 40;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px 16px 20px;
    border-bottom: 1px solid var(--border);
    background: #ffffff;
    box-shadow: var(--shadow-lg);
  }

  .nav-panel.is-open {
    display: flex;
    animation: nav-drop 320ms var(--ease-out);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 25;
    display: none;
    background: rgba(10, 37, 64, 0.35);
  }

  .nav-backdrop.is-open {
    display: block;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-links {
    flex-direction: column;
    gap: 4px;
  }

  .nav-links a {
    display: block;
    padding: 12px 4px;
    font-size: 1.05rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
  }

  .service-grid,
  .feature-grid,
  .process-grid,
  .testimonials-grid,
  .industries-list,
  .pricing-highlights,
  .pricing-panels {
    grid-template-columns: 1fr;
  }

  .pricing-included {
    flex-direction: column;
    text-align: center;
  }

  .pricing-list-head,
  .pricing-row {
    padding-inline: 18px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .hero-call {
    display: inline-flex;
  }

  .about-page-grid,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .pricing-panel,
  .cookie-banner,
  .site-header {
    backdrop-filter: none;
  }

  .section {
    padding: 64px 18px;
  }
}

/* Placed after the 900px block so these rules win where they overlap. */
@media (max-width: 560px) {
  .top-bar {
    font-size: 0.76rem;
  }

  .top-bar-inner {
    gap: 2px 12px;
    padding: 7px 14px;
  }

  .top-bar-group {
    gap: 2px 12px;
  }

  /* The address is one long unbreakable line on a phone; the Directions
     link beside it covers the same need, and the footer repeats it. */
  .top-bar-address {
    display: none;
  }
}
