/* ============ TOKENS ============ */
:root {
  --green: #70b85f;
  --green-dark: #4f8c42;
  --green-darker: #3a6a30;
  --green-light: #a8d89a;
  --green-lighter: #e8f3e3;
  --green-faint: #f4faf1;

  --bg: #ffffff;
  --bg-soft: #fafbfa;
  --bg-card: #ffffff;

  --text: #1a2419;
  --text-soft: #4a5848;
  --text-muted: #7a8678;
  --text-faint: #b3bdb0;

  --border: #e8ece6;
  --border-strong: #d4dad0;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --shadow-sm:
    0 1px 2px rgba(26, 36, 25, 0.04), 0 1px 3px rgba(26, 36, 25, 0.06);
  --shadow: 0 4px 12px rgba(26, 36, 25, 0.06), 0 2px 4px rgba(26, 36, 25, 0.04);
  --shadow-lg:
    0 24px 48px -12px rgba(26, 36, 25, 0.12),
    0 8px 20px -8px rgba(26, 36, 25, 0.08);
  --shadow-xl:
    0 48px 100px -24px rgba(26, 36, 25, 0.18),
    0 16px 40px -12px rgba(26, 36, 25, 0.12);

  --font-display: "Playfair", "Fraunces", "Times New Roman", Georgia, serif;
  --font-body:
    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui,
    sans-serif;

  --container: 1240px;
  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--green);
  color: white;
  box-shadow: 0 6px 18px -4px rgba(112, 184, 95, 0.45);
}
.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -4px rgba(112, 184, 95, 0.55);
}

.btn--ghost {
  background: white;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green-dark);
  background: var(--green-faint);
}

.btn--white {
  background: white;
  color: var(--green-dark);
  font-weight: 700;
}
.btn--white:hover {
  background: var(--green-faint);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -4px rgba(0, 0, 0, 0.2);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: white;
  transform: translateY(-1px);
}

.btn--sm {
  padding: 9px 18px;
  font-size: 14px;
}
.btn--lg {
  padding: 16px 30px;
  font-size: 16px;
}
.btn--full {
  width: 100%;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(232, 236, 230, 0.7);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--text);
}
.logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: white;
  border-radius: 10px;
}
.logo__mark svg {
  width: 22px;
  height: 22px;
}
.logo__text {
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
}
.nav__links a {
  position: relative;
  transition: color var(--transition);
}
.nav__links a:hover {
  color: var(--green-dark);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 2px;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: white;
  border-bottom: 1px solid var(--border);
}
.nav__mobile a {
  padding: 12px 8px;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: 8px;
}
.nav__mobile a:hover {
  background: var(--green-faint);
  color: var(--green-dark);
}
.nav__mobile .btn {
  margin-top: 8px;
}

.nav__mobile.is-open {
  display: flex;
}

@media (max-width: 980px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 80% 20%,
      rgba(112, 184, 95, 0.14),
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 40% at 10% 80%,
      rgba(168, 216, 154, 0.2),
      transparent 60%
    );
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image:
    linear-gradient(rgba(112, 184, 95, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 184, 95, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 0%,
    transparent 80%
  );
  pointer-events: none;
  z-index: -1;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.hero__copy {
  animation: fadeUp 0.8s 0.05s both;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero__eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(112, 184, 95, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(112, 184, 95, 0.2);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(112, 184, 95, 0.08);
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 22px;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--green-dark);
  position: relative;
  white-space: nowrap;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 6px;
  background: var(--green);
  opacity: 0.18;
  border-radius: 3px;
  z-index: -1;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 500;
}
.hero__bullets svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  background: var(--green-lighter);
  padding: 3px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__visual {
  position: relative;
  height: 600px;
  animation: fadeUp 0.9s 0.2s both;
}

/* Big hero photo */
.hero__photo {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__photo-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.18);
}
.hero__photo-badge .star {
  color: #f4b400;
  font-size: 14px;
}
.hero__photo-badge strong {
  font-weight: 700;
}

/* ============ PHONE MOCKUP (reused) ============ */
.phone {
  width: 240px;
  background: #1a2419;
  border-radius: 32px;
  padding: 8px;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #0a0a0a;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone__screen {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9 / 18;
  position: relative;
}

.phone--hero {
  position: absolute;
  right: -20px;
  bottom: -40px;
  z-index: 2;
  transform: rotate(-4deg);
  animation: floatPhone 6s ease-in-out infinite;
}
@keyframes floatPhone {
  0%,
  100% {
    transform: rotate(-4deg) translateY(0);
  }
  50% {
    transform: rotate(-4deg) translateY(-10px);
  }
}

.mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* ============ TRUST ============ */
.trust {
  margin-top: 60px;
  text-align: center;
}
.trust__title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 600;
}
.trust__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.trust__item {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-soft);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.trust__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-strong);
}

