:root {
  --ink: #071917;
  --muted: #69736f;
  --cream: #f4efe4;
  --cream-2: #fbf8ef;
  --line: #e4dac7;
  --green: #075e53;
  --green-2: #083f38;
  --dark: #061f1d;
  --gold: #d6ad4a;
  --mint: #cfecdc;
  --cyan: #1ec6b6;
  --shadow: 0 24px 70px rgba(10, 35, 30, 0.14);
  --radius: 8px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 112px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::selection {
  background: var(--gold);
  color: var(--ink);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 92px;
  padding: 0 clamp(24px, 5vw, 54px);
  background: rgba(246, 241, 231, 0.86);
  border-bottom: 1px solid rgba(228, 218, 199, 0.65);
  backdrop-filter: blur(22px);
}

.brand,
.header-cta,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  justify-self: start;
  gap: 12px;
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
}

.brand > span:last-child {
  color: transparent;
  background: linear-gradient(90deg, var(--green) 0 66%, var(--gold) 66% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18em;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: transparent;
  background: url("assets/faturasef-logo-icon.svg") center / cover no-repeat;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(7, 94, 83, 0.22);
}

.brand-mark svg {
  width: 28px;
  display: none;
}

.nav-links {
  justify-content: center;
  gap: clamp(22px, 4vw, 52px);
  color: #5d6865;
  font-weight: 750;
  min-width: 0;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease);
}

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

.header-cta {
  justify-self: end;
  gap: 12px;
  min-height: 58px;
  padding: 0 26px;
  color: white;
  background: var(--dark);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(6, 31, 29, 0.16);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.header-cta svg {
  width: 22px;
}

.header-cta:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.section-shell {
  width: min(100% - 48px, 1760px);
  margin: 0 auto;
}

.page-main {
  padding: clamp(54px, 7vw, 96px) 0 clamp(80px, 8vw, 120px);
}

.page-main .features,
.page-main .pricing,
.page-main .faq,
.page-main .support,
.page-main .contact {
  padding-top: 0;
}

.page-main .process {
  padding: 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: clamp(70px, 8vw, 150px) 0 clamp(86px, 9vw, 160px);
}

section[id] {
  scroll-margin-top: 112px;
}

.hero::before {
  position: absolute;
  inset: 0 auto 0 50%;
  width: 100vw;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 20%, rgba(196, 234, 215, 0.8), transparent 38%),
    radial-gradient(circle at 72% 24%, rgba(225, 194, 98, 0.24), transparent 34%),
    linear-gradient(110deg, rgba(202, 236, 220, 0.88), rgba(251, 248, 239, 0.9) 50%, rgba(244, 230, 197, 0.7));
  content: "";
  transform: translateX(-50%);
  z-index: -2;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 22px;
  color: var(--green);
  background: rgba(255, 252, 245, 0.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(7, 94, 83, 0.06);
  font-weight: 800;
}

.pill svg {
  width: 20px;
}

.pill.small {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(62px, 7.2vw, 104px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 span {
  position: relative;
  display: inline-block;
}

h1 span::after {
  position: absolute;
  right: -0.08em;
  bottom: 0.05em;
  left: -0.02em;
  height: 0.16em;
  background: rgba(214, 173, 74, 0.56);
  content: "";
  z-index: -1;
}

.hero-copy > p {
  max-width: 820px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: clamp(19px, 1.45vw, 26px);
  line-height: 1.75;
}

.store-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  align-items: center;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 302px;
  min-height: 78px;
  padding: 0 26px;
  color: white;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: 0 18px 35px rgba(10, 35, 30, 0.18);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.store-button svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
  stroke-width: 0;
}

.store-button span {
  display: grid;
  line-height: 0.96;
  white-space: nowrap;
}

.store-button small {
  margin-bottom: 6px;
  color: currentColor;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  opacity: 0.98;
  text-transform: none;
}

.google-play-badge {
  min-width: 320px;
}

.google-play-badge .google-play-icon {
  width: 54px;
  height: 54px;
  fill: none;
}

.google-play-icon .play-blue {
  fill: #00a0ff;
}

.google-play-icon .play-green {
  fill: #00d084;
}

.google-play-icon .play-yellow {
  fill: #ffd34d;
}

.google-play-icon .play-red {
  fill: #ff4f5e;
}

.app-store-badge svg {
  width: 54px;
  height: 54px;
  fill: white;
}

.app-store-badge {
  min-width: 320px;
  width: 320px;
  height: 78px;
  padding: 0;
  background: #050505;
  border: 0;
  border-radius: 15px;
  box-shadow: 0 18px 35px rgba(10, 35, 30, 0.18);
  overflow: hidden;
}

.app-store-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 0;
}

.store-button:hover {
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow: 0 28px 55px rgba(10, 35, 30, 0.22);
  transform: translateY(-4px);
}

.social-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 44px;
  color: var(--muted);
  font-size: 18px;
}

