﻿:root {
  --blue: #30aee9;
  --blue-dark: #0878b8;
  --ink: #06111d;
  --slate: #27364a;
  --muted: #647386;
  --line: #dce5ee;
  --soft: #f4f8fb;
  --white: #ffffff;
  --mint: #7bd7c5;
  --gold: #ffc857;
  --shadow: 0 18px 50px rgba(6, 17, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: block;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: var(--white);
  border-bottom-color: rgba(220, 229, 238, 0.95);
  box-shadow: 0 12px 30px rgba(6, 17, 29, 0.08);
  backdrop-filter: none;
}

.notice-bar {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 8px 32px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
}

.notice-bar a:first-child {
  color: #dceaf5;
}

.notice-bar a:last-child {
  color: var(--blue);
}

.header-main {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  min-height: 76px;
  padding: 12px 40px;
}

.brand img {
  width: 154px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 15px;
  font-weight: 850;
}

.primary-nav > a,
.nav-item > a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 14px 13px;
  border-radius: 8px;
}

.primary-nav > a:hover,
.nav-item:hover > a,
.primary-nav > a:focus-visible,
.nav-item > a:focus-visible {
  background: transparent;
  color: var(--blue-dark);
}

.nav-cta {
  display: none !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.search-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 850;
}

.proposal-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.nav-item {
  position: static;
}

.nav-item > a {
  gap: 6px;
}

.nav-item > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.mega {
  position: absolute;
  top: calc(100% - 1px);
  left: 40px;
  right: 40px;
  z-index: 1001;
  display: none;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  padding: 28px;
  background: #06111d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(6, 17, 29, 0.22);
}

.mega-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: 8px;
  background: #0d1d2e;
  color: var(--white);
}

.mega-intro p {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.mega-intro h3 {
  margin: 0;
  font-size: 30px;
}

.mega-intro span {
  color: #c8d5e0;
}

.mega-intro a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
}

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

.mega-card {
  display: grid;
  gap: 6px;
  min-height: 116px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #0b1a2a;
  color: var(--white);
  font-weight: 650;
}

.mega-card strong {
  color: var(--white);
  font-size: 17px;
}

.mega-card span {
  color: #aebdcb;
  font-size: 14px;
}

.mega-card:hover {
  background: #102942;
  border-color: rgba(48, 174, 233, 0.5);
}

.nav-item:hover .mega,
.nav-item:focus-within .mega,
.nav-item.is-open .mega {
  display: grid;
}

.nav-item:hover > a::after,
.nav-item:focus-within > a::after,
.nav-item.is-open > a::after {
  transform: translateY(1px) rotate(225deg);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 34px;
  padding: 62px 56px 52px;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(6, 17, 29, 0.96), rgba(6, 17, 29, 0.74)),
    url("assets/team-work.jpg") center / cover;
}

.hero-media {
  align-self: end;
}

.hero-media img {
  width: min(100%, 740px);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.28));
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: 88px;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-lede {
  margin: 24px 0 0;
  max-width: 590px;
  color: #dceaf5;
  font-size: 20px;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
}

.button.primary {
  background: var(--blue);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.intro,
.section {
  padding: 76px 56px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: end;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.intro p:last-child {
  margin: 0;
  color: var(--slate);
  font-size: 19px;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: center;
}

.section-copy p {
  color: var(--slate);
  font-size: 18px;
}

.mini-list,
.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.mini-list span,
.resource-links a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 14px;
  font-weight: 750;
}

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

.feature-card,
.service-card,
.price-card,
.industry-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(6, 17, 29, 0.06);
  overflow: hidden;
}

.feature-card img,
.service-card img,
.industry-grid img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  object-position: top center;
  background: #eef5fa;
  padding: 0;
}

.feature-card h3,
.feature-card p,
.service-card h3,
.service-card p {
  padding-left: 18px;
  padding-right: 18px;
}

.feature-card h3,
.service-card h3 {
  margin-top: 18px;
}

.feature-card p,
.service-card p {
  margin-bottom: 20px;
  color: var(--muted);
}

.dark {
  background: var(--ink);
  color: var(--white);
}

.dark .section-heading p {
  color: #b9c8d8;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 32px;
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading > p {
  color: var(--slate);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  background: #0d1d2e;
  border-color: rgba(255, 255, 255, 0.12);
}

.service-card img {
  background: #132b42;
}

.service-card p {
  color: #c8d5e0;
}

.marketing-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.marketing-band article {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f6fbff);
}

.marketing-band article:last-child {
  border-right: 0;
}

.marketing-band h3 {
  color: var(--blue-dark);
  font-size: 28px;
}

.about-section {
  background: var(--soft);
}

.rounded-image {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pricing-section {
  background:
    linear-gradient(180deg, rgba(48, 174, 233, 0.08), rgba(255, 255, 255, 0)),
    var(--white);
}

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

.price-card {
  min-height: 310px;
  padding: 24px;
}

.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 20px 52px rgba(48, 174, 233, 0.18);
}

.price-label {
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-weight: 900;
}

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

.price-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue-dark);
  font-weight: 850;
}

.industries {
  background: #f8fbfd;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.industry-grid article {
  min-height: 326px;
  height: 100%;
}

.industry-grid img {
  display: block;
  width: 100%;
  height: 168px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}

.industry-grid h3 {
  padding: 16px 14px 0;
  font-size: 17px;
}

.industry-grid p {
  margin: 8px 0 18px;
  padding: 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.addons {
  background: var(--white);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.tab {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--slate);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.tab.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.tab-panel {
  display: none;
  align-items: center;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.tab-panel.active {
  display: flex;
}

.tab-panel img {
  width: 170px;
  height: 130px;
  object-fit: contain;
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
}

.tab-panel a {
  color: var(--blue-dark);
  font-weight: 850;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  gap: 46px;
  padding: 84px 56px;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(6, 17, 29, 0.98), rgba(6, 17, 29, 0.82)),
    url("assets/studio-desk.png") center / cover;
}

.contact-section p {
  max-width: 720px;
  color: #d5e2ee;
  font-size: 18px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-details span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border-radius: 8px;
  color: var(--ink);
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.sms-consent-field {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sms-consent-field legend {
  padding: 0 6px;
  color: var(--blue-dark);
  font-weight: 900;
}

.sms-consent-field label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--slate);
  font-weight: 750;
}

.sms-consent-field input {
  width: auto;
  margin-top: 4px;
}

.contact-action-row {
  flex-wrap: wrap;
  margin-top: 24px;
}

.contact-info-grid article {
  align-content: start;
}

.contact-mini-links,
.contact-link-list,
.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-mini-links a,
.contact-link-list a,
.contact-social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 900;
}

.contact-link-list {
  align-content: start;
}

.site-footer {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 32px 56px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer img {
  width: 160px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  margin: 0;
}

.footer-links a {
  color: var(--slate);
  font-weight: 800;
}

.home-hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.5fr);
  gap: 42px;
  align-items: center;
  padding: 76px 56px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(6, 17, 29, 0.96), rgba(6, 17, 29, 0.74)),
    url("assets/team-work.jpg") center / cover;
}

.home-hero-copy {
  max-width: 800px;
}

.home-hero h1 {
  max-width: 820px;
  font-size: 76px;
}

.passion-line {
  margin: 22px 0 0;
  color: #dbeaf5;
  font-size: 28px;
  font-weight: 750;
}

.passion-line span {
  color: var(--blue);
}

.passion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.passion-tags span,
.proof-strip span,
.result-tabs span {
  border-radius: 8px;
  font-weight: 850;
}

.passion-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #eff8ff;
}