/* ============ SECTIONS ============ */
.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-dark);
  margin-bottom: 16px;
  padding: 5px 12px;
  background: var(--green-lighter);
  border-radius: 999px;
}
.eyebrow--light {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
}
.section__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto;
}

/* ============ SERVICES ============ */
.services {
  padding: 110px 0;
  background: var(--bg-soft);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}
.service__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.service:hover .service__photo img {
  transform: scale(1.05);
}
.service__price {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.12);
}
.service__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.service p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.service__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============ HOW IT WORKS ============ */
.how {
  padding: 120px 0;
}

.how__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.how__steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 6px 22px;
  align-items: start;
  padding: 24px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
}
.step:hover {
  background: var(--bg-soft);
  border-color: var(--border);
}
.step__num {
  grid-row: 1 / 3;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px -3px rgba(112, 184, 95, 0.4);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  line-height: 1.2;
}
.step p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}

.how__phones {
  position: relative;
  height: 540px;
}
.how__phones .phone:not(.phone--back) {
  position: absolute;
  left: 0;
  top: 30px;
  z-index: 2;
  transform: rotate(-4deg);
}
.how__phones .phone--back {
  position: absolute;
  right: 0;
  top: 80px;
  z-index: 1;
  transform: rotate(5deg);
  opacity: 0.96;
}

/* ============ WHY ============ */
.why {
  padding: 110px 0;
  background: var(--bg-soft);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}
.why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-lighter);
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-card__icon svg {
  width: 26px;
  height: 26px;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ============ FAQ ============ */
.faq {
  padding: 110px 0;
}
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq__item:hover {
  border-color: var(--green-light);
}
.faq__item[open] {
  border-color: var(--green);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__icon {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-lighter);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--green-dark);
  border-radius: 1px;
  top: 50%;
  left: 50%;
}
.faq__icon::before {
  width: 10px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 2px;
  height: 10px;
  transform: translate(-50%, -50%);
  transition: var(--transition);
}
.faq__item[open] .faq__icon {
  background: var(--green);
}
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after {
  background: white;
}
.faq__item[open] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__body {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.65;
}
.faq__item.is-open .faq__body {
  max-height: 500px;
  padding: 0 26px 22px;
}

/* ============ CTA ============ */
.cta {
  padding: 100px 0;
}
.cta__card {
  background: linear-gradient(
    135deg,
    var(--green-dark) 0%,
    var(--green-darker) 100%
  );
  color: white;
  border-radius: 32px;
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta__card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(168, 216, 154, 0.25),
    transparent 65%
  );
  pointer-events: none;
}
.cta__card::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(112, 184, 95, 0.18),
    transparent 60%
  );
  pointer-events: none;
}
.cta__copy {
  position: relative;
  z-index: 1;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.cta__lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}
.cta__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============ FOOTER ============ */
.footer {
  background: white;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer__brand p {
  font-size: 14px;
  color: var(--text-soft);
  margin-top: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: var(--text-soft);
  transition: color var(--transition);
}
.footer__col a:hover {
  color: var(--green-dark);
}
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .hero__visual {
    height: 540px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  .phone--hero {
    right: 0;
  }
  .nav__links {
    gap: 18px;
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 50px;
  }
  .how__phones {
    max-width: 480px;
    margin: 0 auto;
    height: 500px;
  }

  .cta__card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 36px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 30px 0 60px;
  }
  .hero__visual {
    height: 460px;
    max-width: 400px;
  }
  .hero__photo {
    inset: 0 0 80px 0;
  }
  .phone--hero {
    position: absolute;
    right: 50%;
    bottom: -10px;
    transform: translateX(50%) rotate(-4deg);
    animation: floatPhoneMobile 6s ease-in-out infinite;
    width: 200px;
  }
  @keyframes floatPhoneMobile {
    0%,
    100% {
      transform: translateX(50%) rotate(-4deg) translateY(0);
    }
    50% {
      transform: translateX(50%) rotate(-4deg) translateY(-8px);
    }
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    width: 100%;
  }

  .services,
  .how,
  .why,
  .faq,
  .cta {
    padding: 70px 0;
  }
  .services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .why-card {
    padding: 26px 24px;
  }

  .step {
    padding: 16px;
    gap: 6px 16px;
    grid-template-columns: 48px minmax(0, 1fr);
  }
  .step__num {
    width: 48px;
    height: 48px;
    font-size: 22px;
    grid-row: 1 / 3;
  }

  .how__phones {
    height: 460px;
  }
  .how__phones .phone {
    width: 200px;
  }
  .how__phones .phone:not(.phone--back) {
    left: 10%;
  }
  .how__phones .phone--back {
    right: 10%;
  }

  .cta__card {
    padding: 36px 24px;
    border-radius: 24px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 30px;
  }
  .section__head {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .phone {
    width: 200px;
  }
  .faq__item summary {
    font-size: 16px;
    padding: 18px 20px;
  }
  .faq__body {
    padding: 0 20px 18px;
    font-size: 14px;
  }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
