/* ==========================================================================
   Go Pro Graphics — Global Stylesheet
   Brand: navy authority + gold energy + electric blue trust
   Static / mobile-first / Cloudflare Pages ready
   ========================================================================== */

/* ---- Design Tokens ---------------------------------------------------- */
:root {
  /* Core palette */
  --navy-900: #071634;
  --navy-800: #0a1f44;
  --navy-700: #0e2a5c;
  --navy-600: #14356f;
  --navy-500: #1d4488;
  --ink: #0b1220;

  --gold-500: #f5a623;
  --gold-400: #ffb734;
  --gold-600: #d98a10;

  --blue-500: #2f9dff;
  --blue-400: #57b0ff;
  --blue-600: #1c7fdc;

  --green-500: #2ec26b;
  --purple-500: #8b5cf6;
  --red-500: #e0463c;

  --white: #ffffff;
  --paper: #f7f9fc;
  --paper-2: #eef2f8;
  --line: #e2e8f2;
  --muted: #5b6b85;
  --muted-2: #8a99b3;
  --text: #1a2540;

  /* Typography */
  --font-display: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --maxw: 1200px;
  --gap: clamp(1rem, 2.5vw, 2rem);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(7, 22, 52, 0.08);
  --shadow: 0 12px 34px rgba(7, 22, 52, 0.14);
  --shadow-lg: 0 26px 60px rgba(7, 22, 52, 0.28);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blue-600); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-500); }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; color: var(--navy-800); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { color: var(--muted); }
:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 3px; border-radius: 4px; }

