:root {
  --g: #2ECC71;
  --gd: #1E824C;
  --gm: #27AE60;
  --gg: rgba(46, 204, 113, 0.12);
  --o: #E67E22;
  --od: #CA6F1E;
  --og: rgba(230, 126, 34, 0.1);
  --bg: #FAF8F0;
  --bgd: #EDE8DD;
  --w: #fff;
  --t: #1A1714;
  --t2: #65605A;
  --t3: #A09A94;
  --hf: 'Nunito', sans-serif;
  --bf: 'DM Sans', sans-serif;
  --r28: 28px;
  --r20: 20px;
  --r14: 14px;
  --rp: 100px;
  --tr: .22s cubic-bezier(.4, 0, .2, 1);

  /* Compatibility variables for privacy policy page */
  --green: var(--g);
  --green-dark: var(--gd);
  --text-main: var(--t);
  --text-muted: var(--t2);
  --font-heading: var(--hf);
  --border: rgba(0, 0, 0, 0.08);
  --shadow: rgba(0, 0, 0, 0.04);
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--bf);
  background: var(--bg);
  color: var(--t);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--hf);
  line-height: 1.1;
}

p {
  color: var(--t2);
  line-height: 1.72;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Gradient text */
.gt {
  background: linear-gradient(135deg, var(--gd), var(--g) 65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Navbar ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all .3s;
}

#nav.scrolled {
  background: rgba(250, 248, 240, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 14px 0;
}

.nav-i {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  font-family: var(--hf);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -.3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 2px;
}

.nav-links a {
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--t2);
  border-radius: var(--rp);
  transition: all var(--tr);
}

.nav-links a:hover {
  color: var(--gd);
  background: var(--gg);
}

.nav-r {
  display: flex;
  gap: 8px;
  align-items: center;
}

#lang-btn {
  padding: 6px 14px;
  border-radius: var(--rp);
  border: 1.5px solid var(--bgd);
  font-size: 13px;
  font-weight: 700;
  color: var(--t2);
  transition: all var(--tr);
}

#lang-btn:hover {
  border-color: var(--g);
  color: var(--gd);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: var(--rp);
  background: var(--gd);
  color: #fff;
  font-family: var(--hf);
  font-weight: 700;
  font-size: 14px;
  transition: all var(--tr);
}

.nav-cta:hover {
  background: var(--gm);
  transform: translateY(-1px);
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Background shapes */
.hbg {
  position: absolute;
  pointer-events: none;
}

.hbg1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle at 70% 40%, rgba(46, 204, 113, 0.11) 0%, transparent 65%);
  top: -200px;
  right: -200px;
}

.hbg2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.07) 0%, transparent 70%);
  bottom: -100px;
  left: 10%;
}

/* Dot texture */
.hbg3 {
  inset: 0;
  background-image: radial-gradient(rgba(46, 204, 113, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .6;
}

.hero-in {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gg);
  border: 1.5px solid rgba(46, 204, 113, 0.25);
  color: var(--gd);
  padding: 6px 14px;
  border-radius: var(--rp);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}

.he-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--g);
  animation: pulse 2s infinite;
}

.hero-h {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 22px;
}

.hero-h em {
  font-style: normal;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 44px;
}

.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: #111;
  color: #fff;
  border-radius: 16px;
  font-family: var(--hf);
  transition: all var(--tr);
}

.play-btn:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.play-btn .pb-icon {
  font-size: 24px;
}

.play-btn .pb-txt small {
  display: block;
  font-size: 11px;
  opacity: .6;
  font-family: var(--bf);
}

.play-btn .pb-txt strong {
  font-size: 16px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 22px;
  border-radius: var(--rp);
  border: 1.5px solid var(--bgd);
  color: var(--t);
  font-family: var(--hf);
  font-weight: 700;
  font-size: 14px;
  transition: all var(--tr);
}

.btn-outline:hover {
  border-color: var(--g);
  color: var(--gd);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.proof-avatars {
  display: flex;
}

.proof-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: var(--gg);
  margin-left: -8px;
}

.proof-av:first-child {
  margin-left: 0;
}

