/* Woma Sprinter Google Ads landing oldal - CSS */

:root {
  --ws-primary: #0f5f8f;
  --ws-primary-dark: #083f61;
  --ws-primary-light: #e8f4fb;
  --ws-secondary: #0b2f45;
  --ws-accent: #f5b301;
  --ws-accent-dark: #d99600;
  --ws-text: #17212b;
  --ws-muted: #5f6f7f;
  --ws-light: #f6f9fc;
  --ws-white: #ffffff;
  --ws-border: #dce7ef;
  --ws-shadow: 0 18px 50px rgba(8, 47, 70, 0.12);
  --ws-radius-sm: 10px;
  --ws-radius-md: 18px;
  --ws-radius-lg: 28px;
  --ws-container: 1180px;
}

/* Alapok */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ws-text);
  background: var(--ws-white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body * {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.ws-container {
  width: min(var(--ws-container), calc(100% - 40px));
  margin: 0 auto;
}

.ws-section {
  padding: 90px 0;
}

.ws-section__narrow {
  max-width: 980px;
}

.ws-section__heading {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.ws-section__label,
.ws-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--ws-primary);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ws-section__label::before,
.ws-eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--ws-accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--ws-white);
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  color: var(--ws-secondary);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 12px;
  color: var(--ws-secondary);
  font-size: 22px;
  font-weight: 850;
  line-height: 1.2;
}

p {
  margin-bottom: 18px;
  color: var(--ws-muted);
  font-size: 17px;
}

section[id] {
  scroll-margin-top: 110px;
}

/* Gombok */

.ws-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 15px 24px;
  border: 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.ws-btn:hover {
  transform: translateY(-2px);
}

.ws-btn--primary {
  color: var(--ws-secondary);
  background: var(--ws-accent);
  box-shadow: 0 14px 28px rgba(245, 179, 1, 0.25);
}

.ws-btn--primary:hover {
  background: var(--ws-accent-dark);
  box-shadow: 0 18px 36px rgba(217, 150, 0, 0.28);
}

.ws-btn--secondary {
  color: var(--ws-white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.ws-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

.ws-btn--full {
  width: 100%;
}

/* Header */

.ws-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 231, 239, 0.9);
  box-shadow: 0 10px 30px rgba(8, 47, 70, 0.06);
  backdrop-filter: blur(14px);
}

.ws-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
}

.ws-logo {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  color: var(--ws-secondary);
  text-decoration: none;
}

.ws-logo__main {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.ws-logo__sub {
  margin-top: 4px;
  color: var(--ws-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ws-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1;
}

.ws-nav a {
  color: var(--ws-secondary);
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ws-nav a:hover {
  color: var(--ws-primary);
}

.ws-header__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  line-height: 1.2;
}

.ws-phone-link {
  color: var(--ws-primary);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.ws-header__cta span {
  margin-top: 3px;
  color: var(--ws-muted);
  font-size: 13px;
  font-weight: 700;
}

/* Hero */

.ws-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
  color: var(--ws-white);
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(245, 179, 1, 0.26),
      transparent 28%
    ),
    linear-gradient(135deg, rgba(8, 47, 70, 0.95), rgba(15, 95, 143, 0.92)),
    url("/wp-content/uploads/woma-sprinter-hero.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.ws-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -34% auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(245, 179, 1, 0.12);
  pointer-events: none;
}

.ws-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: 56px;
}

.ws-hero .ws-eyebrow {
  color: var(--ws-accent);
}

.ws-hero .ws-eyebrow::before {
  background: var(--ws-white);
}

.ws-hero__lead {
  max-width: 720px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.7;
}

.ws-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.ws-hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ws-hero__benefits li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.ws-hero__benefits li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  color: var(--ws-secondary);
  background: var(--ws-accent);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.ws-hero__card {
  padding: 34px;
  color: var(--ws-text);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--ws-radius-lg);
  box-shadow: var(--ws-shadow);
}

.ws-hero__card h2 {
  margin-bottom: 12px;
  font-size: 30px;
}

.ws-hero__card p {
  margin-bottom: 24px;
  font-size: 16px;
}

/* Kapcsolati dobozok */

