:root {
  --bg: #05070d;
  --text: #f8fafc;
  --muted: #c8ced8;
  --dark-text: #0b0d13;
  --purple: #7c3aed;
  --purple-2: #5b21e6;
  --gold: #d6a83c;
  --shadow: 0 30px 90px rgba(0,0,0,.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

.icon {
  width: 1em;
  height: 1em;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.small-icon {
  width: 16px;
  height: 16px;
}

.hero {
  min-height: 760px;
  padding: 18px 7% 0;
  position: relative;
  background:
    linear-gradient(180deg, rgba(2,4,10,.2), #05070d 92%),
    radial-gradient(circle at 76% 52%, rgba(105,54,230,.34), transparent 27%),
    radial-gradient(circle at 13% 83%, rgba(105,54,230,.25), transparent 25%),
    linear-gradient(135deg, #03050a 0%, #070a12 48%, #0a0e18 100%);
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
  pointer-events: none;
}

.navbar {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  position: relative;
  z-index: 3;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.text-brand {
  height: 56px;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.75px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(124,58,237,.22);
}

.brand-web {
  color: #fff;
}

.brand-wizard {
  color: var(--purple);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  padding: 10px 14px;
  border-radius: 8px;
  opacity: .86;
  color: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.025);
  overflow: hidden;
  transition:
    opacity .25s ease,
    color .25s ease,
    transform .25s ease,
    border-color .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), #a78bfa);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s ease;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: #fff;
  transform: translateY(-1px);
  border-color: rgba(139,92,246,.45);
  background: rgba(124,58,237,.08);
  box-shadow: 0 10px 26px rgba(124,58,237,.12);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.nav-button {
  padding: 15px 23px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 16px 36px rgba(124,58,237,.3);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 38px;
  padding: 45px 0 65px;
}

.eyebrow,
.section-label {
  color: #8b5cf6;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  margin-bottom: 12px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
}

.eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 18px var(--purple);
}

.hero-copy h1 {
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -2.6px;
  max-width: 720px;
  margin-bottom: 26px;
}

.hero-copy h1 span {
  color: var(--purple);
}

.hero-text {
  max-width: 585px;
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 24px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.btn {
  height: 56px;
  padding: 0 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  font-size: 14px;
}

.btn .icon {
  width: 17px;
  height: 17px;
}

.btn.primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 18px 44px rgba(124,58,237,.34);
}

.btn.secondary {
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.03);
}

.hero-features {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 38px;
}

.hero-features div {
  display: grid;
  gap: 10px;
  justify-items: start;
  font-size: 12px;
  font-weight: 700;
}

.hero-features i {
  width: 34px;
  height: 34px;
  border: 1px solid #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-style: normal;
}

.hero-features i .icon {
  width: 19px;
  height: 19px;
}

.hero-visual {
  position: relative;
  height: 540px;
  perspective: 1200px;
  transform: translateX(-28px) scale(1.06);
  transform-origin: center;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
}

.glow-one {
  width: 390px;
  height: 390px;
  right: 138px;
  bottom: 48px;
  background: radial-gradient(circle, rgba(124,58,237,.43), transparent 67%);
}

.glow-two {
  width: 570px;
  height: 78px;
  right: 36px;
  bottom: 42px;
  background: rgba(124,58,237,.56);
  filter: blur(24px);
  transform: skewX(-8deg);
}

.device {
  position: absolute;
  background: #080b13;
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: var(--shadow);
}

.laptop {
  right: 18px;
  top: 18px;
  width: 635px;
  height: 392px;
  border-radius: 18px;
  transform: rotateY(-8deg) rotateX(2deg);
  overflow: hidden;
}

.device-browser {
  height: 42px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #090d16;
  font-size: 10px;
  font-weight: 900;
}

.mini-logo {
  display: inline-flex;
  align-items: baseline;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -0.35px;
  line-height: 1;
}

.mini-web {
  color: #fff;
}

.mini-wizard {
  color: var(--purple);
}

.browser-links {
  display: flex;
  gap: 13px;
}

.browser-links span {
  width: 26px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255,255,255,.55);
}

.device-screen {
  height: calc(100% - 42px);
  padding: 62px 42px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.18)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1100&q=80") center/cover;
}

.screen-copy h3 {
  font-size: 28px;
  line-height: 1.05;
  font-weight: 900;
}

.screen-copy p {
  margin: 16px 0 22px;
  font-size: 12px;
}

.screen-copy em {
  display: inline-flex;
  background: #6d35f2;
  padding: 9px 18px;
  border-radius: 3px;
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
}

.phone {
  right: -18px;
  bottom: 26px;
  width: 166px;
  height: 312px;
  border-radius: 30px;
  border: 7px solid #111520;
  overflow: hidden;
  background: #05070d;
  z-index: 4;
}

.phone-notch {
  width: 50px;
  height: 8px;
  background: #111520;
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
}

.phone-content {
  padding: 22px 13px 18px;
}

.phone-logo-text {
  display: inline-flex;
  align-items: baseline;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.45px;
  line-height: 1;
  margin: 14px 0 18px;
}

.phone-web {
  color: #fff;
}

.phone-wizard {
  color: var(--purple);
}

.phone-content p {
  height: 5px;
  background: rgba(255,255,255,.18);
  border-radius: 20px;
  margin-bottom: 8px;
}

.phone-content p.short {
  width: 65%;
}

.phone-content button {
  width: 70px;
  height: 19px;
  border: 0;
  border-radius: 4px;
  background: var(--purple);
  margin: 6px 0 45px;
}

.phone-card {
  height: 48px;
  border-radius: 9px;
  background: #f6f6f7;
}

.floating-contact {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: grid;
  gap: 14px;
}

.floating-contact a {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  overflow: hidden;
  color: #fff;
  background: rgba(8, 11, 18, .68);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  transition: width .35s ease, transform .35s ease, background .35s ease, border-color .35s ease;
}

.floating-contact a:before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  opacity: .18;
  z-index: -1;
  transition: opacity .35s ease;
}

