@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #dce7f0;
  --ink-soft: #8fa7bd;
  --bg: #070b12;
  --bg-alt: #0d1520;
  --card-bg: #111d2a;
  --accent: #70a9d4;
  --border: rgba(163, 194, 218, 0.18);
  --border-strong: rgba(163, 194, 218, 0.58);
  --text: #e6eef5;
  --text-dim: #a8bac9;
  --section-line: rgba(163, 194, 218, 0.15);
  --noise-texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  --grid-texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Cpath d='M0 0.5H64M0.5 0V64' stroke='%23a3c2da' stroke-opacity='0.08'/%3E%3C/svg%3E");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Fixed grid texture for depth, no color gradients */
.bg-texture {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--grid-texture);
  background-size: 64px 64px;
  animation: grid-drift 60s linear infinite;
}

@keyframes grid-drift {
  from { background-position: 0 0; }
  to { background-position: 640px 640px; }
}

@media (prefers-reduced-motion: reduce) {
  .bg-texture { animation: none; }
}

section, header, footer {
  position: relative;
  z-index: 1;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 11, 18, 0.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.25);
  padding: 0.6rem 3rem;
}

.logo,
.footer-logo {
  display: block;
  width: 150px;
  height: auto;
  text-decoration: none;
}

.logo-mark {
  display: block;
  width: 100%;
}

.logo-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
}

.nav a {
  color: var(--text-dim);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--ink);
  transition: width 0.3s ease;
}

.nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  background: var(--accent);
  border: 1.5px solid var(--accent);
  color: #07101a !important;
  padding: 0.55rem 1.3rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-cta:hover {
  background: transparent;
  color: var(--accent) !important;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  text-align: center;
  padding: 8rem 2rem 5rem;
  background: radial-gradient(circle at 50% -20%, #1d354d 0%, var(--bg) 48%);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: -20% -10%;
  z-index: 0;
  pointer-events: none;
  background-image: var(--grid-texture);
  background-size: 48px 48px;
  opacity: 0.55;
  will-change: transform;
  animation: hero-grid-drift 18s linear infinite;
}

.hero-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 2px solid var(--ink);
  opacity: 0.24;
  will-change: transform;
  transition: opacity 0.3s ease;
}

.hero-shape.shape-square {
  top: 10%;
  left: 5%;
  width: 180px;
  height: 180px;
}

.hero-shape.shape-ring {
  top: 58%;
  right: 7%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
}

.hero-shape.shape-dot {
  top: 18%;
  right: 13%;
  width: 18px;
  height: 18px;
  background: var(--ink);
  border: none;
  opacity: 0.72;
  animation: hero-dot-pulse 3.2s ease-in-out infinite;
}

.hero > *:not(.hero-bg):not(.hero-shape) {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 1.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 .highlight {
  position: relative;
  display: inline-block;
  color: var(--accent);
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.02em;
  height: 3px;
  width: 0;
  background: var(--accent);
  animation: underline-grow 0.8s ease 0.5s forwards;
}

.hero > p {
  max-width: 600px;
  margin: 0 auto 2.2rem;
  color: var(--text-dim);
  font-size: 1.1rem;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.hero::before {
  top: 16%;
  right: -4%;
  width: 34vw;
  max-width: 420px;
  height: 1px;
  background: rgba(10, 10, 10, 0.16);
  box-shadow: 0 24px 0 rgba(10, 10, 10, 0.08), 0 48px 0 rgba(10, 10, 10, 0.04);
  animation: hero-line-drift 12s ease-in-out infinite;
}

.hero::after {
  bottom: 14%;
  left: -6%;
  width: 28vw;
  max-width: 340px;
  height: 28vw;
  max-height: 340px;
  border: 1px solid rgba(10, 10, 10, 0.12);
  animation: hero-frame-shift 14s ease-in-out infinite;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero-language {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.cta {
  background: var(--accent);
  border: 1.5px solid var(--accent);
  color: #07101a;
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.cta:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-3px);
}

.cta-ghost {
  color: var(--ink);
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  border-radius: 4px;
  border: 1.5px solid var(--border-strong);
  transition: all 0.25s ease;
}

.cta-ghost:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #07101a;
  transform: translateY(-3px);
}

.language-toggle {
  min-width: 180px;
  background: transparent;
}

.cta-outline {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cta-outline:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-3px);
}

/* Stats */
.stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat-number, .stat-suffix {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
}

.stat-number {
  display: inline-block;
  min-width: 0;
  padding: 0;
  margin-right: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.stat-suffix {
  color: var(--ink-soft);
}

.stat p {
  margin: 0.3rem 0 0;
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* Section basics */
.about, .services, .why-choose, .packages, .testimonials, .hours, .areas-serve {
  padding: 6rem 3rem;
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--section-line);
}

.about, .why-choose, .testimonials { background: var(--bg); }
.services, .packages, .hours, .areas-serve, .contact { background: var(--bg-alt); }

.about {
  background-image: url('Media/about-1.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 18, 0.8);
  pointer-events: none;
  z-index: 0;
}

.about::after,
.services::after,
.why-choose::after,
.packages::after,
.testimonials::after,
.hours::after,
.areas-serve::after,
.contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--noise-texture);
  opacity: 0.035;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.about > *,
.services > *,
.why-choose > *,
.packages > *,
.testimonials > *,
.hours > *,
.areas-serve > *,
.contact > * {
  position: relative;
  z-index: 1;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.6rem;
}



.section-sub {
  color: var(--text-dim);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.why-choose-card {
  max-width: 980px;
  margin: 2rem auto 0;
  padding: 2rem 2.2rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card-bg);
  text-align: left;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.why-choose-media {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 1.4rem;
}

.process-timeline {
  position: relative;
  display: grid;
  gap: 0.95rem;
}

.process-line {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 15px;
  width: 2px;
  background: var(--border-strong);
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.35rem 0.2rem;
}

.process-step.reveal:nth-child(2) { transition-delay: 0.05s; }
.process-step.reveal:nth-child(3) { transition-delay: 0.15s; }
.process-step.reveal:nth-child(4) { transition-delay: 0.25s; }
.process-step.reveal:nth-child(5) { transition-delay: 0.35s; }

.step-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--bg);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--bg);
}