.social-proof strong {
  color: var(--ink);
}

.avatar-stack {
  display: flex;
  margin-right: 4px;
}

.avatar-stack span {
  width: 34px;
  height: 34px;
  margin-left: -6px;
  border: 3px solid var(--cream);
  border-radius: 50%;
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: var(--green);
}

.avatar-stack span:nth-child(2) {
  background: var(--gold);
}

.avatar-stack span:nth-child(3) {
  background: var(--cyan);
}

.stars {
  margin-left: 34px;
  color: #f5a400;
  letter-spacing: 2px;
}

.hero-visual {
  position: relative;
  min-height: 720px;
}

.phone-wrap {
  position: absolute;
  top: 42%;
  left: 50%;
  width: clamp(340px, 31vw, 460px);
  transform: translate(-50%, -50%);
  animation: phoneFloat 6s ease-in-out infinite;
}

.phone {
  position: relative;
  min-height: 740px;
  padding: 92px 34px 48px;
  background: var(--cream-2);
  border: 18px solid var(--dark);
  border-radius: 78px;
  box-shadow: 0 45px 90px rgba(7, 28, 25, 0.22);
}

.phone::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(7, 25, 23, 0.06);
  border-radius: 58px;
  content: "";
  pointer-events: none;
}

.speaker {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 44%;
  height: 38px;
  background: var(--dark);
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.phone-top small,
.receipt-list small {
  display: block;
  color: var(--muted);
  font-weight: 750;
}

.phone-top strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
  line-height: 1.15;
}

.round-icon,
.scan-button {
  display: grid;
  place-items: center;
  border: 0;
  color: var(--cream-2);
  background: var(--green);
  border-radius: 50%;
  cursor: pointer;
}

.round-icon {
  width: 58px;
  height: 58px;
}

.round-icon svg,
.scan-button svg {
  width: 27px;
}

.warranty-card {
  padding: 25px 25px 24px;
  color: white;
  background: var(--green);
  border-radius: 22px;
  box-shadow: 0 18px 28px rgba(7, 94, 83, 0.18);
}

.warranty-card small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.warranty-card h3 {
  margin: 12px 0 20px;
  font-size: 23px;
}