.proof-txt {
  font-size: 13px;
  color: var(--t2);
}

.proof-txt strong {
  color: var(--t);
  font-weight: 700;
}

.proof-stars {
  color: #F5C518;
  font-size: 13px;
  display: block;
}

/* ── Phone ── */
.phone-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ph-wrap {
  animation: float 4.5s ease-in-out infinite;
  position: relative;
}

.ph {
  width: 280px;
  height: 600px;
  background: #12100D;
  border-radius: 46px;
  padding: 12px;
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.45), 0 0 0 1.5px rgba(255, 255, 255, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.ph-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 24px;
  background: #060504;
  border-radius: 16px;
  z-index: 10;
}

.ph-scr {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 35px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ph-sb {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  flex-shrink: 0;
  font-family: var(--hf);
  font-weight: 700;
  font-size: 12px;
}

.ph-body {
  flex: 1;
  overflow: hidden;
  padding: 2px 11px 0;
}

.phg-name {
  font-family: var(--hf);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 1px;
}

.phg-dt {
  font-size: 9px;
  color: var(--t3);
  margin-bottom: 8px;
}

/* cal card */
.ph-cal {
  background: var(--gm);
  border-radius: 13px;
  padding: 11px 12px;
  margin-bottom: 7px;
}

.ph-cr {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
}

.pnb {
  font-family: var(--hf);
  font-weight: 900;
  font-size: 24px;
  color: #fff;
  line-height: 1;
}

.pnm {
  font-family: var(--hf);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  line-height: 1;
}

.pnl {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 1px;
}

.ph-bar {
  height: 7px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 7px;
}

.ph-bf {
  height: 100%;
  background: #fff;
  border-radius: 7px;
  width: 62%;
}

.ph-cn {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 3px;
}

/* food */
.ph-sl {
  font-family: var(--hf);
  font-weight: 700;
  font-size: 10px;
  color: var(--t);
  margin: 5px 0 4px;
}

.ph-fc {
  background: #fff;
  border-radius: 11px;
  border: 1px solid #EDE8DF;
  overflow: hidden;
  margin-bottom: 6px;
}

.ph-fr {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border-bottom: 1px solid #F5F2EC;
}

.ph-fr:last-child {
  border-bottom: none;
}

.ph-fi {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #F3F0E8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.ph-fn {
  font-family: var(--hf);
  font-weight: 600;
  font-size: 10px;
  color: var(--t);
}

.ph-fs {
  font-size: 8px;
  color: var(--t3);
}

.ph-fk {
  font-family: var(--hf);
  font-weight: 700;
  font-size: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

/* ai rec */
.ph-ai {
  background: rgba(46, 204, 113, 0.1);
  border: 1.5px solid rgba(46, 204, 113, 0.2);
  border-radius: 11px;
  padding: 7px 9px;
}

.ph-ail {
  font-size: 9px;
  font-weight: 700;
  color: var(--gd);
  margin-bottom: 2px;
}

.ph-ait {
  font-size: 9px;
  color: var(--t);
  line-height: 1.4;
}

/* Floating cards */
.fc {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  z-index: 10;
}

.fc-icon {
  font-size: 20px;
}

.fc-name {
  font-family: var(--hf);
  font-weight: 700;
  font-size: 12px;
  color: var(--t);
}

.fc-sub {
  font-size: 11px;
  color: var(--t2);
}

.fc1 {
  top: 12%;
  left: -100px;
  animation: float-l 5s ease-in-out infinite;
}

.fc2 {
  bottom: 26%;
  right: -95px;
  animation: float-r 5.5s ease-in-out infinite .4s;
}

.fc3 {
  top: 52%;
  left: -88px;
  animation: float-l 4.8s ease-in-out infinite .8s;
}

.ph-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.28), transparent 65%);
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
}

/* ── Stats bar ── */
#stats {
  background: var(--gd);
  padding: 0;
}

.stats-in {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--hf);
  font-weight: 900;
  font-size: 36px;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
}

/* ── Features ── */
#features {
  padding: 110px 0;
}

.feat-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}

.feat-intro-l .stag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--rp);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  margin-bottom: 14px;
  background: var(--gg);
  color: var(--gd);
}

