:root {
  --charcoal: #2f363f;
  --black: #030303;
  --header-bg: #001335;
  --ink: #30333b;
  --orange: #f3702b;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--black);
  overflow-x: hidden;
}

.site-header {
  min-height: 147px;
  background: var(--black);
}

.announcement {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 0;
  min-height: 62px;
  padding: 0 clamp(18px, 7.2vw, 148px);
  color: #f0f0f0;
  background: var(--charcoal);
  font-size: clamp(16px, 1.45vw, 29px);
  line-height: 1.2;
  letter-spacing: 0;
}

.announcement p {
  position: relative;
  margin: 0;
  padding: 0 clamp(14px, 2vw, 34px);
  text-align: center;
  white-space: nowrap;
}

.announcement p + p::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.46);
  content: "";
  transform: translateY(-50%);
}

.announcement strong {
  font-weight: 800;
}

.nav-stage {
  padding: 0;
}

.main-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 85px;
  padding: 6px clamp(24px, 4.7vw, 96px);
  background: var(--header-bg);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 1 clamp(190px, 16vw, 270px);
  min-width: 0;
  color: var(--white);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 100%;
  max-width: 270px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.nav-toggle {
  display: none;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.05vw, 62px);
  margin-left: 0;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 0.65vw, 13px);
  min-height: 48px;
  color: var(--white);
  font-size: clamp(17px, 1.37vw, 28px);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links .nav-phone {
  display: none;
}

.mobile-call-bar {
  display: none;
}

.nav-links a + a::before {
  position: absolute;
  top: 50%;
  left: calc(clamp(18px, 3.05vw, 62px) / -2);
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.42);
  content: "";
  transform: translateY(-50%);
}

