/*
Theme Name: WP Site Designs
Theme URI: https://wpsitedesigns.com
Author: Ron Fletcher
Author URI: https://wpsitedesigns.com
Description: Custom theme for WP Site Designs - professional WordPress web design for small businesses in Greenwood, Indiana.
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: wpsitedesigns
*/

/* ============================================================
   FONTS
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=DM+Sans:wght@300;400;500&display=swap');

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --blue-50:  #E6F1FB;
  --blue-100: #B5D4F4;
  --blue-200: #85B7EB;
  --blue-400: #378ADD;
  --blue-600: #185FA5;
  --blue-800: #0C447C;
  --blue-900: #042C53;

  --gray-50:  #F8F8F7;
  --gray-100: #F1EFE8;
  --gray-200: #D3D1C7;
  --gray-400: #888780;
  --gray-600: #5F5E5A;
  --gray-900: #1A1A18;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --border: 0.5px solid rgba(0,0,0,0.12);
  --border-med: 0.5px solid rgba(0,0,0,0.2);

  --max-width: 1100px;
  --gutter: 1.5rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-900);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

/* ============================================================
   UTILITY CLASSES
============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.tag-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-800);
  background: var(--blue-50);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.section {
  padding: 5rem 0;
  border-top: var(--border);
}

.section-header { max-width: 600px; margin-bottom: 3rem; }

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 0.95rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.75;
}

.btn-primary {
  display: inline-block;
  background: var(--blue-600);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--blue-800); text-decoration: none; color: #fff; }

.btn-ghost {
  display: inline-block;
  color: var(--blue-600);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--blue-600);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--blue-800); border-color: var(--blue-800); text-decoration: none; }

/* ============================================================
   SITE HEADER & NAV
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.site-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.site-logo span { color: var(--blue-600); }
.site-logo:hover { text-decoration: none; }

.primary-nav { display: flex; align-items: center; gap: 2.5rem; }

.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.primary-nav ul a {
  font-size: 0.875rem;
  color: var(--gray-600);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.15s;
}
.primary-nav ul a:hover { color: var(--gray-900); }
.primary-nav ul .current-menu-item a { color: var(--gray-900); font-weight: 500; }

.nav-cta {
  font-size: 0.875rem;
  background: var(--blue-600);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: var(--radius-md);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--blue-800); text-decoration: none; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: var(--border-med);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  color: var(--gray-900);
  font-size: 1.1rem;
  line-height: 1;
}

/* ============================================================
   SITE FOOTER
============================================================ */
.site-footer {
  border-top: var(--border);
  padding: 2.5rem 0;
  margin-top: 0;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  text-decoration: none;
}
.footer-logo span { color: var(--blue-600); }

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-decoration: none;
}
.footer-links a:hover { color: var(--gray-600); }

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ============================================================
   SKIP LINK
============================================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--blue-600);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   HERO - HOMEPAGE
============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0 4.5rem;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 1.2rem;
  display: block;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue-600);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-btns { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }

/* Hero visual card */
.hero-visual { position: relative; }

.hero-card {
  background: #fff;
  border: var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
}

.hero-card-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--blue-600);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
}

.hero-card-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.hero-preview {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: var(--border);
  overflow: hidden;
}

.hero-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-preview-placeholder {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 80%;
}

.preview-bar {
  height: 10px;
  background: var(--gray-200);
  border-radius: 4px;
}
.preview-bar.wide  { width: 90%; }
.preview-bar.med   { width: 65%; }
.preview-bar.short { width: 45%; }
.preview-bar.accent{ background: var(--blue-100); width: 40%; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-stat {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-600);
  display: block;
  line-height: 1.2;
}

.hero-stat-lbl {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--gray-600);
  margin-top: 3px;
}

/* ============================================================
   PROCESS STEPS
============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  padding: 2rem 1.75rem;
  border: var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--blue-50);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
}

.step-card h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.step-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.65;
}

.step-connector {
  position: absolute;
  top: 50%;
  right: -13px;
  width: 26px;
  height: 1px;
  background: var(--gray-200);
  z-index: 1;
}

/* ============================================================
   PORTFOLIO CAROUSEL
============================================================ */
.carousel-outer { overflow: hidden; }

.carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card {
  flex: 0 0 calc(33.333% - 0.84rem);
  border: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}

.work-card-img {
  aspect-ratio: 16 / 9;
  background: var(--gray-100);
  border-bottom: var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--gray-400);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card-body { padding: 1.25rem; }

.work-card-cat {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 0.35rem;
  display: block;
}