.feat-intro-l h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -.5px;
}

.feat-intro-r {
  padding-bottom: 6px;
}

.feat-intro-r p {
  font-size: 17px;
  line-height: 1.72;
  color: var(--t2);
}

/* Feature hero */
.feat-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}

.feat-big {
  background: #fff;
  border-radius: var(--r28) 0 0 0;
  padding: 44px 40px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.feat-icon-lg {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 22px;
}

.feat-big h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.feat-big p {
  font-size: 15px;
  line-height: 1.7;
}

.feat-big .feat-tag {
  display: inline-block;
  margin-top: 18px;
  padding: 5px 12px;
  border-radius: var(--rp);
  font-size: 12px;
  font-weight: 700;
}

/* Right column */
.feat-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feat-sm {
  padding: 32px 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}

.feat-sm:first-child {
  border-radius: 0 var(--r28) 0 0;
}

.feat-sm:last-child {
  border-radius: 0 0 0 0;
}

.feat-icon-sm {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.feat-sm h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}

.feat-sm p {
  font-size: 14px;
  line-height: 1.68;
}

/* Bottom row */
.feat-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.feat-bot-card {
  padding: 32px 36px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.feat-bot-card:first-child {
  border-radius: 0 0 0 var(--r28);
}

.feat-bot-card:last-child {
  border-radius: 0 0 var(--r28) 0;
}

.feat-bot-card .feat-icon-sm {
  display: inline-flex;
}

.feat-bot-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}

.feat-bot-card p {
  font-size: 14px;
  line-height: 1.68;
}

/* ── How it works ── */
#how {
  background: var(--bg);
  padding: 110px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.how-hdr {
  text-align: center;
  margin-bottom: 72px;
}

.how-hdr .stag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--rp);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  margin-bottom: 14px;
  background: var(--gg);
  color: var(--gd);
}

.how-hdr h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}

.how-hdr p {
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--g), var(--gd));
  border-radius: 2px;
  z-index: 0;
}

.how-step {
  text-align: center;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.how-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2.5px solid var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: var(--bg);
  font-family: var(--hf);
  font-weight: 900;
  font-size: 26px;
  color: var(--gd);
}

.how-step-ico {
  font-size: 28px;
}

.how-step h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
}

.how-step p {
  font-size: 14px;
  line-height: 1.68;
}

/* ── Pricing ── */
#pricing {
  background: #fff;
  padding: 110px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.price-hdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

.price-hdr-l .stag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--rp);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  margin-bottom: 14px;
  background: rgba(230, 126, 34, 0.1);
  color: var(--od);
}

.price-hdr-l h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -.5px;
}

.price-hdr-r {
  padding-bottom: 6px;
}

.price-hdr-r p {
  font-size: 17px;
  line-height: 1.72;
  color: var(--t2);
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
  max-width: 820px;
}

.price-card {
  border-radius: var(--r28);
  padding: 36px 32px;
  position: relative;
}

.price-card.free {
  background: var(--bg);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
}

.price-card.prem {
  background: var(--gd);
  box-shadow: 0 24px 64px rgba(30, 130, 76, 0.25);
}

.p-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--o);
  color: #fff;
  padding: 5px 14px;
  border-radius: var(--rp);
  font-size: 12px;
  font-weight: 700;
}

.p-plan {
  font-family: var(--hf);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.free .p-plan {
  color: var(--t2);
}

.prem .p-plan {
  color: rgba(255, 255, 255, 0.6);
}

.p-price {
  font-family: var(--hf);
  font-weight: 900;
  font-size: 46px;
  line-height: 1;
  margin-bottom: 4px;
}

.free .p-price {
  color: var(--t);
}

.prem .p-price {
  color: #fff;
}

.p-price sub {
  font-size: 18px;
  font-weight: 500;
  vertical-align: baseline;
}

.p-period {
  font-size: 13px;
  margin-bottom: 28px;
}

.free .p-period {
  color: var(--t2);
}

.prem .p-period {
  color: rgba(255, 255, 255, 0.65);
}

.p-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}

.p-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.free .p-feats li {
  color: var(--t2);
}

