/* ============================================================
   MADE-FOR-ONE BRANDS — Design System
   Brand Kit: Midnight/Deep Navy/Sand palette
   Font: Inter (Google Fonts)
   ============================================================ */

:root {
  --midnight: #0F1F2E;
  --deep-navy: #1A2E44;
  --slate: #3D5A73;
  --sand: #C4A265;
  --charcoal: #2C2C2C;
  --warm-gray: #6B7B8D;
  --cloud: #F5F6F7;
  --white: #FFFFFF;
  --sand-hover: #B8963A;
  --sand-light: rgba(196, 162, 101, 0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--deep-navy); text-decoration: none; }
a:hover { color: var(--sand); }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--deep-navy); }
h1 { font-size: 2.75rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; letter-spacing: -0.01em; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1.25rem; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--midnight { background: var(--midnight); color: var(--white); }
.section--midnight h1, .section--midnight h2, .section--midnight h3 { color: var(--white); }
.section--cloud { background: var(--cloud); }
.section--white { background: var(--white); }

/* ============================================================
   NAVIGATION — Transparent to solid on scroll
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  transition: background 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid #E8E8E8;
}
.nav--scrolled {
  background: var(--midnight);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  border-bottom-color: rgba(255,255,255,0.08);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 0 24px; height: 64px;
}

/* Logo visibility handled entirely by inline styles + JS */

.nav__links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav__links a { color: var(--charcoal); font-size: 0.9rem; font-weight: 500; transition: color 0.3s; }
.nav__links a:hover { color: var(--sand); }
.nav--scrolled .nav__links a { color: rgba(255,255,255,0.85); }
.nav--scrolled .nav__links a:hover { color: var(--white); }

.nav__cta {
  background: var(--sand); color: var(--midnight) !important;
  padding: 8px 20px; border-radius: 6px; font-weight: 600; font-size: 0.9rem;
  transition: background 0.2s;
}
.nav__cta:hover { background: var(--sand-hover); color: var(--midnight) !important; }
.nav--scrolled .nav__cta { color: var(--midnight) !important; }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); transition: 0.3s; }
.nav--scrolled .nav__hamburger span { background: var(--white); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--midnight); padding: 140px 0 100px;
  min-height: 70vh; display: flex; align-items: center;
}
.hero h1 { color: var(--white); font-size: 3rem; margin-bottom: 0.3em; max-width: 700px; }
.hero h1 .accent { color: var(--sand); }
.hero__sub { color: rgba(255,255,255,0.7); font-size: 1.15rem; max-width: 560px; margin-bottom: 2rem; line-height: 1.7; }
.hero__cta {
  display: inline-block; background: var(--sand); color: var(--midnight);
  padding: 14px 32px; border-radius: 6px; font-weight: 600; font-size: 1rem; transition: background 0.2s;
}
.hero__cta:hover { background: var(--sand-hover); color: var(--midnight); }

