@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Italiana&family=Jost:wght@200;300;400;500;600&display=swap');

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

/* ══════════════════════════════
   VARIABLES & BASE
══════════════════════════════ */
:root {
  --c1: #F9F5EF;
  --c2: #EDE8E1;
  --c3: #F9F5EF;
  --c4: #E8E0D8;
  --ink:       #2C1F1A;
  --ink-mid:   #5C3030;
  --ink-light: #A64444;
  --ink-faint: #D4A8A8;
  --accent:    #c0392b;
  --accent-dk: #7b1a1a;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--c1);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
}

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

/* ══════════════════════════════
   REVEAL
══════════════════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

/* ══════════════════════════════
   SHARED COMPONENTS
══════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mid); margin-bottom: 16px;
}
.eyebrow::before, .eyebrow::after { content: ''; width: 20px; height: 0.5px; background: var(--ink-faint); }

.sh2 {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 300;
  line-height: 1.1; color: var(--ink); margin-bottom: 14px;
}
.sh2 em { font-style: italic; color: var(--accent); }

.ssub { font-size: 13px; font-weight: 300; color: var(--ink-light); line-height: 1.75; letter-spacing: 0.05em; }

/* ══════════════════════════════
   BUTTONS — GLOBAL
══════════════════════════════ */
.btn-solid {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #c0392b, #7b1a1a);
  color: var(--c1);
  font-size: 11px; font-weight: 300; letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none; border-radius: 40px;
  border: none; transition: background 0.2s;
}
.btn-solid:hover { background: linear-gradient(135deg, #d44333, #8f2020); }

.btn-outline {
  display: flex; align-items: center; justify-content: center;
  padding: 17px 36px; font-size: 11px; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); border: 0.5px solid var(--ink-mid);
  text-decoration: none; border-radius: 40px; transition: all 0.2s;
}
.btn-outline:hover { background: var(--ink); color: var(--c1); border-color: var(--ink); }

.pc-cta {
  display: block; text-align: center; padding: 18px;
  font-size: 12px; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 40px; text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cta-outline {
  background: linear-gradient(135deg, #c0392b, #7b1a1a);
  border: none; color: #f9f5ef;
}
.cta-outline:hover { background: linear-gradient(135deg, #d44333, #8f2020); color: #f9f5ef; }

.cta-outline-dark {
  display: block; text-align: center; padding: 18px;
  font-size: 12px; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 40px; text-decoration: none;
  background: linear-gradient(135deg, #c0392b, #7b1a1a);
  border: none; color: #f9f5ef; transition: all 0.2s;
}
.cta-outline-dark:hover { background: linear-gradient(135deg, #d44333, #8f2020); color: #f9f5ef; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 0.5px solid transparent;
}
nav.scrolled {
  background: rgba(249,245,239,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--ink-faint);
}
.nav-logo {
  font-family: var(--serif); font-size: 20px; font-weight: 300;
  color: var(--ink); text-decoration: none; letter-spacing: 0.05em;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; background: var(--ink); color: var(--c1);
  font-size: 10px; font-weight: 300; letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none; border-radius: 40px; white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--ink-mid); }

.nav-links { display: none; }
.nav-links a {
  font-size: 11px; font-weight: 300; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-mid);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

.nav-right {
  display: flex; align-items: center; gap: 12px;
}
.nav-burger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 4px; width: 28px;
}
.nav-burger span {
  display: block; width: 22px; height: 1px;
  background: var(--ink); transition: all 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--c1); z-index: 99;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif); font-size: 32px; font-weight: 300;
  color: var(--ink); text-decoration: none; letter-spacing: 0.05em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu-cta {
  font-family: var(--sans) !important;
  font-size: 11px !important; letter-spacing: 0.2em !important;
  text-transform: uppercase; color: var(--c1) !important;
  background: linear-gradient(135deg, #c0392b, #7b1a1a);
  padding: 16px 32px; border-radius: 40px;
  margin-top: 16px;
}

@media (min-width: 1024px) {
  .nav-burger { display: none; }
  .mobile-menu { display: none; }
}

/* ══════════════════════════════
   ① HERO
══════════════════════════════ */
#hero {
  background: var(--c1);
  min-height: 100svh;
  padding: 110px 24px 50px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
#hero::before, #hero::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 0.5px;
  background: var(--ink-faint); opacity: 0.4; pointer-events: none;
}
#hero::before { left: 24px; }
#hero::after  { right: 24px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 300; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--ink-mid);
  margin-bottom: 22px;
  opacity: 0; animation: fadeUp 0.8s 0.1s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 18px; height: 0.5px; background: var(--ink-faint);
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 11vw, 80px);
  font-weight: 600; line-height: 1.0; color: var(--ink);
  margin-bottom: 8px;
  opacity: 0; animation: fadeUp 0.9s 0.22s forwards;
}
.hero-script {
  font-family: var(--serif);
  font-size: clamp(28px, 7vw, 48px);
  font-style: italic; font-weight: 300;
  color: var(--accent); margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.9s 0.3s forwards;
}
.hero-orient {
  font-size: 17px; font-weight: 300; color: var(--ink);
  margin-bottom: 36px; line-height: 1.8;
  opacity: 0; animation: fadeUp 0.9s 0.38s forwards;
  font-style: italic;
}
.hero-orient span { color: var(--ink); font-weight: 400; }
.hero-btns {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.9s 0.46s forwards;
}

/* ── CAROUSEL ── */
.carousel-wrap {
  position: relative; height: 540px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  opacity: 0; animation: fadeUp 1s 0.48s forwards;
  overflow: hidden;
}
.phone {
  position: absolute; width: 220px; height: 420px;
  flex-shrink: 0; border-radius: 36px; overflow: hidden;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.phone-img {
  width: 100%; height: 100%;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  -webkit-touch-callout: none; user-select: none; -webkit-user-select: none; pointer-events: none;
}
.phone.active { transform: none; opacity: 1; z-index: 3; box-shadow: 0 32px 72px rgba(44,31,26,0.18); transition: transform 0.5s ease, opacity 0.4s ease; }
.phone.prev   { transform: translateX(-120px) scale(0.84) rotate(-5deg); }
.phone.next   { transform: translateX(120px) scale(0.84) rotate(5deg); }
.phone.gone   { opacity: 0; z-index: 1; transform: scale(0.76); pointer-events: none; transition: transform 0.5s ease, opacity 0.3s ease; }

.carousel-caption {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeUp 1s 0.7s forwards;
}
.cc-label {
  font-family: var(--serif);
  font-size: 18px; font-weight: 300; font-style: italic;
  letter-spacing: 0.02em; text-transform: none;
  color: var(--ink); line-height: 1.6; text-align: center;
  transition: opacity 0.3s;
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
}


.dots { display: flex; justify-content: center; gap: 8px; }
.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-faint); cursor: pointer; transition: background 0.3s, transform 0.3s; }
.dot.on { background: var(--ink); transform: scale(1.4); }
.cc-hint {
  font-size: 10px; font-weight: 300; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-faint); margin-top: 6px;
   user-select: none;
  -webkit-user-select: none;
  cursor: default;
}

