/* ===== Fricky's Touch — landing page ===== */
:root {
  --emerald: #0E8F6E;
  --emerald-dark: #0C7C5E;
  --emerald-bright: #2BB58B;
  --gold: #E0A43B;
  --ink: #0F1A17;
  --muted: #5B6B66;
  --bg: #F6FAF8;
  --card: #FFFFFF;
  --line: #E4ECE8;
  --grad: linear-gradient(135deg, #0E8F6E 0%, #2BB58B 100%);
  --grad-gold: linear-gradient(135deg, #E0A43B 0%, #f2c265 100%);
  --radius: 20px;
  --shadow: 0 18px 50px rgba(14, 143, 110, 0.14);
  --maxw: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.12; letter-spacing: -0.02em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(var(--maxw), 92%); margin: 0 auto; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 12px 26px rgba(14,143,110,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(14,143,110,.45); }
.btn-sm { padding: 10px 20px; font-size: .92rem; }

/* ===== Navbar ===== */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,250,248,.7); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s, background .3s;
}
.navbar.scrolled { border-color: var(--line); box-shadow: 0 6px 24px rgba(0,0,0,.05); background: rgba(255,255,255,.82); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 1.15rem; }
.brand-logo { width: 36px; height: 36px; border-radius: 10px; object-fit: cover; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 700; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--emerald); }
.nav-links a.btn-primary { color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ===== Hero ===== */
.hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.eyebrow {
  display: inline-block; background: rgba(14,143,110,.10); color: var(--emerald-dark);
  font-weight: 800; font-size: .85rem; padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 800; }
.hero .lead { font-size: 1.15rem; color: var(--muted); margin: 22px 0 30px; max-width: 33ch; }
.store-row { display: flex; gap: 14px; flex-wrap: wrap; }
.store-row.center { justify-content: center; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: #fff; padding: 11px 20px; border-radius: 14px;
  transition: transform .2s, box-shadow .2s;
}
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,.18); }
.store-btn span { display: flex; flex-direction: column; line-height: 1.1; }
.store-btn small { font-size: .68rem; opacity: .8; }
.store-btn strong { font-size: 1.05rem; font-family: 'Plus Jakarta Sans'; }
.store-btn.light { background: #fff; color: var(--emerald-dark); }
.trust { margin-top: 22px; color: var(--muted); font-size: .92rem; font-weight: 600; }

/* ===== Orbs ===== */
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 0; pointer-events: none; }
.orb-1 { width: 420px; height: 420px; background: var(--emerald); top: -120px; right: -80px; animation: float 16s ease-in-out infinite; }
.orb-2 { width: 360px; height: 360px; background: var(--gold); bottom: -140px; left: -100px; animation: float 20s ease-in-out infinite reverse; }
.orb-3 { width: 280px; height: 280px; background: var(--emerald-bright); top: 200px; left: 40%; opacity: .35; animation: float 22s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-30px) scale(1.08); } }
.hero-grid, .cta-inner { position: relative; z-index: 1; }

