/* ============================================================
   SHP WEB SERVICES — Complete Stylesheet
   ============================================================ */

:root {
  --bg-periwinkle: #e4e8f8; 
  --bg-light: #FDFDFD;
  --surface: #FFFFFF;
  --surface-warm: #FBFBFA;
  --ink: #1A1A1A;
  --ink-secondary: #3D3D3D;
  --ink-muted: #8A8A8A;
  --border: #EAEAEA;
  --border-strong: #DAD8D4;
  --accent: #1B4F8F;
  --accent-soft: rgba(27,79,143,0.06);
  --green: #2E5B32;
  --green-soft: #EDF3EC;
  --amber: #956400;
  --amber-soft: #FBF3DB;
  --shadow-soft: 0 8px 32px rgba(0,0,0,0.04);
  --shadow-lift: 0 24px 64px rgba(0,0,0,0.08);
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --spring: cubic-bezier(0.32, 0.72, 0, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--ink);
  font-size: 22px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* ============================================================
   ALTERNATION MATRIX
   ============================================================ */
section { padding: 120px 24px; width: 100%; position: relative; }
.inner { max-width: 1100px; margin: 0 auto; }

.section-periwinkle { background-color: var(--bg-periwinkle); }
.section-light { background-color: var(--bg-light); }

/* ============================================================
   NAVBAR
   ============================================================ */
nav {
  position: fixed;
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 100px;
  padding: 10px 12px 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 48px);
  max-width: 1100px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s var(--spring);
}
nav.scrolled {
  top: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lift);
}
.logo { text-decoration: none; color: var(--ink); font-family: var(--font-display); font-size: 1.1rem; }
.logo strong { font-weight: 700; color: var(--accent); }
.logo span { font-weight: 500; font-size: 0.9rem; color: var(--ink-secondary); letter-spacing: 1px; }

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a { color: var(--ink-secondary); text-decoration: none; font-size: 15px; font-weight: 500; padding: 10px 20px; border-radius: 100px; transition: all 0.2s ease; }
.nav-links a:hover { background: rgba(0,0,0,0.03); color: var(--ink); }
.nav-links .cta { background: var(--accent); color: white !important; padding: 10px 24px; font-weight: 600; }
.nav-links .cta-dot { display: inline-block; width: 8px; height: 8px; background: #4ADE80; border-radius: 50%; margin-right: 8px; }
.menu-btn { display: none; }

/* ============================================================
   MARQUEE TAPE
   ============================================================ */
.marquee {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--surface-warm);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
}
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 30s linear infinite; }
.marquee-track span { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--ink-muted); padding: 0 24px; }
.marquee-track .dot { color: var(--border-strong); padding: 0; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  padding: 220px 24px 140px;
  background-color: var(--bg-periwinkle);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 700; line-height: 1.1; letter-spacing: -2px; margin-bottom: 24px; }
.hero h1 .highlight { color: var(--accent); }
.hero-lead { font-size: 1.2rem; color: var(--ink-secondary); margin-bottom: 40px; max-width: 540px; }
.hero-actions { display: flex; gap: 16px; }

.hero-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 125%;
}
.hero-graphic img {
  width: 125%;
  max-width: 650px; 
  height: auto;
  mix-blend-mode: multiply;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { padding: 16px 28px; border-radius: 12px; font-weight: 600; font-size: 16px; text-decoration: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: all 0.3s var(--spring); border: none; }
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); }
.btn-ghost { background: var(--surface); color: var(--ink); border: 1.5px solid var(--border-strong); }
.btn-ghost:hover { border-color: var(--ink); background: var(--surface-warm); }
.btn-full { width: 100%; }

/* ============================================================
   COMMON UTILITIES
   ============================================================ */
.eyebrow { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); background: rgba(27,79,143,0.08); padding: 6px 14px; border-radius: 100px; display: inline-block; margin-bottom: 20px; }
.section-head { margin-bottom: 64px; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -1px; }
.highlight-alt { color: var(--accent); font-style: italic; }

/* ============================================================
   WHY A WEBSITE SECTION
   ============================================================ */