.has-menu::after {
  width: 0;
  height: 0;
  margin-top: 4px;
  border-left: clamp(5px, 0.4vw, 8px) solid transparent;
  border-right: clamp(5px, 0.4vw, 8px) solid transparent;
  border-top: clamp(5px, 0.4vw, 8px) solid var(--white);
  content: "";
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(150px, 12.75vw, 260px);
  min-height: 54px;
  margin-left: clamp(16px, 3.1vw, 62px);
  padding: 0 clamp(18px, 1.85vw, 38px);
  color: var(--white);
  background: var(--orange);
  font-size: clamp(17px, 1.37vw, 28px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.breadcrumbs {
  padding: 18px clamp(24px, 7.2vw, 148px);
  color: var(--white);
  background: var(--header-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.breadcrumbs li + li::before {
  margin-right: 10px;
  color: var(--orange);
  content: "/";
}

.breadcrumbs a {
  color: var(--white);
  text-decoration: none;
}

.lead-hero {
  display: flex;
  align-items: center;
  min-height: 600px;
  padding: 0 clamp(32px, 4.45vw, 91px);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background:
    linear-gradient(90deg, #001335 0%, rgba(0, 19, 53, 0.96) 32%, rgba(0, 19, 53, 0.64) 53%, rgba(0, 19, 53, 0.16) 74%, rgba(0, 19, 53, 0) 100%),
    linear-gradient(180deg, rgba(0, 19, 53, 0), rgba(0, 19, 53, 0.22)),
    url("images/web-design-hero-ai.webp") right center / cover no-repeat;
  text-align: left;
}

.web-design-hero {
  background:
    linear-gradient(90deg, #001335 0%, rgba(0, 19, 53, 0.96) 32%, rgba(0, 19, 53, 0.64) 53%, rgba(0, 19, 53, 0.16) 74%, rgba(0, 19, 53, 0) 100%),
    linear-gradient(180deg, rgba(0, 19, 53, 0), rgba(0, 19, 53, 0.22)),
    url("images/web-design-page-hero-ai.webp") right center / cover no-repeat;
}

.wordpress-website-hero {
  background:
    linear-gradient(90deg, #001335 0%, rgba(0, 19, 53, 0.96) 32%, rgba(0, 19, 53, 0.64) 53%, rgba(0, 19, 53, 0.16) 74%, rgba(0, 19, 53, 0) 100%),
    linear-gradient(180deg, rgba(0, 19, 53, 0), rgba(0, 19, 53, 0.22)),
    url("images/wordpress-website-hero-ai.webp") right center / cover no-repeat;
}

.woocommerce-websites-hero {
  background:
    linear-gradient(90deg, #001335 0%, rgba(0, 19, 53, 0.96) 32%, rgba(0, 19, 53, 0.64) 53%, rgba(0, 19, 53, 0.16) 74%, rgba(0, 19, 53, 0) 100%),
    linear-gradient(180deg, rgba(0, 19, 53, 0), rgba(0, 19, 53, 0.22)),
    url("images/woocommerce-websites-hero-ai.webp") right center / cover no-repeat;
}

.seo-hero {
  background:
    linear-gradient(90deg, #001335 0%, rgba(0, 19, 53, 0.96) 32%, rgba(0, 19, 53, 0.64) 53%, rgba(0, 19, 53, 0.16) 74%, rgba(0, 19, 53, 0) 100%),
    linear-gradient(180deg, rgba(0, 19, 53, 0), rgba(0, 19, 53, 0.22)),
    url("images/seo-hero-ai.webp") right center / cover no-repeat;
}

.ppc-hero {
  background:
    linear-gradient(90deg, #001335 0%, rgba(0, 19, 53, 0.96) 32%, rgba(0, 19, 53, 0.64) 53%, rgba(0, 19, 53, 0.16) 74%, rgba(0, 19, 53, 0) 100%),
    linear-gradient(180deg, rgba(0, 19, 53, 0), rgba(0, 19, 53, 0.22)),
    url("images/ppc-management-hero-ai.webp") right center / cover no-repeat;
}

.hosting-hero {
  background:
    linear-gradient(90deg, #001335 0%, rgba(0, 19, 53, 0.96) 32%, rgba(0, 19, 53, 0.64) 53%, rgba(0, 19, 53, 0.16) 74%, rgba(0, 19, 53, 0) 100%),
    linear-gradient(180deg, rgba(0, 19, 53, 0), rgba(0, 19, 53, 0.22)),
    url("images/hosting-hero-ai.webp") right center / cover no-repeat;
}

.lead-hero-inner {
  width: min(100%, 910px);
  margin: 0;
}

.lead-hero h1 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(24px, 1.9vw, 36px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.lead-hero h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(52px, 4.55vw, 88px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.lead-hero .page-hero-title {
  margin: 0;
  color: var(--white);
  font-size: clamp(52px, 4.55vw, 88px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.lead-hero p {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--white);
  font-size: clamp(20px, 1.32vw, 27px);
  font-weight: 500;
  line-height: 1.32;
}

.lead-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  min-height: 56px;
  margin-top: 30px;
  padding: 0 30px;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.performance-section {
  padding: 58px clamp(24px, 2.7vw, 46px) 70px;
  color: #15182a;
  background: #ffffff;
}

.performance-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(48px, 8vw, 150px);
  align-items: center;
}

.performance-copy {
  max-width: 1260px;
}

.performance-copy h2 {
  margin: 0;
  color: #15182a;
  font-size: clamp(38px, 2.2vw, 45px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.performance-kicker {
  margin: 10px 0 28px;
  color: #1e2135;
  font-size: clamp(34px, 2.15vw, 44px);
  font-weight: 400;
  line-height: 1.12;
}

.performance-copy p:not(.performance-kicker) {
  max-width: 1220px;
  margin: 0 0 26px;
  color: #26293c;
  font-size: clamp(19px, 1.1vw, 23px);
  font-weight: 500;
  line-height: 1.45;
}

.review-card {
  padding-top: 24px;
  color: #191c2f;
}

.google-logo {
  display: block;
  width: 150px;
  height: auto;
  margin: 0 0 18px;
}

.google-heading {
  margin: 0 0 22px;
  color: #15182a;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.review-card > p {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 14px;
  font-size: 30px;
}

.review-card strong {
  color: #15182a;
  font-size: 31px;
  font-weight: 900;
}

.review-card span {
  color: #f6b732;
  letter-spacing: 6px;
}

.review-card a {
  color: #26293c;
  font-size: 23px;
  font-weight: 500;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 2.25vw, 44px);
  margin-top: 62px;
}

.service-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 34px 32px;
  color: var(--white);
  background: var(--header-bg);
  border-radius: 24px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin-bottom: 26px;
  color: var(--header-bg);
  background: var(--white);
  border-radius: 50%;
}

.service-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: clamp(30px, 2vw, 42px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(19px, 1.1vw, 23px);
  font-weight: 500;
  line-height: 1.45;
}

.service-card p a,
.website-type-card p a,
.performance-copy p a,
.portfolio-copy p a,
.faq-group p a {
  color: inherit;
  font-weight: 900;
  text-decoration-color: currentColor;
  text-underline-offset: 4px;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 58px;
  margin-top: auto;
  padding: 0 30px;
  color: #15182a;
  background: var(--white);
  border-radius: 999px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.help-options {
  padding: 78px clamp(24px, 7.2vw, 148px) 88px;
  color: #15182a;
  background: #f6f7fa;
}

.help-options-heading {
  width: min(100%, 1180px);
  margin: 0 0 54px;
}

.help-options-heading h2 {
  margin: 0;
  color: var(--header-bg);
  font-size: clamp(42px, 3.6vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.help-options-heading p {
  max-width: 1080px;
  margin: 22px 0 0;
  color: #303346;
  font-size: clamp(19px, 1.25vw, 25px);
  font-weight: 500;
  line-height: 1.45;
}

.help-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 2.6vw, 48px);
}

.help-option-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: clamp(34px, 3.4vw, 70px);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 19, 53, 0.12);
}

.help-option-card--navy {
  color: var(--white);
  background: var(--header-bg);
}

.help-option-card--orange {
  color: var(--white);
  background: var(--header-bg);
}

.help-option-card h3 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 2.55vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.help-option-card p {
  max-width: 760px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(19px, 1.2vw, 24px);
  font-weight: 500;
  line-height: 1.48;
}

.help-option-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 190px;
  min-height: 58px;
  margin-top: auto;
  padding: 0 30px;
  color: var(--header-bg);
  background: var(--white);
  border-radius: 12px;
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.help-option-card--navy a {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

.website-types {
  padding: 70px clamp(24px, 2.7vw, 46px) 78px;
  color: #15182a;
  background: #ffffff;
}

.website-types > h2 {
  margin: 0;
  color: #15182a;
  font-size: clamp(38px, 2.6vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  letter-spacing: 0;
}

.website-types-intro {
  max-width: 920px;
  margin: 18px auto 86px;
  color: #303346;
  font-size: clamp(19px, 1.2vw, 24px);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.website-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 2.2vw, 42px);
}

.website-type-card {
  position: relative;
  min-height: 390px;
  padding: 58px 42px 42px;
  color: var(--white);
  background: var(--header-bg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
}

.check-badge {
  position: absolute;
  top: -27px;
  left: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--header-bg);
  background: var(--white);
  border: 4px solid var(--header-bg);
  border-radius: 50%;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.website-type-card h3 {
  margin: 0 0 26px;
  color: var(--white);
  font-size: clamp(28px, 1.75vw, 36px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.website-type-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.08vw, 22px);
  font-weight: 500;
  line-height: 1.45;
}

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

.problem-grid .website-type-card {
  min-height: 320px;
}

.integration-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 5vw, 96px);
  align-items: start;
  margin-top: 56px;
  padding: 44px;
  color: var(--white);
  background: var(--header-bg);
  border-radius: 24px;
}

.integration-panel h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 2.05vw, 42px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.integration-panel p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 1.08vw, 22px);
  font-weight: 500;
  line-height: 1.45;
}

.integration-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.integration-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 1vw, 20px);
  font-weight: 600;
  line-height: 1.4;
}

.integration-list li::before {
  position: absolute;
  top: 0.22em;
  left: 0;
  color: var(--orange);
  content: "✓";
  font-size: 19px;
  font-weight: 900;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 72px clamp(24px, 7.2vw, 148px);
  color: var(--white);
  background: var(--header-bg);
  text-align: center;
}

.cta-band::before {
  position: absolute;
  inset: -180px 18% -180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  content: "";
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1580px);
  margin: 0 auto;
}

.cta-band h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 3.4vw, 68px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.cta-band p {
  max-width: 1500px;
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(21px, 1.55vw, 32px);
  font-weight: 500;
  line-height: 1.45;
}

.cta-band-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 48px;
}

.cta-band-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 58px;
  padding: 0 30px;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.portfolio-section {
  position: relative;
  overflow: hidden;
  padding: 82px clamp(24px, 5vw, 102px) 96px;
  color: #15182a;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 19, 53, 0.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.portfolio-section::before {
  position: absolute;
  right: -180px;
  bottom: -240px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(0, 19, 53, 0.08);
  content: "";
}

.portfolio-heading {
  width: min(100%, 1080px);
  margin: 0 auto 58px;
  text-align: center;
}

.portfolio-heading h2 {
  margin: 0;
  color: #15182a;
  font-size: clamp(42px, 3.4vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.portfolio-heading p {
  margin: 22px 0 0;
  color: #303346;
  font-size: clamp(19px, 1.25vw, 25px);
  font-weight: 500;
  line-height: 1.45;
}

.portfolio-feature {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.82fr);
  gap: clamp(38px, 4.8vw, 92px);
  align-items: center;
  width: min(100%, 1820px);
  margin: 0 auto;
  padding: clamp(24px, 2.4vw, 42px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 19, 53, 0.1);
  border-radius: 28px;
  box-shadow: 0 32px 90px rgba(0, 19, 53, 0.13);
}

.portfolio-feature + .portfolio-feature {
  margin-top: 44px;
}

.portfolio-showcase {
  width: 100%;
  padding: clamp(18px, 2vw, 34px);
  background: var(--header-bg);
  border-radius: 22px;
}

.portfolio-showcase img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.34));
}

.portfolio-copy {
  padding: 12px 0;
  text-align: left;
}

.portfolio-label {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0 0 18px;
  padding: 0 16px;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.portfolio-copy h3 {
  margin: 0 0 24px;
  color: var(--header-bg);
  font-size: clamp(40px, 2.8vw, 58px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0;
}

.portfolio-copy p {
  margin: 0;
  color: #303346;
  font-size: clamp(21px, 1.38vw, 28px);
  font-weight: 500;
  line-height: 1.42;
}

.portfolio-copy h4 {
  margin: 34px 0 18px;
  color: var(--header-bg);
  font-size: clamp(22px, 1.35vw, 28px);
  font-weight: 900;
  line-height: 1.2;
}

.portfolio-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portfolio-services li {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--header-bg);
  background: rgba(0, 19, 53, 0.08);
  border: 1px solid rgba(0, 19, 53, 0.12);
  border-radius: 999px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 56px;
  margin-top: 34px;
  padding: 0 28px;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.why-choose {
  padding: 78px clamp(24px, 7.2vw, 148px) 88px;
  color: var(--white);
  background: var(--header-bg);
}

.why-choose-heading {
  width: min(100%, 1050px);
  margin: 0 auto 56px;
  text-align: center;
}

.why-choose-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 3.5vw, 70px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.why-choose-heading p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(19px, 1.25vw, 25px);
  font-weight: 500;
  line-height: 1.45;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 2vw, 38px);
}

.why-card {
  min-height: 430px;
  padding: 34px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
}

.why-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  margin: 0 0 20px;
  color: var(--orange);
  font-size: clamp(25px, 1.55vw, 32px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.why-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1vw, 20px);
  font-weight: 500;
  line-height: 1.5;
}

.process-section {
  padding: 78px clamp(24px, 7.2vw, 148px) 88px;
  color: #15182a;
  background: #f6f7fa;
}

.process-heading {
  width: min(100%, 1050px);
  margin: 0 auto 54px;
  text-align: center;
}

.process-heading h2 {
  margin: 0;
  color: var(--header-bg);
  font-size: clamp(42px, 3.4vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.process-heading p {
  margin: 22px 0 0;
  color: #303346;
  font-size: clamp(19px, 1.2vw, 24px);
  font-weight: 500;
  line-height: 1.45;
}

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

.process-step {
  min-height: 280px;
  padding: 30px;
  color: #15182a;
  background: var(--white);
  border: 1px solid rgba(0, 19, 53, 0.1);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(0, 19, 53, 0.08);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.process-step h3 {
  margin: 0 0 14px;
  color: var(--header-bg);
  font-size: clamp(22px, 1.35vw, 28px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
}

.process-step p {
  margin: 0;
  color: #303346;
  font-size: clamp(17px, 1vw, 20px);
  font-weight: 500;
  line-height: 1.45;
}

.reviews-section {
  padding: 76px clamp(24px, 7.2vw, 148px) 88px;
  color: #15182a;
  background: #ffffff;
}

.reviews-heading {
  width: min(100%, 1040px);
  margin: 0 auto 52px;
  text-align: center;
}

.reviews-heading img {
  display: block;
  width: 210px;
  height: auto;
  margin: 0 auto 20px;
}

.reviews-eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.reviews-heading h2 {
  margin: 0;
  color: #15182a;
  font-size: clamp(42px, 3.3vw, 66px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.reviews-heading p:last-child {
  margin: 22px 0 0;
  color: #303346;
  font-size: clamp(19px, 1.2vw, 24px);
  font-weight: 500;
  line-height: 1.45;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 34px);
}

.review-card-item {
  min-height: 310px;
  padding: 32px;
  color: var(--white);
  background: var(--header-bg);
  border: 1px solid rgba(0, 19, 53, 0.16);
  border-radius: 22px;
  box-shadow: 0 20px 46px rgba(0, 19, 53, 0.14);
}

.review-stars {
  margin-bottom: 20px;
  color: #f6b732;
  font-size: 24px;
  letter-spacing: 4px;
}

.review-card-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 1.05vw, 21px);
  font-weight: 500;
  line-height: 1.48;
}

.review-card-item h3 {
  margin: 24px 0 0;
  color: var(--white);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.2;
}

.faq-section {
  padding: 78px clamp(24px, 7.2vw, 148px) 92px;
  color: #15182a;
  background: #f6f7fa;
}

.faq-heading {
  width: min(100%, 1050px);
  margin: 0 auto 54px;
  text-align: center;
}

.faq-heading h2 {
  margin: 0;
  color: var(--header-bg);
  font-size: clamp(42px, 3.4vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.faq-heading p {
  margin: 22px 0 0;
  color: #303346;
  font-size: clamp(19px, 1.2vw, 24px);
  font-weight: 500;
  line-height: 1.45;
}

.faq-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 2vw, 36px);
}

.faq-group {
  padding: 30px;
  color: var(--white);
  background: var(--header-bg);
  border: 1px solid rgba(0, 19, 53, 0.16);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(0, 19, 53, 0.08);
}

.faq-group h3 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(25px, 1.55vw, 32px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.faq-group details {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.faq-group details:last-child {
  padding-bottom: 0;
}

.faq-group summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  cursor: pointer;
  color: var(--white);
  font-size: clamp(18px, 1.05vw, 21px);
  font-weight: 900;
  line-height: 1.25;
}

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

.faq-group summary::marker {
  content: "";
}

.faq-group summary::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: var(--header-bg);
  background: var(--orange);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  content: "+";
}

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

.faq-group p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1vw, 20px);
  font-weight: 500;
  line-height: 1.5;
}

.contact-section {
  padding: 86px clamp(24px, 7.2vw, 148px) 96px;
  color: var(--white);
  background: var(--header-bg);
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  gap: clamp(36px, 4vw, 72px);
  align-items: start;
  width: min(100%, 1480px);
  margin: 0 auto;
}

.contact-info h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(44px, 4vw, 76px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.contact-info > p {
  max-width: 760px;
  margin: 32px 0 44px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(22px, 1.5vw, 30px);
  font-weight: 600;
  line-height: 1.5;
}

.contact-cards {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 104px;
  padding: 24px 28px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-decoration: none;
  width: min(100%, 620px);
}

.contact-card span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
}

.contact-card svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card strong {
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: clamp(20px, 1.35vw, 28px);
  font-weight: 900;
  line-height: 1.25;
}

.contact-form {
  padding: clamp(24px, 2vw, 34px);
  color: #15182a;
  background: var(--white);
}

.contact-form label {
  display: block;
  margin: 0 0 9px;
  color: #303346;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin: 0 0 18px;
  padding: 14px 16px;
  color: #15182a;
  background: var(--white);
  border: 2px solid #d8dde5;
  border-radius: 0;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9aa0aa;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  margin-top: 2px;
  color: var(--white);
  background: var(--orange);
  border: 0;
  border-radius: 0;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 78px clamp(24px, 7.2vw, 148px) 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 72%, rgba(255, 255, 255, 0.08) 0 22%, transparent 23%),
    radial-gradient(circle at 88% 74%, rgba(255, 255, 255, 0.05) 0 33%, transparent 34%),
    var(--header-bg);
}

.site-footer::before {
  position: absolute;
  right: -260px;
  bottom: -430px;
  width: 920px;
  height: 920px;
  border: 90px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) repeat(3, minmax(180px, 0.8fr));
  gap: clamp(36px, 5vw, 94px);
  width: min(100%, 1680px);
  margin: 0 auto;
}

.footer-brand img {
  display: block;
  width: min(100%, 270px);
  height: auto;
  margin-bottom: 44px;
}

.footer-brand p {
  max-width: 460px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.15vw, 23px);
  font-weight: 600;
  line-height: 1.5;
}

.footer-contact {
  display: table;
  margin-top: 14px;
  padding: 18px 22px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: clamp(17px, 1.05vw, 21px);
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
}

.footer-column h2 {
  margin: 0 0 26px;
  color: var(--white);
  font-size: clamp(20px, 1.2vw, 25px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.08vw, 22px);
  font-weight: 800;
  line-height: 1.32;
  text-decoration: none;
}

.footer-column a:hover,
.footer-contact:hover {
  color: var(--white);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(100%, 1680px);
  margin: 68px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.footer-bottom p + p {
  margin-top: 8px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  text-decoration: none;
}

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

@media (max-width: 1320px) {
  .main-nav {
    padding-inline: 24px;
  }

  .brand {
    flex-basis: 210px;
  }

  .brand-logo {
    max-width: 210px;
  }

  .nav-links {
    position: static;
    transform: none;
    gap: 20px;
  }

  .nav-links a + a::before {
    left: -10px;
  }

  .nav-links a {
    font-size: 20px;
  }

  .cta {
    min-width: 174px;
    font-size: 20px;
  }
}

@media (max-width: 1180px) {
  .performance-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .review-card {
    padding-top: 0;
  }

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

  .help-options-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 420px;
  }

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

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

  .integration-panel {
    grid-template-columns: 1fr;
  }

  .cta-band-actions a {
    min-width: 180px;
  }

  .portfolio-feature {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .portfolio-copy {
    max-width: 900px;
    margin: 0 auto;
  }

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

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

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

  .faq-groups {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 980px) {
  .site-header {
    background: var(--header-bg);
  }

  body {
    padding-bottom: 72px;
  }

  .mobile-call-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    color: var(--white);
    background: #118c4f;
    border-radius: 0;
    box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.22);
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
  }

  .mobile-call-bar svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .announcement {
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    grid-template-columns: 1fr;
    padding-block: 10px;
    text-align: center;
  }

  .announcement p {
    padding: 0;
    white-space: normal;
  }

  .announcement p:nth-child(2) {
    font-weight: 800;
  }

  .announcement p:first-child,
  .announcement p:last-child {
    display: none;
  }

  .announcement p + p::before {
    display: none;
  }

  .nav-stage {
    padding-top: 0;
    background: var(--header-bg);
  }

  .main-nav {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 14px;
    min-height: auto;
    padding: 18px 20px 20px;
  }

  .brand {
    justify-content: center;
    width: 100%;
    min-width: 0;
    flex-basis: auto;
  }

  .brand-logo {
    width: min(100%, 310px);
    max-width: 310px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 142px;
    min-height: 46px;
    padding: 0 18px;
    color: var(--white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    font: inherit;
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
  }

  .nav-toggle-icon {
    display: grid;
    gap: 4px;
    width: 20px;
  }

  .nav-toggle-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 999px;
  }

  .nav-links {
    position: static;
    transform: none;
    display: none;
    width: 100%;
    max-width: 360px;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-left: 0;
    padding-top: 8px;
  }

  .main-nav.is-open .nav-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-links a + a::before {
    display: none;
  }

  .nav-links a {
    justify-content: center;
    min-height: 44px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    font-size: 18px;
  }

  .nav-links .nav-phone {
    display: inline-flex;
    gap: 10px;
    color: var(--white);
    background: var(--orange);
    border-color: transparent;
  }

  .nav-phone svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .cta {
    display: none;
  }

  .lead-hero {
    min-height: 560px;
    padding-block: 56px;
    background:
      linear-gradient(90deg, #001335 0%, rgba(0, 19, 53, 0.95) 58%, rgba(0, 19, 53, 0.44) 100%),
      linear-gradient(180deg, rgba(0, 19, 53, 0), rgba(0, 19, 53, 0.36)),
      url("images/web-design-hero-ai.webp") 58% center / cover no-repeat;
  }

  .web-design-hero {
    background:
      linear-gradient(90deg, #001335 0%, rgba(0, 19, 53, 0.95) 58%, rgba(0, 19, 53, 0.44) 100%),
      linear-gradient(180deg, rgba(0, 19, 53, 0), rgba(0, 19, 53, 0.36)),
      url("images/web-design-page-hero-ai.webp") 58% center / cover no-repeat;
  }

  .wordpress-website-hero {
    background:
      linear-gradient(90deg, #001335 0%, rgba(0, 19, 53, 0.95) 58%, rgba(0, 19, 53, 0.44) 100%),
      linear-gradient(180deg, rgba(0, 19, 53, 0), rgba(0, 19, 53, 0.36)),
      url("images/wordpress-website-hero-ai.webp") 58% center / cover no-repeat;
  }

  .woocommerce-websites-hero {
    background:
      linear-gradient(90deg, #001335 0%, rgba(0, 19, 53, 0.95) 58%, rgba(0, 19, 53, 0.44) 100%),
      linear-gradient(180deg, rgba(0, 19, 53, 0), rgba(0, 19, 53, 0.36)),
      url("images/woocommerce-websites-hero-ai.webp") 58% center / cover no-repeat;
  }

  .seo-hero {
    background:
      linear-gradient(90deg, #001335 0%, rgba(0, 19, 53, 0.95) 58%, rgba(0, 19, 53, 0.44) 100%),
      linear-gradient(180deg, rgba(0, 19, 53, 0), rgba(0, 19, 53, 0.36)),
      url("images/seo-hero-ai.webp") 58% center / cover no-repeat;
  }

  .ppc-hero {
    background:
      linear-gradient(90deg, #001335 0%, rgba(0, 19, 53, 0.95) 58%, rgba(0, 19, 53, 0.44) 100%),
      linear-gradient(180deg, rgba(0, 19, 53, 0), rgba(0, 19, 53, 0.36)),
      url("images/ppc-management-hero-ai.webp") 58% center / cover no-repeat;
  }

  .hosting-hero {
    background:
      linear-gradient(90deg, #001335 0%, rgba(0, 19, 53, 0.95) 58%, rgba(0, 19, 53, 0.44) 100%),
      linear-gradient(180deg, rgba(0, 19, 53, 0), rgba(0, 19, 53, 0.36)),
      url("images/hosting-hero-ai.webp") 58% center / cover no-repeat;
  }

  .lead-cta {
    min-width: 164px;
    min-height: 54px;
    font-size: 19px;
  }

  .performance-section {
    padding-top: 42px;
  }

  .service-grid {
    gap: 22px;
  }

  .website-types > h2 {
    margin-bottom: 58px;
  }

  .integration-list {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding-block: 56px;
  }

  .cta-band-actions {
    flex-wrap: wrap;
    gap: 18px;
  }

  .cta-band-actions a {
    min-height: 56px;
    font-size: 19px;
  }

  .portfolio-section {
    padding-block: 56px;
  }

  .why-choose {
    padding-block: 56px;
  }

  .why-card {
    min-height: 0;
  }

  .reviews-section {
    padding-block: 56px;
  }

  .process-section {
    padding-block: 56px;
  }

  .help-options {
    padding-block: 56px;
  }

  .faq-section {
    padding-block: 56px;
  }

  .contact-section {
    padding-block: 56px;
  }

  .site-footer {
    padding-block: 56px 30px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 0;
  }

  .announcement {
    font-size: 16px;
  }

  .nav-stage {
    padding: 0;
  }

  .main-nav {
    gap: 12px;
    padding: 14px 16px 18px;
    border-radius: 0;
  }

  .brand {
    width: 100%;
  }

  .brand-logo {
    width: min(100%, 300px);
    max-width: 300px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    min-height: 36px;
    font-size: 17px;
    line-height: 1.15;
    white-space: normal;
  }

  .cta {
    width: 100%;
    min-height: 52px;
    margin-left: 0;
    font-size: 18px;
  }

  .lead-hero {
    min-height: 430px;
    padding: 40px 18px 46px;
    background-position: 64% center;
  }

  .lead-hero h1 {
    font-size: 22px;
  }

  .lead-hero h2 {
    font-size: 40px;
  }

  .lead-hero .page-hero-title {
    overflow-wrap: anywhere;
    font-size: 40px;
    line-height: 1.02;
  }

  .lead-hero p {
    margin-top: 20px;
    font-size: 18px;
  }

  .lead-cta {
    min-height: 52px;
    margin-top: 24px;
    font-size: 18px;
  }

  .performance-section {
    padding: 36px 18px 48px;
  }

  .performance-copy h2 {
    font-size: 32px;
  }

  .performance-kicker {
    font-size: 24px;
  }

  .performance-copy p {
    font-size: 18px;
  }

  .review-card {
    display: none;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .service-card {
    min-height: 0;
    padding: 26px;
    border-radius: 18px;
  }

  .service-card h3 {
    margin-bottom: 14px;
    font-size: 28px;
  }

  .service-card p {
    font-size: 18px;
  }

  .service-card a {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    margin-top: 26px;
    font-size: 18px;
  }

  .help-options {
    padding: 46px 18px 54px;
  }

  .help-options-heading {
    margin-bottom: 30px;
  }

  .help-options-heading h2 {
    font-size: 34px;
  }

  .help-option-card {
    min-height: 0;
    padding: 26px;
    border-radius: 18px;
  }

  .help-option-card h3 {
    font-size: 28px;
  }

  .help-option-card p {
    margin-top: 22px;
    font-size: 18px;
  }

  .help-option-card a {
    width: 100%;
    margin-top: 28px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }

  .website-types {
    padding: 46px 18px 52px;
  }

  .website-types > h2 {
    font-size: 32px;
  }

  .website-types-intro {
    margin-bottom: 52px;
    font-size: 18px;
  }

  .website-type-grid {
    grid-template-columns: 1fr;
  }

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

  .website-type-card {
    min-height: 0;
    padding: 42px 26px 26px;
    border-radius: 18px;
  }

  .check-badge {
    left: 26px;
  }

  .website-type-card h3 {
    margin-bottom: 16px;
    font-size: 26px;
  }

  .website-type-card p {
    font-size: 18px;
  }

  .integration-panel {
    margin-top: 36px;
    padding: 26px;
    border-radius: 18px;
  }

  .integration-panel h3 {
    font-size: 28px;
  }

  .integration-panel p,
  .integration-list li {
    font-size: 18px;
  }

  .cta-band {
    padding: 46px 18px;
  }

  .cta-band h2 {
    font-size: 36px;
  }

  .cta-band p {
    margin-top: 24px;
    font-size: 18px;
  }

  .cta-band-actions {
    margin-top: 32px;
  }

  .cta-band-actions a {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    font-size: 20px;
  }

  .portfolio-section {
    padding: 46px 18px 54px;
  }

  .portfolio-heading {
    margin-bottom: 30px;
  }

  .portfolio-heading h2 {
    font-size: 34px;
  }

  .portfolio-heading p {
    font-size: 18px;
  }

  .portfolio-feature {
    padding: 18px;
    border-radius: 18px;
  }

  .portfolio-showcase {
    padding: 14px;
    border-radius: 16px;
  }

  .portfolio-showcase img {
    border-radius: 10px;
  }

  .portfolio-copy h3 {
    overflow-wrap: anywhere;
    font-size: 30px;
  }

  .portfolio-copy p,
  .portfolio-copy ul {
    font-size: 18px;
  }

  .portfolio-services li {
    min-height: 38px;
    font-size: 16px;
  }

  .portfolio-link {
    width: 100%;
    min-height: 52px;
    font-size: 18px;
  }

  .why-choose {
    padding: 46px 18px 54px;
  }

  .why-choose-heading {
    margin-bottom: 36px;
  }

  .why-choose-heading h2 {
    font-size: 34px;
  }

  .why-choose-heading p {
    font-size: 18px;
  }

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

  .why-card {
    padding: 26px;
    border-radius: 18px;
  }

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

  .why-card p {
    font-size: 18px;
  }

  .process-section {
    padding: 46px 18px 54px;
  }

  .process-heading {
    margin-bottom: 34px;
  }

  .process-heading h2 {
    font-size: 34px;
  }

  .process-heading p {
    font-size: 18px;
  }

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

  .process-step {
    min-height: 0;
    padding: 24px;
    border-radius: 18px;
  }

  .process-step h3 {
    font-size: 24px;
  }

  .process-step p {
    font-size: 18px;
  }

  .reviews-section {
    padding: 46px 18px 54px;
  }

  .reviews-heading {
    margin-bottom: 34px;
  }

  .reviews-heading img {
    width: 150px;
  }

  .reviews-heading h2 {
    font-size: 34px;
  }

  .reviews-heading p,
  .review-card-item p {
    font-size: 18px;
  }

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

  .review-card-item {
    min-height: 0;
    padding: 26px;
    border-radius: 18px;
  }

  .faq-section {
    padding: 46px 18px 54px;
  }

  .faq-heading {
    margin-bottom: 34px;
  }

  .faq-heading h2 {
    font-size: 34px;
  }

  .faq-heading p,
  .faq-group summary,
  .faq-group p {
    font-size: 18px;
  }

  .faq-group {
    padding: 24px;
    border-radius: 18px;
  }

  .contact-section {
    padding: 46px 18px 54px;
  }

  .contact-info h2 {
    font-size: 36px;
  }

  .contact-info > p {
    margin: 22px 0 30px;
    font-size: 19px;
  }

  .contact-card {
    gap: 14px;
    min-height: 82px;
    padding: 18px;
  }

  .contact-card span {
    width: 30px;
    height: 30px;
  }

  .contact-card svg {
    width: 28px;
    height: 28px;
  }

  .contact-card strong {
    font-size: 17px;
  }

  .contact-form {
    padding: 22px;
  }

  .contact-form input,
  .contact-form textarea {
    margin-bottom: 22px;
    padding: 17px 18px;
    font-size: 17px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-brand img {
    width: min(100%, 230px);
    margin-bottom: 28px;
  }

  .footer-brand p,
  .footer-contact,
  .footer-column a {
    font-size: 18px;
  }

  .footer-column ul {
    gap: 12px;
  }

  .footer-bottom {
    margin-top: 42px;
  }
}