.step-body {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 0.9rem;
  background: var(--bg-alt);
}

.step-body h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: var(--text);
}

.step-body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-dim);
}

.why-choose-content {
  position: relative;
}

.why-choose-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 1.06rem;
  line-height: 1.75;
}

.success-story {
  padding: 6rem 3rem;
  background: linear-gradient(180deg, #101d2b 0%, #09111a 100%);
  border-top: 1px solid var(--section-line);
  border-bottom: 1px solid var(--section-line);
  position: relative;
  overflow: hidden;
}

.success-story::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grid-texture);
  background-size: 64px 64px;
  opacity: 0.18;
  pointer-events: none;
}

.success-story > * {
  position: relative;
  z-index: 1;
}

.success-story-inner {
  max-width: 1100px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
}

.success-story h2 {
  margin: 0;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.success-story-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.success-story-copy {
  background: rgba(17, 29, 42, 0.92);
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: 0 28px 60px -38px rgba(0, 0, 0, 0.35);
  padding: 2rem 2.2rem;
  text-align: left;
}

.success-story-copy .lead {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-top: 0;
  color: var(--ink);
}

.success-story-copy p {
  margin: 0 0 1rem;
  color: var(--text-dim);
  font-size: 1.02rem;
  line-height: 1.75;
}

.success-story-copy blockquote {
  margin: 1.8rem 0 0.8rem;
  padding: 0.5rem 0 0.5rem 1rem;
  border-left: 3px solid var(--ink);
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink);
  font-weight: 500;
}

.client-name {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.success-story-link {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(10, 10, 10, 0.8);
  padding-bottom: 0.2rem;
  transition: opacity 0.2s ease;
}

.success-story-link:hover {
  opacity: 0.7;
}

.success-story-visuals {
  display: grid;
  gap: 1rem;
}

.brand-lockup {
  background: rgba(17, 29, 42, 0.9);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.35);
}

.brand-logo {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1rem;
}

.visual-card {
  background: rgba(17, 29, 42, 0.9);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 22px 48px -34px rgba(0, 0, 0, 0.32);
}

.visual-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-preview {
  min-height: 290px;
}

.business-card-preview {
  min-height: 290px;
}

@media (max-width: 840px) {
  .success-story-grid {
    grid-template-columns: 1fr;
  }

  .success-story-copy {
    padding: 1.5rem 1.25rem;
  }

  .visual-grid {
    grid-template-columns: 1fr;
  }
}

/* About */
.about-grid {
  display: flex;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: flex-start;
  text-align: left;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 400px;
}

.about-text p {
  color: var(--text);
  line-height: 1.7;
  font-size: 1.05rem;
}

.about-highlights {
  flex: 1 1 300px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.about-highlights li {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 1rem 1.2rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-highlights li:hover {
  transform: translateX(6px);
  border-color: var(--ink);
}

.icon {
  font-size: 1.2rem;
}

/* Cards */
.cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 2.2rem;
  width: 260px;
  border-radius: 6px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--ink);
  box-shadow: 0 16px 32px -20px rgba(0, 0, 0, 0.3);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.card p {
  color: var(--text-dim);
  line-height: 1.6;
}

/* Pricing cards */
.price-card {
  width: 280px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--ink);
  border-width: 2px;
  background: var(--card-bg);
  transform: scale(1.05);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.price-card:not(.featured):hover {
  transform: scale(1.05) translateY(-10px);
}

.ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #07101a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1.1rem 0.5rem;
  border-radius: 0 0 4px 4px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0.3rem 0;
}