.hero-form {
  display: grid;
  gap: 13px;
  padding: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-form h2 {
  font-size: 30px;
}

.hero-form p {
  margin: -4px 0 4px;
  color: var(--muted);
}

.hero-form label {
  display: grid;
  gap: 6px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 850;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.logo-rotator {
  overflow: hidden;
  padding: 48px 0;
  background: #071524;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.partner-rotator {
  background: #0b1a2a;
  border-top: 0;
}

.logo-rotator-heading {
  display: grid;
  gap: 6px;
  max-width: 1180px;
  margin: 0 auto 24px;
  padding: 0 56px;
}

.logo-rotator-heading h2 {
  font-size: 28px;
}

.logo-section-copy {
  max-width: 920px;
  margin: 4px 0 0;
  color: #d5e2ee;
  font-size: 18px;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 110px;
  height: 100%;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #071524, rgba(7, 21, 36, 0));
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #071524, rgba(7, 21, 36, 0));
}

.logo-track {
  width: max-content;
  display: flex;
  gap: 18px;
  animation: logo-scroll 42s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-track-reverse {
  animation-name: logo-scroll-reverse;
}

.logo-slide {
  width: 230px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.logo-slide img {
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes logo-scroll-reverse {
  from {
    transform: translateX(calc(-50% - 9px));
  }

  to {
    transform: translateX(0);
  }
}

.home-services {
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(0, 0.9fr);
  gap: 30px 46px;
  align-items: center;
}

.home-services-media {
  grid-row: span 2;
}

.home-services-media img {
  width: 100%;
  padding: 24px;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.home-service-list {
  display: grid;
  gap: 12px;
}

.home-service-list a {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7fbfe);
}

.home-service-list strong {
  color: var(--blue-dark);
  font-size: 20px;
}

.home-service-list span {
  color: var(--muted);
}

.home-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 44px;
  align-items: center;
  background: var(--soft);
}

.home-story p {
  color: var(--slate);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue-dark);
  font-weight: 900;
}

.story-stats {
  display: grid;
  gap: 14px;
}

.story-stats span {
  display: grid;
  gap: 2px;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(6, 17, 29, 0.06);
  color: var(--muted);
  font-weight: 800;
}

.story-stats strong {
  color: var(--ink);
  font-size: 44px;
  line-height: 1;
}

.remarkable-results {
  background: var(--ink);
  color: var(--white);
}

.remarkable-results .section-heading p {
  color: #b9c8d8;
}

.result-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.result-tabs span {
  padding: 9px 12px;
  background: #132b42;
  color: #dbeaf5;
}

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

.result-grid article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #0d1d2e;
}

.result-grid img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  padding: 18px;
  background: #f6fbff;
}

.result-grid h3,
.result-grid p {
  padding-left: 18px;
  padding-right: 18px;
}

.result-grid h3 {
  margin-top: 18px;
}

.result-grid p {
  color: #c8d5e0;
}

.testimonial-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: var(--soft);
}

.quote-card {
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(6, 17, 29, 0.06);
}

.quote-card p {
  margin-top: 0;
  color: var(--slate);
  font-size: 22px;
  font-weight: 750;
}

.quote-card span {
  color: var(--blue-dark);
  font-weight: 900;
}

.google-review-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: center;
  background: var(--soft);
}

.google-review-copy {
  display: grid;
  gap: 14px;
}

.google-review-copy h2 {
  max-width: 720px;
}

.google-review-widget {
  position: relative;
  min-height: 0;
}

.google-review-track {
  position: relative;
  min-height: 0;
}

.google-review-card {
  position: relative;
  display: none;
  align-content: space-between;
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(6, 17, 29, 0.08);
  opacity: 0;
  transform: translateX(18px);
  pointer-events: none;
  transition: opacity 240ms ease, transform 240ms ease;
}

.google-review-card.active {
  display: grid;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.google-review-stars {
  color: #fbbc04;
  font-size: 24px;
  letter-spacing: 0;
}

.google-review-card p {
  margin: 0;
  color: var(--slate);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.45;
}

.google-review-card strong,
.google-review-card span {
  display: block;
}

.google-review-card strong {
  color: var(--blue-dark);
  font-size: 18px;
}

.google-review-card span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 750;
}

.google-review-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
}

.google-review-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-dark);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.google-review-controls button:hover {
  border-color: var(--blue);
  background: var(--blue-dark);
  color: var(--white);
}

.google-review-controls span {
  min-width: 54px;
  color: var(--muted);
  font-weight: 850;
  text-align: center;
}

.home-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 76px 56px;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(6, 17, 29, 0.98), rgba(6, 17, 29, 0.8)),
    url("assets/studio-desk.png") center / cover;
}

.home-cta p {
  max-width: 760px;
  color: #d5e2ee;
}

.page-hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 42px;
  padding: 76px 56px;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(6, 17, 29, 0.97), rgba(6, 17, 29, 0.78)),
    url("assets/team-work.jpg") center / cover;
}

.page-hero h1 {
  font-size: 66px;
}

.page-hero > img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.breadcrumb {
  margin: 0 0 18px;
  color: #c8d5e0;
  font-size: 14px;
  font-weight: 750;
}

.breadcrumb a {
  color: var(--blue);
}

.page-section {
  background: var(--white);
}

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

.page-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7fbfe);
  box-shadow: 0 10px 30px rgba(6, 17, 29, 0.06);
}

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

.page-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue-dark);
  font-weight: 850;
}

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

.blog-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(6, 17, 29, 0.07);
}

.blog-card-image {
  display: block;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 180ms ease;
}

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

.blog-card div {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 22px;
}

.blog-card h3 {
  font-size: 23px;
  line-height: 1.15;
}

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

.blog-card a:not(.blog-card-image) {
  color: var(--blue-dark);
  font-weight: 900;
}

.blog-article-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.blog-article,
.blog-sidebar {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(6, 17, 29, 0.07);
}

.blog-article {
  padding: clamp(24px, 5vw, 54px);
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.blog-post-content {
  display: grid;
  gap: 18px;
}

.blog-post-content h2,
.blog-post-content h3 {
  margin-top: 16px;
  line-height: 1.12;
}

.blog-post-content h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.blog-post-content h3 {
  font-size: clamp(23px, 3vw, 32px);
}

.blog-post-content p,
.blog-post-content li {
  color: var(--slate);
  font-size: 18px;
}

.blog-post-content a {
  color: var(--blue-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-post-content img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
}

.blog-sidebar {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 14px;
  padding: 24px;
}

.blog-sidebar h2 {
  font-size: 28px;
}

.blog-sidebar a {
  display: grid;
  gap: 5px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.blog-sidebar span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.blog-sidebar strong {
  color: var(--ink);
  line-height: 1.25;
}

.faq-section {
  background: var(--soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(6, 17, 29, 0.07);
}

.faq-sidebar > a:not(.button) {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--slate);
  font-weight: 850;
}

.faq-sidebar .button {
  margin-top: 8px;
}

.faq-group-list {
  display: grid;
  gap: 26px;
}

.faq-group {
  display: grid;
  gap: 16px;
}

.faq-accordion {
  display: grid;
  gap: 10px;
}

.faq-accordion details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6, 17, 29, 0.06);
}

.faq-accordion summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

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

.faq-accordion summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--blue-dark);
  font-size: 22px;
  line-height: 1;
}

.faq-accordion details[open] summary::after {
  content: "-";
  background: var(--blue);
  color: var(--ink);
}

.faq-accordion details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--slate);
  font-size: 17px;
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: 42px;
  align-items: start;
}

.detail-copy p {
  color: var(--slate);
  font-size: 18px;
}

.detail-list {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.detail-list span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--slate);
  font-weight: 850;
}

.industry-grid a {
  display: grid;
  grid-template-rows: 168px auto 1fr;
  height: 100%;
}

.simple-editor-intro {
  background: var(--white);
}

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

.editor-highlights article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7fbfe);
  box-shadow: 0 10px 30px rgba(6, 17, 29, 0.06);
}

.editor-highlights strong {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--blue);
  font-size: 20px;
}

.editor-highlights p {
  color: var(--muted);
}

.editor-builder-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 42px;
  align-items: center;
  background: var(--soft);
}

.builder-copy p {
  color: var(--slate);
  font-size: 18px;
}

.builder-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: var(--white);
  color: var(--slate);
  font-weight: 800;
}

.builder-panel {
  display: grid;
  gap: 20px;
  justify-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.builder-panel img {
  width: 100%;
  max-height: 310px;
  object-fit: contain;
}

.builder-panel .button {
  width: 100%;
}

.professional-template-section {
  display: grid;
  gap: 30px;
  background: var(--white);
  align-items: start;
}

.professional-template-embed {
  display: flow-root;
  width: 100%;
  overflow: visible;
  clear: both;
}

.interactive-template-iframe-wrap {
  display: block;
  width: 100%;
  overflow: visible;
  clear: both;
}

.interactive-template-frame {
  display: block;
  width: 100%;
  min-height: 1400px;
  border: 0;
  background: var(--white);
}

body.webact-template-modal-open {
  overflow: hidden;
}

.interactive-template-frame.webact-template-modal-active {
  position: fixed;
  inset: 0;
  z-index: 999999;
  width: 100vw !important;
  height: 100vh !important;
  min-height: 100vh !important;
  background: #ffffff;
}

.professional-template-embed #include-templates {
  display: none;
  width: 100%;
  min-height: 0;
  padding-bottom: 60px;
  overflow: visible !important;
  max-height: none !important;
}

.professional-template-embed #include-templates.loaded {
  display: block !important;
  min-height: 1200px;
  height: auto !important;
  overflow: visible !important;
  clear: both;
}

.professional-template-embed #grid-container,
.professional-template-embed .cbp,
.professional-template-embed .cbp-wrapper-outer,
.professional-template-embed .cbp-wrapper {
  overflow: visible !important;
  max-height: none !important;
}

.professional-template-embed #grid-container {
  clear: both;
}

.professional-template-embed #include-templates.loaded #grid-container {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  min-height: 1200px;
  overflow: visible !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.local-template-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
  margin: 22px 0 70px;
  clear: both;
}

.local-template-preview article {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(6, 17, 29, 0.08);
}