.ws-contact-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 17px 18px;
  margin-bottom: 12px;
  background: var(--ws-light);
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-sm);
}

.ws-contact-box__label {
  color: var(--ws-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ws-contact-box a,
.ws-contact-box strong {
  color: var(--ws-secondary);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  text-decoration: none;
}

.ws-contact-box a:hover {
  color: var(--ws-primary);
}

/* Trust bar */

.ws-trust {
  position: relative;
  z-index: 2;
  margin-top: -42px;
  padding-bottom: 34px;
}

.ws-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px;
  background: var(--ws-white);
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-lg);
  box-shadow: var(--ws-shadow);
}

.ws-trust__item {
  padding: 18px;
  border-radius: var(--ws-radius-md);
  background: var(--ws-light);
}

.ws-trust__item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ws-secondary);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.ws-trust__item span {
  color: var(--ws-muted);
  font-size: 14px;
  line-height: 1.45;
}

/* Probléma szekció */

.ws-problems {
  padding-top: 56px;
  background: var(--ws-white);
}

.ws-problems .ws-section__narrow > p:not(.ws-section__label) {
  max-width: 780px;
  margin-bottom: 34px;
  font-size: 18px;
}

.ws-problems__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.ws-problem-card {
  padding: 28px;
  background: var(--ws-light);
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-md);
}

.ws-problem-card h3 {
  margin-bottom: 10px;
}

.ws-problem-card p {
  margin-bottom: 0;
  font-size: 16px;
}

/* Szolgáltatások */

.ws-services {
  background: linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
}

.ws-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ws-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  overflow: hidden;
  background: var(--ws-white);
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-lg);
  box-shadow: 0 12px 34px rgba(8, 47, 70, 0.07);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.ws-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 4px;
  background: linear-gradient(90deg, var(--ws-accent), var(--ws-primary));
  border-radius: 0 0 999px 999px;
}

.ws-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 95, 143, 0.25);
  box-shadow: 0 22px 48px rgba(8, 47, 70, 0.12);
}

.ws-service-card__tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  color: var(--ws-primary);
  background: var(--ws-primary-light);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.ws-service-card p {
  flex: 1;
  margin-bottom: 22px;
  font-size: 16px;
}

.ws-service-card a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--ws-primary);
  font-weight: 900;
  text-decoration: none;
}

.ws-service-card a::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.ws-service-card a:hover::after {
  transform: translateX(4px);
}

/* Célcsoport szekció */

.ws-audience {
  background: var(--ws-secondary);
}

.ws-audience__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ws-audience-card {
  padding: 42px;
  background: var(--ws-white);
  border-radius: var(--ws-radius-lg);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.ws-audience-card h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.ws-check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.ws-check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ws-text);
  font-size: 16px;
  font-weight: 700;
}

.ws-check-list li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--ws-secondary);
  background: var(--ws-accent);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

/* Miért mi */

.ws-why {
  background: var(--ws-white);
}

.ws-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ws-why-card {
  padding: 28px;
  background: var(--ws-light);
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-md);
}

.ws-why-card h3 {
  font-size: 20px;
}

.ws-why-card p {
  margin-bottom: 0;
  font-size: 15.5px;
}

/* Folyamat */

.ws-process {
  background:
    radial-gradient(
      circle at top left,
      rgba(15, 95, 143, 0.12),
      transparent 32%
    ),
    var(--ws-light);
}

.ws-process__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.ws-process__item {
  position: relative;
  padding: 30px;
  background: var(--ws-white);
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-lg);
  box-shadow: 0 14px 38px rgba(8, 47, 70, 0.07);
}

.ws-process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  color: var(--ws-secondary);
  background: var(--ws-accent);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 950;
}

.ws-process__item h3 {
  font-size: 20px;
}

.ws-process__item p {
  margin-bottom: 0;
  font-size: 15.5px;
}

/* CTA sáv */

.ws-cta-band {
  padding: 56px 0;
  color: var(--ws-white);
  background: linear-gradient(
    135deg,
    rgba(8, 47, 70, 0.97),
    rgba(15, 95, 143, 0.94)
  );
}