.why-split-container { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 64px; align-items: center; }
.why-text-block h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; letter-spacing: -1.5px; margin-bottom: 20px; }
.why-text-block p { color: var(--ink-secondary); font-size: 1.1rem; max-width: 540px; }
.why-callout-card { background: var(--surface); border: 1.5px solid var(--border); padding: 40px; border-radius: 24px; box-shadow: var(--shadow-soft); text-align: center; }
.why-callout-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: 24px; color: var(--accent); }

/* ============================================================
   WHAT WE DO SECTION
   ============================================================ */
.questions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.question-card { background: var(--surface); border: 1.5px solid var(--border); border-radius: 20px; padding: 40px 32px; transition: all 0.3s var(--spring); }
.question-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.question-card .q-graphic { font-size: 2rem; margin-bottom: 20px; }
.question-card h3 { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 12px; font-weight: 600; }
.question-card p { color: var(--ink-secondary); font-size: 15.5px; line-height: 1.6; }

/* ============================================================
   PRICING & MOCKUP BANNER SYSTEM
   ============================================================ */
.pricing-banner-row {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-soft);
}
.p-banner-title h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; }
.p-banner-title .plans-start { font-size: 14px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.pricing-banner-price { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--accent); line-height: 1; }
.pricing-banner-price span { font-size: 1.2rem; font-family: var(--font-body); color: var(--ink-secondary); }
.p-banner-middle p { color: var(--ink-secondary); font-size: 1.1rem; line-height: 1.6; border-left: 2px solid var(--border); padding-left: 32px; }
.p-banner-action { display: flex; justify-content: flex-end; }

/* Dedicated Section Tracking Blocks */
.reliability-block { text-align: center; max-width: 700px; margin: 90px auto 0; padding-top: 20px; }
.reliability-block h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 12px; font-weight: 700; letter-spacing: -0.5px; }
.reliability-block p { color: var(--ink-secondary); margin-bottom: 28px; font-size: 1.1rem; }

/* Pull Quote Elements */
.pull-quote-wrapper { margin-top: 80px; padding-top: 50px; border-top: 1px solid var(--border); width: 100%; }
.pull-quote { font-family: 'Newsreader', Georgia, serif; font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-style: italic; text-align: center; color: var(--ink); line-height: 1.45; }
.pull-quote cite { display: block; font-family: var(--font-body); font-style: normal; font-size: 14px; color: var(--ink-muted); margin-top: 20px; text-transform: uppercase; letter-spacing: 1px; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; margin-bottom: 16px; letter-spacing: -1px; }
.contact-info p { color: var(--ink-secondary); margin-bottom: 40px; }
.contact-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.contact-row .icon { width: 44px; height: 44px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); font-weight: bold; }
.contact-row .detail strong { display: block; font-size: 12px; text-transform: uppercase; color: var(--ink-muted); }
.contact-row .detail a, .contact-row .detail span { color: var(--ink-secondary); text-decoration: none; font-size: 16px; }

.form-card { background: var(--surface); border: 1.5px solid var(--border); padding: 40px; border-radius: 24px; box-shadow: var(--shadow-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 11px; font-weight: 600; color: var(--ink-muted); text-transform: uppercase; margin-bottom: 6px; }
.field input, .field textarea, .field select { width: 100%; padding: 14px 16px; background: rgba(0,0,0,0.015); border: 1.5px solid var(--border); border-radius: 10px; font-family: var(--font-body); font-size: 16px; color: var(--ink); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); background: var(--surface); }
.field textarea { min-height: 110px; resize: vertical; }
.contact-form .btn { width: 100%; }

/* ============================================================
   MODALS ARCHITECTURE
   ============================================================ */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(26,26,26,0.3); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 2000; opacity: 0; transition: opacity 0.3s ease; }
.modal-overlay.active { display: block; opacity: 1; }
.modal { display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.95); width: 92%; max-width: 780px; max-height: 85vh; background: var(--surface); border-radius: 24px; border: 1.5px solid var(--border); box-shadow: var(--shadow-lift); z-index: 2001; opacity: 0; transition: all 0.4s var(--spring); flex-direction: column; overflow: hidden; }
.modal.active { display: flex; opacity: 1; transform: translate(-50%, -50%) scale(1); }
.modal-close { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--surface); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 20px; transition: transform 0.2s ease; }
.modal-close:hover { transform: rotate(90deg); background: var(--surface-warm); }
.modal-header { padding: 40px 40px 0; }
.modal-header h2 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; letter-spacing: -0.5px; }
.modal-header p { color: var(--ink-secondary); font-size: 15px; margin-top: 4px; }
.modal-body { padding: 32px 40px 40px; overflow-y: auto; flex: 1; }

