/* ===================================================
   Gloss & Grain — "Sun Belt Detail"
   Bright / Coastal Casual Auto Detailing Theme
   =================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Permanent+Marker&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  --color-white: #FAFAFA;
  --color-sky: #E8F4FD;
  --color-orange: #F27A3A;
  --color-orange-hover: #d9652a;
  --color-navy: #1A1E2E;
  --color-concrete: #E5E5E5;
  --color-true-white: #FFFFFF;

  --font-heading: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-accent: 'Permanent Marker', cursive;

  --max-width: 1200px;
  --nav-height: 72px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.14);

  --transition: 0.3s ease;

  --text-xs: clamp(0.75rem, 1.5vw, 0.8rem);
  --text-sm: clamp(0.85rem, 1.8vw, 0.9rem);
  --text-base: clamp(0.95rem, 2vw, 1rem);
  --text-md: clamp(1rem, 2.2vw, 1.1rem);
  --text-lg: clamp(1.1rem, 2.5vw, 1.25rem);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-navy);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.accent-text {
  font-family: var(--font-accent);
  color: var(--color-orange);
  font-size: var(--text-base);
}

/* ---------- Utility ---------- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section {
  padding: var(--space-2xl) 0;
}

.section--sky {
  background: var(--color-sky);
}

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

.section--angled {
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  padding-top: calc(var(--space-2xl) + 2rem);
  padding-bottom: calc(var(--space-2xl) + 2rem);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-xs);
}

.section-header .accent-text {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: var(--text-sm);
}

.text-center { text-align: center; }

/* Orange underline divider */
.orange-rule {
  border: none;
  height: 3px;
  background: var(--color-orange);
  width: 60px;
  margin: var(--space-sm) auto;
  border-radius: var(--radius-pill);
}

.orange-rule--left {
  margin-left: 0;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: var(--color-orange);
  color: var(--color-true-white);
  border: 2px solid var(--color-orange);
}

.btn--primary:hover {
  background: var(--color-orange-hover);
  border-color: var(--color-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 122, 58, 0.35);
}

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

.btn--outline:hover {
  background: var(--color-orange);
  color: var(--color-true-white);
  transform: translateY(-2px);
}

.btn--navy {
  background: var(--color-navy);
  color: var(--color-true-white);
  border: 2px solid var(--color-navy);
}

.btn--navy:hover {
  background: transparent;
  color: var(--color-navy);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--color-true-white);
  color: var(--color-orange);
  border: 2px solid var(--color-true-white);
}

.btn--white:hover {
  background: transparent;
  color: var(--color-true-white);
  transform: translateY(-2px);
}

/* ---------- Price Badge ---------- */
.price-badge {
  display: inline-block;
  background: var(--color-orange);
  color: var(--color-true-white);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 0.3em 1em;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
}

.price-badge--lg {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  padding: 0.35em 1.2em;
}

/* ====================================
   NAVIGATION
   ==================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: var(--color-true-white);
  transition: box-shadow var(--transition);
}

.nav--scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.01em;
  text-transform: lowercase;
}

.nav__logo span {
  color: var(--color-orange);
}

/* Desktop Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-navy);
  position: relative;
  transition: color var(--transition);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-orange);
  border-radius: var(--radius-pill);
  transition: width var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--color-orange);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__links .btn::after {
  display: none;
}

.nav__cta {
  padding: 0.55rem 1.4rem !important;
  font-size: var(--text-xs) !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav__hamburger { display: flex; }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 1.8rem;
    background: var(--color-true-white);
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
  }

  .nav__links.open { right: 0; }

  .nav__hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav__hamburger.open span:nth-child(2) { opacity: 0; }
  .nav__hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ====================================
   HERO (homepage)
   ==================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-white);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(232, 244, 253, 0.7);
  border-radius: 50%;
  top: -120px;
  right: -120px;
  filter: blur(60px);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(242, 122, 58, 0.1);
  border-radius: 50%;
  bottom: -80px;
  left: -80px;
  filter: blur(60px);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
  max-width: 650px;
}

.hero__eyebrow {
  font-family: var(--font-accent);
  font-size: var(--text-base);
  color: var(--color-orange);
  margin-bottom: var(--space-sm);
}

.hero h1 {
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
  font-weight: 700;
  line-height: 1.1;
}

.hero h1 .highlight {
  color: var(--color-orange);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-md);
  color: rgba(26, 30, 46, 0.7);
  max-width: 520px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Extra blob decoration on hero */
