:root {
  --bg: #0a0e1a;
  --bg-card: #111827;
  --bg-elevated: #1e293b;
  --text: #f1f5f9;
  --text-secondary: #cbd5e1;
  --muted: #94a3b8;
  --line: rgba(148, 163, 184, 0.12);
  --line-strong: rgba(148, 163, 184, 0.2);
  
  --primary: #10b981;
  --primary-light: #34d399;
  --secondary: #06b6d4;
  --accent: #8b5cf6;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: 
    radial-gradient(1000px 600px at 10% 5%, rgba(16, 185, 129, 0.15), transparent 70%),
    radial-gradient(900px 600px at 90% 15%, rgba(6, 182, 212, 0.12), transparent 70%),
    radial-gradient(800px 500px at 50% 100%, rgba(139, 92, 246, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg), #050810);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

a:hover {
  opacity: 0.85;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(10, 14, 26, 0.85);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
}

.brand__logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  flex-shrink: 0;
  object-fit: cover;
  border: 1px solid var(--line);
}

.brand__logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand__name {
  font-weight: 900;
  letter-spacing: 0.3px;
  line-height: 1.1;
  font-size: 17px;
}

.brand__tag {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: 15px;
}

.nav a {
  color: var(--text-secondary);
  position: relative;
  transition: color 0.2s ease;
}

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

.nav a.btn {
  color: #0a0e1a;
}

/* Mobile menu button */
.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  padding: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.menu-btn:hover {
  background: var(--bg-elevated);
  border-color: var(--line-strong);
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--text);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu {
  border-top: 1px solid var(--line);
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(20px);
}

.mobile-menu__inner {
  padding: 16px 0 20px;
  display: grid;
  gap: 12px;
}

.mobile-menu a {
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
  font-weight: 800;
  font-size: 15px;
  transition: all 0.2s ease;
  color: var(--text);
}

.mobile-menu a:hover {
  background: var(--bg-elevated);
  border-color: var(--line-strong);
}

.mobile-menu__cta {
  margin-top: 4px;
}

.mobile-menu .btn--primary {
  color: var(--text);
}

.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  z-index: 999;
  box-shadow: var(--shadow);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -30% -150px -30%;
  height: 300px;
  background: 
    radial-gradient(80% 100% at 50% 10%, rgba(16, 185, 129, 0.2), transparent 70%),
    radial-gradient(70% 100% at 60% 20%, rgba(6, 182, 212, 0.15), transparent 70%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
  filter: blur(20px);
  transform: skewY(-2deg);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  z-index: 0;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  max-width: 900px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(6, 182, 212, 0.12));
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--text-secondary);
  margin: 0 0 24px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.pill svg {
  color: var(--primary);
}

h1 {
  margin: 0 0 20px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 900;
}

.accent {
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.lead {
  margin: 0 0 28px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
  max-width: 60ch;
  font-weight: 500;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 24px;
}

.note {
  border: 2px dashed rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.08));
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  max-width: 60ch;
  font-size: 15px;
  font-weight: 600;
}

/* Trustpilot Section */
.trustpilot-section {
  padding: 40px 0;
}

.trustpilot-card {
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, var(--bg-card), rgba(17, 24, 39, 0.8));
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: all 0.3s ease;
}

.trustpilot-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(251, 191, 36, 0.4);
}

.trustpilot-card__content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.trustpilot-card__icon {
  width: 56px;
  height: 56px;
  padding: 12px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.15));
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: #fbbf24;
  flex-shrink: 0;
}

.trustpilot-card__text h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
}

.trustpilot-card__text p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
}

.trustpilot-card .btn {
  flex-shrink: 0;
}

/* Card */
.card {
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, var(--bg-card), rgba(17, 24, 39, 0.8));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  backdrop-filter: blur(10px);
}

.card__title {
  font-weight: 900;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
  font-size: 18px;
}

.checks {
  margin: 0;
  padding-left: 24px;
  color: var(--text-secondary);
  line-height: 2;
  font-weight: 600;
  font-size: 15px;
}

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

.divider {
  height: 1px;
  background: var(--line);
  margin: 20px 0;
}

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

.mini {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
  padding: 16px;
  transition: all 0.2s ease;
}

.mini:hover {
  background: rgba(0, 0, 0, 0.3);
  border-color: var(--line-strong);
}

.mini__kicker {
  color: var(--muted);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.mini__price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-weight: 900;
  margin: 10px 0;
}

.mini__price span {
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 14px;
}

.mini__price strong {
  color: var(--text);
  font-size: 20px;
}

.card__foot {
  margin-top: 16px;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.6), transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section--services {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), transparent);
}

.section--contact {
  background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.4));
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.section__head h2 {
  margin: 0;
  font-size: clamp(32px, 3vw, 48px);
  letter-spacing: -0.02em;
  font-weight: 900;
}

