/* =====================================================
   NAILFLOW — Apple-Inspired Design System
   Aesthetic: Refined Minimalism / Blush & Rose
   Fonts: SF Pro Display (system) + Cormorant Garamond
   ===================================================== */



:root {
  /* Rose palette — softened for Apple refinement */
  --rose:         #d6325a;
  --rose-hover:   #b8244a;
  --rose-deep:    #9b1a3a;
  --rose-light:   #e8486a;
  --rose-glow:    rgba(214,50,90,0.12);
  --rose-subtle:  rgba(214,50,90,0.06);
  --rose-border:  rgba(214,50,90,0.15);

  /* Neutrals — Apple's palette */
  --white:        #ffffff;
  --gray-50:      #fafafa;
  --gray-100:     #f5f5f7;
  --gray-200:     #e8e8ed;
  --gray-300:     #d2d2d7;
  --gray-400:     #aeaeb2;
  --gray-500:     #8e8e93;
  --gray-600:     #636366;
  --gray-700:     #48484a;
  --gray-800:     #3a3a3c;
  --gray-900:     #1d1d1f;

  /* Blush tints */
  --blush:        #fff5f7;
  --blush-2:      #fce8ee;
  --blush-3:      #fad0dc;

  /* Semantic */
  --bg-base:      #ffffff;
  --bg-secondary: #f5f5f7;
  --bg-card:      #ffffff;
  --text:         #1d1d1f;
  --text-muted:   #6e6e73;
  --text-faint:   #aeaeb2;

  --border:       #d2d2d7;
  --border-light: #e8e8ed;

  /* Shadows — very soft Apple-style */
  --sh-xs:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --sh-sm:  0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --sh:     0 4px 16px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
  --sh-lg:  0 16px 48px rgba(0,0,0,0.09), 0 4px 16px rgba(0,0,0,0.05);
  --sh-rose:0 8px 32px rgba(214,50,90,0.20);

  /* Timing */
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --ease-out:    cubic-bezier(0,0,0.2,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
  --t-xs:   0.15s;
  --t-sm:   0.25s;
  --t-base: 0.38s;
  --t-lg:   0.60s;

  /* Radius */
  --r-sm:  8px;
  --r:     16px;
  --r-lg:  24px;
  --r-xl:  32px;
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box }
html { scroll-behavior:smooth; font-size:100% }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  background: var(--bg-base);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 4rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--text);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 400; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: 1.25rem; font-weight: 500; letter-spacing: -0.015em; }
p { line-height: 1.7; color: var(--text-muted); }
a { transition: color var(--t-xs) }
strong { color: var(--text); font-weight: 600; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem }
.section-padding { padding: 7rem 0 }

/* ─── Section labels — Apple pill style ─── */
.section-label {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--rose-subtle);
  color: var(--rose);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 50px;
  margin-bottom: 1.25rem;
  font-family: 'DM Sans', sans-serif;
}
.section-label::before {
  content: ''; display: inline-block; width: 4px; height: 4px;
  background: var(--rose); border-radius: 50%;
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.35;transform:scale(0.5)} }

.section-title { text-align:center; color:var(--text); margin-bottom:0.6rem }
.section-subtitle {
  text-align:center; color:var(--text-muted); font-size:1.05rem;
  max-width:560px; margin:0 auto 4rem; line-height:1.7;
}