.progress {
  height: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.progress span {
  display: block;
  width: 78%;
  height: 100%;
  background: var(--gold);
  border-radius: inherit;
  transform-origin: left;
  animation: progressPulse 3s ease-in-out infinite;
}

.receipt-list {
  margin-top: 28px;
}

.list-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.list-title strong {
  font-size: 19px;
}

.list-title a {
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
}

.receipt-list article {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  margin-bottom: 12px;
  padding: 12px 14px;
  background: rgba(255, 252, 245, 0.9);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.mini-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: #eee5d6;
  border-radius: 50%;
}

.receipt-list b {
  font-size: 16px;
}

.scan-button {
  position: absolute;
  right: 0;
  bottom: 54px;
  left: 0;
  width: 72px;
  height: 72px;
  margin: auto;
  box-shadow: 0 16px 32px rgba(7, 94, 83, 0.16);
  animation: scanPulse 2.6s ease-in-out infinite;
}

.float-icon {
  position: absolute;
  color: rgba(7, 94, 83, 0.18);
  font-size: 32px;
  font-weight: 900;
  pointer-events: none;
  animation: drift 8s ease-in-out infinite;
}

.float-icon.receipt {
  top: 12%;
  left: 14%;
  transform: rotate(-9deg);
}

.float-icon.heart {
  top: 9%;
  right: 34%;
  color: rgba(223, 153, 137, 0.22);
  animation-delay: -2s;
}

.float-icon.sparkle {
  right: 78%;
  bottom: 16%;
  color: rgba(174, 114, 223, 0.2);
  animation-delay: -4s;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 60px max(24px, calc((100vw - 1760px) / 2)) 58px;
  background: rgba(238, 231, 217, 0.82);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.stat-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 20px;
}

.stat-icon svg {
  width: 27px;
}

.stat-icon.green {
  color: #00a875;
  background: #d8efdd;
}

.stat-icon.gold {
  color: #e18b00;
  background: #f5e7bf;
}

.stat-icon.lilac {
  color: #8c45ff;
  background: #eadff0;
}

.stat-icon.blue {
  color: #008fd2;
  background: #d8ece8;
}

.stat strong {
  color: var(--ink);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.stat span:last-child {
  color: var(--muted);
  font-weight: 800;
}

.features,
.pricing,
.faq,
.contact {
  padding: clamp(90px, 9vw, 150px) 0;
}

.section-heading {
  width: min(100%, 1060px);
  margin: 0 auto 86px;
  text-align: center;
}

.section-heading > span:not(.pill) {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading h1,
.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(44px, 5vw, 82px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(19px, 1.7vw, 27px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.feature-card {
  position: relative;
  min-height: 350px;
  padding: 36px;
  overflow: hidden;
  background: rgba(255, 252, 245, 0.7);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 36px rgba(10, 35, 30, 0.04);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}

.feature-card::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 25%, rgba(7, 94, 83, 0.09), transparent 48%);
  content: "";
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}

.feature-card.tint {
  background:
    radial-gradient(circle at 50% 20%, rgba(207, 236, 220, 0.58), transparent 56%),
    rgba(255, 252, 245, 0.64);
}

.feature-card:hover {
  border-color: rgba(7, 94, 83, 0.24);
  box-shadow: 0 28px 70px rgba(10, 35, 30, 0.1);
  transform: translateY(-8px);
}

.feature-card:hover::before {
  opacity: 1;
}

.card-icon,
.step-icon {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 18px;
  box-shadow: 0 14px 26px rgba(7, 94, 83, 0.14);
}

.card-icon svg,
.step-icon svg {
  width: 30px;
}

.feature-card h3 {
  position: relative;
  margin: 34px 0 14px;
  font-size: 23px;
  line-height: 1.2;
}

.feature-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.process {
  padding: 32px 0;
}

.process-inner {
  padding: clamp(90px, 10vw, 190px) clamp(26px, 4vw, 54px);
  color: var(--cream-2);
  background:
    radial-gradient(circle at 50% 8%, rgba(214, 173, 74, 0.2), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(4, 117, 102, 0.58), transparent 40%),
    var(--green-2);
  border-radius: 0;
}

.section-heading.dark > span {
  color: var(--gold);
}

.section-heading.dark h1,
.section-heading.dark h2 {
  color: var(--cream-2);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
}

.step-card {
  min-height: 430px;
  padding: 48px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  transition: transform 0.45s var(--ease), background 0.45s var(--ease);
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
}

.step-icon {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.step-card > strong {
  display: block;
  margin: 46px 0 14px;
  color: rgba(214, 173, 74, 0.55);
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
}

.step-card h3 {
  margin-bottom: 18px;
  font-size: 31px;
}

.step-card p {
  max-width: 410px;
  margin-bottom: 0;
  color: rgba(244, 239, 228, 0.7);
  font-size: 21px;
  line-height: 1.65;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 580px));
  justify-content: center;
  gap: 44px;
}

.price-card {
  position: relative;
  min-height: 680px;
  padding: 56px;
  background: rgba(255, 252, 245, 0.72);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 60px rgba(10, 35, 30, 0.05);
}

.price-card h3 {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  margin-bottom: 8px;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.price-card > p {
  color: var(--muted);
  font-size: 18px;
}

.yearly-price {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-weight: 850;
}

.savings-callout {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 16px 18px;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 220, 149, 0.92)),
    var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 18px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
}

.savings-callout::after {
  position: absolute;
  top: -42px;
  right: -38px;
  width: 118px;
  height: 118px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.72), transparent 66%);
  content: "";
  pointer-events: none;
}

.savings-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--gold);
  background: var(--dark);
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.savings-icon svg {
  width: 36px;
}

.savings-callout strong,
.savings-callout small {
  display: block;
}

.savings-callout strong {
  font-size: 19px;
  font-weight: 900;
  line-height: 1.15;
}

