:root {
  --bg: #f6fbff;
  --white: #ffffff;
  --text: #102033;
  --muted: #5d6b7c;
  --dark: #0f2747;
  --accent: #38bdf8;
  --accent-dark: #0284c7;
  --soft: #e8f7ff;
  --border: #d8ecf7;
  --green: #16a34a;
  --green-dark: #15803d;
  --shadow: 0 18px 45px rgba(15, 39, 71, 0.08);
  --shadow-soft: 0 12px 32px rgba(15, 39, 71, 0.05);
  --radius: 24px;
  --radius-lg: 32px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-bottom: 1px solid rgba(216, 236, 247, 0.62);
  box-shadow: 0 14px 38px rgba(15, 39, 71, 0.05);
}

.header-content {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--dark), var(--accent-dark));
  color: white;
  display: grid;
  place-items: center;
  font-size: 20px;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.25);
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 20px;
  color: var(--dark);
  letter-spacing: -0.04em;
}

.logo-tag {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.nav-list a:hover {
  color: var(--accent-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: white;
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
  margin: 5px auto;
  border-radius: 10px;
}

.mobile-nav {
  display: none;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  font-size: 15px;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--dark), var(--accent-dark) 58%, var(--green));
  color: white;
  box-shadow: 0 16px 34px rgba(2, 132, 199, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(2, 132, 199, 0.3);
}

.btn-secondary {
  background: white;
  color: var(--dark);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-phone {
  gap: 12px;
  padding: 8px 16px 8px 9px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--dark);
  border-color: rgba(216, 236, 247, 0.95);
  box-shadow: 0 14px 32px rgba(15, 39, 71, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.btn-phone svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dark), var(--green));
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: white;
  box-shadow: 0 10px 22px rgba(2, 132, 199, 0.22);
}

.btn-phone:hover {
  transform: translateY(-2px);
  border-color: rgba(2, 132, 199, 0.28);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(15, 39, 71, 0.11);
}

.btn-stroke {
  background: transparent;
  color: var(--dark);
  border-color: rgba(15, 39, 71, 0.28);
  box-shadow: none;
}

.btn-stroke:hover {
  transform: translateY(-2px);
  border-color: var(--accent-dark);
  color: var(--accent-dark);
  background: rgba(232, 247, 255, 0.55);
}

.btn-large {
  padding: 16px 26px;
  font-size: 16px;
}

/* Layout */

.section {
  padding: 90px 0;
}

.section-small {
  padding: 70px 0;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.light-section {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  display: inline-block;
  max-width: 100%;
  color: var(--accent-dark);
  background: var(--soft);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.4;
  margin-bottom: 18px;
  overflow-wrap: anywhere;
  white-space: normal;
}

h1,
h2,
h3 {
  color: var(--dark);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(44px, 6vw, 78px);
  max-width: 980px;
  margin: 0 auto;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 16px;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

p {
  color: var(--muted);
}

.page-hero,
.hero {
  padding: 92px 0 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before,
.hero::before {
  content: "";
  position: absolute;
  inset: -200px -180px auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.28), rgba(56, 189, 248, 0));
  pointer-events: none;
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
}

.hero-subtitle,
.subtitle {
  max-width: 770px;
  margin: 24px auto 0;
  font-size: 21px;
  color: #435269;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.trust-line {
  margin-top: 22px;
  font-weight: 750;
  color: #415066;
  font-size: 15px;
}

/* Cards */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--soft);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 22px;
  margin-bottom: 20px;
}

.services-grid {
  align-items: stretch;
}

.service-card {
  position: relative;
  min-height: 220px;
  padding: 34px 30px 32px;
  overflow: hidden;
  border-color: #cfe5ee;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.98)),
    white;
}

.service-card::before {
  content: "";
  display: block;
  width: 48px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-dark), var(--green));
  margin-bottom: 22px;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 22px solid rgba(22, 163, 74, 0.08);
}

.service-card h3 {
  font-size: 23px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.service-card p {
  color: #4f6074;
  max-width: 30rem;
}

.service-card:hover {
  border-color: rgba(2, 132, 199, 0.32);
}

.why-grid {
  align-items: stretch;
}

.why-card {
  position: relative;
  min-height: 240px;
  padding: 34px 30px 32px;
  overflow: hidden;
  border-color: #cfe2ee;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 252, 255, 0.96)),
    white;
}

.why-card::before {
  content: "";
  display: block;
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent-dark);
  margin-bottom: 22px;
}