.local-template-image {
  height: 312px;
  overflow: hidden;
  background: #eef5fa;
}

.local-template-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.35s ease;
}

.local-template-preview h3 {
  padding: 18px 20px;
  font-size: 18px;
}

.local-template-overlay {
  position: absolute;
  inset: 0 0 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 22px;
  background: rgba(0, 0, 0, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.local-template-preview article:hover .local-template-overlay,
.local-template-preview article:focus-within .local-template-overlay {
  opacity: 1;
  pointer-events: auto;
}

.local-template-preview article:hover img {
  transform: scale(1.04);
}

.local-template-preview .formbutton {
  min-width: 138px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 0;
  border-radius: 0;
  background: #119ee7;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.local-template-preview .formbutton:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-1px);
}

.template-copy {
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.template-copy p {
  color: var(--muted);
}

.template-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.professional-template-widget {
  overflow: visible;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.template-loading {
  display: grid;
  min-height: 220px;
  place-items: center;
  padding: 50px 20px;
  text-align: center;
}

.template-loading h4 {
  color: var(--ink);
  font-size: 22px;
}

.dudaapi-loader-container {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.dudaapi-loader {
  width: 46px;
  height: 46px;
  border: 4px solid rgba(42, 166, 218, 0.2);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.include-templates {
  padding: 18px;
}

.include-templates.loaded {
  min-height: 320px;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

.include-templates.loaded #grid-container {
  position: relative !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
}

.include-templates.loaded .webact-template-grid {
  position: relative !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  transform: none !important;
}

.include-templates.loaded .cbp-item {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.include-templates.loaded .cbp,
.include-templates.loaded .cbp-wrapper,
.include-templates.loaded .cbp-wrapper-outer,
.include-templates.loaded .cbp-ready,
.include-templates.loaded .cbp-caption,
.include-templates.loaded .cbp-caption-defaultWrap,
.include-templates.loaded .cbp-caption-activeWrap {
  position: static !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

.include-templates.loaded .cbp-caption,
.include-templates.loaded .cbp-caption-defaultWrap,
.include-templates.loaded .cbp-caption-activeWrap,
.include-templates.loaded .cbp-item img {
  width: 100% !important;
}

.include-templates.loaded .cbp-item-wrapper {
  position: relative !important;
  height: auto !important;
  overflow: visible !important;
}

.include-templates.loaded::after {
  content: "";
  display: block;
  clear: both;
}

.professional-template-section + .publish-section {
  clear: both;
  position: relative;
  z-index: 1;
}

.include-templates.loaded #filters-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.include-templates.loaded #filters-container button,
.include-templates.loaded #filters-container div {
  border-radius: 8px;
}

.include-templates.loaded .cbp-filter-item {
  cursor: pointer;
}

.include-templates.loaded .cbp-filter-item-active,
.include-templates.loaded .cbp-filter-item.active {
  background: var(--blue) !important;
  color: var(--white) !important;
}

.include-templates.loaded .webact-template-grid > .cbp-item {
  min-height: 360px !important;
}

.include-templates.loaded .cbp-item-wrapper {
  display: flex !important;
  height: 100% !important;
  min-height: 360px !important;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(6, 17, 29, 0.08);
}

.include-templates.loaded .cbp-caption {
  position: relative !important;
  display: flex !important;
  width: 100% !important;
  min-height: 360px !important;
  overflow: hidden !important;
  border-radius: 8px;
}

.include-templates.loaded .cbp-caption-defaultWrap {
  position: relative !important;
  width: 100% !important;
  min-height: 360px !important;
  background: #eef5fa;
}

.include-templates.loaded .cbp-caption-defaultWrap img,
.include-templates.loaded .cbp-item img {
  display: block;
  width: 100% !important;
  height: 360px !important;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.35s ease;
}

.include-templates.loaded .cbp-caption-activeWrap {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100% !important;
  height: 100% !important;
  min-height: 360px !important;
  padding: 22px;
  background: rgba(0, 0, 0, 0.68) !important;
  opacity: 0 !important;
  pointer-events: none;
  transform: none !important;
  transition: opacity 0.25s ease;
}

.include-templates.loaded .cbp-caption:hover .cbp-caption-activeWrap,
.include-templates.loaded .cbp-item:hover .cbp-caption-activeWrap,
.include-templates.loaded .cbp-caption:focus-within .cbp-caption-activeWrap {
  opacity: 1 !important;
  pointer-events: auto;
}

.include-templates.loaded .cbp-caption:hover .cbp-caption-defaultWrap img,
.include-templates.loaded .cbp-item:hover img {
  transform: scale(1.04);
}

.include-templates.loaded .cbp-l-caption-alignCenter,
.include-templates.loaded .cbp-l-caption-body {
  display: grid !important;
  gap: 12px;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.include-templates.loaded .formbutton,
.include-templates.loaded .cbp-l-caption-buttonLeft,
.include-templates.loaded .cbp-l-caption-buttonRight,
.include-templates.loaded .cbp-caption-activeWrap a {
  min-width: 138px;
  min-height: 44px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 11px 18px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #119ee7 !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.include-templates.loaded .formbutton:hover,
.include-templates.loaded .cbp-l-caption-buttonLeft:hover,
.include-templates.loaded .cbp-l-caption-buttonRight:hover,
.include-templates.loaded .cbp-caption-activeWrap a:hover {
  background: #000000 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

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

.template-feed-fallback {
  display: grid;
  gap: 14px;
  justify-items: start;
  padding: 26px;
  background: #f7fbfe;
}

.template-feed-fallback p {
  color: var(--muted);
}

.fallback-template-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 8px 0 10px;
}

.fallback-template-grid a {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(6, 17, 29, 0.06);
}

.fallback-template-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.fallback-template-grid span {
  display: block;
  padding: 13px 14px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.professional-support-section .detail-list {
  align-self: stretch;
}

.publish-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.5fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

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

.publish-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(6, 17, 29, 0.06);
}

.publish-grid p {
  color: var(--muted);
}

.publish-grid a {
  color: var(--blue-dark);
  font-weight: 900;
}

.editor-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.editor-modal.open {
  display: flex;
}

.editor-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 17, 29, 0.72);
}

.editor-modal-dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(6, 17, 29, 0.34);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.modal-startText {
  margin-bottom: 20px;
}

.modal-startText h2 {
  font-size: 32px;
}

.modal-startText p {
  color: var(--muted);
}

.editor-start-form {
  display: grid;
  gap: 14px;
}

.professional-template-start-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.editor-start-form label,
.professional-template-start-form label {
  display: grid;
  gap: 7px;
  color: var(--slate);
  font-weight: 850;
}

.editor-start-form input,
.editor-start-form select,
.professional-template-start-form input {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.editor-start-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.editor-status {
  display: grid;
  gap: 14px;
  justify-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfe;
}

.editor-status h3 {
  font-size: 24px;
}

.editor-status p {
  color: var(--muted);
}

.editor-status.loading {
  border-color: rgba(42, 166, 218, 0.35);
}

.editor-status.error {
  background: #fff8f0;
  border-color: rgba(231, 126, 35, 0.3);
}

.website-design-intro {
  display: grid;
  gap: 36px;
  background: var(--white);
}

.service-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-link-row a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--slate);
  font-weight: 850;
}

.website-design-copy {
  max-width: 920px;
}

.website-design-copy p {
  color: var(--slate);
  font-size: 19px;
}

.featured-work-section,
.website-benefits-section,
.process-section {
  background: var(--soft);
}

.featured-work-list {
  display: grid;
  gap: 24px;
}

.featured-work-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(6, 17, 29, 0.08);
}

.featured-work-card:nth-child(even) .featured-work-monitor {
  order: 2;
}

.featured-work-monitor {
  padding: 18px 18px 28px;
  border-radius: 8px;
  background: #eaf3f9;
}

.featured-work-monitor img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  box-shadow: 0 18px 34px rgba(6, 17, 29, 0.16);
}

.featured-work-card h3 {
  font-size: clamp(28px, 4vw, 54px);
}

.featured-work-card p {
  color: var(--slate);
  font-size: 18px;
}

.featured-work-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue-dark);
  font-weight: 900;
}

.about-story-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  background: var(--white);
}

.about-story-section article,
.about-partner-card,
.about-customer-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(6, 17, 29, 0.07);
}

.about-story-section article {
  padding: 34px;
}

.about-story-section h2 {
  font-size: clamp(28px, 4vw, 46px);
}

.about-story-section p,
.about-partner-card p,
.about-customer-card p {
  color: var(--slate);
}

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

.about-customer-card {
  overflow: hidden;
}

.about-customer-image {
  display: block;
  padding: 14px 14px 0;
}

.about-customer-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  background: #eaf3f9;
  box-shadow: 0 12px 28px rgba(6, 17, 29, 0.12);
}

.about-customer-card > div {
  padding: 20px 22px 24px;
}

.about-customer-card h3,
.about-partner-card h3 {
  font-size: 23px;
}