.savings-callout small {
  margin-top: 5px;
  color: rgba(7, 25, 23, 0.72);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.price-card ul {
  display: grid;
  gap: 22px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 38px;
  color: #25312f;
  font-size: 18px;
  font-weight: 650;
}

.price-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.price-card.pro {
  color: var(--cream-2);
  background: var(--green);
  border: 2px solid var(--gold);
  box-shadow: 0 28px 80px rgba(7, 94, 83, 0.2);
}

.price-card.pro h3,
.price-card.pro p,
.price-card.pro .price small {
  color: rgba(244, 239, 228, 0.75);
}

.price-card.pro li {
  color: rgba(255, 255, 255, 0.9);
}

.price-card.pro li::before {
  color: var(--gold);
}

.popular {
  position: absolute;
  top: 34px;
  right: 34px;
  padding: 8px 18px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gold-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 64px;
  margin-top: 48px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 14px;
  font-size: 20px;
  font-weight: 850;
  transition: transform 0.35s var(--ease), filter 0.35s var(--ease);
}

.gold-button:hover {
  filter: brightness(1.05);
  transform: translateY(-3px);
}

.faq {
  padding-top: 20px;
}

.faq-list {
  display: grid;
  gap: 18px;
  width: min(100%, 1040px);
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  background: rgba(255, 252, 245, 0.74);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.faq-item.open {
  box-shadow: 0 16px 40px rgba(10, 35, 30, 0.06);
}

.faq-item button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 86px;
  padding: 0 28px;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 20px;
  font-weight: 850;
  text-align: left;
}

.faq-item button svg {
  flex: 0 0 auto;
  width: 22px;
  transition: transform 0.3s var(--ease);
}

.faq-item p {
  max-height: 0;
  margin: 0;
  padding: 0 28px;
  overflow: hidden;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  transition: max-height 0.45s var(--ease), padding 0.45s var(--ease);
}

.faq-item.open p {
  max-height: 180px;
  padding-bottom: 28px;
}

.faq-item.open button svg {
  transform: rotate(180deg);
}

.support {
  padding-top: 34px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.support-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  gap: 18px;
  padding: 34px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 8%, rgba(207, 236, 220, 0.72), transparent 34%),
    rgba(255, 252, 245, 0.78);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(10, 35, 30, 0.06);
  transition: transform 0.28s var(--ease), border-color 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.support-card::after {
  position: absolute;
  inset: auto 26px 24px auto;
  width: 62px;
  height: 62px;
  content: "";
  background: rgba(7, 94, 83, 0.08);
  border-radius: 999px;
  transform: scale(0.8);
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
}

.support-card:hover {
  border-color: rgba(7, 94, 83, 0.28);
  box-shadow: 0 24px 68px rgba(10, 35, 30, 0.1);
  transform: translateY(-8px);
}

.support-card:hover::after {
  opacity: 0.72;
  transform: scale(1.25);
}

.support-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--cream-2);
  background: var(--green);
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(7, 94, 83, 0.16);
}

.support-icon.gold {
  color: var(--ink);
  background: var(--gold);
}

.support-icon.mint {
  color: var(--green);
  background: #d7f0e3;
}

.support-icon svg {
  width: 30px;
  height: 30px;
}

.support-card strong {
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.1;
}

.support-card p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.support-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--green);
  font-weight: 900;
}

.contact {
  padding-top: 30px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px);
  background:
    radial-gradient(circle at 10% 12%, rgba(207, 236, 220, 0.78), transparent 36%),
    rgba(255, 252, 245, 0.72);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(10, 35, 30, 0.08);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6px, 2vw, 20px);
}

.contact-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: var(--cream-2);
  background: var(--green);
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(7, 94, 83, 0.16);
}

.contact-icon svg {
  width: 32px;
}

.contact-copy h3 {
  margin: 28px 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.contact-copy p {
  color: var(--muted);
  font-size: 19px;
}

.contact-copy a {
  width: fit-content;
  margin-top: 10px;
  color: var(--green);
  font-weight: 900;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 252, 245, 0.78);
  border: 1px solid rgba(228, 218, 199, 0.78);
  border-radius: 22px;
}

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form label.full,
.contact-submit,
.form-status {
  grid-column: 1 / -1;
}