/* ══════════════════════════════
   ② TEMPLATES
══════════════════════════════ */
#templates { background: var(--c2); padding: 50px 24px; }

.tmpl-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px; margin-top: 36px; margin-bottom: 16px;
}
.tmpl-card {
  text-decoration: none; display: flex; flex-direction: column; align-items: center;
  transition: transform 0.3s;
}
.tmpl-card:hover { transform: translateY(-4px); }
.tmpl-phone {
  width: 100%; max-width: 220px; aspect-ratio: 9/19;
  position: relative; margin: 0 auto;
  -webkit-user-select: none; user-select: none; -webkit-touch-callout: none;
}
.tmpl-frame {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; z-index: 2; pointer-events: none;
}
.tmpl-screen {
  position: absolute; top: 3%; left: 5%; right: 5%; bottom: 3%;
  border-radius: 24px; overflow: hidden; z-index: 1;
}
.tmpl-screen-img {
  width: 100%; height: auto; display: block;
  -webkit-user-select: none; user-select: none; pointer-events: none;
}
.tmpl-label { margin-top: 14px; text-align: center; }
.tmpl-name { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--ink); margin-bottom: 3px; }
.tmpl-vibe { font-size: 12px; color: var(--ink-mid); font-style: italic; margin-bottom: 8px; letter-spacing: 0.05em; }
.tmpl-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px;
  background: var(--ink); color: var(--c1);
  font-size: 10px; font-weight: 300; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
  border: none; border-radius: 40px; transition: all 0.2s;
}
.tmpl-link:hover,
.tmpl-card:hover .tmpl-link { background: var(--ink-mid); color: var(--c1); }