/* ─── Ticker — slim and refined ─── */
.ticker-bar {
  position: fixed; top: 0; width: 100%; z-index: 1001; height: 2.5rem;
  overflow: hidden; background: var(--gray-900);
}
.ticker-track {
  display: flex; align-items: center; height: 100%;
  white-space: nowrap;
  animation: ticker-scroll 36s linear infinite;
  will-change: transform;
}
.ticker-item {
  font-size: 0.72rem; font-weight: 400; color: rgba(255,255,255,0.72);
  padding: 0 2rem; letter-spacing: 0.02em;
}
.ticker-sep { color: rgba(255,255,255,0.2); padding: 0 0.5rem; }
@keyframes ticker-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ─── Navbar ─── */
.navbar {
  position: fixed; top: 2.5rem; width: 100%; height: 3.75rem; z-index: 100;
  display: flex; align-items: center;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow var(--t-sm);
}
.navbar.scrolled { box-shadow: var(--sh-sm) }
.nav-content {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: flex; justify-content: space-between; align-items: center; width: 100%;
}
.logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  font-weight: 600; color: var(--text); text-decoration: none;
  letter-spacing: -0.03em;
}
.logo:hover { color: var(--rose) }
.logo span { color: var(--rose) }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--rose); color: white;
  padding: 0.6rem 1.4rem; border-radius: 980px;
  text-decoration: none; font-weight: 500; font-size: 0.88rem;
  letter-spacing: 0.01em;
  transition: background var(--t-xs), transform var(--t-xs), box-shadow var(--t-xs);
  box-shadow: 0 1px 2px rgba(0,0,0,0.12);
}
.btn-primary:hover {
  background: var(--rose-hover); transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(214,50,90,0.28);
  color: white;
}
.btn-primary.large {
  padding: 0.85rem 2rem; font-size: 0.97rem;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: transparent; color: var(--rose);
  padding: 0.6rem 1.4rem; border-radius: 980px;
  border: 1.5px solid var(--rose-border);
  text-decoration: none; font-weight: 500; font-size: 0.88rem;
  transition: background var(--t-xs), border-color var(--t-xs), transform var(--t-xs);
}
.btn-outline:hover {
  background: var(--rose-subtle); border-color: var(--rose); transform: translateY(-1px); color: var(--rose);
}
.full-width { width: 100%; justify-content: center; }

/* ─── Proof bar ─── */
.proof-bar {
  margin-top: 4rem; /* push below navbar */
  background: var(--gray-100);
  border-bottom: 1px solid var(--border-light);
  text-align: center; padding: 0.7rem 1.5rem;
  font-size: 0.83rem; color: var(--text-muted); font-weight: 400;
}
.proof-avatars { display:inline-flex; margin-right:0.5rem; vertical-align:middle }
.proof-avatar { display:inline-flex; width:1.6rem; height:1.6rem; border-radius:50%; font-size:0.9rem; align-items:center; justify-content:center; background:var(--white); margin-left:-0.3rem; border:1.5px solid var(--border-light); }
.proof-bar strong { color:var(--text); font-weight:600 }

/* ─── Hero ─── */
.hero {
  min-height: 92vh; display: flex; align-items: center;
  background: var(--white);
  position: relative; overflow: hidden;
  padding: 5rem 0;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, var(--blush-2) 0%, transparent 70%);
  pointer-events: none;
}
.hero-orb-1 { width: 600px; height: 600px; top: -150px; right: -100px; opacity: 0.6; }
.hero-orb-2 { width: 400px; height: 400px; bottom: -100px; left: -80px; opacity: 0.4; }
.hero-orb-3 { display: none; }
.hero-grid { display: none; }

.hero-floats { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-floats .f {
  position: absolute; font-size: 1.5rem; opacity: 0.12;
  animation: float-gentle 12s ease-in-out infinite;
}
.hero-floats .f:nth-child(1) { top:15%; left:8%; animation-delay:0s }
.hero-floats .f:nth-child(2) { top:65%; left:5%; animation-delay:2.5s }
.hero-floats .f:nth-child(3) { top:25%; right:6%; animation-delay:1.5s }
.hero-floats .f:nth-child(4) { top:70%; right:10%; animation-delay:3.5s }
.hero-floats .f:nth-child(5) { top:45%; left:50%; animation-delay:4s }
@keyframes float-gentle {
  0%,100% { transform: translateY(0) rotate(0deg) }
  33% { transform: translateY(-14px) rotate(4deg) }
  66% { transform: translateY(8px) rotate(-3deg) }
}

.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--rose); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1.75rem; font-family: 'DM Sans', sans-serif;
}
.hero-tag::before { content:''; width:20px; height:1.5px; background:var(--rose); display:inline-block; }

.hero h1 {
  color: var(--text); margin-bottom: 1.5rem;
  line-height: 1.08;
}
.hero h1 .accent { color: var(--rose); font-style: italic; }