.about-customer-card a:not(.about-customer-image) {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue-dark);
  font-weight: 900;
}

.about-us-actions {
  margin-top: 28px;
}

.about-partners-section {
  background: var(--white);
}

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

.about-partner-card {
  min-height: 240px;
  padding: 26px;
}

.about-partner-card img {
  width: auto;
  max-width: 190px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 22px;
}

.about-partner-card > strong {
  min-height: 56px;
  display: flex;
  align-items: center;
  margin-bottom: 22px;
  color: var(--blue-dark);
  font-size: 28px;
  font-weight: 950;
}

.kb-search-section,
.kb-directory-section {
  background: var(--soft);
}

.kb-search-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(6, 17, 29, 0.07);
}

.kb-search-panel label {
  color: var(--ink);
  font-size: 28px;
  font-weight: 950;
}

.kb-search-panel input {
  width: 100%;
  min-height: 58px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  outline: none;
}

.kb-search-panel input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(42, 166, 218, 0.14);
}

.kb-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.kb-filter-row button {
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--slate);
  font-weight: 900;
  cursor: pointer;
}

.kb-filter-row button.active,
.kb-filter-row button:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.kb-search-panel p {
  color: var(--muted);
}

.kb-category-block {
  display: grid;
  gap: 22px;
  margin-bottom: 42px;
}

.kb-category-block:last-child {
  margin-bottom: 0;
}

.kb-category-block .section-heading a,
.kb-section-card a {
  color: var(--blue-dark);
  font-weight: 900;
}

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

.kb-section-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(6, 17, 29, 0.07);
}

.kb-section-card-top {
  display: grid;
  gap: 8px;
}

.kb-section-card h3 {
  font-size: 26px;
}

.kb-section-card ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.kb-section-card li {
  padding: 10px 0 0;
  border-top: 1px solid var(--line);
}

.kb-section-card li a {
  color: var(--slate);
  font-weight: 800;
}

.kb-section-card li a:hover {
  color: var(--blue-dark);
}

.kb-empty {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-weight: 850;
}

.widget-kb-directory,
.widget-kb-article-section,
.widget-kb-related-section {
  background: var(--soft);
}

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

.widget-kb-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(6, 17, 29, 0.07);
}

.widget-kb-card h3 {
  font-size: 25px;
}

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

.widget-kb-card p {
  color: var(--slate);
}

.widget-kb-card a {
  align-self: end;
  margin-top: 8px;
  color: var(--blue-dark);
  font-weight: 950;
}

.widget-kb-article-copy {
  max-width: 980px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(6, 17, 29, 0.07);
}

.widget-kb-article-copy h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.widget-kb-article-copy h3 {
  margin-top: 24px;
  font-size: 28px;
}

.widget-kb-article-copy p,
.widget-kb-article-copy li {
  color: var(--slate);
  font-size: 18px;
}

.widget-kb-article-copy ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.how-to-video-section,
.video-topic-section {
  background: var(--soft);
}

.video-playlist-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 18px 48px rgba(6, 17, 29, 0.14);
}

.video-playlist-shell iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 360px;
  border: 0;
}

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

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(6, 17, 29, 0.07);
}

.video-embed {
  overflow: hidden;
  background: var(--ink);
}

.video-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-card-copy {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.video-card-copy h3 {
  font-size: 24px;
}

.video-card-copy p:last-child {
  color: var(--slate);
}

.video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

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

.video-topic-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(6, 17, 29, 0.07);
}

.video-topic-grid span {
  display: block;
  width: 42px;
  height: 5px;
  margin-bottom: 18px;
  border-radius: 99px;
  background: var(--blue);
}

.video-topic-grid h3 {
  font-size: 25px;
}

.video-topic-grid p {
  color: var(--slate);
}

.app-store-search-section,
.app-store-directory,
.app-pricing-section,
.app-related-section {
  background: var(--soft);
}

.app-full-overview-section {
  background: var(--white);
}

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

.app-overview-grid article {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.app-overview-grid h3 {
  margin: 0;
  font-size: 24px;
}

.app-overview-grid p {
  margin: 0;
  color: var(--slate);
}

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

.app-store-card,
.app-plan-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(6, 17, 29, 0.07);
}

.app-store-card.is-hidden-by-search,
.app-store-card[hidden] {
  display: none !important;
}

.app-store-card h3,
.app-plan-card h3 {
  font-size: 26px;
}

.app-store-card p,
.app-plan-card p,
.app-store-card li {
  color: var(--slate);
}

.app-store-card ul {
  display: grid;
  gap: 7px;
  padding-left: 20px;
  margin: 0;
}

.app-store-card-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.app-store-card-price span,
.app-plan-price-note {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.app-store-card-price strong {
  color: var(--ink);
  font-size: 24px;
  font-weight: 950;
}

.app-card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 4px;
}

.app-store-card > .button,
.app-card-actions .button,
.app-plan-card .button {
  width: 100%;
  border: 2px solid var(--ink);
  box-shadow: 0 10px 22px rgba(6, 17, 29, 0.12);
}

.app-store-card > .button.primary,
.app-card-actions .button.primary,
.app-plan-card .button.primary,
.stripe-app-plan-button {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.app-store-card > .button.secondary,
.app-card-actions .button.secondary,
.app-plan-card .button.secondary {
  background: var(--blue);
  color: var(--ink);
  border-color: var(--blue-dark);
}

.app-store-card > .button:hover,
.app-card-actions .button:hover,
.app-plan-card .button:hover {
  transform: translateY(-1px);
}

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

.app-plan-card h3 {
  font-size: clamp(34px, 5vw, 52px);
}

.app-plan-card-wide {
  grid-column: 1 / -1;
}

.app-plan-detail-list {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 0;
  color: var(--slate);
}

.stripe-app-plan-button {
  width: 100%;
}

.website-solutions-band,
.website-metrics-section,
.awards-client-section,
.website-testimonial-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.website-solutions-band p,
.website-metrics-section p,
.awards-client-section p {
  color: #dceaf5;
}

.website-solutions-band .button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

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

.benefit-grid article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.benefit-grid span {
  width: 42px;
  height: 4px;
  display: block;
  margin-bottom: 22px;
  border-radius: 99px;
  background: var(--blue);
}

.benefit-grid p,
.why-points p,
.process-timeline-grid p {
  color: var(--muted);
}

.benefit-grid ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--slate);
  font-size: 15px;
  font-weight: 750;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 14px;
  min-width: 560px;
}

.metric-grid article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.metric-grid strong {
  display: block;
  color: var(--blue);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

.metric-grid span {
  color: #dceaf5;
  font-weight: 800;
}

.why-webact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  background: var(--white);
}

.why-webact-media img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.why-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.why-points article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.mini-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(90px, 1fr));
  gap: 12px;
  min-width: min(680px, 100%);
}

.mini-logo-grid img {
  width: 100%;
  height: 76px;
  object-fit: contain;
  padding: 14px;
  border-radius: 8px;
  background: var(--white);
}

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

.process-timeline-grid article {
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-timeline-grid strong {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--blue);
}

.website-testimonial-section {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--white);
  color: var(--ink);
}

.website-design-cta {
  margin-top: 0;
}

.rich-pricing-grid article {
  display: grid;
  gap: 14px;
  align-content: start;
}

.rich-pricing-grid strong {
  color: var(--blue-dark);
  font-size: 34px;
  line-height: 1;
}

.rich-pricing-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--slate);
}

.design-pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.three-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.design-pricing-calculator-section {
  background: var(--soft);
}

.design-pricing-calculator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: 22px;
  align-items: start;
}

.design-slider-list {
  display: grid;
  gap: 14px;
}

.design-price-slider {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6, 17, 29, 0.05);
}

.design-price-slider span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
}

.design-price-slider strong {
  font-size: 20px;
}

.design-price-slider em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.design-price-slider input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
}

.design-price-slider output {
  color: var(--blue-dark);
  font-size: 22px;
  font-weight: 900;
}