.tmpl-see-all {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 18px 36px;
  background: var(--ink); border: none; color: var(--c1);
  font-size: 11px; font-weight: 300; letter-spacing: 0.22em;
  text-transform: uppercase; text-decoration: none;
  border-radius: 40px; transition: all 0.2s; margin-top: 32px;
}
.tmpl-see-all:hover { background: var(--ink-mid); color: var(--c1); }
.tmpl-see-all::after { content: '→'; color: var(--c1); margin-left: 2px; }

/* ══════════════════════════════
   ③ TESTIMONIALS
══════════════════════════════ */
#testimonials { background: var(--c3); padding: 50px 24px; }

.quotes { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.quote-card { background: var(--c2); border: 0.5px solid var(--ink-faint); border-radius: 2px; padding: 22px; }
.quote-stars { font-size: 11px; color: var(--accent); letter-spacing: 3px; margin-bottom: 12px; }
.quote-text { font-family: var(--serif); font-size: 17px; font-style: italic; font-weight: 300; color: var(--ink); line-height: 1.6; margin-bottom: 16px; }
.quote-meta { display: flex; align-items: center; gap: 10px; }
.quote-av { width: 32px; height: 32px; border-radius: 50%; background: var(--ink); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--c1); font-weight: 300; flex-shrink: 0; }
.quote-name { font-size: 12px; font-weight: 400; color: var(--ink); letter-spacing: 0.05em; }
.quote-loc  { font-size: 10px; color: var(--ink-light); letter-spacing: 0.05em; }

/* ══════════════════════════════
   ④ PRICING
══════════════════════════════ */
#pricing { background: var(--c4); padding: 50px 24px; }

.pricing-anchor { margin-bottom: 36px; padding-bottom: 28px; border-bottom: 0.5px solid var(--ink-faint); }
.pa-q { font-family: var(--serif); font-size: 18px; font-style: italic; font-weight: 300; color: var(--ink); line-height: 1.6; margin-bottom: 8px; }
.pa-s { font-size: 12px; color: var(--ink-light); font-weight: 300; letter-spacing: 0.05em; }

.pricing-cards { display: flex; flex-direction: column; gap: 16px; max-width: 720px; margin: 0 auto; }

.pc { border-radius: 2px; padding: 28px 24px; }
.pc-light { background: var(--c1); border: 0.5px solid var(--ink-faint); }

.pc-badge { display: inline-block; font-size: 8px; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 12px; border-radius: 40px; }
.badge-site { background: var(--ink); color: var(--c1); border: none; }
.badge-rem  { background: var(--ink); color: var(--c1); }

.pc-name { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--ink); margin-top: 8px; margin-bottom: 8px; }
.pc-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 5px; }
.pc-rm  { font-size: 16px; color: var(--ink-mid); font-weight: 300; }
.pc-num { font-family: var(--serif); font-size: 52px; font-weight: 200; color: var(--ink); line-height: 1; }
.pc-desc { font-size: 15px; font-weight: 300; color: var(--ink-mid); margin-bottom: 20px; letter-spacing: 0.05em; }
.pc-rule { height: 0.5px; background: var(--ink-faint); margin-bottom: 18px; }
.pc-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.pc-item  { display: flex; gap: 10px; font-size: 16px; font-weight: 300; line-height: 1.6; color: var(--ink); }
.pc-note { font-size: 13px; font-style: italic; line-height: 1.6; margin-bottom: 20px; color: var(--ink-mid); }
.pricing-foot { text-align: center; margin-top: 20px; font-size: 14px; color: var(--ink-mid); font-style: italic; letter-spacing: 0.05em; line-height: 1.8; }

/* ── ADDON ── */
.pc-rates { display: flex; flex-direction: column; margin-bottom: 8px; }
.pc-rate  { display: flex; justify-content: space-between; font-size: 15px; padding: 9px 0; border-bottom: 0.5px solid var(--ink-faint); }
.pc-rate:last-child { border-bottom: none; }
.pc-rate-lbl { color: var(--ink); font-weight: 300; }
.pc-rate-val { color: var(--ink); font-weight: 400; }

.pc-addon { background: var(--c1); border: 0.5px solid var(--ink-faint); border-radius: 2px; padding: 28px 24px; }
.pc-addon-top { display: flex; flex-direction: column; gap: 20px; margin-bottom: 20px; }
.pc-addon-title { font-family: var(--serif); font-size: 25px; font-weight: 600; color: var(--ink); margin-bottom: 4px; margin-top: 8px; }
.pc-addon-sub { font-size: 15px; font-style: italic; color: var(--ink-mid); margin-bottom: 16px; letter-spacing: 0.05em; }
.pc-addon .pc-item { color: var(--ink-mid); }
.pc-addon .pc-note { color: var(--ink-mid); font-size: 13px; }