/* Compare Table Restorations */
.compare-table { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.compare-col { background: var(--surface-warm); border: 1.5px solid var(--border); border-radius: 14px; padding: 24px; }
.compare-title { font-family: var(--font-display); font-weight: 600; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1.5px solid var(--border); }
.compare-website .compare-title { color: var(--accent); }
.compare-social .compare-title { color: var(--ink-muted); }
.compare-col ul { list-style: none; }
.compare-col li { display: flex; gap: 8px; padding: 10px 0; font-size: 14.5px; color: var(--ink-secondary); border-bottom: 1px solid rgba(0,0,0,0.03); }
.compare-col li:last-child { border-bottom: none; }
.compare-col .check { color: var(--accent); font-weight: bold; }
.compare-col .cross { color: var(--ink-muted); font-weight: bold; }
.modal-footer-note { background: var(--accent-soft); border: 1px solid rgba(27,79,143,0.1); padding: 16px 20px; border-radius: 12px; font-size: 14px; color: var(--ink-secondary); line-height: 1.6; }

/* Pricing Pop-Up Layers */
.pricing-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.pricing-detail-card { background: var(--surface-warm); border: 1.5px solid var(--border); padding: 24px; border-radius: 14px; }
.pd-icon { font-size: 1.5rem; margin-bottom: 8px; }
.pricing-detail-card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }
.pd-price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--accent); margin-top: 4px; }
.pd-price span { font-size: 13px; font-family: var(--font-body); color: var(--ink-muted); }
.pricing-detail-card p { font-size: 14px; color: var(--ink-secondary); margin-top: 8px; line-height: 1.5; }
.payment-breakdown { background: var(--amber-soft); border: 1px solid rgba(149,100,0,0.1); padding: 24px; border-radius: 14px; }
.payment-breakdown h4 { font-family: var(--font-display); color: var(--amber); margin-bottom: 12px; font-weight: 600; }
.breakdown-row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; border-bottom: 1px dashed rgba(149,100,0,0.15); }
.breakdown-total { font-weight: bold; border-top: 1.5px solid var(--amber); border-bottom: none; margin-top: 8px; padding-top: 12px; color: var(--ink); }
.breakdown-after { font-size: 13px; color: var(--green); font-weight: 600; margin-top: 12px; }

/* Examples & Browser Previews */
.examples-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.example-card { background: var(--surface-warm); border: 1.5px solid var(--border); padding: 20px; border-radius: 14px; }
.browser-mockup { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin-bottom: 12px; }
.bm-bar { display: flex; gap: 4px; padding: 8px; background: rgba(0,0,0,0.03); border-bottom: 1px solid var(--border); }
.bm-bar span { width: 6px; height: 6px; background: var(--border-strong); border-radius: 50%; }
.bm-content { padding: 12px; }
.bm-hero { height: 40px; background: var(--accent-soft); border-radius: 4px; margin-bottom: 8px; }
.bm-blocks { display: flex; gap: 6px; }
.bm-block { height: 12px; background: var(--border); border-radius: 2px; width: 45%; }
.example-card h4 { font-family: var(--font-display); font-size: 15px; margin-bottom: 4px; font-weight: 600; }
.example-card p { font-size: 13px; color: var(--ink-secondary); line-height: 1.5; }
.testimonials-modal { margin-top: 16px; }
.tm-card { background: var(--green-soft); border: 1px solid rgba(46,91,50,0.1); padding: 20px; border-radius: 12px; }
.tm-card blockquote { font-family: 'Newsreader', Georgia, serif; font-style: italic; font-size: 1.1rem; line-height: 1.4; color: var(--ink); }
.tm-card cite { display: block; font-family: var(--font-body); font-style: normal; font-size: 13px; color: var(--green); margin-top: 8px; font-weight: 500; }