.hero__blob {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(232, 244, 253, 0.5);
  border-radius: 50%;
  bottom: 20%;
  right: 15%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

/* ====================================
   PAGE HERO (interior pages)
   ==================================== */
.page-hero {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 3rem;
  text-align: center;
  background: var(--color-sky);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(242, 122, 58, 0.08);
  border-radius: 50%;
  top: -150px;
  right: -100px;
  filter: blur(60px);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.page-hero .accent-text {
  font-size: var(--text-sm);
}

/* ====================================
   INTRO / ABOUT BLURB (homepage)
   ==================================== */
.intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.intro p {
  font-size: var(--text-md);
  line-height: 1.8;
  color: rgba(26, 30, 46, 0.75);
}

/* ====================================
   FEATURE CALLOUTS (homepage)
   ==================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  background: var(--color-true-white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.feature-card h3 {
  margin-bottom: var(--space-xs);
}

.feature-card p {
  font-size: var(--text-sm);
  color: rgba(26, 30, 46, 0.65);
  line-height: 1.7;
}

/* ====================================
   SERVICE TIER CARDS
   ==================================== */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.tier-card {
  background: var(--color-true-white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.tier-card--featured {
  border: 2px solid var(--color-orange);
}

.tier-card__label {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  color: var(--color-orange);
  display: block;
  margin-bottom: var(--space-xs);
}

.tier-card h3 {
  margin-bottom: var(--space-sm);
}

.tier-card .price-badge {
  margin-bottom: var(--space-md);
}

.tier-card p {
  font-size: var(--text-sm);
  color: rgba(26, 30, 46, 0.65);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.tier-card ul {
  list-style: none;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.tier-card ul li {
  font-size: var(--text-sm);
  padding: 0.4rem 0;
  padding-left: 1.4rem;
  position: relative;
  color: rgba(26, 30, 46, 0.75);
}

.tier-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-weight: 700;
}

.tier-card .duration {
  font-size: var(--text-xs);
  color: rgba(26, 30, 46, 0.5);
  font-style: italic;
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-concrete);
}

/* ====================================
   ADD-ONS LIST
   ==================================== */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-sm);
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--color-true-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.addon-item:hover {
  box-shadow: var(--shadow-md);
}

.addon-item__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
}

.addon-item__price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-orange);
  font-size: var(--text-sm);
}

/* ====================================
   PROCESS STEPS
   ==================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  counter-increment: step;
}

.process-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-orange);
  color: var(--color-true-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50%;
  margin: 0 auto var(--space-sm);
}

.process-step h4 {
  margin-bottom: var(--space-xs);
  font-family: var(--font-heading);
  font-weight: 600;
}

.process-step p {
  font-size: var(--text-xs);
  color: rgba(26, 30, 46, 0.6);
  line-height: 1.6;
}

/* ====================================
   GALLERY / SHOWCASE
   ==================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-lg);
}

.gallery-card {
  background: var(--color-true-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.gallery-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.gallery-card__before,
.gallery-card__after {
  position: relative;
  padding: 3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.gallery-card__before {
  background: linear-gradient(135deg, #c9b896, #a89279, #8b7560);
  color: rgba(255, 255, 255, 0.85);
}

.gallery-card__after {
  background: linear-gradient(135deg, #7ec8e3, #4da8da, #2e86c1);
  color: rgba(255, 255, 255, 0.95);
}

.gallery-card__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  background: rgba(0, 0, 0, 0.35);
  color: var(--color-true-white);
  padding: 0.2em 0.6em;
  border-radius: var(--radius-sm);
}

.gallery-card__after .gallery-card__tag {
  background: var(--color-orange);
}

.gallery-card__overlay-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  text-align: center;
  line-height: 1.4;
}

.gallery-card__body {
  padding: 1.5rem;
}

.gallery-card__body h3 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.gallery-card__body p {
  font-size: var(--text-sm);
  color: rgba(26, 30, 46, 0.65);
  line-height: 1.6;
}

.gallery-card__badge {
  display: inline-block;
  background: var(--color-orange);
  color: var(--color-true-white);
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  padding: 0.2em 0.7em;
  border-radius: var(--radius-pill);
  margin-bottom: 0.5rem;
}

/* ====================================
   TEAM
   ==================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.team-card {
  background: var(--color-true-white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-orange);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  border: 3px solid var(--color-orange);
}

.team-card h3 { margin-bottom: 0.2rem; }

.team-card .role {
  font-family: var(--font-accent);
  color: var(--color-orange);
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
}

.team-card p {
  font-size: var(--text-sm);
  color: rgba(26, 30, 46, 0.65);
  line-height: 1.7;
  max-width: 300px;
  margin: 0 auto;
}

/* ====================================
   TESTIMONIALS / REVIEWS
   ==================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.review-card {
  background: var(--color-true-white);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.review-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-orange);
  opacity: 0.2;
  position: absolute;
  top: 8px;
  left: 16px;
  line-height: 1;
}

.review-card .stars {
  color: var(--color-orange);
  font-size: var(--text-sm);
  margin-bottom: var(--space-xs);
  letter-spacing: 2px;
}

.review-card blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  padding-left: 0.5rem;
  color: rgba(26, 30, 46, 0.8);
}

.review-card .reviewer {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-navy);
}

/* ====================================
   ABOUT PAGE — PHILOSOPHY CALLOUT
   ==================================== */