.why-card h3 {
  max-width: 15rem;
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.18;
}

.why-card p {
  color: #46586d;
}

.why-card-urgent {
  border-color: rgba(220, 38, 38, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 247, 247, 0.96)),
    white;
}

.why-card-urgent::before {
  background: #dc2626;
}

.why-card-urgent h3 {
  color: #991b1b;
}

.why-card:hover {
  border-color: rgba(2, 132, 199, 0.32);
}

.why-card-urgent:hover {
  border-color: rgba(220, 38, 38, 0.38);
}

.website-type-grid {
  align-items: stretch;
}

.website-type-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  overflow: hidden;
  min-height: 260px;
  padding: 30px;
  border-color: #cfe2ee;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 252, 255, 0.98)),
    white;
}

.website-type-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.09);
}

.website-type-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 18px;
  background: var(--soft);
  color: var(--accent-dark);
  border: 1px solid #d8ecf7;
  box-shadow: 0 10px 24px rgba(15, 39, 71, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.website-type-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.website-type-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.2;
}

.website-type-card p {
  position: relative;
  z-index: 1;
  color: #4d5f73;
  line-height: 1.62;
}

.website-type-card:hover {
  border-color: rgba(2, 132, 199, 0.3);
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--accent-dark);
  display: inline-grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
  flex: 0 0 auto;
}

/* Hero preview */

.hero-panel {
  margin: 58px auto 0;
  max-width: 960px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.hero-panel-inner {
  border-radius: 24px;
  background: white;
  border: 1px solid #e8f2f8;
  overflow: hidden;
}

.mock-browser {
  border-bottom: 1px solid #e8f2f8;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fbfdff;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d3e4ef;
}

.mock-url {
  margin-left: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  flex: 1;
  text-align: left;
}

.mock-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  padding: 34px;
  text-align: left;
}

.mock-card {
  background: #f8fcff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
}

.mock-card strong {
  display: block;
  color: var(--dark);
  font-size: 20px;
  margin-bottom: 8px;
}

.mock-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.mock-list span,
.brief-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #415066;
  font-weight: 650;
}

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

.comparison-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
}

.comparison-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
}

.comparison-good {
  background: linear-gradient(180deg, #ffffff, #f3fff8);
  border-color: rgba(22, 163, 74, 0.2);
}

.comparison-good::after {
  background: rgba(22, 163, 74, 0.08);
}

.comparison-bad {
  background: linear-gradient(180deg, #ffffff, #fff8f8);
  border-color: rgba(220, 38, 38, 0.18);
}

.comparison-bad::after {
  background: rgba(220, 38, 38, 0.07);
}

.comparison-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
}

.comparison-good .comparison-label {
  background: #eaf8f0;
  color: var(--green-dark);
}

.comparison-bad .comparison-label {
  background: #fff1f1;
  color: #b91c1c;
}

.comparison-card h3 {
  position: relative;
  z-index: 1;
  max-width: 18rem;
  margin-bottom: 18px;
  color: var(--dark);
  font-size: 23px;
  line-height: 1.18;
}

.comparison-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  list-style: none;
}

.comparison-card li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #415066;
  font-weight: 700;
  line-height: 1.45;
}

.comparison-card .check {
  margin-top: 2px;
}

.comparison-bad .check {
  background: #fff1f1;
  color: #b91c1c;
}

/* Stats scroll */

.stats-scroll-wrap {
  margin-top: 34px;
}

.stats-scroll-wrap.hero-stats {
  overflow: hidden;
  margin: 34px 0 0;
  padding: 2px 0 12px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

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

.hero-stats .stats-grid {
  display: flex;
  width: max-content;
  animation: heroStatsMove 24s linear infinite;
}

.hero-stats:hover .stats-grid {
  animation-play-state: paused;
}

.stat {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(15, 39, 71, 0.04);
  min-width: 0;
}

.hero-stats .stat {
  width: 220px;
  flex: 0 0 220px;
}

.stat strong {
  display: block;
  color: var(--dark);
  font-size: 16px;
  margin-bottom: 4px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

@keyframes heroStatsMove {
  from {
    transform: translateX(0);
  }

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

/* Split/list sections */

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.split-copy {
  position: sticky;
  top: 110px;
}

.split-copy p {
  font-size: 18px;
  margin-top: 14px;
}

.list {
  display: grid;
  gap: 16px;
}

.list-item {
  display: flex;
  gap: 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.problem-list {
  counter-reset: problem;
  display: grid;
  gap: 14px;
}

.problem-item {
  counter-increment: problem;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.98)),
    white;
  border: 1px solid #cfe2ee;
  border-radius: 18px;
  padding: 24px 24px 24px 22px;
  box-shadow: var(--shadow-soft);
}

.problem-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent-dark), var(--green));
}

