/* ============================================================
   Fast Pages — Main Stylesheet
   ============================================================ */

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

/* ============================================================
   Variables
   ============================================================ */
:root {
  --primary:       #2B4C6B;
  --primary-dark:  #1A3249;
  --primary-light: #E6EDF4;
  --accent:        #B8975A;
  --accent-dark:   #9A7A40;
  --accent-light:  #F5ECD8;
  --sage:          #5A8A7A;
  --sage-light:    #E6F0ED;
  --bg:            #FAFAF7;
  --bg-alt:        #F2EFE9;
  --text:          #1C1C2A;
  --text-mid:      #4A4A5A;
  --text-light:    #7A7A8A;
  --border:        #E0DAD1;
  --white:         #FFFFFF;

  --shadow-sm: 0 2px 8px rgba(43,76,107,0.08);
  --shadow-md: 0 6px 24px rgba(43,76,107,0.12);
  --shadow-lg: 0 12px 48px rgba(43,76,107,0.18);

  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 24px;

  --font-h: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Inter', -apple-system, sans-serif;

  --nav-h: 72px;
  --max-w: 1100px;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

/* ============================================================
   Typography
   ============================================================ */
h1,h2,h3,h4,h5 { font-family: var(--font-h); font-weight: 500; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-mid); line-height: 1.78; }

.eyebrow {
  display: block;
  font-family: var(--font-b);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section        { padding: 88px 0; }
.section-alt    { background: var(--bg-alt); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p  { font-size: 1.05rem; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo { text-decoration: none; line-height: 1.2; }
.nav-logo-name {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: .02em;
}
.nav-logo-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 13px;
  border-radius: var(--radius-s);
  transition: all .2s;
}
.nav-links a:hover {
  color: var(--primary);
  background: var(--primary-light);
}
.nav-links .nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 9px 20px;
  margin-left: 6px;
  border-radius: var(--radius-s);
}
.nav-links .nav-cta:hover { background: var(--accent-dark); }

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

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-s);
  font-family: var(--font-b);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(43,76,107,.28);
}
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-1px); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 96px 0 88px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text .eyebrow { color: rgba(255,255,255,.55); }
.hero-text h1 { color: var(--white); margin-bottom: 22px; }
.hero-text p  { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 36px; max-width: 460px; }
.hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-m);
  padding: 20px 28px;
  margin-bottom: 32px;
}
.hero-price-amount {
  font-family: var(--font-h);
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}
.hero-price-label {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  font-weight: 400;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-l);
  padding: 36px;
  color: var(--white);
}
.hero-visual-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-example {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hero-example:last-child { border-bottom: none; }
.hero-example-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-example a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  transition: color .2s;
}
.hero-example a:hover { color: var(--white); }
.hero-example-type {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  margin-left: auto;
}

/* ============================================================
   What's included
   ============================================================ */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.include-card {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.include-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.include-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
}
.icon-primary { background: var(--primary-light); }
.icon-accent  { background: var(--accent-light); }
.icon-sage    { background: var(--sage-light); }
.include-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.include-card p  { font-size: .93rem; }

/* ============================================================
   Process
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  position: relative;
}
.process-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: .95rem;
}
.process-step h4 { margin-bottom: 8px; font-size: 1rem; }
.process-step p  { font-size: .85rem; }

/* ============================================================
   Examples
   ============================================================ */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.example-card {
  background: var(--white);
  border-radius: var(--radius-m);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.example-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.example-preview {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: .02em;
}
.example-body { padding: 24px 28px; }
.example-body h3 { font-size: 1.2rem; margin-bottom: 6px; }
.example-body p  { font-size: .88rem; margin-bottom: 14px; }
.example-link {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--accent);
  text-transform: uppercase;
}
.example-link:hover { color: var(--accent-dark); }

/* ============================================================
   Pricing
   ============================================================ */
.pricing-box {
  background: var(--white);
  border-radius: var(--radius-l);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  max-width: 620px;
  margin: 0 auto;
  padding: 52px 56px;
  text-align: center;
}
.pricing-amount {
  font-family: var(--font-h);
  font-size: 4.5rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-note { font-size: .85rem; color: var(--text-light); margin-bottom: 32px; }
.pricing-features {
  text-align: left;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  margin-bottom: 36px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .93rem;
  color: var(--text-mid);
}
.pricing-feature:last-child { border-bottom: none; }
.pricing-check {
  color: var(--sage);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-addon {
  background: var(--accent-light);
  border: 1px solid rgba(184,151,90,.25);
  border-radius: var(--radius-s);
  padding: 16px 20px;
  text-align: left;
  margin-bottom: 32px;
}
.pricing-addon-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 4px;
}
.pricing-addon p { font-size: .88rem; }

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 88px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 500px; margin: 0 auto 36px; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--primary-dark);
  padding: 48px 0 28px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.45); margin-bottom: 24px; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 32px; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.3); border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .includes-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .examples-grid { grid-template-columns: 1fr; }
  .pricing-box { padding: 36px 28px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px; gap: 4px; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-btns { flex-direction: column; }
}