.contact-form span {
  color: #3f4c49;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  font: inherit;
  font-weight: 650;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.contact-form textarea {
  min-height: 150px;
  padding-top: 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: white;
  border-color: rgba(7, 94, 83, 0.58);
  box-shadow: 0 0 0 4px rgba(7, 94, 83, 0.08);
}

.contact-submit {
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: -2px 0 0;
  color: var(--green);
  font-size: 15px;
  font-weight: 850;
}

.download {
  padding: 44px 0 110px;
}

.download-panel {
  padding: clamp(70px, 8vw, 100px) 30px;
  overflow: hidden;
  color: var(--cream-2);
  text-align: center;
  background:
    radial-gradient(circle at 8% 95%, rgba(10, 139, 122, 0.72), transparent 34%),
    radial-gradient(circle at 75% 0%, rgba(214, 173, 74, 0.16), transparent 30%),
    linear-gradient(110deg, var(--green), var(--green-2));
  border-radius: 30px;
}

.download-panel h1,
.download-panel h2 {
  width: min(100%, 790px);
  margin: 0 auto 18px;
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 900;
  line-height: 1.02;
}

.download-panel p {
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 22px;
}

.centered {
  justify-content: center;
}

.site-footer {
  background: rgba(255, 252, 245, 0.76);
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 0.9fr);
  gap: clamp(42px, 12vw, 220px);
  width: min(100% - 48px, 1760px);
  margin: 0 auto;
  padding: 58px 0;
}

.footer-brand {
  max-width: 520px;
}

.footer-logo {
  margin-bottom: 22px;
}

.footer-logo .brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.footer-logo .brand-mark svg {
  width: 22px;
}

.footer-logo span:last-child {
  font-size: 19px;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.75;
}

.footer-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: clamp(38px, 8vw, 110px);
}

.footer-menu h3 {
  margin-bottom: 18px;
  font-size: 15px;
}

.footer-menu a {
  display: block;
  width: fit-content;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer-menu a:hover {
  color: var(--green);
  transform: translateX(3px);
}

.footer-bottom {
  padding: 22px 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.legal-main {
  padding: clamp(62px, 8vw, 110px) 0;
}

.legal-shell {
  display: grid;
  gap: 34px;
  width: min(100% - 48px, 1040px);
  margin: 0 auto;
}

.legal-hero {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-hero .pill {
  margin-bottom: 22px;
}

.legal-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(46px, 6vw, 76px);
}

.legal-hero p {
  color: var(--muted);
  font-size: 18px;
}

.legal-card {
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 252, 245, 0.78);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(10, 35, 30, 0.05);
}

.legal-card h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.legal-card h3 {
  margin: 26px 0 10px;
  font-size: 20px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.legal-note {
  color: #5f5140;
  background: #f6e9c8;
  border-color: rgba(214, 173, 74, 0.45);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0) rotate(-1deg);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-18px) rotate(1deg);
  }
}

@keyframes scanPulse {
  0%,
  100% {
    box-shadow: 0 16px 32px rgba(7, 94, 83, 0.16), 0 0 0 0 rgba(7, 94, 83, 0.22);
  }
  50% {
    box-shadow: 0 16px 32px rgba(7, 94, 83, 0.16), 0 0 0 18px rgba(7, 94, 83, 0);
  }
}

