/* ============================================================
   STUDIO SIXTY PLUS — Master Stylesheet
   All pages share this file. No page-level <style> blocks needed.
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #07070d;
  --surface:      #0f0f1a;
  --surface2:     #161624;
  --accent:       #e8a030;
  --accent2:      #f5c06a;
  --text:         #f2efe8;
  --text-muted:   #938f80;
  --text-dim:     #4a4640;
  --border-color: rgba(232,160,48,0.15);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --page-pad:     5vw;
  --radius-sm:    10px;
  --radius-md:    18px;
  --radius-lg:    22px;
  --radius-pill:  100px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

section, nav, footer, main { position: relative; z-index: 1; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── NAVIGATION ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem var(--page-pad);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 7, 13, 0.80);
  border-bottom: 1px solid var(--border-color);
}

@supports (backdrop-filter: blur(20px)) {
  .nav { backdrop-filter: blur(20px); background: rgba(7, 7, 13, 0.65); }
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-logo em { font-style: italic; font-weight: 300; color: var(--accent2); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text-muted); transition: all 0.3s; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #07070d;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  border: 1px solid var(--border-color);
  background: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--accent); color: var(--text); }

.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--text);
  color: var(--bg);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  transition: opacity 0.2s;
}

.btn-appstore:hover { opacity: 0.85; }
.btn-appstore svg { width: 18px; height: 18px; flex-shrink: 0; }
.nav-btn { padding: 0.5rem 1.25rem !important; font-size: 0.85rem !important; }

/* ── SHARED TYPOGRAPHY ── */
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before { content: ''; display: inline-block; width: 16px; height: 1px; background: var(--accent2); flex-shrink: 0; }
.section-label.centered { justify-content: center; }
.section-label.centered::before { display: none; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.section-title em { font-style: italic; font-weight: 300; color: var(--accent2); }

/* ── CARD ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(232,160,48,0.4), transparent); opacity: 0; transition: opacity 0.3s; }
.card:hover { border-color: rgba(232,160,48,0.4); transform: translateY(-3px); }
.card:hover::before { opacity: 1; }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--border-color); padding: 2.5rem var(--page-pad); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--text); text-decoration: none; }
.footer-logo em { font-style: italic; font-weight: 300; color: var(--accent2); }
.footer-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 0.82rem; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-muted); }
.footer-copy { font-size: 0.78rem; color: var(--text-dim); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================================
   HOME PAGE
   ============================================================= */

.hero { min-height: 90vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; padding: 6rem var(--page-pad) 5rem; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; top: -10%; right: -8%; width: 55vw; height: 55vw; background: radial-gradient(circle, rgba(232,160,48,0.1) 0%, transparent 65%); pointer-events: none; }

.hero-eyebrow { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent2); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.6rem; }
.hero-eyebrow::before { content: ''; display: inline-block; width: 22px; height: 1px; background: var(--accent2); }

.hero h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4.8rem); font-weight: 600; line-height: 1.06; letter-spacing: -0.025em; margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; font-weight: 300; color: var(--accent2); }
.hero-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 430px; margin-bottom: 2.5rem; line-height: 1.85; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; align-items: center; }

/* ── PHONE MOCKUP ── */
.phone-wrap { animation: float 7s ease-in-out infinite; position: relative; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-16px) rotate(-2deg); }
}

.phone {
  width: 255px;
  height: 530px;
  background: var(--surface);
  border-radius: 44px;
  border: 1.5px solid rgba(232,160,48,0.25);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 8px rgba(232,160,48,0.05), 0 60px 120px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.06);
}

.phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 95px; height: 30px; background: var(--bg); border-radius: 0 0 18px 18px; z-index: 2; }