/* ===== Phone mockup ===== */
.hero-phone { display: flex; justify-content: center; }
.phone {
  position: relative; width: 300px; height: 600px; background: #0c1512;
  border-radius: 44px; padding: 12px; box-shadow: 0 40px 80px rgba(14,143,110,.28), 0 0 0 2px rgba(0,0,0,.06);
  animation: bob 6s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.phone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 130px; height: 26px; background: #0c1512; border-radius: 0 0 16px 16px; z-index: 3; }
.phone-screen { width: 100%; height: 100%; background: var(--bg); border-radius: 33px; overflow: hidden; padding: 18px 16px; }
.app-hero {
  background: var(--grad); border-radius: 18px; padding: 18px; color: #fff;
  display: flex; align-items: center; justify-content: space-between; box-shadow: 0 10px 22px rgba(14,143,110,.3);
}
.app-hero small { opacity: .9; font-size: .72rem; }
.app-hero h3 { font-size: 1.25rem; margin: 2px 0; }
.app-ava { width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--emerald); display: grid; place-items: center; font-weight: 800; font-size: 1.2rem; }
.app-promo { margin-top: 14px; background: var(--grad-gold); color: #fff; font-weight: 800; font-size: .85rem; padding: 14px 16px; border-radius: 16px; }
.app-label { font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: .9rem; margin: 16px 0 10px; }
.app-barbers { display: flex; gap: 10px; }
.b-card { flex: 1; background: #fff; border-radius: 14px; padding: 12px 6px; text-align: center; box-shadow: 0 6px 16px rgba(0,0,0,.05); }
.b-ava { width: 40px; height: 40px; border-radius: 50%; margin: 0 auto 8px; background: var(--grad); }
.b-card span { display: block; font-weight: 700; font-size: .78rem; }
.b-card em { font-style: normal; font-size: .68rem; color: var(--gold); font-weight: 800; }
.s-row { display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 14px; padding: 10px; margin-top: 10px; box-shadow: 0 6px 16px rgba(0,0,0,.05); }
.s-badge { width: 40px; height: 40px; border-radius: 12px; background: rgba(14,143,110,.12); display: grid; place-items: center; font-size: 1.1rem; }
.s-info { flex: 1; line-height: 1.2; }
.s-info strong { font-size: .82rem; }
.s-info span { display: block; font-size: .68rem; color: var(--muted); }
.s-price { font-weight: 800; color: var(--emerald); font-size: .82rem; }

/* ===== Sections ===== */
.section { padding: 90px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.kicker { color: var(--emerald); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); font-weight: 800; margin: 12px 0 14px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card .ic { width: 56px; height: 56px; border-radius: 16px; background: rgba(14,143,110,.1); display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 18px; }
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { color: var(--muted); }

/* how */
.how { background: #fff; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step { text-align: center; padding: 0 10px; }
.step-no { width: 60px; height: 60px; margin: 0 auto 20px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 1.5rem; box-shadow: 0 12px 24px rgba(14,143,110,.3); }
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--muted); }

/* owners */
.owners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.owners-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin: 12px 0 22px; }
.ticks { list-style: none; margin-bottom: 30px; }
.ticks li { position: relative; padding-left: 34px; margin-bottom: 16px; color: var(--muted); font-size: 1.05rem; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 24px; height: 24px; border-radius: 50%; background: rgba(14,143,110,.12); color: var(--emerald); font-weight: 800; display: grid; place-items: center; font-size: .85rem; }
.owners-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.stat-card:nth-child(2) { transform: translateY(20px); }
.stat-card:nth-child(3) { transform: translateY(-10px); }
.stat-num { display: block; font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 1.9rem; color: var(--emerald); }
.stat-card.gold .stat-num { color: var(--gold); }
.stat-lbl { color: var(--muted); font-weight: 600; }

/* CTA band */
.cta-band { position: relative; overflow: hidden; background: var(--grad); color: #fff; padding: 80px 0; text-align: center; margin-top: 20px; }
.cta-band .orb { opacity: .35; }
.orb-c1 { width: 300px; height: 300px; background: #fff; top: -120px; left: 10%; }
.orb-c2 { width: 260px; height: 260px; background: var(--gold); bottom: -120px; right: 10%; opacity: .4; }
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.cta-inner p { font-size: 1.15rem; opacity: .92; margin-bottom: 30px; }

/* footer */
.footer { background: var(--ink); color: #cfe0da; padding: 50px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer .brand { color: #fff; }
.footer-links { display: flex; gap: 26px; }
.footer-links a { color: #cfe0da; font-weight: 600; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.copy { font-size: .9rem; color: #8aa39b; width: 100%; text-align: center; border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; margin-top: 8px; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .lead { margin-left: auto; margin-right: auto; }
  .store-row { justify-content: center; }
  .hero-phone { margin-top: 30px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; gap: 40px; }
  .owners-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 10px 0;
    transform: translateY(-130%); transition: transform .35s ease; box-shadow: 0 20px 40px rgba(0,0,0,.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; text-align: center; padding: 14px 0; }
  .nav-links a.btn-primary { width: auto; margin: 8px auto; }
  .nav-toggle { display: flex; }
}
@media (max-width: 540px) {
  .feature-grid { grid-template-columns: 1fr; }
  .owners-visual { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .orb, .phone { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ===== Legal pages ===== */
.legal-hero {
  position: relative;
  background: var(--grad);
  color: #fff;
  padding: 120px 0 96px;
  text-align: center;
  overflow: hidden;
}
.legal-hero::after {
  content: "";
  position: absolute; inset: auto 0 -1px 0; height: 60px;
  background: var(--bg);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.legal-hero .legal-badge {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 20px;
  background: rgba(255,255,255,.18); display: grid; place-items: center;
  font-size: 1.8rem; backdrop-filter: blur(4px);
}
.legal-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); position: relative; z-index: 1; }
.legal-hero p { opacity: .92; margin-top: 10px; position: relative; z-index: 1; }

.legal-wrap {
  width: min(800px, 92%); margin: -64px auto 0; position: relative; z-index: 2;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 54px);
  margin-bottom: 70px;
}
.legal-wrap > p { color: #43524d; margin-bottom: 14px; }
.legal-wrap h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem; margin: 36px 0 14px; color: var(--ink);
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.legal-wrap h2:first-of-type { margin-top: 8px; }
.legal-wrap h3 { font-size: 1.05rem; margin: 22px 0 8px; color: var(--emerald-dark); }
.legal-wrap p, .legal-wrap li { color: #43524d; margin-bottom: 12px; }
.legal-wrap ul { list-style: none; padding-left: 0; margin-bottom: 14px; }
.legal-wrap li { position: relative; padding-left: 26px; }
.legal-wrap li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  color: var(--emerald); font-weight: 800;
}
.legal-wrap a { color: var(--emerald-dark); font-weight: 700; }
.legal-wrap a:hover { text-decoration: underline; }
.legal-wrap strong { color: var(--ink); }
.legal-updated {
  display: inline-block; color: var(--emerald-dark); font-weight: 700;
  font-size: .82rem; background: rgba(14,143,110,.10);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.legal-note {
  background: rgba(224,164,59,.10); border: 1px solid rgba(224,164,59,.4);
  border-radius: 14px; padding: 16px 18px; margin: 24px 0; color: #7a5a1e;
  font-size: .92rem;
}
.legal-back {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 30px;
  font-weight: 800; color: #fff; background: var(--grad);
  padding: 12px 22px; border-radius: 999px;
  box-shadow: 0 12px 26px rgba(14,143,110,.3);
}
.legal-back:hover { transform: translateY(-2px); }

/* ---- Contact form ---------------------------------------------------- */
.contact-form {
  max-width: 680px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 16px;
}
.contact-form .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.contact-form label {
  display: flex; flex-direction: column; gap: 7px;
  font-weight: 700; color: var(--ink); font-size: .9rem;
}
.contact-form input,
.contact-form textarea {
  font: inherit; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 12px; padding: 13px 15px; width: 100%;
  transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #9aa8a3; font-weight: 600; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(14,143,110,.14);
}
.contact-form .btn-primary { align-self: flex-start; margin-top: 4px; border: none; cursor: pointer; }
.contact-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-note { color: var(--muted); font-size: .88rem; }
.form-note a { color: var(--emerald); font-weight: 700; }
@media (max-width: 600px) {
  .contact-form { padding: 24px 18px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
}