/* ══════════════════════════════
   ⑤ HOW IT WORKS
══════════════════════════════ */
#how {
  background: linear-gradient(160deg, #1a0a0a 0%, #3d1010 50%, #2a1a0a 100%);
  padding: 80px 24px 60px;
}

.how-list { margin-top: 40px; display: flex; flex-direction: column; gap: 0; }
.how-item { display: flex; align-items: flex-start; gap: 20px; padding: 32px 0; border-top: 0.5px solid rgba(249,245,239,0.12); }
.how-item:last-child { border-bottom: 0.5px solid rgba(249,245,239,0.12); }
.how-num { font-family: 'Italiana', serif; font-size: 56px; font-weight: 400; color: rgba(201,168,76,0.45); line-height: 1; min-width: 72px; }
.how-title { font-family: 'Italiana', serif; font-size: 24px; font-weight: 400; color: #C9A84C; margin-bottom: 10px; letter-spacing: 0.02em; }
.how-desc { font-size: 16px; font-weight: 300; color: rgba(249,245,239,0.7); line-height: 2; }

#how .eyebrow { color: rgba(249,245,239,0.45); }
#how .eyebrow::before, #how .eyebrow::after { background: rgba(249,245,239,0.15); }
#how .sh2 { font-family: 'Italiana', serif; font-size: clamp(36px, 8vw, 64px); font-weight: 400; color: var(--c1); line-height: 1.15; }
#how .sh2 em { font-family: 'Italiana', serif; font-style: italic; color: #C9A84C; display: inline; }

.how-cta { margin-top: 48px; display: flex; justify-content: center; }
.how-cta .btn-solid { background: linear-gradient(135deg, #c0392b, #7b1a1a); border: 0.5px solid rgba(249,245,239,0.15); }
.how-cta .btn-solid:hover { background: linear-gradient(135deg, #d44333, #8f2020); }

/* ══════════════════════════════
   ⑥ FAQ
══════════════════════════════ */
#faq { background: var(--c2); padding: 50px 24px; }

.faq-list { margin-top: 40px; max-width: 680px; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-top: 0.5px solid var(--ink-faint); }
.faq-item:last-child { border-bottom: 0.5px solid var(--ink-faint); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; gap: 16px;
  font-family: var(--serif); font-size: 18px; font-weight: 300;
  color: var(--ink); text-align: left; letter-spacing: 0.01em;
}
.faq-icon { font-family: var(--sans); font-size: 18px; font-weight: 200; color: var(--ink-light); flex-shrink: 0; transition: transform 0.3s, color 0.2s; display: inline-block; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--ink); }
.faq-a { font-size: 15px; font-weight: 300; color: var(--ink-mid); line-height: 1.8; padding-bottom: 22px; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-link {
  display: inline-block; margin-top: 10px;
  font-size: 10px; font-weight: 300; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-mid);
  text-decoration: none; border-bottom: 0.5px solid var(--ink-faint);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.faq-link:hover { color: var(--ink); border-color: var(--ink-mid); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: linear-gradient(160deg, #3d1a0f 0%, #2a1510 50%, #1a0f0a 100%);
  border-top: 0.5px solid rgba(201,168,76,0.15);
  padding: 56px 24px 32px; text-align: center;
}
.foot-top { display: flex; flex-direction: column; align-items: center; gap: 40px; margin-bottom: 48px; }
.foot-brand { display: flex; flex-direction: column; align-items: center; }
.foot-logo { font-family: var(--serif); font-size: 40px; font-weight: 200; color: rgba(249,245,239,0.9); line-height: 1; margin-bottom: 0; }
.foot-logo-sub { font-family: var(--sans); font-size: 10px; font-weight: 300; letter-spacing: 0.35em; color: rgba(249,245,239,0.5); display: block; margin-top: 4px; margin-bottom: 16px; }
.foot-tagline { font-size: 13px; font-weight: 300; font-style: italic; color: rgba(249,245,239,0.6); line-height: 1.8; max-width: 260px; margin: 0 auto; }
.foot-cols { display: flex; gap: 64px; justify-content: center; }
.foot-col { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.foot-col-title { font-size: 9px; font-weight: 300; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(249,245,239,0.45); margin-bottom: 4px; }
.foot-col a { font-size: 13px; font-weight: 300; color: rgba(249,245,239,0.75); text-decoration: none; transition: color 0.2s; }
.foot-col a:hover { color: rgba(249,245,239,0.9); }
.foot-contact-item { display: flex; flex-direction: column; align-items: center; gap: 2px; margin-bottom: 4px; }
.foot-contact-label { font-size: 8px; letter-spacing: 0.22em; color: rgba(249,245,239,0.45); }
.foot-contact-item a { font-size: 13px; font-weight: 300; color: rgba(249,245,239,0.75); text-decoration: none; transition: color 0.2s; }
.foot-contact-item a:hover { color: rgba(249,245,239,0.9); }
.foot-bottom { display: flex; flex-direction: column; align-items: center; gap: 12px; border-top: 0.5px solid rgba(249,245,239,0.08); padding-top: 24px; }
.foot-copy { font-size: 11px; letter-spacing: 0.08em; color: rgba(249,245,239,0.4); }
.foot-socials { display: flex; gap: 20px; }
.foot-socials a { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(249,245,239,0.55); text-decoration: none; transition: color 0.2s; }
.foot-socials a:hover { color: rgba(249,245,239,0.8); }

/* ══════════════════════════════
   MOBILE ≤ 1023px
══════════════════════════════ */
@media (max-width: 1023px) {
  .hero-left { text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-btns { align-items: center; }
  .hero-script { text-align: center; }
  #hero::before, #hero::after { display: none; }
  .carousel-wrap { width: 100vw; margin-left: -24px; overflow: hidden; }
  .sh2 { font-size: clamp(32px, 7vw, 48px); font-weight: 400; }
  .ssub { font-size: 16px; color: var(--ink); }
  #templates .eyebrow, #templates .sh2, #templates .ssub { text-align: center; display: block; }
  #how .eyebrow, #how .sh2 { text-align: center; display: block; }
  .faq-q { font-size: 19px; padding: 18px 0; }
  .faq-icon { font-size: 18px; }
  .faq-a { font-size: 15px; }
  .nav-cta { display: none; }
}

/* ══════════════════════════════
   TABLET ≥ 768px
══════════════════════════════ */
@media (min-width: 768px) {
  .nav-links { display: flex; gap: 32px; align-items: center; }
  .pc-addon-top { flex-direction: row; align-items: center; gap: 40px; }
  .pc-addon-left { flex: 1; }
  .pc-addon-right { width: 220px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
  .pc-addon .pc-rates { display: inline-flex; flex-direction: column; min-width: 240px; }
}

/* ══════════════════════════════
   DESKTOP ≥ 1024px
══════════════════════════════ */
@media (min-width: 1024px) {
  nav { padding: 20px 56px; }
  .nav-links a { font-size: 16px; letter-spacing: 0.15em;}
   .nav-cta { font-size: 12px; letter-spacing: 0.15em; padding: 10px 22px;}

  #hero { padding: 140px 56px 100px; min-height: 100svh; align-items: center; }
  #hero::before { left: 56px; }
  #hero::after  { right: 56px; }
  .hero-inner { display: flex; flex-direction: column; align-items: center; gap: 0; max-width: 800px; margin: 0 auto; }
  .hero-left { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .hero-right { width: 100%; max-width: 700px; }
  .hero-eyebrow { justify-content: center; }
  .hero-h1 { font-size: clamp(48px, 6vw, 80px); }
  .hero-script { font-size: clamp(28px, 4vw, 48px); text-align: center; }
  .hero-btns { flex-direction: row; justify-content: center; }
  .hero-orient { font-size: 18px;  }
  .btn-solid, .btn-outline { flex: none; }

  .carousel-wrap { margin-top: 60px; height: 560px; width: 100%; overflow: visible; }
  .phone { width: 270px; height: 540px; border-radius: 36px; }
  .phone.prev { transform: translateX(-160px) scale(0.84) rotate(-5deg); }
  .phone.next { transform: translateX(160px) scale(0.84) rotate(5deg); }
  .dots { margin-top: 16px; }
  .cc-label { font-size: 18px; letter-spacing: 0.08em; }

  #templates { padding: 100px 56px 60px; }
  #templates .eyebrow, #templates .sh2, #templates .ssub { text-align: center; display: block; }
  .tmpl-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
  .tmpl-card:nth-child(4) { display: none; }
  .tmpl-phone { max-width: 240px; }
  .tmpl-screen { top: 4%; left: 5%; right: 5%; bottom: 4%; }
  .tmpl-name { font-size: 24px; }
  .tmpl-vibe { font-size: 13px; }
  .tmpl-link { padding: 10px 22px; font-size: 10px; }
  .tmpl-see-all { max-width: 400px; margin: 40px auto 0; }
  .ssub { font-size: 16px; }

  #testimonials { padding: 100px 56px; }
  #testimonials .eyebrow, #testimonials .sh2 { text-align: center; display: block; }
  .quotes { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 48px; max-width: 800px; margin-left: auto; margin-right: auto; }
  .quote-card { padding: 32px; }
  .quote-text { font-size: 18px; }

  #pricing { padding: 100px 56px; display: flex; flex-direction: column; align-items: center; }
  #pricing .eyebrow { display: flex !important; justify-content: center; width: 100%; max-width: 900px; margin-left: auto; margin-right: auto; }
  #pricing .sh2 { display: block; text-align: center; width: 100%; max-width: 900px; }
  #pricing .pricing-anchor { text-align: center; width: 100%; max-width: 900px; }
  .pricing-cards { max-width: 700px; margin: 0 auto; gap: 20px; }
  .pa-q { font-size: 26px; }
  .pa-s { font-size: 17px; }
  .pc-name { font-size: 34px; }
  .pc-num { font-size: 80px; }
  .pc-desc { font-size: 17px; }
  .pc-item { font-size: 19px; }
  .pc-cta { font-size: 14px; letter-spacing: 0.2em; padding: 22px; }
  .cta-outline, .cta-outline-dark { font-size: 14px; letter-spacing: 0.2em; padding: 22px; }
  .pc-addon-title { font-size: 34px; }
  .pc-addon-sub { font-size: 17px; }
  .pc-addon .pc-rate { font-size: 17px; }
  .pc-addon .pc-note { font-size: 15px; }
  .pc-addon-right { width: 260px; }
  .pc-addon .pc-rates { min-width: 280px; }
  .cta-outline-dark { max-width: 400px; margin: 0 auto; }

  #how { padding: 100px 56px; }
  #how .eyebrow, #how .sh2 { text-align: center; display: block; }
  .how-list { max-width: 720px; margin: 40px auto 0; }
  .how-num { font-size: 64px; min-width: 80px; }
  .how-title { font-size: 28px; }
  .how-desc { font-size: 18px; line-height: 2; }

  #faq { padding: 100px 56px; display: flex; flex-direction: column; align-items: center; }
  #faq .eyebrow, #faq .sh2 { display: block; text-align: center; width: 100%; max-width: 720px; }
  #faq .faq-list { width: 100%; max-width: 720px; }
  .faq-q { font-size: 22px; }
  .faq-a { font-size: 17px; }

  footer { padding: 48px 56px 32px; }
  .foot-logo { font-size: 48px; }
  .foot-tagline { font-size: 14px; }
  .foot-col a { font-size: 14px; }
  .foot-contact-item a { font-size: 14px; }
}

/* ══════════════════════════════
   DESKTOP ≥ 1280px
══════════════════════════════ */
@media (min-width: 1280px) {
  nav, #hero, #templates, #testimonials, #pricing, footer { padding-left: 80px; padding-right: 80px; }
  #hero::before { left: 80px; }
  #hero::after  { right: 80px; }
  #hero::before, #hero::after { display: none; }
  .hero-inner { max-width: 1200px; margin: 0 auto; }

  .phone { width: 300px; height: 600px; }
  .phone.prev { transform: translateX(-180px) scale(0.84) rotate(-5deg); }
  .phone.next { transform: translateX(180px) scale(0.84) rotate(5deg); }
  .carousel-wrap { height: 620px; }

  .tmpl-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; max-width: 1100px; margin-left: auto; margin-right: auto; }
  .tmpl-phone { max-width: 300px; }
  .quotes { max-width: 1100px; }
  .quote-text { font-size: 20px; }

  .pricing-cards { max-width: 900px; }
  #pricing .eyebrow, #pricing .sh2, #pricing .pricing-anchor { max-width: 900px; }
  .pc { padding: 40px 36px; }
  .pc-addon { padding: 40px 36px; }
  .pc-name { font-size: 34px; }
  .pc-num { font-size: 80px; }
  .pc-desc { font-size: 16px; }
  .pc-cta { font-size: 14px; padding: 22px; }
  .cta-outline-dark { font-size: 14px; padding: 22px; }
  .pa-q { font-size: 26px; }
  .pa-s { font-size: 16px; }
}