.work-card-body h3 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.work-card-body p {
  font-size: 0.8rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.work-card-link {
  font-size: 0.8rem;
  color: var(--blue-600);
  font-weight: 500;
  text-decoration: none;
}
.work-card-link:hover { text-decoration: underline; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.carousel-dots { display: flex; gap: 6px; align-items: center; }

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.25s;
}

.carousel-dot.active {
  background: var(--blue-600);
  width: 20px;
  border-radius: 4px;
}

.carousel-counter {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--gray-400);
}

.carousel-nav { display: flex; gap: 8px; }

.carousel-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  border: var(--border-med);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray-900);
  transition: background 0.15s;
}
.carousel-btn:hover { background: var(--gray-100); }
.carousel-btn:disabled { opacity: 0.3; cursor: default; }

/* ============================================================
   SERVICES GRID
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card {
  padding: 2rem;
  border: var(--border);
  border-radius: var(--radius-lg);
}

.service-card.featured {
  border-color: var(--blue-200);
  background: var(--blue-50);
}

.service-card-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--blue-600);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.service-icon {
  width: 38px;
  height: 38px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-card.featured .service-icon { background: var(--blue-100); }

.service-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue-600);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 0.35rem;
  color: var(--gray-900);
}

.service-price {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--blue-600);
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: block;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.65;
}

/* ============================================================
   SOCIAL PROOF / STATS BAR
============================================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 3.5rem 0;
  border-top: var(--border);
  border-bottom: var(--border);
}

.stat-item { text-align: center; padding: 1rem; }

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--blue-600);
  display: block;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.5;
}

/* ============================================================
   CTA BAND
============================================================ */
.cta-band {
  background: var(--blue-50);
  border-radius: var(--radius-xl);
  padding: 4rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  margin: 5rem 0;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  font-size: 0.95rem;
  color: var(--blue-800);
  font-weight: 300;
  line-height: 1.65;
}

.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.cta-detail {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--blue-800);
  text-align: right;
  font-weight: 300;
  line-height: 1.5;
}

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero {
  padding: 4rem 0 3rem;
  border-bottom: var(--border);
}

.page-hero .tag-label { margin-bottom: 1rem; }

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  max-width: 700px;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.75;
  max-width: 620px;
}

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding: 4rem 0;
}

.about-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: var(--border);
}

.about-img img { width: 100%; display: block; }

.about-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-list {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-list li {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 300;
  padding-left: 1.25rem;
  position: relative;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-400);
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  padding: 4rem 0;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 0.95rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-list li {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 300;
}

.contact-list strong {
  color: var(--gray-900);
  font-weight: 500;
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.process-steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.process-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-50);
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--blue-600);
  margin-top: 2px;
}

.process-step-body h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
  color: var(--gray-900);
}

.process-step-body p {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.6;
}

/* WPForms wrapper */
.contact-form-wrap {
  background: var(--gray-50);
  border: var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.contact-form-wrap h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* ============================================================
   HOSTING PAGE
============================================================ */
.hosting-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.hosting-hero-grid h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.hosting-hero-grid p {
  font-size: 0.95rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.hosting-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.feature-card {
  padding: 1.75rem;
  border: var(--border);
  border-radius: var(--radius-lg);
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue-600);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 0.4rem;
  color: var(--gray-900);
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.6;
}

.affiliate-note {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-style: italic;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: var(--border);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}

.faq-item {
  border-top: var(--border);
}

.faq-item:last-child { border-bottom: var(--border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-900);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--blue-600);
  transition: transform 0.25s;
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }

/* ============================================================
   SERVICES PAGE (full)
============================================================ */
.services-full .services-grid {
  margin-bottom: 4rem;
}

.services-includes {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: var(--border);
}

.services-includes h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}

.services-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.services-includes ul li {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 300;
  padding-left: 1rem;
  position: relative;
}

.services-includes ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-200);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero h1 { font-size: 2.2rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
  .step-connector { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hosting-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band-actions { align-items: flex-start; }
  .cta-detail { text-align: left; }
  .work-card { flex: 0 0 calc(80vw); }
}

@media (max-width: 640px) {
  :root { --gutter: 1.1rem; }
  .primary-nav ul { display: none; }
  .menu-toggle { display: block; }
  .primary-nav.open ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: var(--border);
    padding: 1.5rem var(--gutter);
    gap: 1.25rem;
    z-index: 99;
  }
  .features-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 2.5rem 1.75rem; }
  .section { padding: 3rem 0; }
  .hero { padding: 3rem 0; }
}
