/* ==========================================================================
   Harmon & Co — Global Styles
   ========================================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ink: #0a0f1a;
  --slate: #2d3748;
  --muted: #64748b;
  --sand: #f8f6f3;
  --warm: #f0ece4;
  --accent: #1a3a5c;
  --accent-light: #2d5a8e;
  --gold: #c8956c;
  --gold-light: #dab89a;
  --white: #ffffff;
  --danger: #dc2626;
  --success: #16a34a;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--slate);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--accent-light) !important; }
.nav-cta.active::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==========================================================================
   SHARED COMPONENTS
   ========================================================================== */

.section-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover { background: var(--accent-light); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover { background: var(--gold-light); color: var(--ink); }

/* ==========================================================================
   PAGE HEADER (for inner pages)
   ========================================================================== */

.page-header {
  padding: 9rem 2rem 4rem;
  background: var(--sand);
}

.page-header-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.page-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -1.5px;
  max-width: 700px;
  margin-bottom: 1.25rem;
}

.page-header p {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 560px;
  line-height: 1.7;
}

/* ==========================================================================
   HOME PAGE — HERO
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -2px;
  max-width: 800px;
  margin-bottom: 2rem;
}

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

.hero-sub {
  font-size: 1.2rem;
  color: var(--slate);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-top: 0.2rem;
}

/* ==========================================================================
   HOME PAGE — PROBLEM SECTION
   ========================================================================== */

.problem {
  background: var(--sand);
  padding: 6rem 2rem;
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.problem-left h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.problem-left p {
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.7;
}

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pain-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.5;
}

.pain-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ==========================================================================
   HOME PAGE — SERVICES PREVIEW
   ========================================================================== */

.services-preview {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.services-preview h2,
.services-full h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  max-width: 500px;
}

.services-preview .section-sub {
  color: var(--slate);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 500px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.service-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.service-card .price-hint {
  margin-top: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

.services-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ==========================================================================
   HOME PAGE — PRICING
   ========================================================================== */

.pricing {
  background: var(--accent);
  padding: 6rem 2rem;
  color: var(--white);
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing .section-eyebrow { color: var(--gold-light); }

.pricing h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  color: var(--white);
}

.pricing-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 500px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.pricing-col h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.rate-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
}

.rate-row span:first-child { color: rgba(255,255,255,0.85); }

.rate-row span:last-child {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--white);
}

/* ==========================================================================
   HOME PAGE — DIFFERENCE
   ========================================================================== */

.difference {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.difference h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 3rem;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.diff-item {
  padding: 2.5rem;
  background: var(--sand);
  border-radius: 12px;
}

.diff-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.diff-item p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================================================
   HOME PAGE — CTA
   ========================================================================== */

.close-section {
  background: var(--sand);
  padding: 6rem 2rem;
  text-align: center;
}

.close-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -1.5px;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.15;
}

.close-section p {
  color: var(--slate);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ==========================================================================
   SERVICES PAGE — FULL LISTING
   ========================================================================== */

.services-full {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.services-full h2 {
  margin-bottom: 0.5rem;
}

.service-category {
  margin-bottom: 4rem;
}

.category-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-detail-card {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 2.25rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.service-detail-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.service-detail-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.service-detail-card .desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-includes {
  list-style: none;
  margin-bottom: 1.25rem;
}

.service-includes li {
  font-size: 0.85rem;
  color: var(--slate);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.service-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.service-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.service-price-note {
  font-size: 0.78rem;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  margin-left: 0.25rem;
}

/* Services page pricing section */
.services-pricing {
  background: var(--accent);
  padding: 5rem 2rem;
  color: var(--white);
}

.services-pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-pricing h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  color: var(--white);
}

.services-pricing .pricing-sub {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
}

.services-cta-section {
  background: var(--sand);
  padding: 5rem 2rem;
  text-align: center;
}

.services-cta-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.services-cta-section p {
  color: var(--slate);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.about-mission {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-mission h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-mission p {
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-values {
  background: var(--sand);
  padding: 5rem 2rem;
}

.about-values-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-values h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 2.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.25rem;
  border: 1px solid rgba(0,0,0,0.04);
}

.value-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1rem;
  line-height: 1;
}

.value-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.value-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.about-approach {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.about-approach h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 2.5rem;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.approach-step {
  position: relative;
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--warm);
  line-height: 1;
  margin-bottom: 1rem;
}

.approach-step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.approach-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.about-cta {
  background: var(--accent);
  padding: 5rem 2rem;
  text-align: center;
  color: var(--white);
}

.about-cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  color: var(--white);
}

.about-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.btn-white {
  background: var(--white);
  color: var(--accent);
}

.btn-white:hover {
  background: var(--sand);
}

/* ==========================================================================
   CONTACT / BOOKING PAGE
   ========================================================================== */

.contact-page {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: var(--slate);
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.contact-expectations {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--sand);
  border-radius: 12px;
}

.contact-expectations h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-expectations ul {
  list-style: none;
}

.contact-expectations li {
  font-size: 0.85rem;
  color: var(--slate);
  padding: 0.35rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.contact-expectations li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Form Styles */
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
  margin-top: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.form-section-label:first-child { margin-top: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 0.4rem;
}

.form-group label .required {
  color: var(--danger);
  margin-left: 2px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

/* Checkbox group */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
}

.checkbox-item span {
  font-size: 0.85rem;
  color: var(--slate);
}

.form-submit {
  margin-top: 1.5rem;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

/* Form messages */
.form-message {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: none;
}

.form-success {
  background: #f0fdf4;
  color: var(--success);
  border: 1px solid #bbf7d0;
}

.form-error {
  background: #fef2f2;
  color: var(--danger);
  border: 1px solid #fecaca;
}

.success-wrapper {
  text-align: center;
  padding: 3rem 2rem;
}

.success-wrapper h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.success-wrapper p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--slate);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    z-index: 99;
  }

  .nav-links.open { transform: translateY(0); }

  .nav-cta { text-align: center; width: 100%; display: block !important; }

  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-stats { gap: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .problem-inner { grid-template-columns: 1fr; gap: 2rem; }
  .service-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }

  .services-preview,
  .services-full,
  .difference,
  .about-mission,
  .about-approach,
  .contact-page { padding: 3rem 1.5rem; }

  .pricing,
  .about-values,
  .services-pricing { padding: 3rem 1.5rem; }

  .close-section,
  .services-cta-section { padding: 3rem 1.5rem; }

  .service-detail-grid { grid-template-columns: 1fr; }
  .about-mission-grid { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-links { justify-content: center; }

  .page-header { padding: 7rem 1.5rem 3rem; }
}

@media (max-width: 480px) {
  .approach-steps { grid-template-columns: 1fr; }
}