.design-pricing-summary {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.design-pricing-summary .eyebrow {
  color: #9bdcff;
}

.design-pricing-summary strong {
  color: var(--blue);
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1;
}

.design-pricing-summary span {
  color: #d8e8f5;
  font-weight: 900;
}

.design-pricing-summary p {
  color: #c7d7e5;
}

.domain-integration-section {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  align-items: center;
}

.domain-search-card {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.domain-search-card label {
  display: grid;
  gap: 10px;
  color: var(--slate);
  font-weight: 900;
}

.domain-search-card input {
  width: 100%;
  height: 56px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.webact-store-domain-form {
  display: grid;
  gap: 16px;
}

.webact-store-domain-form button {
  width: 100%;
}

.store-domain-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.store-domain-actions a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--slate);
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}

.widget-store-intro {
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  align-items: center;
}

.widget-feature-grid article {
  min-height: 270px;
}

.widget-feature-grid strong {
  align-self: end;
  color: var(--blue-dark);
  font-size: 28px;
  line-height: 1;
}

.widget-store-section {
  display: grid;
  gap: 26px;
  background: var(--white);
}

.widget-store-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.widget-search-label {
  display: grid;
  gap: 10px;
  color: var(--slate);
  font-weight: 900;
}

.widget-search-label input {
  width: 100%;
  height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.widget-category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.widget-filter-button {
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--slate);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
}

.widget-filter-button.active,
.widget-filter-button:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

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

.widget-store-card {
  min-height: 390px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(6, 17, 29, 0.08);
}

.widget-store-card[hidden] {
  display: none;
}

.widget-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.widget-badge {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 8px;
  background: #e8f6fc;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.widget-card-footer {
  display: grid;
  gap: 16px;
  align-content: end;
}

.widget-price {
  color: var(--blue-dark);
  font-size: 36px;
  line-height: 1;
}

.widget-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.widget-actions .button {
  width: 100%;
  min-height: 46px;
  padding-left: 12px;
  padding-right: 12px;
}

.widget-preview-button {
  order: 1;
  display: inline-flex !important;
  border: 2px solid var(--blue) !important;
  background: var(--ink) !important;
  color: var(--white) !important;
}

.stripe-one-time-button {
  order: 2;
}

.stripe-payment-note {
  max-width: 920px;
  color: var(--muted);
  font-size: 15px;
}

.stripe-payment-note code {
  padding: 2px 5px;
  border-radius: 5px;
  background: var(--soft);
  color: var(--slate);
}

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

.portfolio-case-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(6, 17, 29, 0.08);
}

.portfolio-case-image {
  display: block;
  width: 100%;
  height: 240px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eaf3f9;
}

.portfolio-case-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 180ms ease;
}

.portfolio-case-card:hover .portfolio-case-image img {
  transform: scale(1.025);
}

.portfolio-case-card div {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 22px;
}

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

.portfolio-case-card a {
  color: var(--blue-dark);
  font-weight: 900;
}

.case-study-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.case-study-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 7px;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.case-study-actions a + a {
  background: var(--ink);
}