/* ---- Layout helpers --------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--navy { background: var(--navy-800); color: #cfe0ff; position: relative; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--paper { background: var(--paper); }
.center { text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem;
  color: var(--blue-500); margin-bottom: 0.6rem;
}
.section--navy .eyebrow { color: var(--gold-400); }
.section-head { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.section-head p { font-size: 1.05rem; }
.grid { display: grid; gap: var(--gap); }
.text-gold { color: var(--gold-400); }
.text-blue { color: var(--blue-500); }

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.98rem;
  padding: 0.85rem 1.5rem; border-radius: var(--radius-sm); border: 2px solid transparent;
  cursor: pointer; transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold-500); color: var(--navy-900); box-shadow: 0 8px 22px rgba(245, 166, 35, 0.35); }
.btn--gold:hover { background: var(--gold-400); color: var(--navy-900); }
.btn--blue { background: var(--blue-500); color: #fff; box-shadow: 0 8px 22px rgba(47, 157, 255, 0.35); }
.btn--blue:hover { background: var(--blue-400); color: #fff; }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }
.btn--ghost { background: var(--paper-2); color: var(--navy-700); }
.btn--ghost:hover { background: var(--line); color: var(--navy-800); }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---- Header / Nav ----------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 22, 52, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 74px; }
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: #fff; letter-spacing: -0.02em; }
.brand:hover { color: #fff; }
.brand .brand-mark { width: 34px; height: 34px; flex: none; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { color: #d4e0f7; font-size: 0.96rem; font-weight: 500; position: relative; padding-block: 0.4rem; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--gold-500); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 0.8rem; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px;
  flex-direction: column; justify-content: center; gap: 5px; padding: 0;
}
.nav-toggle span { display: block; height: 2px; width: 24px; background: #fff; border-radius: 2px; transition: var(--transition); margin-inline: auto; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--navy-900); padding: 1rem 1.4rem 1.6rem; gap: 0.2rem; border-bottom: 1px solid rgba(255,255,255,0.1);
    max-height: 0; overflow: hidden; transition: max-height var(--transition), padding var(--transition);
    padding-block: 0;
  }
  .nav-links.open { max-height: 480px; padding-block: 1rem 1.6rem; }
  .nav-links a { padding: 0.75rem 0.4rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-cta .btn--nav-hide { display: none; }
}

/* ---- Hero ------------------------------------------------------------- */
.hero {
  background:
    radial-gradient(1100px 500px at 78% -8%, rgba(47,157,255,0.20), transparent 60%),
    radial-gradient(800px 460px at 8% 110%, rgba(245,166,35,0.14), transparent 55%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: #dbe6fb; position: relative; overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; padding-block: clamp(3rem, 6vw, 5.5rem); }
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero h1 .l1 { display: block; }
.hero-sub { font-size: 1.12rem; max-width: 42ch; color: #b9c9e8; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.8rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.2rem 1.6rem; }
.hero-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: #cdd9f2; font-weight: 500; }
.hero-badge svg { width: 18px; height: 18px; color: var(--gold-400); flex: none; }

/* Hero collage */
.hero-collage { position: relative; min-height: 420px; }
.mock {
  position: absolute; border-radius: 12px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 14px;
  color: #fff; overflow: hidden; font-family: var(--font-display);
  border: 1px solid rgba(255,255,255,0.12);
}
.mock::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.55)); }
.mock > * { position: relative; z-index: 1; }
.mock .tag { font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; font-weight: 600; }
.mock .ttl { font-size: 0.98rem; font-weight: 700; line-height: 1.1; }
.mock-1 { top: 2%; left: 0; width: 45%; height: 58%; background: linear-gradient(150deg, #14356f, #b3202a); transform: rotate(-4deg); }
.mock-2 { top: 0; right: 2%; width: 46%; height: 44%; background: linear-gradient(160deg, #23324f, #5a6d86); transform: rotate(3deg); }
.mock-3 { bottom: 4%; right: 6%; width: 42%; height: 40%; background: linear-gradient(150deg, #1b2a4a, #37507d); transform: rotate(-2deg); }
.mock-4 { bottom: 0; left: 6%; width: 40%; height: 36%; background: linear-gradient(150deg, #0e2a5c, #2f9dff); transform: rotate(4deg); }
.mock-5 { bottom: 26%; left: 30%; width: 34%; height: 30%; background: linear-gradient(150deg, #3a2140, #7a2f6b); transform: rotate(-6deg); z-index: 2; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-collage { min-height: 340px; margin-top: 1rem; }
}
@media (max-width: 480px) {
  .hero-collage { min-height: 280px; }
  .mock .ttl { font-size: 0.8rem; }
}

/* ---- Services grid ---------------------------------------------------- */
.svc-grid { grid-template-columns: repeat(6, 1fr); }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.2rem; text-align: center; transition: var(--transition);
  display: flex; flex-direction: column; align-items: center;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-ic { width: 46px; height: 46px; color: var(--blue-500); margin-bottom: 0.9rem; }
.svc-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.svc-card p { font-size: 0.88rem; margin-bottom: 1rem; flex: 1; }
.svc-more { font-family: var(--font-display); font-weight: 600; font-size: 0.86rem; color: var(--blue-600); display: inline-flex; align-items: center; gap: 0.3rem; }
.svc-more svg { width: 15px; height: 15px; transition: transform var(--transition); }
.svc-card:hover .svc-more svg { transform: translateX(4px); }
@media (max-width: 1080px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- Packages --------------------------------------------------------- */
.pkg-grid { grid-template-columns: repeat(4, 1fr); }
.pkg {
  background: #fff; border-radius: var(--radius); padding: 1.7rem 1.4rem; color: var(--text);
  display: flex; flex-direction: column; position: relative; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); transition: var(--transition);
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pkg-badge { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 1rem; color: #fff; }
.pkg-badge svg { width: 24px; height: 24px; }
.pkg--blue .pkg-badge { background: var(--blue-500); }
.pkg--green .pkg-badge { background: var(--green-500); }
.pkg--gold .pkg-badge { background: var(--gold-500); }
.pkg--purple .pkg-badge { background: var(--purple-500); }
.pkg h3 { font-size: 1.18rem; margin-bottom: 0.4rem; }
.pkg .price { font-family: var(--font-display); font-weight: 700; font-size: 2.1rem; line-height: 1; margin-bottom: 1.1rem; }
.pkg--blue .price { color: var(--blue-500); }
.pkg--green .price { color: var(--green-500); }
.pkg--gold .price { color: var(--gold-600); }
.pkg--purple .price { color: var(--purple-500); }
.pkg .price small { font-size: 0.9rem; font-weight: 500; color: var(--muted-2); }
.pkg .price .from { display: block; font-size: 0.72rem; font-weight: 500; color: var(--muted-2); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.2rem; }
.pkg ul { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.4rem; flex: 1; }
.pkg li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.9rem; color: var(--muted); }
.pkg li svg { width: 16px; height: 16px; color: var(--green-500); flex: none; margin-top: 3px; }
@media (max-width: 1000px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pkg-grid { grid-template-columns: 1fr; } }

/* ---- Portfolio -------------------------------------------------------- */
.work-grid { grid-template-columns: repeat(6, 1fr); }
.work-grid--lg { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.work-item { text-align: center; }
.work-thumb {
  aspect-ratio: 4 / 3; border-radius: var(--radius-sm); overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center; padding: 12px; color: #fff;
  font-family: var(--font-display); font-weight: 800; text-align: center; box-shadow: var(--shadow-sm);
  transition: var(--transition); font-size: 0.95rem; line-height: 1.1; letter-spacing: 0.01em;
}
.work-grid--lg .work-thumb { aspect-ratio: 3 / 2; font-size: 1.3rem; }
.work-item:hover .work-thumb { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow); }
.work-cap { font-family: var(--font-display); font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-2); margin-top: 0.7rem; }
.g-social { background: linear-gradient(150deg, #0e2a5c, #2f9dff); }
.g-event { background: linear-gradient(150deg, #3a1a2e, #b02a5b); }
.g-banner { background: linear-gradient(150deg, #0b1f45, #14356f); }
.g-church { background: linear-gradient(150deg, #101d3a, #33507f); }
.g-political { background: linear-gradient(150deg, #7a1f24, #c33); }
.g-brand { background: linear-gradient(150deg, #23324f, #6b7a92); }
.g-book { background: linear-gradient(150deg, #1a2f4d, #3f6f9c); }
.g-flyer { background: linear-gradient(150deg, #2a1a40, #7a3fb0); }
.g-gold { background: linear-gradient(150deg, #7a5410, #f5a623); color: var(--navy-900); }
@media (max-width: 1000px) { .work-grid { grid-template-columns: repeat(3, 1fr); } .work-grid--lg { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .work-grid { grid-template-columns: repeat(2, 1fr); } .work-grid--lg { grid-template-columns: 1fr; } }

/* ---- Trust / testimonials -------------------------------------------- */
.trust-grid { grid-template-columns: 1fr 1fr 1fr 1fr; align-items: stretch; gap: 1.4rem; }
.testimonial { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 1.5rem; }
.testimonial .quote-mark { font-family: var(--font-display); font-size: 2.4rem; line-height: 0.6; color: var(--gold-500); }
.testimonial p { color: #d3def5; font-size: 0.96rem; margin: 0.6rem 0 1rem; }
.testimonial .who { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 0.9rem; }
.testimonial .role { font-size: 0.8rem; color: var(--muted-2); }
.stars { color: var(--gold-400); letter-spacing: 2px; font-size: 0.9rem; margin-top: 0.6rem; }
.trust-lead h2 { margin-bottom: 0.8rem; }
.trust-lead p { color: #c0cff0; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .trust-grid { grid-template-columns: 1fr; } }

/* ---- Feature strip / value props ------------------------------------- */
.feature-row { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; justify-content: center; }
.feature-pill { display: flex; align-items: center; gap: 0.7rem; font-family: var(--font-display); font-weight: 600; color: #eaf1ff; font-size: 0.95rem; }
.feature-pill svg { width: 22px; height: 22px; color: var(--gold-400); flex: none; }

/* ---- Process steps ---------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; position: relative; }
.step { text-align: center; padding: 0 0.5rem; position: relative; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-500); color: #fff; font-family: var(--font-display); font-weight: 700; display: grid; place-items: center; margin: 0 auto 0.9rem; box-shadow: 0 6px 16px rgba(47,157,255,0.4); }
.step-ic { width: 34px; height: 34px; color: var(--navy-600); margin: 0 auto 0.7rem; }
.step h3 { font-size: 1.02rem; margin-bottom: 0.35rem; }
.step p { font-size: 0.87rem; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 20px; left: 62%; width: 76%; border-top: 2px dashed var(--line); z-index: -1; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; } .step:not(:last-child)::after { display: none; } }
@media (max-width: 420px) { .steps { grid-template-columns: 1fr; } }

/* ---- CTA band --------------------------------------------------------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-800), var(--navy-600));
  border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3.2rem); text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 260px at 85% 0%, rgba(245,166,35,0.22), transparent 60%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 0.7rem; }
.cta-band p { color: #c8d6f2; max-width: 52ch; margin: 0 auto 1.6rem; }
.cta-actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* ---- Page hero (interior) -------------------------------------------- */
.page-hero {
  background:
    radial-gradient(800px 380px at 82% -20%, rgba(47,157,255,0.22), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #cfdcf6; padding-block: clamp(2.6rem, 5vw, 4rem);
}
.page-hero h1 { color: #fff; margin-bottom: 0.7rem; }
.page-hero p { color: #b9c9e8; max-width: 60ch; font-size: 1.08rem; }
.breadcrumbs { font-size: 0.82rem; color: #9db0d6; margin-bottom: 0.9rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.breadcrumbs a { color: #cfe0ff; }
.breadcrumbs span { color: #6d82ab; }

/* ---- Prose / rich content -------------------------------------------- */
.prose { max-width: 760px; }
.prose h2 { margin: 2.2rem 0 0.8rem; }
.prose h3 { margin: 1.6rem 0 0.6rem; color: var(--navy-700); }
.prose p { margin-bottom: 1.1rem; color: var(--text); }
.prose ul.bullets { margin: 0 0 1.2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.prose ul.bullets li { position: relative; padding-left: 1.5rem; color: var(--text); }
.prose ul.bullets li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500); }

/* ---- Info cards / feature cards -------------------------------------- */
.info-grid { grid-template-columns: repeat(3, 1fr); }
.info-grid--2 { grid-template-columns: repeat(2, 1fr); }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; transition: var(--transition); }
.info-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.info-card .ic { width: 40px; height: 40px; color: var(--blue-500); margin-bottom: 0.9rem; }
.info-card h3 { margin-bottom: 0.5rem; }
.info-card p { font-size: 0.95rem; }
@media (max-width: 900px) { .info-grid { grid-template-columns: 1fr; } .info-grid--2 { grid-template-columns: 1fr; } }

/* ---- FAQ / accordion -------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 0.8rem; background: #fff; overflow: hidden; }
.faq summary { cursor: pointer; padding: 1.1rem 1.3rem; font-family: var(--font-display); font-weight: 600; color: var(--navy-800); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--blue-500); transition: var(--transition); line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 1.3rem 1.2rem; }
.faq details p { color: var(--muted); font-size: 0.96rem; }

/* ---- Pricing table ---------------------------------------------------- */
.price-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.6rem; display: flex; flex-direction: column; position: relative; transition: var(--transition); }
.price-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.price-card.featured { border: 2px solid var(--gold-500); box-shadow: var(--shadow); }
.price-card .flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold-500); color: var(--navy-900); font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; padding: 0.3rem 0.9rem; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.06em; }
.price-card h3 { margin-bottom: 0.3rem; }
.price-card .amt { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; color: var(--navy-800); line-height: 1; margin: 0.6rem 0 0.3rem; }
.price-card .amt small { font-size: 1rem; color: var(--muted-2); font-weight: 500; }
.price-card .note { font-size: 0.85rem; color: var(--muted-2); margin-bottom: 1.3rem; }
.price-card ul { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.6rem; flex: 1; }
.price-card li { display: flex; gap: 0.5rem; font-size: 0.92rem; color: var(--muted); }
.price-card li svg { width: 16px; height: 16px; color: var(--green-500); flex: none; margin-top: 3px; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

/* ---- Contact / forms -------------------------------------------------- */
.contact-grid { grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; color: var(--navy-700); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 0.9rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.98rem; color: var(--text); background: var(--paper); transition: var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 3px rgba(47,157,255,0.15); }
.field textarea { resize: vertical; min-height: 130px; }
.contact-detail { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 1.3rem; }
.contact-detail .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--paper-2); color: var(--blue-600); display: grid; place-items: center; flex: none; }
.contact-detail .ic svg { width: 20px; height: 20px; }
.contact-detail h4 { font-family: var(--font-display); font-size: 0.95rem; color: var(--navy-800); margin-bottom: 0.15rem; }
.contact-detail p { font-size: 0.92rem; margin: 0; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---- Blog / resources cards ------------------------------------------ */
.post-grid { grid-template-columns: repeat(3, 1fr); }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: var(--transition); }
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.post-cover { aspect-ratio: 16/9; display: flex; align-items: flex-end; padding: 1rem; color: #fff; font-family: var(--font-display); font-weight: 700; }
.post-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.post-body .meta { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue-500); font-weight: 600; margin-bottom: 0.5rem; }
.post-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.post-body p { font-size: 0.9rem; flex: 1; margin-bottom: 1rem; }
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr; } }

/* ---- Stat band -------------------------------------------------------- */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gold-400); line-height: 1; }
.stat .l { font-size: 0.88rem; color: #bccbea; margin-top: 0.3rem; }
@media (max-width: 640px) { .stat-row { grid-template-columns: 1fr 1fr; gap: 1.6rem 1rem; } }

/* ---- Footer ----------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: #a9bbdc; padding-block: clamp(2.6rem, 5vw, 3.6rem) 1.6rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand { margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.92rem; color: #93a6cb; max-width: 32ch; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; margin-bottom: 1rem; }
.footer-col a { display: block; color: #a9bbdc; font-size: 0.92rem; padding: 0.28rem 0; }
.footer-col a:hover { color: var(--gold-400); }
.social-row { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social-row a { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #cdd9f2; }
.social-row a:hover { background: var(--gold-500); color: var(--navy-900); }
.social-row svg { width: 18px; height: 18px; }
.footer-contact { font-size: 0.9rem; line-height: 1.9; color: #a9bbdc; margin-top: 1rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1.4rem; font-size: 0.84rem; color: #7e91b7; }
.footer-bottom a { color: #9db0d6; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; } }

/* ---- For-sale banner (domain demo) ----------------------------------- */
.sale-banner {
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900); text-align: center; font-family: var(--font-display);
  font-weight: 600; font-size: 0.9rem; padding: 0.55rem 1rem; position: relative; z-index: 101;
}
.sale-banner a { color: var(--navy-900); text-decoration: underline; font-weight: 700; }

/* ---- Utility ---------------------------------------------------------- */
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.8rem; }
.mb-0 { margin-bottom: 0; }
.hide { display: none !important; }
/* Reveal is a progressive enhancement: only hidden when JS is active (html.js).
   Without JS, all content is visible by default. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .svc-card:hover, .pkg:hover, .work-item:hover .work-thumb { transform: none; }
}