.problem-item::after {
  content: "0" counter(problem);
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(2, 132, 199, 0.1);
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.problem-item .check {
  width: 34px;
  height: 34px;
  margin-top: 2px;
  border-radius: 10px;
  background: #eaf8f0;
  color: var(--green-dark);
  font-size: 15px;
  box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.16);
}

.problem-item h3 {
  position: relative;
  z-index: 1;
  max-width: 28rem;
  font-size: 21px;
  line-height: 1.22;
  margin-bottom: 7px;
}

.problem-item p {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  color: #4d5f73;
  font-size: 16px;
  line-height: 1.6;
}

.problem-item:hover {
  transform: translateY(-2px);
  border-color: rgba(2, 132, 199, 0.32);
  box-shadow: var(--shadow);
}

/* Process */

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.process-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 30px;
  overflow: hidden;
  border-color: #cfe2ee;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 252, 255, 0.98)),
    white;
}

.process-number {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: white;
  color: var(--accent-dark);
  border: 1px solid var(--border);
  display: inline-grid;
  place-items: center;
  font-weight: 950;
  font-size: 17px;
  flex: 0 0 auto;
  box-shadow: 0 12px 28px rgba(15, 39, 71, 0.06);
}

.process-card h3 {
  font-size: 23px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.process-card p {
  color: #4d5f73;
  font-size: 16px;
  line-height: 1.62;
}

.process-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.08);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* Testimonials */

.testimonials-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 35%, rgba(56, 189, 248, 0.14), transparent 26%),
    #f7fbff;
}

.trustpilot-panel {
  width: min(100%, 520px);
  margin: 26px auto 54px;
  padding: 22px 28px;
  border: 1px solid rgba(216, 236, 247, 0.95);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  text-align: center;
}

.trustpilot-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #162033;
  font-size: 22px;
}

.trustpilot-star {
  color: #00b67a;
  font-size: 31px;
  line-height: 1;
}

.trustpilot-score {
  display: grid;
  gap: 10px;
  color: #667384;
  font-weight: 700;
}

.trustpilot-stars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.trustpilot-stars span,
.review-stars {
  color: #00b67a;
  letter-spacing: 2px;
}

.trustpilot-stars strong {
  margin-left: 10px;
  color: var(--text);
  font-size: 22px;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  margin-left: calc((100vw - min(var(--container), calc(100vw - 40px))) / -2);
  margin-right: calc((100vw - min(var(--container), calc(100vw - 40px))) / -2);
  padding: 0 0 8px;
}

.testimonial-carousel::before,
.testimonial-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(16vw, 180px);
  pointer-events: none;
}

.testimonial-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #f7fbff, rgba(247, 251, 255, 0));
}

.testimonial-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #f7fbff, rgba(247, 251, 255, 0));
}

.testimonial-track {
  display: flex;
  gap: 24px;
  padding: 0 calc((100vw - min(var(--container), calc(100vw - 40px))) / 2);
  transition: transform 0.55s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 min(420px, calc(100vw - 64px));
  min-height: 315px;
  padding: 30px;
  border: 1px solid rgba(216, 236, 247, 0.95);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--soft);
  color: var(--accent-dark);
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(2, 132, 199, 0.12);
}

.testimonial-person strong {
  display: block;
  color: var(--text);
  font-size: 18px;
}

.testimonial-person span:last-child {
  display: block;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 750;
  margin-top: 2px;
}

.review-stars {
  margin-bottom: 16px;
  font-size: 18px;
}

.testimonial-card h3 {
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.testimonial-card p {
  color: #5d6b7c;
  font-size: 16px;
  line-height: 1.7;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #c7d3dc;
  cursor: pointer;
  transition: 0.2s ease;
}

.testimonial-dots button.active {
  width: 34px;
  background: #00b67a;
}

/* Contact */

.contact-panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-method,
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #f8fcff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px;
  transition: 0.2s ease;
  overflow-wrap: anywhere;
}

.contact-method:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 39, 71, 0.06);
}

.contact-method strong {
  display: block;
  color: var(--dark);
  margin-bottom: 4px;
  font-size: 18px;
}

.contact-method span {
  display: block;
  color: var(--muted);
  font-weight: 650;
}