.hero-sub {
  font-size: 1.2rem; color: var(--text-muted); max-width: 540px;
  margin-bottom: 2.5rem; line-height: 1.65; font-weight: 300;
}

.hero-stats {
  display: flex; gap: 3rem; margin-bottom: 3rem; flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 0.25rem }
.stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem;
  font-weight: 500; color: var(--text); letter-spacing: -0.03em; line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 400 }
.counter { display: inline }
.counter.green, .green { color: var(--rose) }

.hero-cta { margin-bottom: 1.5rem }
.hero-trust {
  font-size: 0.78rem; color: var(--text-faint); font-weight: 400;
}

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0) }
.rd1 { transition-delay: 0.1s }
.rd2 { transition-delay: 0.2s }
.rd3 { transition-delay: 0.3s }
.rd4 { transition-delay: 0.4s }
.rd5 { transition-delay: 0.5s }
.rd6 { transition-delay: 0.6s }
.rd7 { transition-delay: 0.7s }

/* ─── Product intro ─── */
.product-intro { padding: 7rem 0; background: var(--gray-100) }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.intro-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 1.25rem;
  display: block; font-family: 'DM Sans', sans-serif;
}
.intro-text h2 { margin-bottom: 1.5rem; }
.intro-text p { margin-bottom: 1rem; font-size: 1rem; }
.intro-text p strong { color: var(--text) }

.intro-steps { display: flex; flex-direction: column; gap: 0; }
.intro-step {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.25rem 0; position: relative;
}
.intro-step-line {
  position: absolute; left: 1.1rem; top: 3.5rem;
  width: 1.5px; height: calc(100% - 1.5rem);
  background: var(--border-light);
}
.intro-num {
  flex-shrink: 0; width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: var(--rose); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 600; z-index: 1;
  box-shadow: 0 2px 8px rgba(214,50,90,0.25);
}
.intro-step-body h4 { font-family: 'DM Sans', sans-serif; font-size: 0.97rem; font-weight: 600; color: var(--text); margin-bottom: 0.3rem; letter-spacing: -0.01em; }
.intro-step-body p { font-size: 0.88rem; color: var(--text-muted); }
.intro-cta { margin-top: 2rem }

/* ─── NFC Demo ─── */
.nfc-demo {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.5rem; position: relative;
}
.nfc-brelok {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.brelok-shape {
  font-size: 5rem; line-height: 1;
  filter: drop-shadow(0 8px 24px rgba(214,50,90,0.18));
  animation: float-gentle 5s ease-in-out infinite;
}
.nfc-waves { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.wave {
  border-radius: 50%; border: 1.5px solid var(--rose);
  opacity: 0; animation: wave-emit 2.4s ease-out infinite;
}
.wave:nth-child(1) { width:40px; height:16px; animation-delay:0s }
.wave:nth-child(2) { width:64px; height:24px; animation-delay:0.3s }
.wave:nth-child(3) { width:88px; height:32px; animation-delay:0.6s }
@keyframes wave-emit {
  0% { opacity:0; transform:scaleX(0.8) }
  40% { opacity:0.5 }
  100% { opacity:0; transform:scaleX(1.15) }
}
.nfc-phone {
  width: 180px; background: var(--gray-900); border-radius: 28px;
  padding: 1rem 0.9rem; box-shadow: var(--sh-lg), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}
.phone-notch {
  width: 60px; height: 6px; background: #000; border-radius: 10px;
  margin: 0 auto 0.75rem;
}
.phone-screen { background: #111; border-radius: 16px; padding: 1rem; min-height: 130px; }
.phone-nfc-icon { font-size: 1.25rem; margin-bottom: 0.35rem }
.phone-wave-text { font-size: 0.65rem; color: rgba(255,255,255,0.55); margin-bottom: 0.75rem; font-family: 'DM Sans', sans-serif; letter-spacing: 0.04em }
.phone-booksy { display: flex; flex-direction: column; gap: 6px; }
.booksy-bar { height: 6px; background: rgba(255,255,255,0.12); border-radius: 4px; }
.booksy-bar.accent { background: var(--rose); width: 65%; }
.booksy-bar.short { width: 45% }
.booksy-btn-mock {
  margin-top: 6px; background: var(--rose); color: white; border-radius: 8px;
  font-size: 0.6rem; font-weight: 600; text-align: center; padding: 0.4rem 0.5rem;
  font-family: 'DM Sans', sans-serif; letter-spacing: 0.03em;
}

/* ─── Value cards ─── */
.value-section { background: var(--white) }
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem }
.value-card {
  background: var(--gray-100); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 2.25rem 2rem;
  transition: box-shadow var(--t-sm), border-color var(--t-sm), transform var(--t-sm);
}
.value-card:hover { box-shadow: var(--sh); border-color: var(--rose-border); }
.value-icon { font-size: 1.75rem; margin-bottom: 1rem; display: block }
.value-card h3 {
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--text); margin-bottom: 0.6rem; letter-spacing: -0.01em;
  line-height: 1.35;
}
.value-card p { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted) }