.section__head p {
  margin: 0;
  color: var(--text-secondary);
  max-width: 52ch;
  line-height: 1.6;
  font-weight: 600;
  font-size: 16px;
}

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

.service-card {
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, var(--bg-card), rgba(17, 24, 39, 0.6));
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.3);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.15));
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__icon svg {
  color: var(--primary);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 900;
}

.service-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 500;
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.price-card {
  position: relative;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, var(--bg-card), rgba(17, 24, 39, 0.7));
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.4);
}

.price-card__badge {
  position: absolute;
  top: -12px;
  right: 32px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #0a0e1a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.price-card__badge--alt {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.price-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 900;
}

.muted {
  color: var(--muted);
  font-weight: 600;
}

.price-lines {
  margin: 24px 0;
}

.line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-secondary);
  font-weight: 700;
}

.line:last-child {
  border-bottom: none;
}

.line span {
  font-size: 15px;
}

.line strong {
  color: var(--text);
  font-size: 24px;
  font-weight: 900;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature {
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, var(--bg-card), rgba(17, 24, 39, 0.5));
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 200px;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-4px);
  background: var(--bg-elevated);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: var(--shadow);
}

.feature__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(6, 182, 212, 0.12));
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature__icon svg {
  color: var(--primary);
}

.feature__title {
  font-weight: 900;
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 16px;
}

.feature__text {
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 500;
  font-size: 14px;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}

.contact__info {
  display: grid;
  gap: 16px;
}

.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, var(--bg-card), rgba(17, 24, 39, 0.6));
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.2s ease;
}

.info-card:hover {
  background: var(--bg-elevated);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.15));
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card__icon svg {
  color: var(--primary);
}

.info-card__content {
  flex: 1;
}

.info-card__kicker {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  margin-bottom: 10px;
}

.info-card__value {
  display: block;
  font-weight: 800;
  margin: 8px 0;
  font-size: 15px;
  color: var(--text);
}

.info-card__value:hover {
  color: var(--primary);
}

/* Form */
.form-container {
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, var(--bg-card), rgba(17, 24, 39, 0.7));
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
}

.form label {
  display: block;
  font-weight: 800;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 14px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.form input::placeholder,
.form textarea::placeholder {
  color: var(--muted);
  font-weight: 500;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tiny {
  font-size: 13px;
  margin-top: 12px;
  line-height: 1.5;
}

/* Success and Error Messages */
.success-message,
.error-message {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
}

.success-message {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.12));
  border: 2px solid rgba(16, 185, 129, 0.4);
  color: var(--text);
}

.error-message {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.12));
  border: 2px solid rgba(239, 68, 68, 0.4);
  color: var(--text);
}

/* Select styling */
.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-strong);
  font-weight: 700;
  cursor: pointer;
}

.form select option {
  background: var(--bg);
  color: var(--text);
  font-weight: 600;
  padding: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  font-size: 15px;
}

.btn:active {
  transform: translateY(1px);
}

.btn:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

.btn--small {
  padding: 11px 18px;
  border-radius: 14px;
  font-size: 14px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: transparent;
  color: #0a0e1a;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn--primary:hover {
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-strong);
  color: var(--text);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-strong);
}