.tagline {
  color: var(--text-dim);
  min-height: 3rem;
}

.features {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
  text-align: left;
  flex-grow: 1;
}

.features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
}

.features li::before {
  content: '✓ ';
  color: var(--ink);
  font-weight: 700;
}

.price-card button {
  width: 100%;
  margin-top: 0.5rem;
}

.pricing-disclaimer {
  max-width: 760px;
  margin: 1.5rem auto 0;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Project specialties */
.specialty-card {
  width: 300px;
}

.specialty-card h3 {
  margin: 0 0 0.85rem;
  color: var(--text);
  font-size: 1.15rem;
}

.specialty-card p {
  color: var(--text-dim);
  line-height: 1.6;
}

/* Hours */
.hours-card {
  max-width: 760px;
  margin: 2rem auto 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card-bg);
  padding: 1.6rem;
  text-align: left;
}

.hours-grid {
  display: grid;
  gap: 0.75rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-alt);
}

.hours-row span {
  color: var(--text-dim);
}

.hours-row strong {
  color: var(--text);
  font-weight: 700;
}

.hours-note {
  margin: 1rem 0 0;
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* Areas we serve */
.areas-grid {
  max-width: 1050px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.areas-card,
.map-wrap {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card-bg);
}

.areas-card {
  padding: 1.4rem;
  text-align: left;
}

.areas-card h3 {
  margin: 0 0 0.7rem;
}

.areas-card p {
  margin: 0 0 1rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.areas-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.areas-list li {
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-alt);
}

.area-map {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 6px;
}

/* Contact */
.contact {
  padding: 6rem 3rem;
  text-align: center;
}

.contact-inner {
  max-width: 600px;
  margin: 0 auto;
}

.contact h2 {
  margin-bottom: 0.6rem;
}

@keyframes underline-grow {
  to { width: 100%; }
}

@keyframes hero-grid-drift {
  from { background-position: 0 0; }
  to { background-position: 48px 48px; }
}

@keyframes hero-line-drift {
  0%,
  100% { transform: translate3d(0, 0, 0); opacity: 0.75; }
  50% { transform: translate3d(-16px, 12px, 0); opacity: 1; }
}

@keyframes hero-frame-shift {
  0%,
  100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(18px, -12px, 0) rotate(-4deg); }
}

@keyframes hero-dot-pulse {
  0%,
  100% { opacity: 0.4; }
  50% { opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1 .highlight::after {
    animation: none;
    width: 100%;
  }

  .hero-bg,
  .hero-shape,
  .hero::before,
  .hero::after {
    animation: none;
  }
}

.contact > .contact-inner > p {
  color: var(--text-dim);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-row input {
  flex: 1 1 200px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.9rem 1.1rem;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ink);
}

.contact-form button {
  align-self: center;
  margin-top: 0.5rem;
}

.form-status {
  color: var(--ink);
  font-weight: 600;
  min-height: 1.4rem;
}

/* Footer */
.footer {
  padding: 3rem 3rem 1.5rem;
  border-top: 1px solid var(--border);
  background: #05080d;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}

.footer-logo {
  margin-bottom: 0.6rem;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: 0;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 4px;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: #07101a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 200;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.35);
}

.back-to-top:hover {
  background: transparent;
  color: var(--ink);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    padding: 0.55rem 1rem;
    justify-content: flex-start;
    position: sticky;
    top: 0;
  }

  .header.scrolled {
    padding: 0.45rem 1rem;
  }

  .logo {
    width: auto;
    display: block;
    justify-content: flex-start;
    margin-right: auto;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 0.5rem;
    z-index: 120;
    border-bottom: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    margin-left: 0;
    width: 100%;
    padding: 0.5rem 0;
  }

  .nav-toggle {
    display: flex;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .about-grid {
    flex-direction: column;
    gap: 1.2rem;
  }

  .about-text p {
    margin-bottom: 0;
  }

  .hours-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .area-map {
    min-height: 300px;
  }

  .why-choose-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .process-line {
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    bottom: 10px;
    opacity: 0.35;
  }

  .process-step {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 0.6rem;
  }

  .step-body {
    width: 100%;
  }

  .price-card.featured {
    transform: scale(1);
  }

  .price-card.featured:hover {
    transform: translateY(-10px);
  }

  .price-card:not(.featured):hover {
    transform: translateY(-10px);
  }

  .stats {
    gap: 1.5rem 2rem;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .footer-brand {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