/* ─── Gallery ─── */
.gallery-section { background: var(--gray-100) }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  margin-top: 3.5rem;
}
.gallery-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); overflow: hidden;
  transition: box-shadow var(--t-sm), transform var(--t-sm);
}
.gallery-card:hover { box-shadow: var(--sh-lg) }
.gallery-img {
  aspect-ratio: 3/4; overflow: hidden; background: var(--gray-100);
}
.gallery-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--t-base) var(--ease) }
.gallery-card:hover .gallery-img img { transform: scale(1.03) }
.gallery-body { padding: 1.5rem 1.5rem }
.gallery-body h3 {
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
  color: var(--text); margin-bottom: 0.4rem; line-height: 1.35;
  letter-spacing: -0.01em;
}
.gallery-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65 }

/* ─── Testimonials ─── */
.testi-section { background: var(--white) }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem }
.testi-card {
  background: var(--gray-100); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 2rem;
  transition: box-shadow var(--t-sm);
}
.testi-card:hover { box-shadow: var(--sh) }
.stars { color: var(--rose); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 0.05em }
.testi-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testi-author { display: flex; flex-direction: column; gap: 0.15rem }
.testi-author strong { font-size: 0.88rem; color: var(--text); font-weight: 600; font-family: 'DM Sans', sans-serif }
.testi-author span { font-size: 0.78rem; color: var(--text-faint) }

/* ─── Pricing ─── */
.pricing-section { background: var(--gray-100) }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; align-items: start }

.price-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-xl); padding: 2.25rem 2rem;
  position: relative; transition: box-shadow var(--t-sm), transform var(--t-sm), border-color var(--t-sm);
}
.price-card:hover { box-shadow: var(--sh-lg) }
.price-card.popular {
  background: var(--gray-900); border-color: transparent;
  box-shadow: var(--sh-lg), 0 0 0 1px rgba(255,255,255,0.04);
}
.price-card.popular * { color: rgba(255,255,255,0.85) }
.price-card.popular h3, .price-card.popular strong { color: white }
.price-card.popular .price-amount { color: white }
.price-card.popular .price-label { color: rgba(255,255,255,0.5) }

.badge {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  background: var(--rose); color: white;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 0.3rem 1rem; border-radius: 50px;
  white-space: nowrap; font-family: 'DM Sans', sans-serif;
}
.price-label {
  font-size: 0.78rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.35rem;
  font-family: 'DM Sans', sans-serif;
}
.price-qty {
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--text-muted); margin-bottom: 1rem;
}
.price-card.popular .price-qty { color: rgba(255,255,255,0.55) }
.price-old {
  font-size: 0.82rem; text-decoration: line-through; color: var(--text-faint);
  display: block; margin-bottom: 0.15rem;
}
.price-card.popular .price-old { color: rgba(255,255,255,0.3) }
.price-promo-label {
  font-size: 0.65rem; font-weight: 700; color: var(--rose); letter-spacing: 0.08em;
  text-transform: uppercase; display: block; margin-bottom: 0.35rem;
  font-family: 'DM Sans', sans-serif;
}
.price-card.popular .price-promo-label { color: rgba(232,72,106,0.85) }
.price-amount {
  font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 400;
  letter-spacing: -0.04em; color: var(--text); line-height: 1; margin-bottom: 0.25rem;
}
.price-per { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.75rem }
.price-card.popular .price-per { color: rgba(255,255,255,0.45) }
.price-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.55 }
.price-card.popular .price-desc { color: rgba(255,255,255,0.6) }