/*
  ── SCREENSHOT INSTRUCTIONS ──
  1. Save your App Store screenshot to: wwwroot/images/firstfive-screenshot.png
  2. In Index.cshtml replace the phone-screen content with:
       <div class="phone-screen">
         <img src="/images/firstfive-screenshot.png" alt="First Five app" />
       </div>
  3. The image fills the phone frame automatically.
     Change object-position below to adjust which part of the
     screenshot shows: "top" = top of screen, "center" = middle.
*/
.phone-screen { position: absolute; inset: 0; overflow: hidden; background: linear-gradient(160deg, #18120a 0%, #0c0c16 55%, #090912 100%); }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }

.phone-glow { position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%); width: 180px; height: 180px; background: radial-gradient(circle, rgba(232,160,48,0.2) 0%, transparent 70%); pointer-events: none; }

/* ── HOME: APP SECTION ── */
.app-section { padding: 8rem var(--page-pad); display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; border-top: 1px solid var(--border-color); }
.app-badge { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent2); background: rgba(232,160,48,0.08); border: 1px solid rgba(232,160,48,0.2); padding: 0.3rem 0.9rem 0.3rem 0.5rem; border-radius: var(--radius-pill); margin-bottom: 1.25rem; }
.app-icon-lg { width: 44px; height: 44px; border-radius: 11px; background: linear-gradient(135deg, #d97706, #92400e); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.app-desc { font-size: 1rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 1.5rem; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.feat-icon { width: 38px; height: 38px; border-radius: var(--radius-sm); background: rgba(232,160,48,0.1); border: 1px solid rgba(232,160,48,0.18); display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 1rem; }
.feat-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 0.4rem; }
.feat-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ── HOME: HOW IT WORKS ── */
.how-section { padding: 8rem var(--page-pad); border-top: 1px solid var(--border-color); }
.how-header  { text-align: center; max-width: 500px; margin: 0 auto 4rem; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.steps::before { content: ''; position: absolute; top: 22px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--border-color), var(--border-color), transparent); }
.step { text-align: center; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--surface2); border: 1px solid rgba(232,160,48,0.3); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--accent2); margin: 0 auto 1.25rem; position: relative; z-index: 1; }
.step h4 { font-weight: 500; font-size: 0.95rem; margin-bottom: 0.4rem; }
.step p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

/* ── HOME: ABOUT ── */
.about-section { padding: 8rem var(--page-pad); border-top: 1px solid var(--border-color); display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-text p { font-size: 1rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 1.25rem; }
.about-visual { background: var(--surface); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.about-pill { display: flex; align-items: center; gap: 1rem; background: var(--surface2); border: 1px solid var(--border-color); border-radius: 14px; padding: 1rem 1.25rem; }
.about-pill-icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(232,160,48,0.1); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.about-pill h5 { font-size: 0.88rem; font-weight: 500; margin-bottom: 0.15rem; }
.about-pill p  { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* ── HOME: CTA ── */
.cta-section { margin: 0 var(--page-pad) 6rem; background: var(--surface); border: 1px solid var(--border-color); border-radius: 28px; padding: 5rem 3rem; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 70%; height: 200%; background: radial-gradient(ellipse, rgba(232,160,48,0.09) 0%, transparent 65%); pointer-events: none; }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; letter-spacing: -0.025em; margin-bottom: 1rem; position: relative; }
.cta-section h2 em { font-style: italic; font-weight: 300; color: var(--accent2); }
.cta-section > p { color: var(--text-muted); font-size: 1rem; margin: 0 auto 2.5rem; position: relative; max-width: 420px; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* =============================================================
   FIRST FIVE PAGE
   ============================================================= */

.app-hero { padding: 6rem var(--page-pad) 5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; overflow: hidden; }
.app-hero::after { content: ''; position: absolute; top: -20%; right: -10%; width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(232,160,48,0.1) 0%, transparent 65%); pointer-events: none; }
.app-hero-badge { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent2); background: rgba(232,160,48,0.08); border: 1px solid rgba(232,160,48,0.2); padding: 0.35rem 1rem 0.35rem 0.5rem; border-radius: var(--radius-pill); margin-bottom: 1.5rem; }
.app-hero-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, #d97706, #92400e); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.app-hero h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 600; line-height: 1.06; letter-spacing: -0.025em; margin-bottom: 1.25rem; }
.app-hero h1 em { font-style: italic; font-weight: 300; color: var(--accent2); }
.app-hero-sub { font-size: 1.1rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 2.5rem; max-width: 460px; }
.app-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.rating-strip { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-color); }
.stars { color: var(--accent); font-size: 1rem; letter-spacing: 0.1em; }
.rating-text { font-size: 0.82rem; color: var(--text-muted); }