/* ============================================================
   SCROLL REVEALS ENGINE 
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s var(--spring), transform 0.8s var(--spring); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-periwinkle { background-color: var(--bg-periwinkle); padding: 60px 24px; border-top: 1px solid rgba(0,0,0,0.05); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
footer p { font-size: 14px; color: var(--ink-secondary); }
footer .links { display: flex; gap: 24px; }
footer .links a { font-size: 14px; color: var(--ink-secondary); text-decoration: none; font-weight: 500; }
footer .links a:hover { color: var(--accent); }

/* ============================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ============================================================ */
@media (max-width: 960px) {
  .pricing-banner-row { grid-template-columns: 1fr; gap: 24px; padding: 32px; }
  .p-banner-middle p { border-left: none; padding-left: 0; }
  .p-banner-action { justify-content: flex-start; }
  .examples-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 10px 16px; width: calc(100% - 32px); top: 48px; border-radius: 14px; }
  .nav-links { display: none; }
  .menu-btn { display: block; background: none; border: none; font-family: var(--font-mono); font-size: 14px; text-transform: uppercase; cursor: pointer; }

  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 16px; gap: 8px; box-shadow: var(--shadow-lift); }
  .nav-links.open a { width: 100%; text-align: center; padding: 12px; }

  .hero { padding: 130px 20px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .hero-graphic { order: -1; width: 100%; }
  .hero-graphic img { width: 100%; max-width: 100%; }

  .why-split-container { grid-template-columns: 1fr; gap: 32px; }
  .questions-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .compare-table, .pricing-detail-grid { grid-template-columns: 1fr; }

  section { padding: 80px 20px; }
  .section-head { margin-bottom: 48px; }
  .why-callout-card { padding: 32px 24px; }
  .question-card { padding: 32px 24px; }
  .pricing-banner-row { padding: 24px; gap: 20px; border-radius: 20px; }
  .pricing-banner-price { font-size: 2.8rem; }
  .reliability-block { margin-top: 60px; }
  .pull-quote-wrapper { margin-top: 60px; padding-top: 40px; }
  .contact-info h2 { font-size: 2.2rem; }
  .form-card { padding: 32px 24px; border-radius: 20px; }
  .modal { width: 96%; max-height: 92vh; border-radius: 20px; }
  .modal-header { padding: 32px 24px 0; }
  .modal-header h2 { font-size: 1.6rem; padding-right: 40px; }
  .modal-body { padding: 24px; }
  .modal-close { top: 16px; right: 16px; width: 40px; height: 40px; }
  .compare-table, .pricing-detail-grid { gap: 12px; }
  .compare-col, .pricing-detail-card { padding: 20px; }
  .compare-col li { font-size: 13.5px; padding: 8px 0; }
  .payment-breakdown { padding: 20px; }
  .examples-grid { gap: 12px; }
  .example-card { padding: 16px; }
  .footer-periwinkle { padding: 40px 20px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 20px; }
  footer .links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

/* ============================================================
   SMALL PHONES (<=480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; letter-spacing: -1px; }
  .hero-lead { font-size: 1.05rem; }
  .section-head h2, .why-text-block h2 { font-size: 1.8rem; }
  .pricing-banner-price { font-size: 2.4rem; }
  .reliability-block h2 { font-size: 1.7rem; }
  .pull-quote { font-size: 1.35rem; }
  .contact-info h2 { font-size: 1.9rem; }
  .btn { padding: 14px 24px; font-size: 15px; }
  .question-card h3 { font-size: 1.2rem; }
  .modal-header h2 { font-size: 1.4rem; }
  .pricing-detail-card h4 { font-size: 1rem; }
  .pd-price { font-size: 1.4rem; }
}

/* ============================================================
   DESKTOP NAVBAR — Fuller Spacing
   ============================================================ */
@media (min-width: 769px) {
  nav { padding: 12px 16px 12px 32px; }
  .nav-links { gap: 12px; }
  .nav-links a { padding: 12px 28px; font-size: 15px; }
  .nav-links .cta { padding: 12px 32px; }
  .logo { font-size: 1.2rem; }
}

/* ============================================================
   DESKTOP HERO IMAGE — Larger Presence
   ============================================================ */
@media (min-width: 769px) {
  .hero-graphic {
    width: 130%;
    justify-content: flex-end;
  }
  .hero-graphic img {
    width: 130%;
    max-width: 900px;
  }
}