.ws-cta-band__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
}

.ws-cta-band .ws-section__label {
  color: var(--ws-accent);
}

.ws-cta-band .ws-section__label::before {
  background: var(--ws-white);
}

.ws-cta-band h2 {
  max-width: 760px;
  margin-bottom: 10px;
  color: var(--ws-white);
  font-size: clamp(28px, 4vw, 44px);
}

.ws-cta-band p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

/* Vélemények */

.ws-reviews {
  background: var(--ws-white);
}

.ws-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ws-review-card {
  margin: 0;
  padding: 30px;
  background: var(--ws-light);
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-lg);
}

.ws-review-card blockquote {
  position: relative;
  margin: 0 0 24px;
  color: var(--ws-text);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.55;
}

.ws-review-card blockquote::before {
  content: "“";
  display: block;
  height: 34px;
  color: var(--ws-accent);
  font-size: 58px;
  font-weight: 900;
  line-height: 0.8;
}

.ws-review-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ws-review-card figcaption strong {
  color: var(--ws-secondary);
  font-size: 17px;
  font-weight: 900;
}

.ws-review-card figcaption span {
  color: var(--ws-muted);
  font-size: 14px;
}

/* GYIK */

.ws-faq {
  background: var(--ws-light);
}

.ws-faq__list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.ws-faq__item {
  background: var(--ws-white);
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-md);
  box-shadow: 0 10px 28px rgba(8, 47, 70, 0.05);
}

.ws-faq__item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  color: var(--ws-secondary);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

.ws-faq__item summary::-webkit-details-marker {
  display: none;
}

.ws-faq__item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  color: var(--ws-primary);
  background: var(--ws-primary-light);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.ws-faq__item[open] summary::after {
  content: "−";
}

.ws-faq__item div {
  padding: 0 24px 22px;
}

.ws-faq__item p {
  margin-bottom: 0;
  font-size: 16px;
}

/* Kapcsolat és űrlap */

.ws-contact {
  background: var(--ws-white);
}

.ws-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: start;
  gap: 48px;
}

.ws-contact__content {
  position: sticky;
  top: 112px;
}

.ws-contact-details {
  margin-top: 28px;
}

.ws-form {
  padding: 38px;
  background: var(--ws-light);
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-lg);
  box-shadow: var(--ws-shadow);
}

.ws-form h3 {
  margin-bottom: 24px;
  font-size: 28px;
}

.ws-form__group {
  margin-bottom: 18px;
}

.ws-form__group label {
  display: block;
  margin-bottom: 7px;
  color: var(--ws-secondary);
  font-size: 14px;
  font-weight: 850;
}

.ws-form__group input,
.ws-form__group select,
.ws-form__group textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  color: var(--ws-text);
  background: var(--ws-white);
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-sm);
  outline: none;
  font: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.ws-form__group textarea {
  min-height: 130px;
  resize: vertical;
}

.ws-form__group input:focus,
.ws-form__group select:focus,
.ws-form__group textarea:focus {
  border-color: var(--ws-primary);
  box-shadow: 0 0 0 4px rgba(15, 95, 143, 0.12);
}

.ws-form__group input::placeholder,
.ws-form__group textarea::placeholder {
  color: #8795a1;
}

.ws-form__group--checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  margin: 22px 0;
}

.ws-form__group--checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--ws-primary);
}

.ws-form__group--checkbox label {
  margin: 0;
  color: var(--ws-muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

.ws-form__note {
  margin: 18px 0 0;
  color: var(--ws-muted);
  font-size: 14px;
  text-align: center;
}

.ws-form__note a {
  color: var(--ws-primary);
  font-weight: 900;
  text-decoration: none;
}

/* Footer */

.ws-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ws-secondary);
}

.ws-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ws-footer strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ws-white);
  font-size: 21px;
  font-weight: 900;
}

.ws-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.ws-footer__contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.ws-footer__contacts a {
  color: var(--ws-white);
  font-weight: 800;
  text-decoration: none;
}

.ws-footer__contacts a:hover {
  color: var(--ws-accent);
}

/* Mobil sticky CTA */