@media (max-width: 1160px) {
  .header-main {
    gap: 14px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .primary-nav {
    gap: 0;
    font-size: 13px;
  }

  .primary-nav > a,
  .nav-item > a {
    padding-left: 9px;
    padding-right: 9px;
  }

  .search-link {
    display: none;
  }

  .mega {
    left: 22px;
    right: 22px;
  }

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

  .hero,
  .intro,
  .section,
  .contact-section {
    padding-left: 34px;
    padding-right: 34px;
  }

  .feature-grid,
  .pricing-grid,
  .testimonial-band,
  .editor-highlights,
  .publish-grid,
  .widget-store-grid,
  .portfolio-case-grid,
  .blog-post-grid,
  .benefit-grid,
  .process-timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .website-solutions-band,
  .website-metrics-section,
  .awards-client-section,
  .blog-article-section,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar,
  .faq-sidebar {
    position: static;
  }

  .metric-grid,
  .mini-logo-grid {
    min-width: 0;
  }

  .service-grid,
  .industry-grid,
  .page-card-grid,
  .result-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .logo-rotator-heading {
    padding-left: 34px;
    padding-right: 34px;
  }
}

@media (max-width: 860px) {
  .notice-bar {
    display: none;
  }

  .site-header {
    background: var(--white);
  }

  .header-main {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 70px;
    padding: 10px 20px;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
    background: var(--white);
  }

  .primary-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: none;
    flex-direction: column;
    align-items: stretch;
    height: calc(100dvh - 70px);
    max-height: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 12px 18px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 50px rgba(6, 17, 29, 0.16);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav > a,
  .nav-item > a {
    justify-content: space-between;
    min-height: 46px;
  }

  .nav-item {
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    display: flex !important;
    justify-content: space-between;
    min-height: 46px;
    padding: 14px 13px;
    border-radius: 8px;
    color: var(--slate);
    border-bottom: 1px solid var(--line);
  }

  .mega {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 12px;
    padding: 0 0 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-item:focus-within .mega,
  .nav-item:hover .mega {
    display: grid;
  }

  .mega-intro {
    display: none;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mega-card {
    min-height: auto;
    padding: 12px 14px;
    background: var(--soft);
    border-color: var(--line);
    color: var(--ink);
  }

  .mega-card strong {
    color: var(--ink);
  }

  .mega-card span {
    color: var(--muted);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .hero-media {
    order: 2;
  }

  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 32px;
  }

  .intro,
  .split,
  .contact-section,
  .page-hero,
  .detail-section,
  .editor-builder-section,
  .professional-template-section,
  .publish-section,
  .featured-work-card,
  .why-webact-section,
  .website-testimonial-section,
  .domain-integration-section,
  .design-pricing-calculator,
  .widget-store-intro,
  .widget-store-toolbar,
  .home-hero,
  .home-services,
  .home-story,
  .google-review-band,
  .home-cta {
    grid-template-columns: 1fr;
  }

  .home-hero h1 {
    font-size: 54px;
  }

  .marketing-band {
    grid-template-columns: 1fr 1fr;
  }

  .marketing-band article:nth-child(2) {
    border-right: 0;
  }

  .marketing-band article {
    border-bottom: 1px solid var(--line);
  }

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

  .include-templates.loaded .webact-template-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .featured-work-card:nth-child(even) .featured-work-monitor {
    order: 0;
  }

  .why-webact-media img {
    min-height: 320px;
  }

  .metric-grid,
  .mini-logo-grid,
  .about-customer-grid,
  .about-partner-grid,
  .kb-section-grid,
  .widget-kb-grid,
  .video-library-grid,
  .video-topic-grid,
  .app-overview-grid,
  .app-store-grid,
  .app-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .design-pricing-summary {
    position: static;
  }

  .widget-category-filter {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 134px;
  }

  .hero,
  .intro,
  .section,
  .contact-section,
  .page-hero,
  .home-hero,
  .home-cta,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo-rotator-heading {
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo-slide {
    width: 190px;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-lede,
  .intro p:last-child,
  .section-copy p,
  .section-heading > p,
  .contact-section p {
    font-size: 16px;
  }

  .feature-grid,
  .service-grid,
  .pricing-grid,
  .industry-grid,
  .marketing-band,
  .page-card-grid,
  .result-grid,
  .testimonial-band,
  .editor-highlights,
  .publish-grid,
  .portfolio-case-grid,
  .blog-post-grid,
  .benefit-grid,
  .widget-store-grid,
  .metric-grid,
  .why-points,
  .mini-logo-grid,
  .about-story-section,
  .about-customer-grid,
  .about-partner-grid,
  .kb-section-grid,
  .widget-kb-grid,
  .video-library-grid,
  .video-topic-grid,
  .app-overview-grid,
  .app-store-grid,
  .app-plan-grid,
  .design-pricing-calculator,
  .process-timeline-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .design-price-slider span {
    display: grid;
    gap: 4px;
  }

  .video-playlist-shell iframe {
    min-height: 220px;
  }

  .featured-work-card {
    padding: 18px;
  }

  .faq-accordion summary {
    align-items: flex-start;
    min-height: auto;
    padding: 16px;
    font-size: 16px;
  }

  .faq-accordion details p {
    padding: 0 16px 18px;
    font-size: 16px;
  }

  .featured-work-card h3 {
    font-size: 30px;
  }

  .service-link-row a {
    width: 100%;
    justify-content: center;
  }

  .store-domain-actions {
    grid-template-columns: 1fr;
  }

  .widget-actions {
    grid-template-columns: 1fr;
  }

  .include-templates.loaded #grid-container {
    grid-template-columns: 1fr;
  }

  .include-templates.loaded .webact-template-grid {
    grid-template-columns: 1fr;
  }

  .local-template-preview {
    grid-template-columns: 1fr;
  }

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

  .home-hero h1 {
    font-size: 40px;
  }

  .passion-line {
    font-size: 22px;
  }

  .marketing-band article {
    border-right: 0;
  }

  .tab-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
  }

  .tab-panel img {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    padding: 0 20px;
  }

  .logo-marquee::before,
  .logo-marquee::after {
    display: none;
  }
}

/* ===========================================
   Homepage 2.5 - Final Homepage Section Polish
   Supports centered growth services, removed home-choice section,
   redesigned featured results, redesigned Google reviews, and final CTA.
=========================================== */

.wa-global-footer{
  margin-top:0 !important;
}

body{
  overflow-x:hidden;
}

/* Hero */
.home-hero{
  min-height:720px;
  grid-template-columns:minmax(0,1fr) minmax(360px,.48fr);
  gap:52px;
  align-items:center;
  padding-top:82px;
  padding-bottom:82px;
  background:
    radial-gradient(circle at 12% 18%, rgba(48,174,233,.34), transparent 28%),
    linear-gradient(115deg, rgba(6,17,29,.98), rgba(6,17,29,.76)),
    url("assets/team-work.jpg") center / cover;
}

.home-hero-copy{
  max-width:860px;
}

.home-hero h1{
  max-width:880px;
  font-size:clamp(46px,6vw,78px);
  line-height:.94;
  letter-spacing:-.035em;
}

.home-hero .hero-lede{
  max-width:760px;
  color:#e0edf7;
  font-size:20px;
  line-height:1.65;
}

.passion-line{
  max-width:760px;
}

.passion-tags span{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.22);
}

.hero-form{
  width:100%;
  max-width:430px;
  justify-self:end;
  border:1px solid rgba(255,255,255,.42);
  border-radius:18px;
  box-shadow:0 24px 70px rgba(0,0,0,.28);
}

.hero-form h2{
  font-size:32px;
  letter-spacing:-.025em;
}

.hero-form input,
.hero-form select,
.hero-form textarea{
  min-height:46px;
  border-radius:10px;
}

.hero-form .button{
  min-height:54px;
  border-radius:999px;
  cursor:pointer;
}

/* Keep logo marquees stable */
.logo-rotator{
  margin:0 !important;
}

.logo-slide{
  border-radius:14px;
}

/* Connected Growth Services - centered, full-width, no image */
.home-services,
.home-services-centered{
  position:relative;
  display:block;
  overflow:hidden;
  padding-top:96px;
  padding-bottom:104px;
  background:
    radial-gradient(circle at 12% 8%, rgba(48,174,233,.10), transparent 28%),
    radial-gradient(circle at 88% 92%, rgba(123,215,197,.10), transparent 30%),
    linear-gradient(180deg,#ffffff 0%,#f8fbfd 100%);
}

.home-services::before,
.home-services-centered::before{
  content:"";
  position:absolute;
  inset:38px auto auto 50%;
  width:min(900px,82vw);
  height:1px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,transparent,rgba(48,174,233,.32),transparent);
  pointer-events:none;
}

.home-services .section-heading,
.home-services-centered .section-heading{
  max-width:980px;
  margin:0 auto 42px;
  text-align:center;
}

.home-services .section-heading h2,
.home-services-centered .section-heading h2{
  font-size:clamp(38px,5vw,64px);
  line-height:1;
  letter-spacing:-.045em;
}

.home-services .section-heading > p,
.home-services-centered .section-heading > p{
  max-width:840px;
  margin-left:auto;
  margin-right:auto;
  color:var(--slate);
}

.home-services-media{
  display:none !important;
}

.home-service-list{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  max-width:1180px;
  margin:0 auto;
}

.home-service-list a{
  position:relative;
  min-height:176px;
  display:grid;
  align-content:start;
  gap:10px;
  padding:30px;
  border:1px solid #dce8f1;
  border-radius:24px;
  background:linear-gradient(180deg,#ffffff 0%,#f7fbfe 100%);
  box-shadow:0 14px 34px rgba(6,17,29,.06);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.home-service-list a::before{
  content:"";
  display:block;
  width:42px;
  height:5px;
  margin-bottom:12px;
  border-radius:999px;
  background:var(--blue);
}

.home-service-list a:hover{
  transform:translateY(-5px);
  border-color:#b9ddeb;
  background:#fff;
  box-shadow:0 22px 48px rgba(6,17,29,.12);
}

.home-service-list strong{
  color:#071421;
  font-size:22px;
  line-height:1.15;
}

.home-service-list span{
  color:#647386;
  font-size:16px;
  line-height:1.65;
}

/* Shared action buttons */
.section-actions{
  margin-top:26px;
}

.section-actions .button,
.section-footer-cta .button{
  min-height:54px;
  border-radius:999px;
  padding-left:24px;
  padding-right:24px;
}

.home-services .section-footer-cta,
.home-services-centered .section-footer-cta{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
  margin:36px auto 0;
}

.home-services .section-footer-cta .button,
.home-services-centered .section-footer-cta .button{
  min-width:168px;
}

.home-services .section-footer-cta .button.secondary,
.home-services-centered .section-footer-cta .button.secondary{
  border-color:#c9d9e5;
  color:#071421;
  background:#fff;
}

.section-actions .button.secondary,
.remarkable-results .button.secondary{
  border-color:rgba(255,255,255,.28);
  color:#fff;
  background:rgba(255,255,255,.08);
}

.home-growth .section-actions{
  justify-content:center;
}

.home-growth .section-actions .button.secondary{
  background:#ffffff;
  color:#06111d;
  border:2px solid #06111d;
}
.home-growth .section-actions .button.secondary:hover{
  background:#06111d;
  color:#ffffff;
}

/* Everything You Need */
.home-growth{
  background:#f8fbfd;
  padding-top:98px;
  padding-bottom:98px;
}

.home-growth .section-heading,
.home-process .section-heading{
  max-width:980px;
}

.home-growth .section-heading h2,
.home-process .section-heading h2{
  font-size:clamp(38px,5vw,62px);
  line-height:1;
  letter-spacing:-.045em;
}

.home-growth .section-heading p + p{
  margin-top:12px;
  max-width:850px;
}

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

.growth-grid article{
  position:relative;
  overflow:hidden;
  background:#fff;
  border:1px solid #dce8f1;
  border-radius:22px;
  padding:30px;
  box-shadow:0 14px 34px rgba(6,17,29,.06);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.growth-grid article::before{
  content:"";
  display:block;
  width:42px;
  height:5px;
  margin-bottom:22px;
  border-radius:999px;
  background:var(--blue);
}

.growth-grid article:hover{
  transform:translateY(-5px);
  box-shadow:0 22px 48px rgba(6,17,29,.12);
  border-color:#b9ddeb;
}

.growth-grid h3{
  margin-bottom:14px;
  font-size:22px;
  color:#071421;
}

.growth-grid p{
  margin:0;
  font-size:16px;
  color:#647386;
  line-height:1.7;
}

/* Remove any leftover home-choice styling from previous homepage versions */
.home-choice{
  display:none !important;
}

/* Featured results redesigned as visual portfolio preview */
.remarkable-results{
  background:
    radial-gradient(circle at 88% 12%, rgba(48,174,233,.16), transparent 32%),
    linear-gradient(180deg,#06111d 0%,#0a1726 100%);
  color:#fff;
}

.remarkable-results .section-heading{
  max-width:1040px;
}

.remarkable-results .section-heading h2{
  font-size:clamp(38px,5vw,66px);
  line-height:.98;
  letter-spacing:-.045em;
}

.remarkable-results .section-heading p{
  color:#b9c8d8;
  max-width:920px;
}

.result-tabs{
  gap:10px;
  margin-bottom:28px;
}

.result-tabs span{
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:#132b42;
  color:#dbeaf5;
}

.result-grid,
.featured-results-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  margin-bottom:30px;
}

.result-grid article,
.featured-results-grid article{
  display:grid;
  grid-template-rows:auto auto 1fr auto;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  background:#0d1d2e;
  box-shadow:0 18px 48px rgba(0,0,0,.18);
  transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.result-grid article:hover,
.featured-results-grid article:hover{
  transform:translateY(-5px);
  border-color:rgba(48,174,233,.48);
  box-shadow:0 28px 64px rgba(0,0,0,.28);
}

.result-grid img,
.featured-results-grid img{
  width:100%;
  height:230px;
  object-fit:cover;
  object-position:top center;
  padding:0;
  background:#f6fbff;
}

.result-grid h3,
.featured-results-grid h3{
  margin:0;
  padding:22px 22px 0;
  font-size:24px;
  color:#fff;
}

.result-grid p,
.featured-results-grid p{
  margin:0;
  padding:12px 22px 0;
  color:#c8d5e0;
  line-height:1.65;
}

.result-grid p strong,
.featured-results-grid p strong{
  color:#fff;
}

.result-grid .text-link,
.featured-results-grid .text-link{
  margin:18px 22px 24px;
  color:#7ed7ff;
}

.section-footer-cta{
  display:flex;
  justify-content:center;
  margin-top:10px;
}

/* Process */
.home-process{
  background:#fff;
}

.home-process .growth-grid{
  grid-template-columns:repeat(5,minmax(0,1fr));
}

.home-process .growth-grid article{
  min-height:260px;
}

.home-process .growth-grid article::before{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  margin-bottom:20px;
  border-radius:16px;
  background:#071927;
  color:#30aee9;
  font-weight:950;
}

.home-process .growth-grid article:nth-child(1)::before{content:"01";}
.home-process .growth-grid article:nth-child(2)::before{content:"02";}
.home-process .growth-grid article:nth-child(3)::before{content:"03";}
.home-process .growth-grid article:nth-child(4)::before{content:"04";}
.home-process .growth-grid article:nth-child(5)::before{content:"05";}

/* Google reviews redesigned - keeps original review cards and JS behavior intact */
.google-review-band,
.google-review-redesign{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(420px,1fr);
  gap:54px;
  align-items:center;
  padding-top:104px;
  padding-bottom:104px;
  overflow:hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(48,174,233,.13), transparent 34%),
    radial-gradient(circle at 92% 88%, rgba(123,215,197,.12), transparent 32%),
    linear-gradient(180deg,#f8fbfd 0%,#ffffff 100%);
}

.google-review-redesign::before{
  content:"";
  position:absolute;
  inset:44px 56px auto;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(48,174,233,.38),transparent);
  pointer-events:none;
}

.google-review-copy{
  position:relative;
  display:grid;
  gap:16px;
  align-content:center;
}

.google-review-copy .eyebrow{
  color:var(--blue-dark);
}

.google-review-copy h2{
  max-width:780px;
  font-size:clamp(38px,5vw,66px);
  line-height:.98;
  letter-spacing:-.045em;
}

.google-review-copy > p{
  max-width:720px;
  color:var(--slate);
  font-size:19px;
  line-height:1.7;
}

.google-review-highlights{
  display:grid;
  gap:10px;
  margin-top:12px;
}

.google-review-highlights span{
  display:flex;
  gap:10px;
  align-items:center;
  width:fit-content;
  max-width:100%;
  min-height:44px;
  padding:10px 14px;
  border:1px solid #dce8f1;
  border-radius:999px;
  background:#fff;
  color:#27364a;
  font-weight:850;
  box-shadow:0 10px 28px rgba(6,17,29,.05);
}

.google-review-highlights strong{
  color:var(--blue-dark);
}

.google-review-redesign .section-actions{
  margin-top:18px;
}

.google-review-redesign .section-actions .button.secondary{
  border-color:#c9d9e5;
  color:#071421;
  background:#fff;
}

.google-review-widget{
  position:relative;
  min-height:0;
}

.google-review-widget::before{
  content:"";
  position:absolute;
  inset:-22px;
  border-radius:34px;
  background:
    linear-gradient(135deg,rgba(48,174,233,.12),rgba(123,215,197,.08)),
    #ffffff;
  border:1px solid #dce8f1;
  box-shadow:0 24px 70px rgba(6,17,29,.12);
  pointer-events:none;
}

.google-review-track{
  position:relative;
  z-index:2;
  min-height:0;
}

.google-review-card{
  position:relative;
  display:none;
  align-content:space-between;
  gap:24px;
  min-height:430px;
  padding:40px;
  border:1px solid #dce8f1;
  border-radius:28px;
  background:#ffffff;
  box-shadow:none;
  opacity:0;
  transform:translateX(18px);
  pointer-events:none;
  transition:opacity 240ms ease, transform 240ms ease;
}

.google-review-card.active{
  display:grid;
  opacity:1;
  transform:translateX(0);
  pointer-events:auto;
}

.google-review-stars{
  color:#fbbc04;
  font-size:28px;
  letter-spacing:1px;
}

.google-review-card p{
  margin:0;
  color:#27364a;
  font-size:20px;
  font-weight:800;
  line-height:1.55;
}

.google-review-card strong,
.google-review-card span{
  display:block;
}

.google-review-card strong{
  color:#071421;
  font-size:20px;
}

.google-review-card span{
  margin-top:4px;
  color:#647386;
  font-weight:750;
}

.google-review-controls{
  position:relative;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  margin-top:18px;
}

.google-review-controls button{
  width:48px;
  height:48px;
  border:1px solid #c9d9e5;
  border-radius:999px;
  background:#fff;
  color:#0878b8;
  font-size:30px;
  font-weight:900;
  line-height:1;
  cursor:pointer;
  transition:background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.google-review-controls button:hover{
  transform:translateY(-2px);
  border-color:var(--blue);
  background:var(--blue-dark);
  color:#fff;
}

/* Responsive homepage refinement */
@media(max-width:1180px){
  .home-service-list,
  .growth-grid,
  .home-process .growth-grid,
  .result-grid,
  .featured-results-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:860px){
  .home-hero{
    grid-template-columns:1fr;
    min-height:auto;
  }

  .hero-form{
    max-width:none;
    justify-self:stretch;
  }

  .google-review-band,
  .google-review-redesign,
  .home-final-cta{
    grid-template-columns:1fr;
  }

  .google-review-widget::before{
    inset:-14px;
  }

  .google-review-card{
    min-height:380px;
    padding:30px;
  }

  .home-final-cta .hero-actions{
    justify-content:flex-start;
  }
}

@media(max-width:620px){
  .home-hero{
    padding-top:44px;
    padding-bottom:44px;
  }

  .home-hero h1{
    font-size:40px;
  }

  .home-services,
  .home-services-centered,
  .home-growth,
  .home-process,
  .remarkable-results,
  .google-review-band,
  .google-review-redesign{
    padding-top:64px;
    padding-bottom:64px;
  }

  .home-service-list,
  .growth-grid,
  .home-process .growth-grid,
  .result-grid,
  .featured-results-grid{
    grid-template-columns:1fr;
  }

  .home-service-list a{
    min-height:auto;
    padding:24px;
  }

  .result-grid img,
  .featured-results-grid img{
    height:210px;
  }

  .google-review-highlights span{
    width:100%;
    align-items:flex-start;
    border-radius:18px;
  }

  .google-review-card{
    min-height:0;
    padding:24px;
  }

  .google-review-card p{
    font-size:17px;
  }

  .section-actions,
  .section-footer-cta{
    display:grid;
  }
}

/* ===========================================
   WebAct Marketing System - Shared Marketing Page Components
   Used by marketing hub and future marketing service pages.
=========================================== */

/* Marketing hub hero */
body:not(.wa-homepage) .page-hero{
  position:relative;
  overflow:hidden;
  min-height:620px;
  grid-template-columns:minmax(0,1fr) minmax(340px,.55fr);
  gap:56px;
  padding-top:92px;
  padding-bottom:92px;
  background:
    radial-gradient(circle at 14% 18%,rgba(48,174,233,.32),transparent 28%),
    radial-gradient(circle at 92% 88%,rgba(123,215,197,.16),transparent 30%),
    linear-gradient(112deg,rgba(6,17,29,.98),rgba(6,17,29,.78)),
    url("assets/team-work.jpg") center / cover;
}

body:not(.wa-homepage) .page-hero::after{
  content:"";
  position:absolute;
  inset:auto 56px 42px;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(48,174,233,.45),transparent);
  pointer-events:none;
}

body:not(.wa-homepage) .page-hero > div{
  position:relative;
  z-index:2;
  max-width:920px;
}

body:not(.wa-homepage) .page-hero h1{
  max-width:960px;
  font-size:clamp(46px,6vw,78px);
  line-height:.94;
  letter-spacing:-.045em;
}

body:not(.wa-homepage) .page-hero .hero-lede{
  max-width:820px;
  color:#e0edf7;
  font-size:20px;
  line-height:1.7;
}

body:not(.wa-homepage) .page-hero > img{
  position:relative;
  z-index:2;
  width:100%;
  max-height:430px;
  padding:34px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:28px;
  background:linear-gradient(145deg,rgba(255,255,255,.96),rgba(244,248,251,.9));
  box-shadow:0 28px 80px rgba(0,0,0,.28);
}

body:not(.wa-homepage) .breadcrumb{
  color:#c8d9e7;
}

body:not(.wa-homepage) .breadcrumb a{
  color:#8edcff;
}

body:not(.wa-homepage) .page-hero .button{
  min-height:56px;
  border-radius:999px;
  padding-left:24px;
  padding-right:24px;
}

body:not(.wa-homepage) .page-hero .button.secondary{
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.32);
  color:#fff;
}

/* Marketing intro / quick links */
.website-design-intro{
  position:relative;
  display:grid;
  gap:42px;
  padding-top:84px;
  padding-bottom:84px;
  background:#ffffff;
}

.website-design-intro::before{
  content:"";
  position:absolute;
  inset:0 auto auto 50%;
  width:min(1120px,86vw);
  height:1px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,transparent,rgba(48,174,233,.28),transparent);
}

.service-link-row{
  justify-content:center;
  gap:12px;
}

.service-link-row a{
  min-height:46px;
  padding:11px 16px;
  border-radius:999px;
  background:#f7fbfe;
  border-color:#dce8f1;
  color:#27364a;
  transition:transform .2s ease,background .2s ease,border-color .2s ease,color .2s ease;
}

.service-link-row a:hover{
  transform:translateY(-2px);
  border-color:var(--blue);
  background:var(--blue);
  color:#06111d;
}

.website-design-copy{
  max-width:1120px;
  margin:0 auto;
  text-align:center;
}

.website-design-copy h2{
  max-width:980px;
  margin:0 auto;
  font-size:clamp(36px,5vw,62px);
  line-height:1;
  letter-spacing:-.045em;
}

.website-design-copy p:not(.eyebrow){
  max-width:920px;
  margin:20px auto 0;
  color:var(--slate);
  font-size:19px;
  line-height:1.78;
}

/* Marketing service cards */
.website-benefits-section,
.page-section,
.process-section,
.faq-section{
  position:relative;
}

.website-benefits-section{
  background:linear-gradient(180deg,#f8fbfd 0%,#eef6fb 100%);
}

.page-section{
  background:#ffffff;
}

.section-heading{
  max-width:1040px;
}

.section-heading h2{
  font-size:clamp(34px,5vw,58px);
  line-height:1;
  letter-spacing:-.04em;
}

.section-heading > p{
  max-width:920px;
  line-height:1.72;
}

.page-card-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}

.page-card{
  position:relative;
  display:grid;
  gap:12px;
  align-content:start;
  min-height:260px;
  padding:30px;
  border-color:#dce8f1;
  border-radius:24px;
  background:linear-gradient(180deg,#ffffff 0%,#f7fbfe 100%);
  box-shadow:0 14px 34px rgba(6,17,29,.06);
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease,background .22s ease;
}

.page-card::before{
  content:"";
  display:block;
  width:44px;
  height:5px;
  margin-bottom:10px;
  border-radius:999px;
  background:var(--blue);
}

.page-card:hover{
  transform:translateY(-5px);
  border-color:#b9ddeb;
  background:#fff;
  box-shadow:0 22px 48px rgba(6,17,29,.12);
}

.page-card h3{
  margin:0;
  color:#071421;
  font-size:24px;
  letter-spacing:-.015em;
}

.page-card p{
  margin:0;
  color:#647386;
  font-size:16px;
  line-height:1.72;
}

.page-card a{
  align-self:end;
  margin-top:10px;
  color:#0878b8;
  font-weight:950;
}

.page-card a::after{
  content:" â†’";
}

/* Dark connected strategy CTA bands */
.website-solutions-band{
  position:relative;
  overflow:hidden;
  grid-template-columns:minmax(0,1fr) auto;
  gap:42px;
  padding-top:88px;
  padding-bottom:88px;
  background:
    radial-gradient(circle at 12% 20%,rgba(48,174,233,.28),transparent 30%),
    radial-gradient(circle at 90% 80%,rgba(123,215,197,.14),transparent 32%),
    linear-gradient(115deg,#06111d 0%,#0b1a2a 100%);
}

.website-solutions-band h2{
  max-width:900px;
  font-size:clamp(36px,5vw,62px);
  line-height:1;
  letter-spacing:-.045em;
}

.website-solutions-band p:not(.eyebrow){
  max-width:840px;
  color:#d5e2ee;
  font-size:18px;
  line-height:1.75;
}

.website-solutions-band .button{
  min-height:56px;
  border-radius:999px;
  padding-left:24px;
  padding-right:24px;
}

.website-solutions-band .button.primary{
  color:#06111d;
  background:var(--blue);
  border-color:var(--blue);
}

.website-solutions-band .button.secondary{
  color:#ffffff;
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.28);
}

/* Benefit cards with lists */
.benefit-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}

.benefit-grid article{
  position:relative;
  min-height:320px;
  padding:30px;
  border-color:#dce8f1;
  border-radius:24px;
  background:#fff;
  box-shadow:0 14px 34px rgba(6,17,29,.06);
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}

.benefit-grid article:hover{
  transform:translateY(-5px);
  border-color:#b9ddeb;
  box-shadow:0 22px 48px rgba(6,17,29,.12);
}

.benefit-grid span{
  width:46px;
  height:6px;
  margin-bottom:24px;
}

.benefit-grid h3{
  font-size:24px;
  letter-spacing:-.015em;
}

.benefit-grid p{
  color:#647386;
  line-height:1.72;
}

.benefit-grid ul{
  gap:10px;
  margin-top:20px;
  padding-left:0;
  list-style:none;
}

.benefit-grid li{
  position:relative;
  padding-left:26px;
  color:#27364a;
  font-weight:800;
}

.benefit-grid li::before{
  content:"âœ“";
  position:absolute;
  left:0;
  top:0;
  color:#0878b8;
  font-weight:950;
}

/* Marketing process */
.process-section{
  background:linear-gradient(180deg,#ffffff 0%,#f8fbfd 100%);
}

.process-timeline-grid{
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:18px;
}

.process-timeline-grid article{
  min-height:280px;
  padding:26px;
  border-color:#dce8f1;
  border-radius:24px;
  background:#ffffff;
  box-shadow:0 14px 34px rgba(6,17,29,.06);
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}

.process-timeline-grid article:hover{
  transform:translateY(-5px);
  border-color:#b9ddeb;
  box-shadow:0 22px 48px rgba(6,17,29,.12);
}

.process-timeline-grid strong{
  width:52px;
  height:52px;
  border-radius:16px;
  background:#071927;
  color:#30aee9;
  font-size:16px;
}

.process-timeline-grid h3{
  font-size:23px;
}

.process-timeline-grid p{
  color:#647386;
  line-height:1.68;
}

/* Marketing support section */
.website-testimonial-section{
  align-items:center;
  gap:48px;
  padding-top:88px;
  padding-bottom:88px;
  background:
    radial-gradient(circle at 92% 12%,rgba(48,174,233,.1),transparent 34%),
    #ffffff;
}

.website-testimonial-section h2{
  max-width:760px;
  font-size:clamp(34px,5vw,58px);
  line-height:1;
  letter-spacing:-.04em;
}

.website-testimonial-section p:not(.eyebrow){
  max-width:780px;
  color:#27364a;
  font-size:18px;
  line-height:1.76;
}

.detail-list{
  gap:12px;
  padding:26px;
  border-color:#dce8f1;
  border-radius:24px;
  background:#f8fbfd;
  box-shadow:0 14px 34px rgba(6,17,29,.06);
}

.detail-list span{
  position:relative;
  min-height:54px;
  padding:14px 16px 14px 44px;
  border:1px solid #dce8f1;
  border-radius:16px;
  color:#27364a;
}

.detail-list span::before{
  content:"âœ“";
  position:absolute;
  left:16px;
  color:#0878b8;
  font-weight:950;
}

/* FAQs */
.faq-section{
  background:linear-gradient(180deg,#f8fbfd 0%,#eef6fb 100%);
}

.faq-accordion{
  max-width:1120px;
  gap:14px;
}

.faq-accordion details{
  border-color:#dce8f1;
  border-radius:20px;
  box-shadow:0 12px 30px rgba(6,17,29,.06);
}

.faq-accordion summary{
  min-height:72px;
  padding:22px 26px;
  font-size:19px;
}

.faq-accordion summary::after{
  width:34px;
  height:34px;
  background:#e8f6fc;
}

.faq-accordion details p{
  padding:0 26px 26px;
  color:#27364a;
  font-size:17px;
  line-height:1.75;
}

/* Button contrast cleanup for marketing pages */
body:not(.wa-homepage) .button.primary:hover,
.website-solutions-band .button.primary:hover{
  background:#54bdf0;
  border-color:#54bdf0;
  transform:translateY(-2px);
}

body:not(.wa-homepage) .button.secondary:hover,
.website-solutions-band .button.secondary:hover{
  background:#ffffff;
  color:#06111d;
  border-color:#ffffff;
  transform:translateY(-2px);
}

/* Marketing system responsive */
@media(max-width:1180px){
  body:not(.wa-homepage) .page-hero,
  .website-solutions-band,
  .website-testimonial-section{
    grid-template-columns:1fr;
  }

  body:not(.wa-homepage) .page-hero > img{
    max-width:620px;
  }

  .page-card-grid,
  .benefit-grid,
  .process-timeline-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .website-solutions-band .hero-actions{
    justify-content:flex-start;
  }
}

@media(max-width:760px){
  body:not(.wa-homepage) .page-hero{
    min-height:auto;
    padding-top:58px;
    padding-bottom:58px;
  }

  body:not(.wa-homepage) .page-hero h1{
    font-size:42px;
  }

  body:not(.wa-homepage) .page-hero > img{
    padding:22px;
    border-radius:22px;
  }

  .website-design-intro,
  .website-benefits-section,
  .page-section,
  .process-section,
  .website-testimonial-section,
  .faq-section,
  .website-solutions-band{
    padding-top:62px;
    padding-bottom:62px;
  }

  .website-design-copy h2,
  .section-heading h2,
  .website-solutions-band h2,
  .website-testimonial-section h2{
    font-size:34px;
  }

  .page-card-grid,
  .benefit-grid,
  .process-timeline-grid{
    grid-template-columns:1fr;
  }

  .page-card,
  .benefit-grid article,
  .process-timeline-grid article{
    min-height:auto;
    padding:24px;
  }

  .service-link-row a{
    width:100%;
    justify-content:center;
  }

  .website-solutions-band .hero-actions,
  body:not(.wa-homepage) .page-hero .hero-actions{
    display:grid;
  }

  .website-solutions-band .button,
  body:not(.wa-homepage) .page-hero .button{
    width:100%;
  }
}