.price-features {
  list-style: none; margin-bottom: 1.75rem;
  display: flex; flex-direction: column; gap: 0;
}
.price-features li {
  font-size: 0.875rem; color: var(--text-muted);
  display: flex; align-items: flex-start; gap: 0.55rem;
  padding: 0.5rem 0; border-bottom: 1px solid var(--border-light);
}
.price-features li:last-child { border-bottom: none }
.price-features li::before { content: '✓'; color: var(--rose); font-weight: 700; font-size: 0.8rem; flex-shrink: 0; padding-top: 0.05rem }
.price-card.popular .price-features li { border-color: rgba(255,255,255,0.06) }
.price-card.popular .price-features li::before { color: var(--rose-light) }

.price-guarantee { font-size: 0.78rem; color: var(--text-faint); text-align: center; margin-top: 0.75rem }
.price-card.popular .price-guarantee { color: rgba(255,255,255,0.3) }

/* Personalization in pricing cards */
.price-personalization {
  margin: 1rem 0 1.25rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  display: flex; flex-direction: column; gap: 0.35rem;
}
.price-card.popular .price-personalization { border-color: rgba(255,255,255,0.07) }
.pp-title {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-faint); margin-bottom: 0.35rem;
  font-family: 'DM Sans', sans-serif;
}
.price-card.popular .pp-title { color: rgba(255,255,255,0.3) }

/* Feature rows in pricing */
.pp-header {
  display: flex !important; align-items: center; gap: 0.4rem;
  font-size: 0.68rem !important; font-weight: 700 !important;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--rose) !important;
  border-top: 1px solid var(--border-light) !important;
  margin-top: 0.5rem !important; padding-top: 0.85rem !important;
  padding-bottom: 0.1rem !important;
}
.price-card.popular .pp-header {
  border-color: rgba(255,255,255,0.07) !important;
  color: rgba(232,72,106,0.75) !important;
}
.pp-header::before { display:none !important }
.pp-feature {
  border-top: none !important; margin-top: 0 !important; padding-top: 0 !important;
}
.pp-feature::before { display: none !important }
.pp-feature.pp-ok::before {
  display: inline-block !important; content: '✓' !important;
  color: var(--rose) !important; font-weight: 700 !important;
  background: none !important; border-radius: 0 !important;
  width: auto !important; height: auto !important; min-width: auto !important;
  font-size: 0.8rem !important; margin-top: 0 !important;
}
.pp-feature.pp-ok { color: var(--text-muted) !important }
.price-card.popular .pp-feature.pp-ok { color: rgba(255,255,255,0.65) !important }
.price-card.popular .pp-feature.pp-ok::before { color: rgba(232,72,106,0.75) !important }
.pp-feature.pp-locked { color: var(--text-faint) !important; opacity: 0.5 }
.price-card.popular .pp-feature.pp-locked { color: rgba(255,255,255,0.2) !important }
.pp-feature.pp-locked::before {
  display: inline-block !important; content: '🔒' !important;
  background: none !important; border-radius: 0 !important;
  width: auto !important; height: auto !important; min-width: auto !important;
  font-size: 0.75rem !important; margin-top: 0 !important;
}
.pp-upgrade {
  font-size: 0.62rem; font-weight: 600; padding: 0.12rem 0.5rem;
  border-radius: 50px; white-space: nowrap; margin-left: 0.4rem;
  background: var(--gray-100); color: var(--text-muted);
  border: 1px solid var(--border);
}
.price-card.popular .pp-upgrade {
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.35);
  border-color: rgba(255,255,255,0.08);
}

/* ─── Guarantee box ─── */
.guarantee-wrap { max-width: 640px; margin: 2.5rem auto 0 }
.guarantee-box {
  background: var(--white); border: 1px solid var(--rose-border);
  border-radius: var(--r-lg); padding: 2rem 2.25rem;
  text-align: center; box-shadow: 0 2px 16px rgba(214,50,90,0.06);
}
.g-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem }
.guarantee-box h3 {
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--text); margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.guarantee-box p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65 }