/* Phone showcase */
.phone-showcase { display: flex; justify-content: center; gap: 1.5rem; align-items: flex-end; }

.phone-sm { width: 160px; height: 330px; background: var(--surface); border-radius: 32px; border: 1px solid rgba(232,160,48,0.2); overflow: hidden; position: relative; box-shadow: 0 40px 80px rgba(0,0,0,0.5); opacity: 0.7; transform: scale(0.93); }
.phone-lg { width: 200px; height: 415px; background: var(--surface); border-radius: 40px; border: 1.5px solid rgba(232,160,48,0.3); overflow: hidden; position: relative; box-shadow: 0 0 0 6px rgba(232,160,48,0.05), 0 50px 100px rgba(0,0,0,0.7); animation: floatSm 7s ease-in-out infinite; }

@keyframes floatSm { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/*
  ── SCREENSHOT INSTRUCTIONS (First Five page) ──
  Save two screenshots:
    wwwroot/images/firstfive-list.png    → task list view (left/back phone)
    wwwroot/images/firstfive-timer.png   → timer view    (right/front phone)

  In FirstFive.cshtml, replace the phone-showcase div with:
    <div class="phone-showcase reveal">
      <div class="phone-sm">
        <img src="/images/firstfive-list.png" alt="Task list" />
      </div>
      <div class="phone-lg">
        <img src="/images/firstfive-timer.png" alt="Timer" />
      </div>
    </div>
*/
.phone-sm img,
.phone-lg img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }

/* Fallback placeholder content (shown when no screenshot img is present) */
.phone-screen-inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px 14px; font-size: 11px; color: rgba(242,239,232,0.5); text-align: center; gap: 10px; }
.phone-screen-inner.dark { background: linear-gradient(160deg, #18120a 0%, #0c0c16 55%, #090912 100%); }
.phone-screen-inner.mid  { background: linear-gradient(180deg, #0f0f1a 0%, #07070d 100%); }
.mock-timer     { font-family: var(--font-display); font-size: 42px; font-weight: 600; color: var(--accent2); letter-spacing: -0.04em; line-height: 1; }
.mock-label     { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(232,160,48,0.5); }
.mock-task      { background: rgba(232,160,48,0.08); border: 1px solid rgba(232,160,48,0.18); border-radius: 10px; padding: 8px 10px; width: 100%; font-size: 10px; color: rgba(242,239,232,0.75); line-height: 1.5; text-align: left; }
.mock-btn       { width: 52px; height: 52px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 20px rgba(232,160,48,0.3); }
.mock-btn svg   { width: 20px; height: 20px; fill: #07070d; }
.mock-list-item { display: flex; align-items: center; gap: 8px; width: 100%; padding: 7px 10px; background: rgba(242,239,232,0.04); border-radius: 8px; font-size: 10px; color: rgba(242,239,232,0.7); text-align: left; }
.mock-check     { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(232,160,48,0.4); flex-shrink: 0; }
.mock-check.done { background: var(--accent); border-color: var(--accent); }

/* First Five: Features */
.features-section { padding: 8rem var(--page-pad); border-top: 1px solid var(--border-color); }
.features-header  { max-width: 520px; margin-bottom: 3.5rem; }
.features-header p { color: var(--text-muted); font-size: 1rem; line-height: 1.85; margin-top: 0.75rem; }
.features-big-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; }
.feat-big { grid-column: span 1; }
.feat-big.wide { grid-column: span 2; }
.feat-icon-lg { width: 48px; height: 48px; border-radius: 13px; background: rgba(232,160,48,0.1); border: 1px solid rgba(232,160,48,0.18); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 1.25rem; }
.feat-big h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 0.5rem; }
.feat-big p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* First Five: How it works */
.ff-how-section { padding: 8rem var(--page-pad); border-top: 1px solid var(--border-color); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.how-steps { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.how-step  { display: flex; gap: 1.25rem; align-items: flex-start; }
.how-step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--surface2); border: 1px solid rgba(232,160,48,0.3); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--accent2); flex-shrink: 0; }
.how-step h4 { font-weight: 500; font-size: 0.95rem; margin-bottom: 0.25rem; }
.how-step p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.quote-block { background: var(--surface); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 2.5rem; position: relative; overflow: hidden; }
.quote-block::before { content: '\201C'; position: absolute; top: -0.5rem; left: 1.5rem; font-family: var(--font-display); font-size: 8rem; font-weight: 600; color: rgba(232,160,48,0.08); line-height: 1; pointer-events: none; }
.quote-block p { font-family: var(--font-display); font-size: 1.4rem; font-weight: 300; font-style: italic; line-height: 1.55; color: var(--text); position: relative; }
.quote-block p em { color: var(--accent2); font-style: normal; }

/* First Five: CTA */
.app-cta { margin: 0 var(--page-pad) 6rem; background: var(--surface); border: 1px solid var(--border-color); border-radius: 28px; padding: 5rem 3rem; text-align: center; position: relative; overflow: hidden; }
.app-cta::before { content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 70%; height: 200%; background: radial-gradient(ellipse, rgba(232,160,48,0.09) 0%, transparent 65%); pointer-events: none; }
.app-cta h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; letter-spacing: -0.025em; margin-bottom: 1rem; position: relative; }
.app-cta h2 em { font-style: italic; font-weight: 300; color: var(--accent2); }
.app-cta > p { color: var(--text-muted); font-size: 1rem; margin: 0 auto 2.5rem; position: relative; max-width: 400px; }
.app-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* =============================================================
   PRIVACY PAGE
   ============================================================= */

.policy-body { max-width: 760px; margin: 0 auto; padding: 5rem var(--page-pad) 8rem; }
.policy-header { margin-bottom: 3.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border-color); }
.policy-header h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 600; letter-spacing: -0.025em; line-height: 1.08; margin-bottom: 1rem; }
.policy-header h1 em { font-style: italic; font-weight: 300; color: var(--accent2); }
.policy-meta { font-size: 0.82rem; color: var(--text-dim); }
.policy-section { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border-color); }
.policy-section:last-of-type { border-bottom: none; }
.policy-section h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; letter-spacing: -0.015em; color: var(--text); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.policy-section h2::before { content: attr(data-num); font-size: 0.7rem; font-family: var(--font-body); font-weight: 500; letter-spacing: 0.1em; color: var(--accent2); background: rgba(232,160,48,0.1); border: 1px solid rgba(232,160,48,0.2); padding: 0.2rem 0.5rem; border-radius: 6px; flex-shrink: 0; }
.policy-section p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 1rem; }
.policy-section p:last-child { margin-bottom: 0; }
.policy-section ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin: 1rem 0; }
.policy-section ul li { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; padding-left: 1.25rem; position: relative; }
.policy-section ul li::before { content: '—'; position: absolute; left: 0; color: var(--accent2); font-size: 0.8rem; }
.policy-section strong { color: var(--text); font-weight: 500; }
.policy-highlight { background: rgba(232,160,48,0.06); border: 1px solid rgba(232,160,48,0.18); border-radius: var(--radius-md); padding: 1.25rem 1.5rem; margin: 1.25rem 0; font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }
.policy-highlight strong { color: var(--accent2); }
.contact-card { background: var(--surface); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.contact-card strong { font-weight: 500; font-size: 0.95rem; }
.contact-card a { color: var(--accent2); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.contact-card a:hover { color: var(--accent); }

/* =============================================================
   CONTACT PAGE
   ============================================================= */

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; max-width: 1100px; margin: 0 auto; padding: 6rem var(--page-pad) 8rem; }
.contact-info h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 4.5vw, 4rem); font-weight: 600; letter-spacing: -0.025em; line-height: 1.07; margin-bottom: 1.25rem; }
.contact-info h1 em { font-style: italic; font-weight: 300; color: var(--accent2); }
.contact-info > p { font-size: 1rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 2.5rem; max-width: 380px; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.contact-method { display: flex; align-items: center; gap: 1rem; background: var(--surface); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 1rem 1.25rem; text-decoration: none; color: var(--text); transition: border-color 0.2s, transform 0.2s; }
.contact-method:hover { border-color: rgba(232,160,48,0.4); transform: translateX(4px); }
.contact-method-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(232,160,48,0.1); border: 1px solid rgba(232,160,48,0.18); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-method-text strong { display: block; font-size: 0.88rem; font-weight: 500; margin-bottom: 0.1rem; }
.contact-method-text span { font-size: 0.8rem; color: var(--text-muted); }
.contact-method-arrow { margin-left: auto; color: var(--text-dim); font-size: 1rem; transition: color 0.2s; }
.contact-method:hover .contact-method-arrow { color: var(--accent2); }
.response-note { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: var(--text-dim); }
.response-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; box-shadow: 0 0 6px rgba(34,197,94,0.5); }
.contact-form-wrap { background: var(--surface); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 2.5rem; position: sticky; top: 6rem; }
.form-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.form-subtitle { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: var(--surface2); border: 1px solid var(--border-color); border-radius: 10px; color: var(--text); font-family: var(--font-body); font-size: 0.9rem; font-weight: 300; padding: 0.8rem 1rem; outline: none; transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: rgba(232,160,48,0.5); box-shadow: 0 0 0 3px rgba(232,160,48,0.08); }
.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.7; }
.form-group select { cursor: pointer; color: var(--text); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23938f80' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-group select option { background: #0f0f1a; color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; margin-top: 0.5rem; padding: 0.95rem; font-size: 0.95rem; justify-content: center; }
.field-error { display: block; font-size: 0.78rem; color: #f87171; margin-top: 0.35rem; }
.form-success { text-align: center; padding: 2rem 1rem; }
.form-success-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 1.25rem; }
.form-success h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; color: var(--text-muted); }