.brief-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.faq-column {
  display: grid;
  gap: 18px;
}

.faq-item {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.96)),
    white;
  border: 1px solid rgba(216, 236, 247, 0.9);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 14px 34px rgba(15, 39, 71, 0.045);
  transition: 0.2s ease;
}

.faq-item summary {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 24px 26px;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 850;
  line-height: 1.28;
  color: var(--text);
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--soft);
  color: var(--accent-dark);
  font-size: 25px;
  line-height: 0;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(2, 132, 199, 0.12);
  padding-bottom: 2px;
}

.faq-item[open] summary::after {
  content: "−";
  background: linear-gradient(135deg, var(--accent-dark), var(--green));
  color: white;
  box-shadow: 0 10px 22px rgba(2, 132, 199, 0.18);
  padding-bottom: 4px;
}

.faq-item p {
  position: relative;
  z-index: 1;
  margin: 0;
  border-top: 1px solid rgba(216, 236, 247, 0.95);
  padding: 20px 26px 26px;
  color: #4d5f73;
  font-size: 16px;
  line-height: 1.65;
}

.faq-item[open] {
  border-color: rgba(2, 132, 199, 0.22);
  box-shadow: 0 20px 46px rgba(15, 39, 71, 0.07);
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(2, 132, 199, 0.22);
  box-shadow: 0 18px 42px rgba(15, 39, 71, 0.065);
}

/* Legal */

.legal-wrap {
  padding: 28px 0 90px;
}

.legal-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 42px;
}

.legal-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.legal-section:first-child {
  padding-top: 0;
}

.legal-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 14px;
}

.legal-section p {
  margin-bottom: 14px;
}

.legal-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin-top: 14px;
}

.legal-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.legal-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-dark);
  font-weight: 900;
}

.contact-line {
  background: #f8fcff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  margin-top: 18px;
}

.contact-line a {
  color: var(--dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

/* CTA */

.cta {
  background: var(--dark);
  color: white;
  border-radius: 36px;
  padding: 58px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: -180px -120px auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.32), rgba(56, 189, 248, 0));
}

.cta * {
  position: relative;
  z-index: 1;
}

.cta h2 {
  color: white;
  max-width: 760px;
  margin: 0 auto 16px;
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 650px;
  margin: 0 auto 28px;
  font-size: 18px;
}