/* ─── One-time investment ─── */
.onetime-wrap { max-width: 760px; margin: 1.5rem auto 0 }
.onetime-box {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 2rem 2.25rem;
  box-shadow: var(--sh-xs);
}
.onetime-cols { display: flex; gap: 0; align-items: stretch }
.onetime-col { flex: 1; padding: 0 1.5rem 0 0 }
.onetime-col:last-child { padding: 0 0 0 1.5rem }
.onetime-divider { width: 1px; background: var(--border-light); flex-shrink: 0; margin: 0.5rem 0 }
.onetime-icon { font-size: 1.5rem; display: block; margin-bottom: 0.5rem }
.onetime-col h4 {
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
  color: var(--text); margin-bottom: 0.5rem; line-height: 1.3; letter-spacing: -0.01em;
}
.onetime-col p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7 }
.onetime-col strong { color: var(--rose) }
@media (max-width: 600px) {
  .onetime-cols { flex-direction: column; gap: 1.5rem }
  .onetime-divider { width: 100%; height: 1px; margin: 0 }
  .onetime-col, .onetime-col:last-child { padding: 0 }
  .onetime-box { padding: 1.5rem 1.25rem }
}

/* ─── FAQ ─── */
.faq-section { background: var(--white) }
.faq-wrapper { max-width: 680px; margin: 0 auto }
details {
  border-bottom: 1px solid var(--border-light); overflow: hidden;
}
details:first-of-type { border-top: 1px solid var(--border-light) }
summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; cursor: pointer; list-style: none;
  font-size: 0.97rem; font-weight: 500; color: var(--text);
  gap: 1rem; font-family: 'DM Sans', sans-serif; letter-spacing: -0.01em;
  transition: color var(--t-xs);
}
summary::-webkit-details-marker { display: none }
summary:hover { color: var(--rose) }
.faq-icon {
  flex-shrink: 0; width: 1.5rem; height: 1.5rem; border-radius: 50%;
  border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--text-muted); font-weight: 300;
  transition: transform var(--t-sm), border-color var(--t-sm), background var(--t-sm);
}
details[open] .faq-icon { transform: rotate(45deg); border-color: var(--rose); background: var(--rose-subtle); color: var(--rose) }
details > div {
  padding: 0 0 1.25rem; font-size: 0.92rem; color: var(--text-muted); line-height: 1.75;
}

/* ─── Contact / Form ─── */
.contact-section {
  padding: 7rem 0;
  background: var(--gray-900);
  position: relative; overflow: hidden;
}
.c-orb {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(214,50,90,0.15) 0%, transparent 70%);
  top: -150px; right: -100px; pointer-events: none;
}
.contact-inner {
  max-width: 560px; text-align: center;
}
.contact-inner h2 { color: white; margin-bottom: 0.75rem }
.form-sub { font-size: 1rem; color: rgba(255,255,255,0.5); margin-bottom: 2.5rem; line-height: 1.65 }

.form-grid {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl); padding: 2.25rem 2rem;
  display: flex; flex-direction: column; gap: 0.9rem;
  text-align: left; backdrop-filter: blur(10px);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%; padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm); font-size: 0.92rem; font-family: inherit;
  color: white; outline: none;
  transition: border-color var(--t-xs), background var(--t-xs), box-shadow var(--t-xs);
  -webkit-appearance: none; appearance: none;
}
.form-row input::placeholder,
.form-row select::placeholder,
.form-row textarea::placeholder { color: rgba(255,255,255,0.28) }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(214,50,90,0.5); background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(214,50,90,0.1);
}
.form-row select option { background: #1d1d1f; color: white }
.form-row textarea { resize: vertical; min-height: 80px }
.form-row textarea::placeholder { color: rgba(255,255,255,0.28) }
.form-row small { color: rgba(255,255,255,0.32); font-size: 0.74rem; margin-top: 0.35rem; display: block; line-height: 1.55 }

.form-check {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.83rem; color: rgba(255,255,255,0.5);
}
.form-check input { width: 1rem; height: 1rem; margin-top: 0.1rem; flex-shrink: 0; accent-color: var(--rose) }
.form-check a { color: rgba(255,255,255,0.65) }
.form-check a:hover { color: var(--rose-light) }

.btn-submit {
  width: 100%; padding: 0.95rem; border: none; cursor: pointer;
  background: var(--rose); color: white; border-radius: 980px;
  font-size: 0.97rem; font-weight: 600; font-family: inherit; letter-spacing: 0.01em;
  transition: background var(--t-xs), transform var(--t-xs), box-shadow var(--t-xs);
  box-shadow: 0 2px 8px rgba(214,50,90,0.3);
}
.btn-submit:hover { background: var(--rose-hover); transform: translateY(-1px); box-shadow: var(--sh-rose) }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none }

