/* GuidePath Marketing Pages — Shared Stylesheet */

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
  background: linear-gradient(to bottom, #FFFCF8 0%, #F5F3FF 50%, #EFF6FB 100%);
  color: #3A3A3A;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Water Shimmer Background ───────────────────────── */

.water-shimmer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.water-shimmer::before,
.water-shimmer::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  opacity: 0.5;
}

.water-shimmer::before {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(98,172,240,0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(164,199,127,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(245,222,122,0.4) 0%, transparent 50%);
  animation: shimmer-drift 5s ease-in-out infinite alternate;
}

.water-shimmer::after {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(98,172,240,0.5) 0%, transparent 45%),
    radial-gradient(ellipse at 30% 70%, rgba(245,139,120,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.5) 0%, transparent 40%);
  animation: shimmer-drift-2 7s ease-in-out infinite alternate;
}

@keyframes shimmer-drift {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  25% { transform: translate(15%, -10%) rotate(3deg) scale(1.1); }
  50% { transform: translate(-10%, 15%) rotate(-2deg) scale(0.9); }
  75% { transform: translate(10%, 5%) rotate(4deg) scale(1.05); }
  100% { transform: translate(-5%, -10%) rotate(-1deg) scale(1); }
}

@keyframes shimmer-drift-2 {
  0% { transform: translate(0, 0) rotate(0deg) scale(1.1); }
  25% { transform: translate(-12%, 8%) rotate(-3deg) scale(0.95); }
  50% { transform: translate(8%, -12%) rotate(2deg) scale(1.15); }
  75% { transform: translate(-8%, -5%) rotate(-4deg) scale(1); }
  100% { transform: translate(5%, 10%) rotate(1deg) scale(0.9); }
}

/* ── Navigation ─────────────────────────────────────── */

.nav {
  padding: 20px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #3A3A3A;
}

.nav-brand img {
  height: 40px;
  width: auto;
}

.nav-brand span {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #828282;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #62ACF0;
}

.nav-links a.active {
  color: #3A3A3A;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: #62ACF0;
  color: white !important;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}

.nav-cta:hover {
  background: #4E9AE5;
  transform: translateY(-1px);
}

/* ── Layout ─────────────────────────────────────────── */

.page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section + .section {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.section-narrow {
  max-width: 680px;
  margin: 0 auto;
}

/* ── Typography ─────────────────────────────────────── */

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #2D2A24;
  line-height: 1.2;
}

h1 {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 24px;
}

h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.7;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 20px;
  color: #828282;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #62ACF0;
  margin-bottom: 8px;
}

/* ── Hero ───────────────────────────────────────────── */

.hero-wrapper {
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.35;
  z-index: 0;
}

.hero-image-fade {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 75%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 252, 248, 0.4) 40%,
    rgba(255, 252, 248, 0.8) 65%,
    #FFFCF8 85%
  );
  z-index: 1;
}