.ws-mobile-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 80;
  display: none;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.ws-mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 18px;
  color: var(--ws-secondary);
  background: var(--ws-accent);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(8, 47, 70, 0.24);
  font-size: 16px;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
}

.ws-mobile-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Responsive */

@media (max-width: 1100px) {
  .ws-header__inner {
    gap: 18px;
  }

  .ws-nav {
    gap: 15px;
  }

  .ws-nav a {
    font-size: 14px;
  }

  .ws-hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ws-hero__card {
    max-width: 620px;
  }

  .ws-trust__grid,
  .ws-why__grid,
  .ws-process__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .ws-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ws-contact__grid {
    grid-template-columns: 1fr;
  }

  .ws-contact__content {
    position: static;
  }
}

@media (max-width: 900px) {
  .ws-nav {
    display: none;
  }

  .ws-header__inner {
    min-height: 74px;
  }

  .ws-logo__main {
    font-size: 22px;
  }

  .ws-header__cta .ws-phone-link {
    font-size: 16px;
  }

  .ws-hero {
    padding: 74px 0 88px;
  }

  .ws-section {
    padding: 72px 0;
  }

  .ws-audience__grid,
  .ws-reviews__grid {
    grid-template-columns: 1fr;
  }

  .ws-cta-band__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .ws-cta-band .ws-btn {
    width: fit-content;
  }
}

@media (max-width: 680px) {
  .ws-container {
    width: min(100% - 28px, var(--ws-container));
  }

  .ws-header__cta {
    display: none;
  }

  .ws-header__inner {
    justify-content: center;
    text-align: center;
  }

  .ws-logo {
    align-items: center;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  p {
    font-size: 16px;
  }

  .ws-hero {
    padding: 60px 0 78px;
  }

  .ws-hero__lead {
    font-size: 17px;
  }

  .ws-hero__actions {
    flex-direction: column;
  }

  .ws-hero__actions .ws-btn {
    width: 100%;
  }

  .ws-hero__benefits {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ws-hero__card {
    padding: 26px;
    border-radius: 22px;
  }

  .ws-hero__card h2 {
    font-size: 26px;
  }

  .ws-trust {
    margin-top: -28px;
  }

  .ws-trust__grid,
  .ws-problems__grid,
  .ws-services__grid,
  .ws-why__grid,
  .ws-process__list {
    grid-template-columns: 1fr;
  }

  .ws-trust__grid {
    padding: 12px;
  }

  .ws-section {
    padding: 62px 0;
  }

  .ws-section__heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .ws-section__label,
  .ws-eyebrow {
    font-size: 12px;
  }

  .ws-problem-card,
  .ws-service-card,
  .ws-why-card,
  .ws-process__item,
  .ws-review-card {
    padding: 24px;
  }

  .ws-audience-card {
    padding: 28px;
  }

  .ws-form {
    padding: 26px;
  }

  .ws-form h3 {
    font-size: 24px;
  }

  .ws-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ws-footer__contacts {
    flex-direction: column;
    justify-content: flex-start;
  }

  .ws-mobile-cta {
    display: block;
  }

  body {
    padding-bottom: 82px;
  }
}

@media (max-width: 430px) {
  .ws-container {
    width: min(100% - 24px, var(--ws-container));
  }

  .ws-logo__main {
    font-size: 21px;
  }

  .ws-logo__sub {
    font-size: 11px;
  }

  .ws-btn {
    min-height: 52px;
    padding: 14px 18px;
    font-size: 15px;
  }

  .ws-contact-box a,
  .ws-contact-box strong {
    font-size: 16px;
  }

  .ws-faq__item summary {
    padding: 20px;
    font-size: 16px;
  }

  .ws-faq__item div {
    padding: 0 20px 20px;
  }

  .ws-form__group--checkbox {
    grid-template-columns: 18px 1fr;
  }
}

.mobile-sticky-call {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: none;
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.mobile-sticky-call a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 14px 20px;
  background: #f5b301;
  color: #0b2f45;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(8, 47, 70, 0.28);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.mobile-sticky-call.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 680px) {
  .mobile-sticky-call {
    display: block;
  }

  body {
    padding-bottom: 86px;
  }
}