@keyframes progressPulse {
  0%,
  100% {
    transform: scaleX(0.73);
  }
  50% {
    transform: scaleX(1);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-7deg);
  }
  50% {
    transform: translate3d(16px, -18px, 0) rotate(8deg);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    padding: 0 clamp(18px, 3vw, 34px);
  }

  .nav-links {
    gap: clamp(10px, 1.5vw, 18px);
    font-size: 13px;
  }

  .brand {
    font-size: 19px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .header-cta {
    min-height: 52px;
    padding: 0 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 920px;
  }

  .hero-visual {
    min-height: 700px;
  }

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

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

  .price-card {
    min-height: auto;
    padding: 42px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

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

  .footer-main {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 48px;
  }
}

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

  section[id] {
    scroll-margin-top: 126px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 10px;
    min-height: auto;
    padding: 12px 18px 10px;
  }

  .brand {
    min-width: 0;
    grid-row: 1;
  }

  .brand > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 8px;
    margin: 0 -18px;
    padding: 0 18px 2px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 8px 13px;
    background: rgba(255, 252, 245, 0.72);
    border: 1px solid rgba(228, 218, 199, 0.74);
    border-radius: 999px;
    scroll-snap-align: start;
  }

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

  .header-cta {
    grid-column: 2;
    grid-row: 1;
    min-height: 48px;
    padding: 0 18px;
  }

  .feature-grid,
  .support-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main {
    width: min(100% - 36px, 1760px);
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    row-gap: 10px;
    min-height: auto;
    padding: 12px 18px 10px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .nav-links {
    display: flex;
  }

  .header-cta {
    min-height: 48px;
    padding: 0 18px;
  }

  .section-shell {
    width: min(100% - 32px, 1760px);
  }

  .hero {
    min-height: auto;
    padding: 48px 0 72px;
  }

  .hero-copy {
    max-width: 100%;
    min-width: 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(42px, 11vw, 58px);
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .hero-copy > p {
    font-size: 18px;
    line-height: 1.6;
    overflow-wrap: break-word;
  }

  .store-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }

  .store-row.centered {
    align-items: center;
  }

  .store-button {
    min-width: 0;
    width: min(100%, 320px);
    height: 78px;
    min-height: 78px;
    justify-content: center;
    gap: 14px;
    padding: 0 24px;
    font-size: 30px;
  }

  .store-button small {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .store-button svg,
  .app-store-badge svg,
  .google-play-badge .google-play-icon {
    width: 48px;
    height: 48px;
  }

  .google-play-badge {
    min-width: 0;
    width: min(100%, 320px);
  }

  .app-store-badge {
    min-width: 0;
    width: min(100%, 320px);
    height: 78px;
  }

  .app-store-badge img {
    width: 100%;
    height: 100%;
  }

  .social-proof {
    gap: 10px;
    font-size: 16px;
  }

  .stars {
    width: 100%;
    margin: 8px 0 0;
  }

  .hero-visual {
    display: flex;
    justify-content: center;
    min-height: auto;
    padding-top: 34px;
  }

  .phone-wrap {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 330px);
    animation: none;
    transform: none;
  }

  .float-icon {
    display: none;
  }

  .phone {
    min-height: 560px;
    padding: 80px 22px 36px;
    border-width: 14px;
    border-radius: 58px;
  }

  .speaker {
    height: 30px;
  }

  .warranty-card {
    padding: 20px;
  }

  .warranty-card h3 {
    font-size: 19px;
  }

  .receipt-list article {
    grid-template-columns: 42px 1fr;
    min-height: 70px;
  }

  .receipt-list b {
    grid-column: 2;
  }

  .mini-icon {
    width: 40px;
    height: 40px;
  }

  .scan-button {
    bottom: 30px;
    width: 64px;
    height: 64px;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
    padding: 44px 18px;
  }

  .section-heading {
    margin-bottom: 46px;
  }

  .section-heading h1,
  .section-heading h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .section-heading p {
    font-size: 18px;
  }

  .feature-grid,
  .pricing-grid,
  .support-grid,
  .contact-panel,
  .contact-form,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .price-card,
  .support-card,
  .step-card {
    padding: 28px;
  }

  .feature-card {
    min-height: 300px;
  }

  .support-card {
    min-height: 250px;
  }

  .process-inner {
    width: 100%;
  }

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

  .faq-item button {
    min-height: 76px;
    padding: 0 20px;
    font-size: 18px;
  }

  .faq-item p {
    padding-right: 20px;
    padding-left: 20px;
  }

  .download-panel {
    border-radius: 20px;
  }

  .footer-main,
  .legal-shell {
    width: min(100% - 32px, 1760px);
  }

  .footer-menu {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 480px) {
  .header-cta span {
    display: none;
  }

  .header-cta {
    width: 48px;
    padding: 0;
    justify-content: center;
  }

  .pill {
    padding: 0 16px;
    font-size: 13px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .hero-copy > p {
    font-size: 17px;
  }

  .store-button,
  .google-play-badge,
  .app-store-badge {
    width: min(100%, 320px);
    height: 72px;
    min-height: 72px;
  }

  .store-button {
    font-size: 25px;
    padding: 0 18px;
  }

  .store-button small {
    font-size: 12px;
  }

  .store-button svg,
  .google-play-badge .google-play-icon {
    width: 42px;
    height: 42px;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }

  .stat strong {
    font-size: 34px;
  }

  .phone-top strong {
    font-size: 20px;
  }

  .round-icon {
    width: 50px;
    height: 50px;
  }

  .receipt-list article {
    font-size: 14px;
  }

  .step-card > strong {
    font-size: 62px;
  }

  .price {
    font-size: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