.page-hero { background: var(--midnight); padding: 130px 0 60px; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 0.5em; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

/* ============================================================
   HOMEPAGE SECTIONS
   ============================================================ */

/* Problem */
.problem { padding: 80px 0; }
.problem h2 { margin-bottom: 0.3em; }
.problem .highlight { color: var(--sand); font-style: italic; font-size: 1.3rem; margin-bottom: 1.5rem; }
.problem__text { max-width: 720px; color: var(--charcoal); line-height: 1.8; }

/* Solution — spacing below heading */
.solution__text { max-width: 720px; margin-top: 1.5rem; }
.solution__text .bold-stat { font-weight: 700; color: var(--deep-navy); }

/* How It Works Steps — left border accent */
.steps { margin-top: 2rem; }
.step { padding: 24px 0 24px 28px; margin-bottom: 24px; border-left: 3px solid var(--sand); }
.step:last-child { margin-bottom: 0; }
.step h3 { font-size: 1.15rem; margin-bottom: 0.5em; color: var(--deep-navy); }
.step p { color: var(--charcoal); margin-bottom: 0; font-size: 0.95rem; line-height: 1.7; }
.steps__cta { margin-top: 2.5rem; }

/* What You Get Cards — bullet list, dark premium card */
.deliverables { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.deliverable-card { border-radius: 8px; padding: 36px; }
.deliverable-card--light { background: var(--white); border: 1px solid #E0E0E0; }
.deliverable-card--dark { background: var(--midnight); color: rgba(255,255,255,0.85); }
.deliverable-card--dark h3 { color: var(--sand); }
.deliverable-card h3 {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--sand); font-weight: 600; margin-bottom: 0.3em;
}
.deliverable-card .card-stages { font-size: 1.5rem; font-weight: 700; color: var(--deep-navy); margin-bottom: 1rem; }
.deliverable-card--dark .card-stages { color: var(--white); }
.deliverable-card .intro { font-size: 0.92rem; color: var(--slate); margin-bottom: 0.8rem; }
.deliverable-card--dark .intro { color: rgba(255,255,255,0.7); }

.deliverable-list { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.deliverable-list li { padding: 6px 0 6px 18px; position: relative; font-size: 0.92rem; line-height: 1.6; }
.deliverable-list li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--sand);
}
.deliverable-list .stage-name {
  text-transform: uppercase; font-weight: 700; color: var(--deep-navy); letter-spacing: 0.02em;
}
.deliverable-card--dark .deliverable-list .stage-name { color: var(--white); }
.deliverable-card--dark .deliverable-list li { color: rgba(255,255,255,0.8); }
.deliverable-card .turnaround {
  margin-top: 1rem; padding-top: 1rem; border-top: 1px solid #E8E8E8;
  font-size: 0.88rem; color: var(--slate);
}
.deliverable-card--dark .turnaround { border-top-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.5); }

/* Pricing Cards */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 40px 0; }
.pricing-card { border-radius: 8px; padding: 40px; text-align: center; }
.pricing-card--light { background: var(--white); border: 2px solid #E8E8E8; }
.pricing-card--dark { background: var(--midnight); color: var(--white); }
.pricing-card--dark h3 { color: var(--white); }
.pricing-card h3 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.3em; }
.pricing-card .stages { color: var(--slate); font-size: 0.85rem; margin-bottom: 1rem; }
.pricing-card--dark .stages { color: rgba(255,255,255,0.6); }
.pricing-card .price { font-size: 2.8rem; font-weight: 700; color: var(--deep-navy); margin-bottom: 0.2em; }
.pricing-card--dark .price { color: var(--sand); }
.pricing-card .per { color: var(--slate); font-size: 0.9rem; margin-bottom: 1.2rem; }
.pricing-card--dark .per { color: rgba(255,255,255,0.6); }
.pricing-card .desc { font-size: 0.92rem; line-height: 1.6; margin-bottom: 1rem; }
.pricing-card--dark .desc { color: rgba(255,255,255,0.85); }
.pricing-card .includes { font-size: 0.85rem; color: var(--slate); line-height: 1.6; margin-bottom: 1rem; }
.pricing-card--dark .includes { color: rgba(255,255,255,0.6); }
.pricing-card .divider { width: 60px; height: 1px; margin: 1rem auto; }
.pricing-card--light .divider { background: #E8E8E8; }
.pricing-card--dark .divider { background: rgba(255,255,255,0.15); }
.pricing-card .client-price { font-size: 0.95rem; font-weight: 600; color: var(--sand); margin-top: 1rem; }
.pricing-card .turnaround { font-size: 0.85rem; color: var(--slate); margin-top: 0.5rem; }
.pricing-card--dark .turnaround { color: rgba(255,255,255,0.5); }
.pricing__note {
  text-align: center; color: var(--charcoal); font-size: 0.95rem;
  max-width: 700px; margin: 0 auto; line-height: 1.7;
}

/* Who It's For — breathing room */
.for-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 2rem; }
.for-col h3 { font-size: 1.15rem; margin-bottom: 1em; }
.for-col.yes h3 { color: var(--deep-navy); }
.for-col.no h3 { color: var(--slate); }
.for-col p { font-size: 0.95rem; line-height: 1.8; }