.hero-image-fade-sides {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(to right, #FFFCF8 0%, transparent 15%, transparent 85%, #FFFCF8 100%);
  z-index: 1;
}

.hero {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 24px 80px;
  max-width: 720px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero .subtitle {
  margin-bottom: 32px;
}

.hero p {
  font-size: 18px;
  color: #666;
  max-width: 560px;
  margin: 0 auto 44px;
}

/* ── Buttons ────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #62ACF0;
  color: white;
}

.btn-primary:hover {
  background: #4E9AE5;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(98, 172, 240, 0.3);
}

.btn-outline {
  background: transparent;
  color: #62ACF0;
  border: 2px solid #62ACF0;
}

.btn-outline:hover {
  background: rgba(98, 172, 240, 0.08);
}

.btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Cards ──────────────────────────────────────────── */

.card {
  background: linear-gradient(135deg, #FFF0E8 0%, #EDE9F5 100%);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.card h3 {
  color: #3A3A3A;
}

.card p {
  font-size: 15px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card-highlight {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 20px 24px;
  margin: 16px 0;
}

.card-highlight.info {
  border-left: 3px solid #A4C77F;
}

.card-highlight.warning {
  border-left: 3px solid #F5A574;
}

/* ── Feature List ───────────────────────────────────── */

.feature-item {
  margin-bottom: 40px;
}

.feature-item h3 {
  color: #62ACF0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-item p {
  font-size: 15px;
}

/* ── Problem/Solution Blocks ────────────────────────── */

.problem-block {
  text-align: center;
  margin-bottom: 48px;
}

.problem-block strong {
  display: block;
  font-size: 18px;
  color: #3A3A3A;
  margin-bottom: 4px;
}

.problem-block em {
  font-style: italic;
  color: #828282;
  font-size: 15px;
}

/* ── Comparison Tables ──────────────────────────────── */

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 32px 0;
  font-size: 14px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.comparison-table th,
.comparison-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.comparison-table th {
  background: rgba(98, 172, 240, 0.08);
  font-weight: 600;
  color: #3A3A3A;
  font-size: 13px;
}

.comparison-table td {
  background: white;
  color: #4A4A4A;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* ── FAQ ────────────────────────────────────────────── */

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #3A3A3A;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  line-height: 1.4;
}

.faq-question:hover {
  color: #62ACF0;
}

.faq-toggle {
  font-size: 22px;
  color: #62ACF0;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 600px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 15px;
  color: #4A4A4A;
}

.faq-answer a {
  color: #62ACF0;
  text-decoration: none;
  font-weight: 500;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.faq-category {
  margin-bottom: 8px;
}

.faq-category h2 {
  font-size: 24px;
  margin-bottom: 4px;
  padding-top: 32px;
}

/* ── Audience Grid ──────────────────────────────────── */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.audience-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.audience-card h3 {
  font-size: 17px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
  color: #3A3A3A;
}

.audience-card p {
  font-size: 14px;
  color: #828282;
  margin: 0;
}

/* ── CTA Section ────────────────────────────────────── */

.cta-section {
  text-align: center;
  padding: 80px 24px;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  max-width: 540px;
  margin: 0 auto 32px;
  font-size: 17px;
  color: #666;
}

/* ── Footer ─────────────────────────────────────────── */

.footer {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: #828282;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #62ACF0;
}

.footer-copy {
  font-size: 12px;
  color: #BBB;
}

/* ── Trust badges ───────────────────────────────────── */

.trust-section {
  text-align: center;
}

.trust-icon {
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}

.trust-section p {
  max-width: 560px;
  margin: 0 auto 24px;
}

/* ── Split Layout (text + image side by side) ───────── */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.split-reverse {
  direction: rtl;
}

.split-reverse > * {
  direction: ltr;
}

.split-text h2 {
  margin-bottom: 16px;
}

.split-text p {
  font-size: 16px;
}

.split-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.split-visual > img,
.split-visual .phone-frame {
  max-width: 320px;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

/* ── Screenshot Image in iPhone 15 Pro Frame ────────── */

.iphone-frame {
  position: relative;
  max-width: 300px;
  width: 100%;
  background: linear-gradient(145deg, #2a2a2e 0%, #1d1d1f 50%, #2a2a2e 100%);
  border-radius: 52px;
  padding: 12px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.20),
    0 8px 20px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

/* Titanium edge highlight */
.iphone-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 52px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

/* Dynamic Island */
.iphone-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #000;
  border-radius: 20px;
  z-index: 3;
}

.iphone-screen {
  border-radius: 40px;
  overflow: hidden;
  background: #1d1d1f;
  position: relative;
}

.iphone-frame img {
  width: calc(100% + 8px);
  margin: -4px;
  display: block;
  position: relative;
  z-index: 1;
}

/* Side buttons: titanium with cylindrical surface highlight and grooved top/bottom edges */
.iphone-frame .btn-power,
.iphone-frame .btn-vol-up,
.iphone-frame .btn-vol-down {
  position: absolute;
  background: linear-gradient(
    to right,
    #18181a 0%,
    #4d4d52 50%,
    #18181a 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.55);
}

.iphone-frame .btn-power {
  right: -3px;
  top: 140px;
  width: 3px;
  height: 64px;
  border-radius: 0 2px 2px 0;
}

.iphone-frame .btn-vol-up {
  left: -3px;
  top: 120px;
  width: 3px;
  height: 36px;
  border-radius: 2px 0 0 2px;
}

.iphone-frame .btn-vol-down {
  left: -3px;
  top: 168px;
  width: 3px;
  height: 36px;
  border-radius: 2px 0 0 2px;
}

/* Hero phone: enlarged screenshot bleeding past the section with a vertical fade.
   Every fixed-px dimension below is scaled ~1.3× from the base .iphone-frame
   (300px → 390px) so bezel/island/buttons keep their proportions.
   Outer box-shadow is suppressed so it doesn't get clipped to a rectangle by
   .hero-phone's overflow:hidden (which is needed for the bottom mask fade). */
.iphone-frame-hero {
  max-width: 330px;
  border-radius: 57px;
  padding: 13px;
  margin: 0 auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}
.iphone-frame-hero::after {
  border-radius: 57px;
}
.iphone-frame-hero::before {
  top: 22px;
  width: 99px;
  height: 26px;
  border-radius: 22px;
}
.iphone-frame-hero .iphone-screen {
  border-radius: 44px;
}
.iphone-frame-hero img {
  width: calc(100% + 14px);
  margin: -7px;
}
.iphone-frame-hero .btn-power {
  right: -4px;
  top: 154px;
  width: 4px;
  height: 71px;
}
.iphone-frame-hero .btn-vol-up {
  left: -4px;
  top: 132px;
  width: 4px;
  height: 40px;
}
.iphone-frame-hero .btn-vol-down {
  left: -4px;
  top: 185px;
  width: 4px;
  height: 40px;
}

.hero-phone {
  position: relative;
  width: 100%;
  max-width: 350px;
  height: 510px;
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
}

.screenshot-img {
  max-width: 300px;
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* ── Phone Frame ────────────────────────────────────── */

.phone-frame {
  background: #000;
  border-radius: 32px;
  padding: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  max-width: 280px;
}

.phone-frame img {
  width: 100%;
  border-radius: 24px;
  display: block;
}

/* ── Problem Lines ──────────────────────────────────── */

.problem-line {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-left: 40px;
}
.problem-line > div:last-child {
  width: 420px;
  flex-shrink: 0;
}

.problem-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.problem-line strong {
  display: block;
  font-size: 21px;
  color: #3A3A3A;
  margin-bottom: 4px;
}

.problem-line span {
  font-size: 17px;
  color: #828282;
}

/* ── Problem Section Background ─────────────────────── */

/* Wider stage that breaks past .section-narrow */
.variant-stage {
  width: 920px;
  max-width: calc(100vw - 48px);
  margin-left: 50%;
  transform: translateX(-50%);
  position: relative;
}

.problem-headline {
  font-size: 22px;
  color: #666;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}
.problem-headline strong {
  display: inline-block;
  margin-top: 24px;
  color: #3A3A3A;
}
.problem-headline::after {
  content: "";
  display: block;
  height: 1px;
  width: 320px;
  margin: 2px auto 0;
  background: linear-gradient(90deg, transparent 0%, rgba(130, 130, 130, 0.5) 50%, transparent 100%);
}

/* Constrain readable content width inside the wider visual frame */
.variant-content {
  max-width: 620px;
  margin: 0 auto;
}

/* Active: horizontal diamond behind the text */
.variant-diamond {
  position: relative;
  padding: 180px 120px 140px;
  isolation: isolate;
}
.variant-diamond::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 117%;
  aspect-ratio: 1.2 / 1;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, rgba(98, 172, 240, 0.18) 0%, rgba(245, 222, 122, 0.18) 100%);
  clip-path: polygon(0% 50%, 50% 0%, 100% 50%, 50% 100%);
  z-index: -1;
}

/* Alternative (kept for easy swap): amorphous off-side circles bleeding from viewport edges */
.variant-stage-bleed {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  position: relative;
  overflow-x: clip;
}
.variant-offside {
  width: 920px;
  max-width: calc(100vw - 48px);
  margin: 0 auto;
  padding: 80px 64px;
  position: relative;
}
.variant-stage-bleed::before,
.variant-stage-bleed::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80vw;
  height: 80vw;
  max-width: 1100px;
  max-height: 1100px;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}
.variant-stage-bleed::before {
  left: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(164, 199, 127, 0.32) 0%, rgba(164, 199, 127, 0.16) 50%, rgba(164, 199, 127, 0) 75%);
}
.variant-stage-bleed::after {
  right: 0;
  transform: translate(50%, -50%);
  background: radial-gradient(circle at center, rgba(98, 172, 240, 0.30) 0%, rgba(98, 172, 240, 0.14) 50%, rgba(98, 172, 240, 0) 75%);
}

/* ── Product Carousel ───────────────────────────────── */

.carousel-wrapper {
  overflow: hidden;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  gap: 24px;
  animation: scroll-carousel 30s linear infinite;
  width: max-content;
}

.carousel-card {
  flex-shrink: 0;
  width: 300px;
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  background: transparent !important;
}

.carousel-card .iphone-frame-sm {
  max-width: 220px;
  margin: 0 auto 20px;
  border-radius: 38px;
  padding: 8px;
}

.carousel-card .iphone-frame-sm::before {
  width: 60px;
  height: 16px;
  top: 14px;
  border-radius: 14px;
}

.carousel-card .iphone-frame-sm .iphone-screen {
  border-radius: 30px;
}

.carousel-card .iphone-frame-sm .btn-power {
  top: 100px;
  height: 44px;
}

.carousel-card .iphone-frame-sm .btn-vol-up {
  top: 86px;
  height: 26px;
}

.carousel-card .iphone-frame-sm .btn-vol-down {
  top: 120px;
  height: 26px;
}

.carousel-card h3 {
  font-size: 16px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 4px;
}

.carousel-card p {
  font-size: 13px;
  color: #828282;
  margin: 0;
}

@keyframes scroll-carousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── How It Works Steps ─────────────────────────────── */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.step-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 8px;
}

.step-item p {
  font-size: 14px;
  color: #666;
}

/* ── Pull Quotes ────────────────────────────────────── */

.pull-quote {
  font-size: 17px;
  font-style: italic;
  color: #4A4A4A;
  padding: 20px 24px;
  border-left: 3px solid #62ACF0;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0 12px 12px 0;
}

/* ── Numbered Circle (How It Works page) ────────────── */

.numbered-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

/* ── Button color variants ──────────────────────────── */

.btn-sage {
  background: #A4C77F;
  color: white;
}

.btn-sage:hover {
  background: #93B76E;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(164, 199, 127, 0.3);
}

.btn-gold {
  background: #F5DE7A;
  color: #3A3A3A;
}

.btn-gold:hover {
  background: #E8D26E;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245, 222, 122, 0.3);
}

.btn-rose {
  background: #F58B78;
  color: white;
}

.btn-rose:hover {
  background: #E47B68;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245, 139, 120, 0.3);
}

/* ── Responsive ─────────────────────────────────────── */

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }

  .hero { padding: 60px 16px 48px; }
  .hero p { font-size: 16px; }
  .section { padding: 48px 0; }

  .nav-links a:not(.nav-cta) { display: none; }

  .card { padding: 24px; border-radius: 20px; }
  .card-grid { grid-template-columns: 1fr; }

  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split-reverse {
    direction: ltr;
  }

  .split-visual {
    order: -1;
  }

  .phone-frame {
    max-width: 240px;
  }

  .iphone-frame {
    max-width: 180px;
    border-radius: 32px;
    padding: 7px;
  }

  .iphone-frame.iphone-frame-hero {
    max-width: 210px;
  }

  .hero-phone {
    max-width: 220px;
    height: 360px;
  }

  .iphone-frame::before {
    width: 56px;
    height: 15px;
    top: 12px;
    border-radius: 12px;
  }

  .iphone-screen {
    border-radius: 25px;
  }

  .iphone-frame .btn-power {
    top: 84px;
    height: 38px;
  }

  .iphone-frame .btn-vol-up {
    top: 72px;
    height: 22px;
  }

  .iphone-frame .btn-vol-down {
    top: 100px;
    height: 22px;
  }

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

@media (max-width: 480px) {
  h1 { font-size: 30px; }
  .btn { padding: 14px 28px; font-size: 15px; }
  .btn-group { flex-direction: column; align-items: center; }
}