.btn svg {
  flex-shrink: 0;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 24px;
  color: var(--muted);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer__brand {
  color: var(--text);
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 6px;
}

.footer__muted {
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
}

.footer__address {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.footer__right {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 14px;
}

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

.dot {
  opacity: 0.5;
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 13px;
}

.footer__bottom p {
  margin: 0;
}

/* Responsive */
@media (max-width: 920px) {
  .nav {
    display: none;
  }
  
  .menu-btn {
    display: flex;
  }
  
  .hero {
    padding: 60px 0 40px;
  }
  
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .trustpilot-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }
  
  .trustpilot-card__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .trustpilot-card .btn {
    width: 100%;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact {
    grid-template-columns: 1fr;
  }
  
  .section__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .pricing {
    gap: 20px;
  }
  
  .price-card {
    padding: 28px;
  }
  
  .service-card {
    padding: 28px;
  }
  
  .feature {
    padding: 24px;
    min-height: 180px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1200px, calc(100% - 24px));
  }
  
  .header__inner {
    padding: 14px 0;
  }
  
  .brand {
    min-width: 0;
    gap: 12px;
  }
  
  .brand__logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }
  
  .brand__name {
    font-size: 16px;
  }
  
  .brand__tag {
    font-size: 12px;
  }
  
  .menu-btn {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
  
  .menu-btn span {
    width: 22px;
  }
  
  .hero {
    padding: 50px 0 40px;
  }
  
  .trustpilot-section {
    padding: 35px 0;
  }
  
  .trustpilot-card {
    padding: 28px 24px;
    border-radius: 24px;
  }
  
  .trustpilot-card__icon {
    width: 52px;
    height: 52px;
  }
  
  .trustpilot-card__text h3 {
    font-size: 22px;
    margin-bottom: 6px;
  }
  
  .trustpilot-card__text p {
    font-size: 15px;
    line-height: 1.5;
  }
  
  .pill {
    font-size: 13px;
    padding: 10px 16px;
    margin-bottom: 24px;
  }
  
  h1 {
    font-size: clamp(36px, 9vw, 52px);
    margin-bottom: 20px;
    line-height: 1.1;
  }
  
  .lead {
    font-size: 17px;
    margin-bottom: 28px;
    line-height: 1.65;
  }
  
  .cta {
    flex-direction: column;
    gap: 12px;
    margin: 32px 0 24px;
  }
  
  .cta .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 800;
  }
  
  .note {
    padding: 18px 20px;
    font-size: 15px;
    line-height: 1.6;
  }
  
  .card {
    padding: 24px;
    border-radius: 24px;
  }
  
  .card__title {
    font-size: 18px;
    margin-bottom: 14px;
  }
  
  .checks {
    font-size: 15px;
    line-height: 2;
    padding-left: 20px;
  }
  
  .mini-grid {
    gap: 12px;
  }
  
  .mini {
    padding: 16px;
    border-radius: 16px;
  }
  
  .mini__kicker {
    font-size: 11px;
    margin-bottom: 8px;
  }
  
  .mini__price strong {
    font-size: 22px;
  }
  
  .mini__price span {
    font-size: 15px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section__head {
    margin-bottom: 36px;
  }
  
  .section__head h2 {
    font-size: clamp(30px, 7vw, 44px);
    margin-bottom: 12px;
  }
  
  .section__head p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .service-grid {
    gap: 20px;
  }
  
  .service-card {
    padding: 28px;
    border-radius: 24px;
  }
  
  .service-card__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }
  
  .service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .pricing {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .price-card {
    padding: 28px;
  }
  
  .price-card__badge {
    font-size: 11px;
    padding: 6px 14px;
  }
  
  .price-card h3 {
    font-size: 26px;
  }
  
  .price-card p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .line {
    padding: 16px 0;
  }
  
  .line span {
    font-size: 15px;
  }
  
  .line strong {
    font-size: 24px;
  }
  
  .features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature {
    padding: 24px;
    min-height: auto;
    border-radius: 20px;
  }
  
  .feature__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
  }
  
  .feature__title {
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 800;
  }
  
  .feature__text {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .contact {
    gap: 24px;
  }
  
  .contact__info {
    gap: 16px;
  }
  
  .info-card {
    padding: 24px;
    gap: 16px;
    border-radius: 20px;
  }
  
  .info-card__icon {
    width: 48px;
    height: 48px;
  }
  
  .info-card__kicker {
    font-size: 11px;
    margin-bottom: 8px;
  }
  
  .info-card__value {
    font-size: 16px;
    margin: 8px 0;
    font-weight: 700;
  }
  
  .form-container {
    padding: 28px;
    border-radius: 24px;
  }
  
  .form label {
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 700;
  }
  
  .form input,
  .form select,
  .form textarea {
    padding: 16px 18px;
    font-size: 16px;
    border-radius: 14px;
    border-width: 2px;
  }
  
  .form textarea {
    min-height: 140px;
  }
  
  .form__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .btn {
    padding: 16px 24px;
    font-size: 16px;
    border-radius: 14px;
    font-weight: 800;
  }
  
  .btn--small {
    padding: 13px 20px;
    font-size: 15px;
    border-radius: 12px;
  }
  
  .success-message,
  .error-message {
    padding: 16px 20px;
    font-size: 15px;
    border-radius: 14px;
    margin-top: 16px;
  }
  
  .tiny {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .footer {
    padding: 48px 0 24px;
  }
  
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
  }
  
  .footer__brand {
    font-size: 18px;
  }
  
  .footer__muted {
    font-size: 14px;
  }
  
  .footer__right {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
  }
  
  .footer__right a {
    font-weight: 700;
  }
  
  .footer__right .dot {
    display: none;
  }
  
  .footer__bottom {
    padding-top: 24px;
    font-size: 13px;
  }
}

.mobile-menu__inner {
  padding: 20px 0 24px;
  gap: 14px;
}

.mobile-menu a {
  padding: 16px 18px;
  font-size: 16px;
  border-radius: 16px;
}

@media (max-width: 400px) {
  .container {
    width: min(1200px, calc(100% - 20px));
  }
  
  h1 {
    font-size: 32px;
    line-height: 1.1;
  }
  
  .section__head h2 {
    font-size: 28px;
  }
  
  .card {
    padding: 20px;
    border-radius: 20px;
  }
  
  .form-container {
    padding: 24px;
    border-radius: 20px;
  }
  
  .service-card,
  .price-card {
    padding: 24px;
  }
  
  .feature {
    padding: 20px;
  }
  
  .info-card {
    padding: 20px;
  }
  
  .trustpilot-card {
    padding: 24px 20px;
  }
  
  .btn {
    padding: 15px 22px;
    font-size: 15px;
  }
}