.form-trust { font-size: 0.74rem; color: rgba(255,255,255,0.3); text-align: center; margin-top: 0.5rem }

/* Personalization radio */
.custom-radio-label { display: block; cursor: pointer }
.custom-radio-label input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0 }
.radio-box {
  display: flex; align-items: flex-start; gap: 0.85rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px; padding: 0.85rem 1rem;
  transition: background var(--t-xs), border-color var(--t-xs);
}
.custom-radio-label:hover .radio-box { background: rgba(255,255,255,0.07); border-color: rgba(214,50,90,0.3) }
.custom-radio-label input[type="radio"]:checked + .radio-box {
  background: rgba(214,50,90,0.1); border-color: var(--rose);
}
.custom-radio-label.locked { cursor: not-allowed; pointer-events: none }
.custom-radio-label.locked .radio-box { opacity: 0.3; border-color: rgba(255,255,255,0.05) }
.custom-radio-label.locked .radio-text strong::after { content: ' 🔒'; font-size: 0.75rem }
.package-badge {
  flex-shrink: 0; align-self: center; margin-left: auto;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem; border-radius: 50px; white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
.package-badge[data-badge="popularny"] { background: rgba(201,148,74,0.15); color: #c9944a; border: 1px solid rgba(201,148,74,0.3) }
.package-badge[data-badge="skalowanie"] { background: rgba(214,50,90,0.12); color: var(--rose-light); border: 1px solid rgba(214,50,90,0.25) }
.radio-icon { font-size: 1.15rem; flex-shrink: 0; margin-top: 0.05rem }
.radio-text { display: flex; flex-direction: column; gap: 0.1rem; flex: 1 }
.radio-text strong { color: rgba(255,255,255,0.88); font-size: 0.88rem; font-weight: 500 }
.radio-text small { color: rgba(255,255,255,0.42); font-size: 0.76rem; line-height: 1.4 }

/* ─── Footer ─── */
.footer { padding: 2rem 0; border-top: 1px solid var(--border-light); background: var(--white) }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem;
}
.footer-copy { font-size: 0.78rem; color: var(--text-faint) }
.footer-links { display: flex; gap: 0.1rem }
.footer-links a {
  font-size: 0.78rem; color: var(--text-faint); text-decoration: none;
  padding: 0.3rem 0.65rem; border-radius: 6px;
  transition: color var(--t-xs), background var(--t-xs);
}
.footer-links a:hover { color: var(--rose); background: var(--rose-subtle) }

/* ─── Tilt — disabled on Apple-inspired design (too aggressive) ─── */
.tilt { transition: transform var(--t-sm) var(--ease) }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 3rem }
  .nfc-demo { display: none }
  .value-grid { grid-template-columns: 1fr }
  .gallery-grid { grid-template-columns: repeat(2, 1fr) }
  .testi-grid { grid-template-columns: 1fr }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto }
}
@media (max-width: 600px) {
  body { padding-top: 3.5rem }
  .container { padding: 0 1.25rem }
  .section-padding { padding: 4.5rem 0 }
  .hero { min-height: auto; padding: 3.5rem 0 4rem }
  .hero-stats { gap: 2rem }
  .gallery-grid { grid-template-columns: 1fr }
  .form-grid { padding: 1.5rem 1.25rem }
  .proof-bar { font-size: 0.78rem }
}
.form-consent {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-top: 0.85rem;
    line-height: 1.5;
}
.form-consent a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: underline;
}
.form-consent a:hover {
    color: var(--rose-light);
}