.cta .btn-primary {
  background: linear-gradient(135deg, #ffffff, #e8f7ff 45%, #bff0d1);
  color: var(--dark);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

/* Footer */

.footer {
  padding: 48px 0 90px;
  background:
    radial-gradient(circle at 12% 0%, rgba(56, 189, 248, 0.18), transparent 32%),
    linear-gradient(180deg, #eef9ff, #dff3ff);
  color: var(--dark);
  border-top: 1px solid rgba(216, 236, 247, 0.9);
}
.footer-logo {
  margin-bottom: 18px;
  display: inline-flex;
}

.footer-logo-name {
  color: var(--dark);
}

.footer-logo-tag {
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: start;
}

.footer p,
.footer a {
  color: #415066;
}

.footer a:hover {
  color: var(--accent-dark);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  font-weight: 700;
}

.footer-contact {
  margin-top: 20px;
  text-align: right;
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(2, 132, 199, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--dark);
  box-shadow: 0 12px 26px rgba(15, 39, 71, 0.06);
  transition: 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(2, 132, 199, 0.34);
  background: white;
  color: var(--accent-dark);
}

.footer-socials svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  border-top: 1px solid rgba(2, 132, 199, 0.14);
  margin-top: 28px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: #5d6b7c;
  font-size: 14px;
}

/* Sticky WhatsApp */

.whatsapp-sticky {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  align-items: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(18, 140, 126, 0.28);
  transition: 0.2s ease;
}

.whatsapp-sticky:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(18, 140, 126, 0.34);
}

.whatsapp-sticky svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.scroll-top {
  position: fixed;
  right: 29px;
  bottom: 92px;
  z-index: 200;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(216, 236, 247, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--dark);
  box-shadow: 0 14px 30px rgba(15, 39, 71, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  transition: 0.2s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-2px);
  color: var(--accent-dark);
  border-color: rgba(2, 132, 199, 0.32);
}

.scroll-top span {
  font-size: 20px;
  line-height: 1;
  font-weight: 950;
}

/* Responsive */

@media (max-width: 920px) {
  .nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    display: none;
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    z-index: 120;
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 18px;
  }

  .mobile-nav.active {
    display: block;
  }

  .mobile-nav a {
    display: block;
    padding: 13px 10px;
    color: var(--dark);
    font-weight: 800;
    border-bottom: 1px solid #eef6fb;
  }

  .mobile-nav a:last-child {
    border-bottom: none;
  }

  .mock-content,
  .split,
  .contact-panel,
  .footer-grid,
  .grid-3,
  .grid-2,
  .faq-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .split-copy {
    position: static;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .section-title {
    max-width: 640px;
    margin-bottom: 34px;
  }

  .service-card,
  .why-card,
  .website-type-card {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-content {
    min-height: 70px;
  }

  .hero,
  .page-hero {
    padding: 44px 0 38px;
  }

  h1 {
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -0.045em;
  }

  h2 {
    font-size: 27px;
    line-height: 1.12;
  }

  h3 {
    font-size: 20px;
  }

  .hero-subtitle,
  .subtitle {
    font-size: 16px;
    line-height: 1.6;
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .hero-content,
  .page-hero-content,
  .section-title {
    text-align: left;
  }

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

  .hero-cta {
    gap: 12px;
  }

  .btn,
  .btn-large {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
  }

  .hero-cta {
    width: 100%;
  }

  .hero-panel {
    margin-top: 28px;
    border-radius: 20px;
    padding: 10px;
  }

  .mock-content {
    padding: 16px;
    gap: 16px;
  }

  .comparison-card {
    padding: 18px;
  }

  .comparison-card h3 {
    font-size: 20px;
  }

  .comparison-card ul {
    gap: 10px;
  }

  .section {
    padding: 52px 0;
  }

  .section-small {
    padding: 42px 0;
  }

  .stats-scroll-wrap {
    width: 100%;
    overflow-x: auto;
    padding: 2px 0 12px;
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .stats-scroll-wrap::-webkit-scrollbar {
    display: none;
  }

  .stats-grid {
    display: flex;
    gap: 12px;
    width: max-content;
    padding-right: 14px;
  }

  .stat {
    width: 155px;
    flex: 0 0 155px;
    padding: 16px 14px;
  }

  .stats-scroll-wrap.hero-stats {
    overflow: hidden;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
  }

  .hero-stats .stats-grid {
    padding-right: 0;
    animation-duration: 26s;
  }

  .hero-stats .stat {
    width: 210px;
    flex-basis: 210px;
  }

  .card {
    padding: 20px;
    border-radius: 20px;
  }

  .service-card,
  .why-card,
  .website-type-card {
    padding: 22px 20px;
  }

  .service-card::before,
  .why-card::before {
    width: 42px;
    margin-bottom: 16px;
  }

  .service-card::after,
  .website-type-card::after {
    opacity: 0.7;
  }

  .service-card h3,
  .why-card h3,
  .website-type-card h3 {
    font-size: 20px;
  }

  .website-type-icon,
  .icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    border-radius: 14px;
    margin-bottom: 14px;
    font-size: 18px;
  }

  .website-type-icon svg {
    width: 21px;
    height: 21px;
  }

  .process-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .process-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    font-size: 14px;
  }

  .problem-item {
    padding: 22px 18px 22px 20px;
  }

  .problem-item::after {
    top: 16px;
    right: 16px;
    font-size: 34px;
  }

  .contact-panel,
  .legal-card {
    padding: 20px;
    border-radius: 22px;
  }

  .cta {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .trustpilot-panel {
    padding: 20px;
    margin-bottom: 36px;
  }

  .testimonial-carousel {
    margin-left: -14px;
    margin-right: -14px;
  }

  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 34px;
  }

  .testimonial-track {
    gap: 16px;
    padding: 0 14px;
  }

  .testimonial-card {
    min-height: 0;
    padding: 20px;
  }

  .whatsapp-sticky {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  .whatsapp-sticky svg {
    width: 28px;
    height: 28px;
  }

  .scroll-top {
    right: 19px;
    bottom: 82px;
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }
}
/* Global icon alignment fix */

.icon,
.check,
.contact-check,
.process-number,
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
}

.icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  flex: 0 0 52px;
}

.check,
.contact-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  flex: 0 0 22px;
  font-size: 13px;
}

.process-number {
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  flex: 0 0 46px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  flex: 0 0 42px;
}

@media (max-width: 620px) {
  .icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    flex: 0 0 42px;
  }

  .check,
  .contact-check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    flex: 0 0 20px;
    font-size: 12px;
  }

  .process-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    flex: 0 0 40px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    flex: 0 0 38px;
  }
}