/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 900px) {
  .app-section, .about-section, .app-hero, .ff-how-section { grid-template-columns: 1fr; gap: 3rem; }
  .features-grid, .features-big-grid { grid-template-columns: 1fr 1fr; }
  .feat-big.wide { grid-column: span 2; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form-wrap { position: static; }
  .contact-info > p { max-width: none; }
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding: 4rem var(--page-pad) 3rem; }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .phone { width: 200px; height: 415px; }
  .app-hero { padding: 4rem var(--page-pad) 3rem; text-align: center; }
  .app-hero-sub { margin-left: auto; margin-right: auto; }
  .app-hero-actions, .rating-strip { justify-content: center; }
  .app-hero-badge { margin-left: auto; margin-right: auto; }
  .phone-showcase { order: -1; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .cta-section, .app-cta { margin: 0 1rem 4rem; padding: 3rem 1.5rem; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(7,7,13,0.98); border-bottom: 1px solid var(--border-color); padding: 1rem 0; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.85rem var(--page-pad); font-size: 1rem; }
  .nav-toggle { display: flex; }
  .footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 500px) {
  .features-grid, .features-big-grid { grid-template-columns: 1fr; }
  .feat-big.wide { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .contact-layout { padding: 4rem var(--page-pad) 5rem; }
}