.floating-contact a:hover {
  width: 225px;
  transform: translateX(-10px);
  background: rgba(12, 15, 24, .88);
  border-color: rgba(255,255,255,.3);
}

.floating-contact a:hover:before {
  opacity: .4;
}

.floating-contact .contact-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.floating-contact .contact-icon:after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid currentColor;
  opacity: .18;
}

.floating-contact .contact-icon .icon {
  width: 24px;
  height: 24px;
}

.floating-contact .contact-text {
  display: grid;
  gap: 3px;
  opacity: 0;
  transform: translateX(12px);
  white-space: nowrap;
  transition: .25s ease;
}

.floating-contact a:hover .contact-text {
  opacity: 1;
  transform: translateX(0);
}

.floating-contact strong {
  font-size: 16px;
  line-height: 1;
}

.floating-contact small {
  font-size: 11px;
  color: #cbd5e1;
  font-weight: 700;
}

.floating-contact .whatsapp:before {
  background: radial-gradient(circle, #4caf50, transparent 70%);
}

.floating-contact .whatsapp .contact-icon {
  background: linear-gradient(135deg, #55d66b, #21a83d);
  box-shadow: 0 0 28px rgba(76,175,80,.45);
}

.floating-contact .viber:before {
  background: radial-gradient(circle, #7c3aed, transparent 70%);
}

.floating-contact .viber .contact-icon {
  background: linear-gradient(135deg, #8b5cf6, #5b21e6);
  box-shadow: 0 0 28px rgba(124,58,237,.5);
}

.floating-contact .phone-call:before {
  background: radial-gradient(circle, #64748b, transparent 70%);
}

.floating-contact .phone-call .contact-icon {
  background: linear-gradient(135deg, #4b5563, #262b35);
  box-shadow: 0 0 28px rgba(100,116,139,.4);
}

.section {
  padding: 34px 7% 72px;
  text-align: center;
}

.section h2 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -.8px;
  margin-bottom: 34px;
}

.light {
  background: #f7f8fb;
  color: var(--dark-text);
}

.dark {
  background:
    radial-gradient(circle at 9% 25%, rgba(124,58,237,.52), transparent 22%),
    linear-gradient(180deg, #070a12, #04060b);
  color: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.service-card {
  min-height: 185px;
  padding: 28px 22px;
  border-radius: 9px;
  background: #fff;
  text-align: left;
  box-shadow: 0 16px 35px rgba(21,28,44,.08);
  transition: .25s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 45px rgba(21,28,44,.12);
}

.service-card span {
  display: block;
  color: var(--purple);
  margin-bottom: 22px;
}

.service-card span .icon {
  width: 34px;
  height: 34px;
}

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

.service-card p {
  font-size: 12px;
  line-height: 1.6;
  color: #5e6675;
  min-height: 58px;
}

.service-card a {
  width: 30px;
  height: 30px;
  border: 1px solid var(--purple);
  color: var(--purple);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: auto;
}

.service-card a .icon {
  width: 15px;
  height: 15px;
}

.pricing-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.plan {
  position: relative;
  padding: 30px 34px;
  border-radius: 9px;
  text-align: left;
  background: rgba(10,14,22,.78);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 20px 55px rgba(0,0,0,.18);
  min-height: 620px;
  display: flex;
  flex-direction: column;
}

.plan-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.plan-head {
  min-height: 72px;
}

.plan.plus {
  background: linear-gradient(145deg, #f9fafb, #bfc3ca);
  color: #0b0d13;
  transform: translateY(-8px);
  border-color: rgba(255,255,255,.38);
  box-shadow:
    0 26px 65px rgba(0,0,0,.28),
    0 0 0 1px rgba(124,58,237,.18);
}

.plan.premium {
  background: linear-gradient(135deg, rgba(104,67,10,.93), rgba(88,60,14,.78));
  border-color: var(--gold);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 34px;
  right: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  box-shadow: 0 14px 34px rgba(124,58,237,.38);
}

.plan h3 {
  font-size: 26px;
  margin-bottom: 7px;
}

.plan p {
  font-size: 14px;
  opacity: .88;
  margin-bottom: 18px;
  line-height: 1.45;
}

.delivery-time {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  background: rgba(124,58,237,.16);
  border: 1px solid rgba(124,58,237,.42);
}

.delivery-time span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
}

.delivery-time .icon {
  width: 12px;
  height: 12px;
}

.plan.plus .delivery-time {
  color: #0b0d13;
  background: rgba(124,58,237,.12);
  border-color: rgba(124,58,237,.28);
}

.plan.premium .delivery-time {
  background: rgba(214,168,60,.16);
  border-color: rgba(214,168,60,.42);
}

.plan.premium .delivery-time span {
  background: linear-gradient(135deg, #e0b84c, #b88618);
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 24px;
}

.plan-price small {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.plan-price > span:not(.count-up) {
  font-size: 15px;
  margin-bottom: 5px;
}

.plan-price .count-up {
  font-size: inherit;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 0;
}

.plan ul {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-bottom: 28px;
  font-size: 14px;
}

.plan li {
  display: flex;
  align-items: flex-start;
  line-height: 1.35;
}

.plan li:before {
  content: "";
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 11px;
  margin-top: 1px;
  background-color: #7c3aed;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12l4 4L19 6'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.plan.premium li:before {
  background-color: var(--gold);
}

.plan a {
  display: block;
  text-align: center;
  border: 1px solid currentColor;
  border-radius: 6px;
  padding: 15px 18px;
  font-weight: 900;
  font-size: 14px;
  margin-top: auto;
}

.plan.plus a {
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
  border: 0;
}

/* ADDITIONAL SERVICES */

.addons-wrap {
  max-width: 1380px;
  margin: 54px auto 0;
  padding-top: 42px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.addons-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.addons-heading h3 {
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: -.8px;
  margin-bottom: 12px;
  color: #fff;
}

.addons-heading p:not(.section-label) {
  color: #c8ced8;
  font-size: 15px;
  line-height: 1.7;
}

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

.addon-card {
  min-height: 270px;
  padding: 18px 16px;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    rgba(8, 11, 18, .74);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 16px 38px rgba(0,0,0,.16);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: .25s ease;
}
.addon-card:before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 20% 0%, rgba(124,58,237,.22), transparent 38%);
  opacity: .7;
  pointer-events: none;
}

.addon-card:hover {
  transform: translateY(-7px);
  border-color: rgba(139,92,246,.42);
  box-shadow: 0 24px 65px rgba(0,0,0,.28);
}

.highlighted-addon {
  border-color: rgba(139,92,246,.58);
  box-shadow:
    0 24px 65px rgba(0,0,0,.24),
    0 0 0 1px rgba(124,58,237,.2);
}

.addon-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #c084fc;
  background: rgba(124,58,237,.12);
  border: 1px solid rgba(139,92,246,.28);
  box-shadow: inset 0 0 20px rgba(124,58,237,.1);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.addon-icon .icon {
  width: 26px;
  height: 26px;
}

.addon-content h4 {
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -.35px;
  margin-bottom: 9px;
}

.addon-content p {
  color: #c8ced8;
  font-size: 12.5px;
  line-height: 1.55;
}

.addon-bottom {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.addon-bottom strong {
  color: #fff;
  font-size: 27px;
  line-height: 1;
  letter-spacing: -.8px;
}

.addons-note {
  margin-top: 22px;
  padding: 22px 24px;
  border-radius: 12px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(139,92,246,.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  text-align: left;
}

.addons-note > div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.addons-note span {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #c084fc;
  background: rgba(124,58,237,.13);
  border: 1px solid rgba(139,92,246,.26);
}

.addons-note span .icon {
  width: 21px;
  height: 21px;
}

.addons-note p {
  color: #d9deea;
  font-size: 14px;
  line-height: 1.55;
  max-width: 640px;
}

.addons-note > a {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(124,58,237,.25);
}

.addons-note > a .icon {
  width: 17px;
  height: 17px;
}

/* PROCESS + FAQ */
.process-section {
  padding-top: 56px;
  padding-bottom: 72px;
  text-align: left;
}

.process-layout {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: start;
}

.process-column,
.faq-column {
  min-width: 0;
}

.process-column h2,
.faq-column h2 {
  text-align: left;
  margin-bottom: 22px;
}

.process-column .section-label,
.faq-column .section-label {
  text-align: left;
}

.process-line {
  margin-top: 34px;
  padding-left: 12px;
  display: grid;
  gap: 18px;
  position: relative;
}

.process-line:before {
  content: "";
  position: absolute;
  left: 41px;
  top: 30px;
  bottom: 30px;
  border-left: 2px dotted #8d67ff;
}

.process-line article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  text-align: left;
}

.process-line span {
  width: 58px;
  height: 58px;
  margin: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
  box-shadow: 0 10px 26px rgba(124,58,237,.25);
}

.process-line span .icon {
  width: 24px;
  height: 24px;
}

.process-line h3 {
  font-size: 15px;
  margin-bottom: 7px;
}

.process-line p {
  font-size: 13px;
  line-height: 1.6;
  color: #5e6675;
}

.faq-column {
  padding: 34px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(124,58,237,.12);
  box-shadow: 0 22px 55px rgba(21,28,44,.09);
}

.faq-column h2 {
  font-size: 38px;
  margin-bottom: 24px;
}

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

.faq-item {
  border: 1px solid rgba(124,58,237,.16);
  border-radius: 12px;
  background: #f8f8fc;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.faq-item[open] {
  border-color: rgba(124,58,237,.44);
  background: #fff;
  box-shadow: 0 16px 34px rgba(124,58,237,.10);
}

.faq-item summary {
  min-height: 58px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 900;
  color: var(--dark-text);
}

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

.faq-item summary b {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  transition: transform .25s ease;
}

.faq-item[open] summary b {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 18px 18px;
  color: #5e6675;
  font-size: 14px;
  line-height: 1.7;
}

/* PRIVACY PAGE */

.privacy-body {
  background:
    radial-gradient(circle at 76% 18%, rgba(124,58,237,.28), transparent 32%),
    radial-gradient(circle at 6% 72%, rgba(124,58,237,.18), transparent 28%),
    linear-gradient(180deg, #05070d 0%, #060912 45%, #04060b 100%);
}

.privacy-hero {
  min-height: 520px;
  padding: 18px 7% 0;
  position: relative;
  background: transparent;
  overflow: hidden;
}

.privacy-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
  pointer-events: none;
}

.privacy-hero .navbar,
.privacy-hero-inner {
  position: relative;
  z-index: 2;
}

.privacy-hero-inner {
  max-width: 880px;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 62px 0 82px;
}

.privacy-hero-inner h1 {
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -2.6px;
  margin-bottom: 24px;
}

.privacy-hero-inner h1 span {
  color: var(--purple);
}

.privacy-hero-inner p:not(.eyebrow) {
  max-width: 650px;
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
}

.privacy-page {
  background: transparent;
  padding: 0 7% 78px;
}

.privacy-content {
  max-width: 1050px;
  margin: -58px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  gap: 18px;
}

.privacy-card {
  padding: 28px 30px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(8, 11, 18, .86);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 55px rgba(0,0,0,.22);
  color: #fff;
  text-align: left;
}

.privacy-card.intro-card {
  border-color: rgba(139,92,246,.45);
  box-shadow:
    0 24px 65px rgba(0,0,0,.28),
    0 0 0 1px rgba(124,58,237,.16);
}

.privacy-card h2 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #fff;
}

.privacy-card p,
.privacy-card li {
  color: #c8ced8;
  font-size: 15px;
  line-height: 1.75;
}

.privacy-card p + p,
.privacy-card ul + p,
.privacy-card p + ul {
  margin-top: 12px;
}

.privacy-card ul {
  padding-left: 20px;
}

.privacy-card strong,
.privacy-card a {
  color: #fff;
}

.privacy-card a {
  text-decoration: underline;
  text-decoration-color: rgba(124,58,237,.75);
  text-underline-offset: 3px;
}

.privacy-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.privacy-actions .btn.secondary {
  color: #fff;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 70px;
  padding: 64px 7%;
  background:
    radial-gradient(circle at 15% 10%, rgba(124,58,237,.25), transparent 25%),
    linear-gradient(135deg, #060911, #070a12);
}

.contact-copy h2 {
  font-size: 43px;
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin: 0 0 20px;
}

.contact-copy h2 span {
  color: var(--purple);
}

.contact-copy p {
  color: #d9deea;
  line-height: 1.75;
  max-width: 620px;
}

.contact-buttons {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.contact-buttons a {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 900;
  font-size: 13px;
}

.contact-buttons b {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #3c414b;
  display: grid;
  place-items: center;
}

.contact-buttons b .icon {
  width: 18px;
  height: 18px;
}

.contact-buttons small {
  color: #aeb6c6;
  font-size: 10px;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 24px;
  border-radius: 9px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 55px rgba(0,0,0,.22);
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 16px 18px;
  font: inherit;
  font-weight: 700;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #dce0e8;
}

select {
  appearance: none;
}

textarea {
  grid-column: 2;
  grid-row: 2 / span 3;
  min-height: 184px;
  resize: vertical;
}

.form-note {
  grid-column: 1 / -1;
  color: #d7dce6;
  font-size: 12px;
  line-height: 1.55;
}

.form-note a {
  color: #8b5cf6;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  grid-column: 1 / -1;
  display: none;
  padding: 13px 15px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.form-status.success {
  display: block;
  color: #dcfce7;
  background: rgba(34, 197, 94, .14);
  border: 1px solid rgba(34, 197, 94, .35);
}

.form-status.error {
  display: block;
  color: #fee2e2;
  background: rgba(239, 68, 68, .14);
  border: 1px solid rgba(239, 68, 68, .35);
}

button {
  grid-column: 1 / -1;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff;
  padding: 17px 20px;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

button .icon {
  width: 18px;
  height: 18px;
}

button:disabled {
  opacity: .75;
  cursor: not-allowed;
}

/* BACK TO TOP BUTTON */

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 28px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow:
    0 18px 45px rgba(0,0,0,.38),
    0 0 32px rgba(124,58,237,.36);
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(.92);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, box-shadow .25s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow:
    0 24px 55px rgba(0,0,0,.45),
    0 0 42px rgba(124,58,237,.52);
}

.back-to-top .icon {
  width: 23px;
  height: 23px;
  stroke-width: 2.4;
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 12px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 470px;
    transform: none;
  }

  .laptop {
    left: 0;
    right: auto;
  }

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

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

  .floating-contact {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-phone {
    display: none;
  }

  .pricing-grid,
  .process-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .plan {
    min-height: auto;
  }

  .plan.plus {
    transform: none;
  }

  .process-line:before {
    display: block;
  }

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

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

  .addons-wrap {
    margin-top: 42px;
    padding-top: 34px;
  }

  .addons-note {
    align-items: flex-start;
    flex-direction: column;
  }

  textarea {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .faq-column {
    padding: 26px;
  }

  .privacy-hero {
    min-height: 460px;
  }

  .privacy-content {
    margin-top: -42px;
  }

  .privacy-card {
    padding: 24px;
  }
}


@media (max-width: 620px) {
  .hero {
    padding: 14px 20px;
  }

  .nav-button {
    padding: 12px 15px;
  }

  .brand-wordmark {
    font-size: 18px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-inner {
    padding-top: 35px;
  }

  .hero-visual {
    height: 360px;
    transform: none;
  }

  .laptop {
    width: 100%;
    height: 270px;
    right: auto;
    left: 0;
  }

  .phone {
    display: none;
  }

  .service-grid,
  .addons-grid,
  form {
    grid-template-columns: 1fr;
  }

  .section,
  .contact {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-copy h2 {
    font-size: 34px;
  }

  .hero-features {
    gap: 18px;
  }

  .addons-heading h3 {
    font-size: 26px;
  }

  .addon-card {
    min-height: auto;
  }

  .addons-note > a {
    width: 100%;
    justify-content: center;
  }

  .back-to-top {
    right: 18px;
    bottom: 20px;
    width: 48px;
    height: 48px;
  }

  .back-to-top .icon {
    width: 21px;
    height: 21px;
  }
}

/* BUTTON MICRO ANIMATIONS */

/* Hero buttons */
.hero-actions .btn {
  position: relative;
  overflow: hidden;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    background .25s ease;
}

.hero-actions .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.22),
    transparent
  );
  transform: skewX(-18deg);
  transition: left .55s ease;
}

.hero-actions .btn:hover {
  transform: translateY(-4px);
}

.hero-actions .btn:hover::before {
  left: 130%;
}

.hero-actions .btn.primary:hover {
  box-shadow:
    0 24px 58px rgba(124,58,237,.46),
    0 0 36px rgba(124,58,237,.28);
}

.hero-actions .btn.secondary:hover {
  border-color: rgba(255,255,255,.95);
  background: rgba(255,255,255,.075);
  box-shadow:
    0 18px 44px rgba(0,0,0,.28),
    0 0 28px rgba(255,255,255,.06);
}

/* Arrow movement inside hero buttons */
.hero-actions .btn .icon {
  transition: transform .25s ease;
}

.hero-actions .btn:hover .icon {
  transform: translateX(5px);
}

/* Contact / footer submit button */
.contact form button {
  position: relative;
  overflow: hidden;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    opacity .25s ease;
}

.contact form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.22),
    transparent
  );
  transform: skewX(-18deg);
  transition: left .55s ease;
}

.contact form button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 52px rgba(124,58,237,.42),
    0 0 34px rgba(124,58,237,.24);
}

.contact form button:hover::before {
  left: 130%;
}

.contact form button .icon {
  transition: transform .25s ease;
}

.contact form button:hover .icon {
  transform: translateX(5px);
}

.contact form button:active,
.hero-actions .btn:active {
  transform: translateY(-1px) scale(.99);
}

/* BUTTON MICRO ANIMATIONS */

.nav-button,
.hero-actions .btn,
.plan > a,
.addons-note > a,
.contact form button {
  position: relative;
  overflow: hidden;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    background .25s ease,
    color .25s ease;
}

.nav-button::before,
.hero-actions .btn::before,
.plan > a::before,
.addons-note > a::before,
.contact form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.22),
    transparent
  );
  transform: skewX(-18deg);
  transition: left .55s ease;
  pointer-events: none;
}

.nav-button:hover::before,
.hero-actions .btn:hover::before,
.plan > a:hover::before,
.addons-note > a:hover::before,
.contact form button:hover::before {
  left: 130%;
}

.nav-button:hover,
.hero-actions .btn:hover,
.plan > a:hover,
.addons-note > a:hover,
.contact form button:hover {
  transform: translateY(-4px);
}

/* Purple buttons */
.nav-button:hover,
.hero-actions .btn.primary:hover,
.plan.plus > a:hover,
.addons-note > a:hover,
.contact form button:hover {
  box-shadow:
    0 24px 58px rgba(124,58,237,.46),
    0 0 36px rgba(124,58,237,.28);
}

/* Outline hero button */
.hero-actions .btn.secondary:hover {
  border-color: rgba(255,255,255,.95);
  background: rgba(255,255,255,.075);
  box-shadow:
    0 18px 44px rgba(0,0,0,.28),
    0 0 28px rgba(255,255,255,.06);
}

/* Outline pricing buttons */
.plan.basic > a:hover {
  border-color: rgba(255,255,255,.95);
  background: rgba(255,255,255,.065);
  box-shadow:
    0 18px 44px rgba(0,0,0,.32),
    0 0 28px rgba(255,255,255,.06);
}

.plan.premium > a:hover {
  border-color: rgba(255,255,255,.95);
  background: rgba(255,255,255,.08);
  box-shadow:
    0 20px 48px rgba(0,0,0,.34),
    0 0 30px rgba(214,168,60,.22);
}

/* Arrow movement */
.nav-button .icon,
.hero-actions .btn .icon,
.plan > a .icon,
.addons-note > a .icon,
.contact form button .icon {
  transition: transform .25s ease;
}

.nav-button:hover .icon,
.hero-actions .btn:hover .icon,
.plan > a:hover .icon,
.addons-note > a:hover .icon,
.contact form button:hover .icon {
  transform: translateX(5px);
}

/* Click feeling */
.nav-button:active,
.hero-actions .btn:active,
.plan > a:active,
.addons-note > a:active,
.contact form button:active {
  transform: translateY(-1px) scale(.99);
}

@media (max-width: 620px) {
  .process-section {
    padding-top: 44px;
  }

  .process-column h2,
  .faq-column h2 {
    font-size: 28px;
  }

  .process-line article {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

  .process-line span {
    width: 52px;
    height: 52px;
  }

  .process-line:before {
    left: 38px;
  }

  .faq-column {
    padding: 20px;
  }

  .faq-item summary {
    font-size: 14px;
  }

  .privacy-hero {
    padding: 16px 6% 0;
  }

  .privacy-page {
    padding: 0 6% 58px;
  }

  .privacy-hero-inner h1 {
    letter-spacing: -1.4px;
  }

  .privacy-actions {
    justify-content: stretch;
  }

  .privacy-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* RESPONSIVE POLISH 2026-07-03 */

/* keep desktop content centered on very wide screens */
.hero,
.privacy-hero {
  padding-left: clamp(20px, 5vw, 86px);
  padding-right: clamp(20px, 5vw, 86px);
}

.navbar,
.hero-inner,
.privacy-hero-inner {
  width: 100%;
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
}

.service-grid,
.addons-wrap {
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
}

.process-layout {
  max-width: 1160px;
}

.contact {
  grid-template-columns: minmax(0, 560px) minmax(0, 620px);
  justify-content: center;
  align-items: center;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  color: #fff;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  z-index: 60;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.navbar.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.navbar.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1500px) {
  .hero-copy h1 {
    font-size: 68px;
  }

  .hero-visual {
    transform: translateX(0) scale(1.02);
  }
}

@media (max-width: 1280px) {
  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    padding: 9px 11px;
  }

  .nav-right {
    gap: 14px;
  }

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

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

@media (max-width: 1180px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 20px;
  }

  .hero-visual {
    width: min(100%, 760px);
    margin: 0 auto;
  }

  .laptop {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .phone {
    right: 0;
  }

  .pricing-grid {
    max-width: 940px;
    grid-template-columns: 1fr;
  }

  .plan.plus {
    transform: none;
  }

  .plan {
    min-height: auto;
  }
}

@media (max-width: 980px) {
  .navbar {
    height: auto;
    min-height: 62px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(7, 10, 18, .96);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
    z-index: 55;
  }

  .navbar.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-right {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 56px;
  }

  .hero-inner {
    min-height: auto;
    padding: 48px 0 20px;
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero-copy h1,
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
    grid-template-columns: repeat(4, minmax(110px, max-content));
    gap: 20px;
  }

  .hero-features div {
    justify-items: center;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .section {
    padding: 54px clamp(18px, 5vw, 44px);
  }

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

  .process-layout,
  .contact {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact {
    padding: 58px clamp(18px, 5vw, 44px);
  }

  form {
    max-width: 720px;
    margin: 0 auto;
  }

  .contact-copy {
    text-align: center;
  }

  .contact-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-buttons {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 14px;
  }

  .hero,
  .privacy-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-wordmark {
    font-size: 19px;
  }

  .hero-inner {
    padding-top: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 12vw, 48px);
    letter-spacing: -1.6px;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 54px;
    height: auto;
    padding: 16px 18px;
  }

  .hero-features {
    margin-top: 34px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .service-grid,
  .pricing-grid,
  .addons-grid,
  form {
    grid-template-columns: 1fr;
  }

  .service-card,
  .addon-card,
  .plan,
  .faq-column,
  form {
    border-radius: 16px;
  }

  .section h2,
  .addons-heading h3,
  .process-column h2,
  .faq-column h2,
  .contact-copy h2 {
    font-size: clamp(28px, 8vw, 36px);
    letter-spacing: -1px;
  }

  .plan {
    padding: 26px 22px;
  }

  .plan-price {
    font-size: 42px;
  }

  .delivery-time {
    white-space: normal;
    line-height: 1.25;
  }

  .process-section {
    text-align: left;
  }

  .process-column h2,
  .process-column .section-label,
  .faq-column h2,
  .faq-column .section-label {
    text-align: left;
  }

  .process-line {
    padding-left: 0;
  }

  .process-line:before {
    left: 28px;
  }

  .process-line article {
    grid-template-columns: 56px 1fr;
    gap: 14px;
  }

  .process-line span {
    width: 56px;
    height: 56px;
  }

  .faq-column {
    padding: 22px 16px;
  }

  .faq-item summary {
    min-height: 56px;
    padding: 14px;
    font-size: 14px;
  }

  .contact {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  form {
    padding: 18px;
  }

  textarea {
    min-height: 150px;
  }

  .contact-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: start;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .floating-contact {
    display: none;
  }

  .back-to-top {
    right: 16px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }

  .privacy-hero {
    min-height: auto;
  }

  .privacy-hero-inner {
    min-height: auto;
    padding: 46px 0 84px;
  }

  .privacy-hero-inner h1 {
    font-size: clamp(38px, 12vw, 48px);
    letter-spacing: -1.6px;
  }

  .privacy-hero-inner p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.65;
  }

  .privacy-page {
    padding-left: 18px;
    padding-right: 18px;
  }

  .privacy-content {
    margin-top: -48px;
  }

  .privacy-card {
    padding: 22px 18px;
  }

  .privacy-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .hero,
  .privacy-hero,
  .section,
  .contact,
  .privacy-page {
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-links {
    border-radius: 14px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-features {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .hero-features span {
    font-size: 11px;
  }

  input,
  select,
  textarea {
    padding: 15px 14px;
  }
}