.philosophy-box {
  background: var(--color-navy);
  color: var(--color-true-white);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.philosophy-box::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(242, 122, 58, 0.15);
  border-radius: 50%;
  top: -80px;
  right: -80px;
  filter: blur(40px);
  pointer-events: none;
}

.philosophy-box h3 {
  color: var(--color-orange);
  margin-bottom: var(--space-sm);
  position: relative;
}

.philosophy-box p {
  font-size: var(--text-md);
  line-height: 1.8;
  opacity: 0.9;
  position: relative;
}

/* Certifications */
.certs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.cert-badge {
  background: var(--color-true-white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-navy);
  text-align: center;
}

.cert-badge span {
  display: block;
  font-size: var(--text-xs);
  color: rgba(26, 30, 46, 0.5);
  font-weight: 400;
  margin-top: 0.2rem;
}

/* ====================================
   FIND US / CONTACT
   ==================================== */
.find-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 768px) {
  .find-us-grid {
    grid-template-columns: 1fr;
  }
}

.map-wrapper {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}

.contact-info h3 {
  margin-bottom: var(--space-sm);
}

.contact-info .info-item {
  margin-bottom: var(--space-md);
}

.contact-info .info-label {
  font-family: var(--font-accent);
  color: var(--color-orange);
  font-size: var(--text-sm);
  margin-bottom: 0.2rem;
}

.contact-info p,
.contact-info a {
  font-size: var(--text-base);
  line-height: 1.7;
}

.contact-info a:hover {
  color: var(--color-orange);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.45rem 0;
  font-size: var(--text-base);
}

.hours-table td:last-child {
  text-align: right;
}

.hours-table .closed {
  color: var(--color-orange);
  font-weight: 600;
}

/* Booking policy box */
.policy-box {
  background: var(--color-true-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-orange);
}

.policy-box h3 {
  margin-bottom: var(--space-xs);
}

.policy-box p {
  font-size: var(--text-sm);
  color: rgba(26, 30, 46, 0.7);
  line-height: 1.7;
}

/* ====================================
   CTA BANNER
   ==================================== */
.cta-banner {
  background: var(--color-navy);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(242, 122, 58, 0.12);
  border-radius: 50%;
  top: -150px;
  left: -100px;
  filter: blur(60px);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(232, 244, 253, 0.08);
  border-radius: 50%;
  bottom: -100px;
  right: -60px;
  filter: blur(60px);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--color-true-white);
  margin-bottom: var(--space-xs);
  position: relative;
}

.cta-banner .accent-text {
  color: var(--color-orange);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
  display: block;
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
  background: var(--color-navy);
  color: rgba(250, 250, 250, 0.7);
  padding: 3rem 0 1.5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer h4 {
  color: var(--color-orange);
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}

.footer a {
  transition: color var(--transition);
}

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

.footer p,
.footer li {
  font-size: var(--text-sm);
  line-height: 1.9;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-true-white);
  margin-bottom: var(--space-xs);
  display: block;
  text-transform: lowercase;
}

.footer__logo span {
  color: var(--color-orange);
}

.footer__bottom {
  border-top: 1px solid rgba(250, 250, 250, 0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: var(--text-xs);
}

.footer__est {
  font-family: var(--font-heading);
  color: var(--color-orange);
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
}

/* ====================================
   GOOGLE REVIEW CTA
   ==================================== */
.google-cta {
  background: var(--color-true-white);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin: 0 auto;
}

.google-cta h3 {
  margin-bottom: var(--space-xs);
}

.google-cta p {
  font-size: var(--text-sm);
  color: rgba(26, 30, 46, 0.65);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

/* ====================================
   SCROLL ANIMATIONS
   ==================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }

  .section--angled {
    clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
    padding-top: calc(3.5rem + 1rem);
    padding-bottom: calc(3.5rem + 1rem);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .tiers-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__buttons { flex-direction: column; align-items: flex-start; }

  .hero__content {
    padding: 2rem 0;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__bottom {
    justify-content: center;
    text-align: center;
  }

  .addons-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card__images {
    grid-template-columns: 1fr;
  }
}