/* Stats Bar — deep navy numbers */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; padding: 40px 0; }
.stat__number { font-size: 2.8rem; font-weight: 700; color: var(--deep-navy); }
.stat__label { font-size: 0.9rem; color: var(--warm-gray); margin-top: 0.3em; }

/* Final CTA */
.final-cta { text-align: center; }
.final-cta h2 { margin-bottom: 0.8em; }
.final-cta p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; }

/* ============================================================
   HOW IT WORKS PAGE
   ============================================================ */
.hiw-stage { padding: 48px 0; border-bottom: 1px solid #E8E8E8; }
.hiw-stage:last-child { border-bottom: none; }
.hiw-stage__header { display: flex; align-items: baseline; gap: 16px; margin-bottom: 1rem; }
.hiw-stage__num { color: var(--sand); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.hiw-stage h3 { font-size: 1.35rem; }
.hiw-stage p { max-width: 720px; font-size: 0.95rem; line-height: 1.8; }
.hiw-stage .receives {
  margin-top: 1rem; padding: 16px 20px; background: var(--cloud);
  border-radius: 6px; font-size: 0.9rem; line-height: 1.7;
}
.hiw-stage .receives strong { color: var(--deep-navy); }

.callout {
  background: var(--sand-light); border-left: 4px solid var(--sand);
  padding: 24px 28px; margin: 2rem 0; border-radius: 0 6px 6px 0;
}
.callout h4 { color: var(--deep-navy); margin-bottom: 0.5em; }
.callout p { margin-bottom: 0; font-size: 0.95rem; }

.expert-review { display: flex; gap: 40px; align-items: flex-start; margin-top: 2rem; }
.expert-review__text { flex: 1; }
.expert-review__text p { font-size: 0.95rem; }

.brand-stages { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 2rem; }
.brand-stage { padding: 20px; background: var(--white); border: 1px solid #E8E8E8; border-radius: 6px; }
.brand-stage__header { display: flex; align-items: baseline; gap: 10px; margin-bottom: 0.5em; }
.brand-stage__num { color: var(--sand); font-weight: 700; font-size: 0.9rem; }
.brand-stage h4 { font-size: 1rem; }
.brand-stage p { font-size: 0.88rem; margin-bottom: 0; color: var(--charcoal); }

/* FAQ */
.faq { margin-top: 2rem; }
.faq__item { border-bottom: 1px solid #E8E8E8; }
.faq__question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; font-weight: 600; font-size: 1rem;
  color: var(--deep-navy); background: none; border: none; width: 100%;
  text-align: left; font-family: inherit;
}
.faq__question:hover { color: var(--sand); }
.faq__icon { flex-shrink: 0; font-size: 1.4rem; color: var(--sand); transition: transform 0.3s; margin-left: 16px; }
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq__item.open .faq__answer { max-height: 600px; }
.faq__answer__inner { padding: 0 0 20px; font-size: 0.95rem; line-height: 1.7; color: var(--charcoal); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-content { max-width: 720px; margin: 0 auto; padding: 60px 24px; }
.about-content h2 { margin: 2rem 0 1rem; }
.about-content p { font-size: 1.02rem; line-height: 1.8; }
.about-signoff { margin-top: 2rem; font-weight: 600; color: var(--deep-navy); font-size: 1.05rem; }

/* ============================================================
   BLOG INDEX (TILES)
   ============================================================ */
.blog-pillar { margin-bottom: 3rem; }
.blog-pillar__title {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--sand); font-weight: 600; margin-bottom: 1rem;
  padding-bottom: 0.5rem; border-bottom: 2px solid var(--sand);
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-tile {
  background: var(--white); border: 1px solid #E0E0E0; border-radius: 8px;
  padding: 28px; transition: border-color 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
}
.blog-tile:hover { border-color: var(--sand); box-shadow: 0 4px 16px rgba(0,0,0,0.06); color: inherit; }
.blog-tile__title { font-size: 1.05rem; font-weight: 700; color: var(--deep-navy); margin-bottom: 0.7em; line-height: 1.35; }
.blog-tile:hover .blog-tile__title { color: var(--sand); }
.blog-tile__preview { font-size: 0.88rem; color: var(--charcoal); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.blog-tile__meta { font-size: 0.78rem; color: var(--warm-gray); display: flex; justify-content: space-between; }

/* ============================================================
   BLOG ARTICLE
   ============================================================ */
.article { max-width: 720px; margin: 0 auto; padding: 50px 24px 60px; }
.article__meta { font-size: 0.85rem; color: var(--warm-gray); margin-bottom: 2rem; }
.article h1 { font-size: 2.2rem; margin-bottom: 1.5rem; color: var(--deep-navy); }
.article h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }
.article p { font-size: 1.02rem; line-height: 1.85; }
.article strong { color: var(--deep-navy); }
.article em { color: var(--slate); }
.article__author {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid #E8E8E8;
  font-size: 0.92rem; color: var(--charcoal); line-height: 1.6;
}
.article__author strong { color: var(--deep-navy); }
.article__cta { margin-top: 3rem; padding: 32px; background: var(--cloud); border-radius: 8px; text-align: center; }
.article__cta h3 { font-size: 1.2rem; margin-bottom: 0.5em; }
.article__cta p { font-size: 0.95rem; color: var(--charcoal); margin-bottom: 1.2rem; }

/* ============================================================
   BOOK A CALL PAGE
   ============================================================ */
.book-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  padding: 40px 0 0; align-items: flex-start;
}
.book-copy p { font-size: 0.98rem; line-height: 1.8; }
.book-copy h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
.book-embed { background: var(--cloud); border-radius: 8px; padding: 16px; min-height: 780px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--midnight); color: rgba(255,255,255,0.6); padding: 40px 0; font-size: 0.88rem; }
.footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer__brand { display: flex; flex-direction: column; gap: 6px; }
.footer__logo-svg { height: 28px; width: auto; }
.footer__logo-text { fill: rgba(255,255,255,0.8); }
.footer__logo-accent { fill: #C9A96E; }
.footer__tagline { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer__links { display: flex; gap: 24px; list-style: none; }
.footer__links a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.footer__links a:hover { color: var(--white); }
.footer__right { display: flex; align-items: center; gap: 16px; }
.footer__right a { color: rgba(255,255,255,0.6); }
.footer__right a:hover { color: var(--white); }
.icon-linkedin { display: inline-block; width: 20px; height: 20px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block; background: var(--sand); color: var(--midnight);
  padding: 14px 32px; border-radius: 6px; font-weight: 600; font-size: 1rem;
  transition: background 0.2s; text-decoration: none; border: none; cursor: pointer;
}
.btn:hover { background: var(--sand-hover); color: var(--midnight); }
.btn--outline { background: transparent; border: 2px solid var(--sand); color: var(--sand); }
.btn--outline:hover { background: var(--sand); color: var(--midnight); }

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 64px; left: 0; right: 0; background: var(--midnight);
    padding: 20px 24px; gap: 16px; border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  
  .nav__hamburger { display: flex; }
  .nav__links.open { background: var(--midnight); }
  .nav__links.open a { color: rgba(255,255,255,0.85) !important; }
  .nav__links.open a:hover { color: var(--white) !important; }
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero h1 { font-size: 2.2rem; }
  .deliverables, .pricing, .for-grid, .brand-stages { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 32px; }
  .book-layout { grid-template-columns: 1fr; gap: 32px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; flex-wrap: wrap; }
  .section { padding: 60px 0; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .pricing-card { padding: 28px 20px; }
  .pricing-card .price { font-size: 2.2rem; }
}

/* Mobile sticky CTA removed */