.prem .p-feats li {
  color: rgba(255, 255, 255, 0.85);
}

.p-chk {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.free .p-chk.y {
  background: var(--gg);
  color: var(--gd);
}

.free .p-chk.n {
  background: rgba(0, 0, 0, 0.06);
  color: var(--t3);
}

.prem .p-chk.y {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.p-cta {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: var(--r14);
  font-family: var(--hf);
  font-weight: 800;
  font-size: 15px;
  text-align: center;
  transition: all var(--tr);
}

.free .p-cta {
  background: var(--t);
  color: #fff;
}

.free .p-cta:hover {
  background: #333;
}

.prem .p-cta {
  background: #fff;
  color: var(--gd);
}

.prem .p-cta:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* ── CTA section ── */
#cta {
  padding: 130px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.cta-bg-txt {
  position: absolute;
  font-family: var(--hf);
  font-weight: 900;
  font-size: clamp(80px, 15vw, 160px);
  color: rgba(46, 204, 113, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -4px;
  line-height: 1;
}

.cta-in {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--rp);
  border: 1.5px solid rgba(46, 204, 113, 0.3);
  color: var(--gd);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  background: var(--gg);
}

.cta-h {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.08;
}

.cta-sub {
  font-size: 18px;
  color: var(--t2);
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--t3);
}

.cta-note span {
  color: var(--gd);
  font-weight: 600;
}

/* ── Footer ── */
footer {
  background: #0D1A0D;
  padding: 64px 0 28px;
}

.foot-in {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.foot-logo {
  font-family: var(--hf);
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.foot-logo img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: cover;
  flex-shrink: 0;
}

.foot-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  max-width: 260px;
}

.foot-email {
  margin-top: 18px;
  font-size: 13px;
  color: var(--g);
}

.foot-col h4 {
  font-family: var(--hf);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.foot-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  transition: color var(--tr);
}

.foot-col a:hover {
  color: var(--g);
}

.foot-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.foot-bot a {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--tr);
}

.foot-bot a:hover {
  color: var(--g);
}

.foot-bot-r {
  display: flex;
  gap: 20px;
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: .08s;
}

.d2 {
  transition-delay: .16s;
}

.d3 {
  transition-delay: .24s;
}

/* ── Keyframes ── */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes float-l {

  0%,
  100% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(-6px) translateY(-8px);
  }
}

@keyframes float-r {

  0%,
  100% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(6px) translateY(-6px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.8);
  }
}

/* ── Responsive ── */
@media(max-width:1024px) {
  .hero-in {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-sub,
  .hero-ctas,
  .hero-proof {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas,
  .hero-proof {
    justify-content: center;
  }

  .phone-col {
    order: -1;
  }

  .fc1,
  .fc2,
  .fc3 {
    display: none;
  }

  .feat-intro,
  .feat-hero,
  .feat-bottom,
  .price-hdr {
    grid-template-columns: 1fr;
  }

  .feat-stack .feat-sm:first-child {
    border-radius: 0;
  }

  .feat-big {
    border-radius: var(--r28) var(--r28) 0 0;
  }

  .how-steps::before {
    display: none;
  }

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

  .how-step {
    padding: 24px 16px;
  }

  .stats-in {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 45%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

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

  .ph {
    width: 250px;
    height: 536px;
  }

  .feat-bottom,
  .price-hdr,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .feat-bot-card:first-child {
    border-radius: 0;
  }

  .feat-bot-card:last-child {
    border-radius: 0 0 var(--r28) var(--r28);
  }

  .price-card.prem {
    margin-top: 16px;
  }

  .foot-in {
    grid-template-columns: 1fr;
  }

  .foot-bot {
    flex-direction: column;
    text-align: center;
  }

  .foot-bot-r {
    justify-content: center;
  }

  #how {
    padding: 72px 0;
  }

  #features {
    padding: 72px 0;
  }

  #pricing {
    padding: 72px 0;
  }

  #cta {
    padding: 90px 0;
  }
}

@media(max-width:480px) {

  .hero-ctas,
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .stat-item {
    flex: 1 1 100%;
  }
}
