/* ============================================================
   SPRAY VISION LTD — Main Stylesheet
   Brand: Black #0a0a0a | Cyan #00CDCA | Gold #C9912A
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&display=swap');

/* ============================================================ VARIABLES & RESET ============================================================ */
:root {
  --black:          #0a0a0a;
  --black-soft:     #141414;
  --black-card:     #1a1a1a;
  --cyan:           #00CDCA;
  --cyan-dark:      #00A8A5;
  --cyan-glow:      rgba(0, 205, 202, 0.12);
  --gold:           #C9912A;
  --gold-light:     #E8B84B;
  --gold-pale:      rgba(201, 145, 42, 0.12);
  --white:          #ffffff;
  --gray-50:        #f8f9fa;
  --gray-100:       #f1f3f5;
  --gray-200:       #e2e8f0;
  --gray-400:       #94a3b8;
  --gray-500:       #64748b;
  --gray-600:       #475569;
  --gray-700:       #334155;
  --gray-900:       #0f172a;
  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --radius:       10px;
  --radius-lg:    18px;
  --radius-xl:    28px;
  --shadow:       0 4px 6px -1px rgb(0 0 0 / .08);
  --shadow-md:    0 8px 16px -4px rgb(0 0 0 / .15);
  --shadow-lg:    0 20px 40px -8px rgb(0 0 0 / .25);
  --shadow-cyan:  0 8px 24px rgba(0, 205, 202, 0.2);
  --shadow-gold:  0 8px 24px rgba(201, 145, 42, 0.3);
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:        1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--gray-700); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================ TYPOGRAPHY ============================================================ */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--black); letter-spacing: -0.02em; }
h1 { font-size: clamp(1.9rem, 4vw, 3.1rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { font-size: 1.05rem; line-height: 1.75; color: var(--gray-600); }
.text-cyan   { color: var(--cyan); }
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.text-muted  { color: var(--gray-500); font-size: 0.95rem; }

/* ============================================================ LAYOUT ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-dark  { background: var(--black); }
.section-dark2 { background: var(--black-soft); }
.section-gray  { background: var(--gray-50); }

.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--cyan-glow); border: 1px solid rgba(0,205,202,.2);
  color: var(--cyan-dark); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.35rem 1rem; border-radius: 100px; margin-bottom: 1rem;
}
.section-label svg { width: 13px; height: 13px; }
.section-label-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold-pale); border: 1px solid rgba(201,145,42,.2);
  color: var(--gold); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.35rem 1rem; border-radius: 100px; margin-bottom: 1rem;
}
.section-header { max-width: 700px; margin: 0 auto 3.5rem; }
.section-header p { margin-top: 0.75rem; font-size: 1.1rem; }

/* ============================================================ BUTTONS ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 1rem; font-weight: 700;
  padding: 0.875rem 2rem; border-radius: var(--radius);
  transition: all var(--transition); white-space: nowrap; line-height: 1;
}
.btn-cyan { background: var(--cyan); color: var(--black); box-shadow: var(--shadow-cyan); }
.btn-cyan:hover { background: var(--cyan-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,205,202,.35); }
.btn-gold { background: var(--gold); color: var(--white); box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline-white { border: 2px solid rgba(255,255,255,.35); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-outline-dark { border: 2px solid var(--black); color: var(--black); background: transparent; }
.btn-outline-dark:hover { background: var(--black); color: var(--white); }
.btn-outline-cyan { border: 2px solid var(--cyan); color: var(--cyan); background: transparent; }
.btn-outline-cyan:hover { background: var(--cyan); color: var(--black); }
.btn-accent { background: var(--cyan); color: var(--black); box-shadow: var(--shadow-cyan); }
.btn-accent:hover { background: var(--cyan-dark); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-lg  { padding: 1.1rem 2.4rem; font-size: 1.1rem; }

/* ============================================================ NAVIGATION ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  padding: 1.1rem 1.5rem;
  transition: padding var(--transition);
}
.nav-container {
  display: flex; align-items: center; gap: 2rem;
  max-width: var(--max-w); margin: 0 auto;
  background: rgba(10, 10, 10, 0.32);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(0, 205, 202, 0.14);
  border-radius: 100px;
  padding: 0.55rem 0.6rem 0.55rem 1.4rem;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), padding var(--transition), border-radius var(--transition);
}
.nav.scrolled {
  padding: 0.6rem 1.5rem;
}
.nav.scrolled .nav-container {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-color: rgba(0, 205, 202, 0.2);
  box-shadow: 0 4px 28px rgba(0,0,0,.55), 0 0 0 1px rgba(0,205,202,.06);
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 78px; width: auto; object-fit: contain; transition: height var(--transition); }
.nav.scrolled .nav-logo img { height: 64px; }
@media (max-width: 768px) {
  .nav-logo img { height: 62px; }
  .nav.scrolled .nav-logo img { height: 52px; }
}
.nav-links { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.nav-links a {
  font-weight: 600; font-size: 0.87rem;
  color: rgba(255,255,255,.7); padding: 0.5rem 0.85rem;
  border-radius: 8px; transition: all var(--transition);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.nav-links a:hover, .nav-links a.active { color: var(--cyan); background: rgba(0,205,202,.08); }
/* Contact = translucent cyan glass pill (last nav item) */
.nav-links li:last-child a {
  background: rgba(0,205,202,.10);
  border: 1px solid rgba(0,205,202,.28);
  color: var(--cyan);
  padding: 0.55rem 1.2rem;
  margin-left: 0.5rem;
  border-radius: 100px;
  letter-spacing: 0.06em;
}
.nav-links li:last-child a:hover,
.nav-links li:last-child a.active {
  background: rgba(0,205,202,.18);
  border-color: rgba(0,205,202,.55);
  color: var(--cyan);
}
.nav-cta { padding: 0.6rem 1.4rem; font-size: 0.82rem; margin-left: 0.5rem; flex-shrink: 0; text-transform: uppercase; letter-spacing: 0.05em; }
/* ===== HAMBURGER BUTTON ===== */
.nav-toggle {
  display: none; position: relative;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; margin-left: auto;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  transition: all .25s ease;
  cursor: pointer;
}
.nav-toggle:hover { background: rgba(0,205,202,.16); border-color: rgba(0,205,202,.35); }
.nav-toggle:active { transform: scale(0.95); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s cubic-bezier(.4,0,.2,1); }
.nav-toggle.open { background: rgba(0,205,202,.18); border-color: rgba(0,205,202,.5); }
.nav-toggle.open span { background: var(--cyan); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== DRAWER ===== */
.nav-drawer {
  display: none; position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(0,205,202,.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(0,205,202,.06) 0%, transparent 60%),
    rgba(8, 8, 8, 0.985);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  z-index: 999;
  flex-direction: column; align-items: stretch; justify-content: flex-start;
  gap: 0; padding: 110px 1.5rem 2rem;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .35s cubic-bezier(.4,0,.2,1), transform .4s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.nav-drawer.open { opacity: 1; pointer-events: all; transform: translateY(0); }

/* Make body scroll-locked when drawer is open is handled by JS */
.nav-drawer::before {
  content: "MENU";
  display: block;
  font-size: .68rem; font-weight: 800; letter-spacing: 0.18em;
  color: var(--cyan); margin-bottom: 1rem; padding-left: 0.5rem;
  text-transform: uppercase; opacity: .8;
}

.nav-drawer a {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 1.15rem; font-weight: 700; color: var(--white);
  letter-spacing: 0.01em; padding: 1.05rem 1rem;
  border: 1px solid transparent; border-radius: 12px;
  margin-bottom: 0.15rem;
  text-decoration: none;
  position: relative;
  transition: all .22s cubic-bezier(.4,0,.2,1);
}
.nav-drawer a::after {
  content: "→"; font-size: 1.05rem; color: rgba(255,255,255,.25);
  transition: transform .22s, color .22s;
}
.nav-drawer a:hover,
.nav-drawer a:focus-visible,
.nav-drawer a:active {
  color: var(--cyan); background: rgba(0,205,202,.07);
  border-color: rgba(0,205,202,.18);
}
.nav-drawer a:hover::after,
.nav-drawer a:focus-visible::after,
.nav-drawer a:active::after { color: var(--cyan); transform: translateX(4px); }

/* Phone link — distinct cyan tint */
.nav-drawer a[href^="tel:"] {
  color: var(--cyan);
  background: rgba(0,205,202,.07);
  border-color: rgba(0,205,202,.18);
  font-weight: 800; letter-spacing: 0.02em;
  margin-top: 1.5rem;
}
.nav-drawer a[href^="tel:"]::after { content: "📞"; transform: none; }
.nav-drawer a[href^="tel:"]:hover::after { transform: translateX(0) scale(1.1); }

/* Free Quote CTA button */
.nav-drawer .btn {
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800;
  padding: 1.1rem 2rem;
  margin: 0.85rem 0 0.5rem;
  text-align: center;
  border-radius: 12px;
  text-transform: uppercase; letter-spacing: 0.06em;
  box-shadow: 0 10px 26px rgba(0,205,202,.25);
}
.nav-drawer .btn::after { content: none; }
.nav-drawer .btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,205,202,.35); }

/* Footer note at the bottom of the drawer */
.nav-drawer::after {
  content: "Plymouth · Devon · Cornwall · 10-year guarantee";
  display: block;
  margin-top: auto; padding-top: 1.5rem;
  font-size: .72rem; color: rgba(255,255,255,.4);
  text-align: center; letter-spacing: 0.05em;
}

/* Stagger entry animation for items when drawer opens */
@keyframes drawerItemIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-drawer.open a { animation: drawerItemIn .35s cubic-bezier(.4,0,.2,1) both; }
.nav-drawer.open a:nth-child(1) { animation-delay: .05s; }
.nav-drawer.open a:nth-child(2) { animation-delay: .09s; }
.nav-drawer.open a:nth-child(3) { animation-delay: .13s; }
.nav-drawer.open a:nth-child(4) { animation-delay: .17s; }
.nav-drawer.open a:nth-child(5) { animation-delay: .21s; }
.nav-drawer.open a:nth-child(6) { animation-delay: .25s; }
.nav-drawer.open a:nth-child(7) { animation-delay: .29s; }
.nav-drawer.open a:nth-child(8) { animation-delay: .33s; }
.nav-drawer.open a:nth-child(9) { animation-delay: .37s; }

/* ============================================================ HERO ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--black);
  padding: 160px 0 80px;
}
@media (max-width: 768px) { .hero { padding: 140px 0 70px; } }
.hero > .container { width: 100%; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,
      rgba(5,5,5,0.93) 0%,
      rgba(5,5,5,0.80) 40%,
      rgba(5,5,5,0.45) 65%,
      rgba(5,5,5,0.20) 100%
    ),
    url('../images/gallery/kitchen-navy-after1.jpg') center center / cover no-repeat;
}
.hero-grid { display: none; }
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.hero-particle { position: absolute; border-radius: 50%; animation: particleFloat linear infinite; }
@keyframes particleFloat {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: .15; }
  100% { transform: translateY(-20vh) scale(1.5); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,205,202,.1); border: 1px solid rgba(0,205,202,.25);
  color: var(--cyan); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.35rem 0.9rem; border-radius: 100px; margin-bottom: 1.1rem;
}
.hero-badge::before {
  content: ''; width: 5px; height: 5px;
  background: var(--cyan); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 .highlight { color: var(--cyan); }
.hero h1 .highlight-gold { color: var(--gold); }
.hero p { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 1.75rem; max-width: 480px; line-height: 1.65; }
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 2.25rem; }
.hero-stats {
  display: flex; gap: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.hero-stat-num { display: block; font-size: 1.6rem; font-weight: 900; color: var(--white); line-height: 1; }
.hero-stat-num .c { color: var(--cyan); }
.hero-stat-num .g { color: var(--gold); }
.hero-stat-label { font-size: 0.68rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; }
.hero-right { display: none; }
.hero-gallery-strip { display: none; }
.scroll-indicator {
  position: absolute; bottom: 1.5rem; left: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  color: rgba(255,255,255,.2); font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase; animation: bounce 2s ease-in-out infinite; z-index: 2;
}
.scroll-indicator svg { width: 16px; height: 16px; color: var(--cyan); }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ============================================================ SERVICE CARDS ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card {
  background: rgba(0,205,202,.05);
  border: 1px solid rgba(0,205,202,.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
  border: 2px solid var(--cyan); opacity: 0; transition: opacity var(--transition); pointer-events: none;
}
.service-card:hover {
  background: rgba(0,205,202,.09);
  border-color: rgba(0,205,202,.4);
  box-shadow: 0 16px 36px rgba(0,205,202,.18);
  transform: translateY(-4px);
}
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 54px; height: 54px; border-radius: var(--radius);
  background: var(--cyan-glow); border: 1px solid rgba(0,205,202,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: all var(--transition);
}
.service-icon svg { width: 26px; height: 26px; color: var(--cyan); }
.service-card:hover .service-icon { background: var(--cyan); }
.service-card:hover .service-icon svg { color: var(--black); }
.service-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.service-card p  { font-size: 0.94rem; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--cyan-dark); font-weight: 700; font-size: 0.87rem;
  margin-top: 1rem; transition: gap var(--transition);
}
.service-link svg { width: 14px; height: 14px; }
.service-card:hover .service-link { gap: 0.6rem; }

/* ============================================================ ABOUT ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-main {
  border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3;
  background: var(--black-card); border: 1px solid rgba(0,205,202,.15);
}
.about-image-main img { width: 100%; height: 100%; object-fit: cover; }
.about-image-wrap::before {
  content: ''; position: absolute; inset: -3px;
  border-radius: calc(var(--radius-xl) + 3px);
  background: linear-gradient(135deg, var(--cyan), transparent 50%, var(--gold));
  z-index: -1; opacity: .35;
}
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold); color: var(--white);
  padding: 1.25rem 1.5rem; border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow-gold);
}
.about-badge .num { display: block; font-size: 2rem; font-weight: 900; line-height: 1; }
.about-badge .lbl { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: .9; }
.about-content { padding-left: 1rem; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p  { margin-bottom: 1rem; }
.about-checklist { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.about-checklist li { display: flex; align-items: flex-start; gap: 0.75rem; font-weight: 500; color: var(--gray-700); }
.about-checklist li svg { width: 20px; height: 20px; color: var(--cyan); flex-shrink: 0; margin-top: 2px; }

/* ============================================================ STATS ============================================================ */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(0,205,202,.08);
  border: 1px solid rgba(0,205,202,.08); border-radius: var(--radius-lg); overflow: hidden;
}
.stat-item { padding: 2.5rem 2rem; text-align: center; background: var(--black-soft); transition: background var(--transition); }
.stat-item:hover { background: rgba(0,205,202,.04); }
.stat-number { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 900; color: var(--white); line-height: 1; display: block; }
.stat-number .c { color: var(--cyan); }
.stat-number .g { color: var(--gold); }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.5rem; }

/* ============================================================ FEATURES ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.feature-item { text-align: center; padding: 2rem 1.5rem; }
.feature-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--black); border: 2px solid rgba(0,205,202,.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; transition: all var(--transition);
}
.feature-icon svg { width: 30px; height: 30px; color: var(--cyan); }
.feature-item:hover .feature-icon { background: var(--cyan); border-color: var(--cyan); }
.feature-item:hover .feature-icon svg { color: var(--black); }
.feature-item h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.feature-item p  { font-size: 0.92rem; }

/* ============================================================ PROCESS ============================================================ */
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 34px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, var(--cyan), var(--gold)); z-index: 0;
}
.process-step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.step-num {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--black); border: 2px solid var(--cyan); color: var(--cyan);
  font-size: 1.2rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 20px rgba(0,205,202,.18); position: relative; z-index: 1;
}
.process-step h4 { font-size: 0.9rem; margin-bottom: 0.35rem; }
.process-step p  { font-size: 0.82rem; }

/* ============================================================ TRANSFORMATIONS (homepage gallery strip) ============================================================ */
.transformations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.transform-card {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: var(--black-card); border: 1px solid rgba(0,205,202,.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.transform-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-cyan); border-color: rgba(0,205,202,.3); }
.transform-card img { width: 100%; aspect-ratio: 3/5; object-fit: cover; object-position: top; transition: transform var(--transition); }
.transform-card:hover img { transform: scale(1.03); }
.transform-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, transparent 100%);
  padding: 2.5rem 1.25rem 1.25rem;
}
.transform-caption h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.2rem; }
.transform-caption span { color: var(--cyan); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.transform-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--white);
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.28rem 0.75rem; border-radius: 100px;
}

/* ============================================================ TESTIMONIALS ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: rgba(0,205,202,.05);
  border: 1px solid rgba(0,205,202,.18);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all var(--transition); position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 0.75rem; right: 1.25rem;
  font-size: 4rem; font-weight: 900; color: var(--cyan); opacity: .12;
  line-height: 1; font-family: serif;
}
.testimonial-card:hover { box-shadow: var(--shadow-cyan); border-color: rgba(0,205,202,.25); transform: translateY(-2px); }
.stars { display: flex; gap: 3px; margin-bottom: 1rem; color: var(--gold); }
.stars svg { width: 17px; height: 17px; fill: currentColor; }
.testimonial-card blockquote { font-size: 0.94rem; line-height: 1.75; color: var(--gray-600); font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: var(--black); font-size: 0.85rem; flex-shrink: 0;
}
.author-name   { font-weight: 700; color: var(--black); font-size: 0.88rem; }
.author-location { font-size: 0.78rem; color: var(--gray-500); }

/* ============================================================ CTA ============================================================ */
.cta-banner {
  background: var(--black-soft); border-top: 1px solid rgba(0,205,202,.1); border-bottom: 1px solid rgba(0,205,202,.1);
  padding: 5rem 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,205,202,.05), transparent 70%);
}
.cta-content { position: relative; z-index: 1; text-align: center; }
.cta-content h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-content p  { color: rgba(255,255,255,.6); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================ GALLERY ============================================================ */
.gallery-filters { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.gallery-filter-btn {
  padding: 0.48rem 1.2rem; border-radius: 100px;
  font-size: 0.82rem; font-weight: 700; color: var(--gray-600); background: var(--gray-100);
  transition: all var(--transition); text-transform: uppercase; letter-spacing: 0.05em;
}
.gallery-filter-btn:hover, .gallery-filter-btn.active { background: var(--black); color: var(--cyan); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.gallery-item {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; cursor: pointer; background: var(--black-card);
  border: 1px solid rgba(0,205,202,.1); transition: all var(--transition);
}
.gallery-item:hover { border-color: var(--cyan); box-shadow: var(--shadow-cyan); transform: translateY(-4px); }
.gallery-item img { width: 100%; display: block; transition: transform var(--transition); }
.gallery-item:hover img { transform: scale(1.02); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, transparent 45%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem; opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { color: var(--white); margin-bottom: 0.2rem; font-size: 1rem; }
.gallery-overlay span { color: var(--cyan); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.gallery-ba-labels {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between;
  padding: 0.75rem; pointer-events: none; z-index: 2;
}
.ba-tag { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.25rem 0.65rem; border-radius: 100px; }
.ba-tag.before { background: rgba(0,0,0,.65); color: rgba(255,255,255,.75); }
.ba-tag.after  { background: var(--cyan); color: var(--black); }
.gallery-item .ba-divider { position: absolute; left: 0; right: 0; height: 3px; background: var(--cyan); top: 50%; z-index: 2; box-shadow: 0 0 12px rgba(0,205,202,.5); }

/* Gallery note */
.gallery-add-note {
  background: rgba(0,205,202,.05); border: 2px dashed rgba(0,205,202,.2);
  border-radius: var(--radius-lg); padding: 1rem 1.5rem;
  text-align: center; color: var(--cyan-dark); font-size: 0.85rem; margin-bottom: 2rem;
}

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.95); z-index: 2000; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); border: 1px solid rgba(0,205,202,.15); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem; color: white;
  background: rgba(255,255,255,.1); width: 44px; height: 44px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background var(--transition); font-size: 1.4rem;
}
.lightbox-close:hover { background: var(--cyan); color: var(--black); }

/* Social follow */
.social-follow-banner { background: var(--black-soft); border: 1px solid rgba(0,205,202,.1); border-radius: var(--radius-xl); padding: 3rem; text-align: center; margin-top: 3rem; }
.social-follow-banner h3 { color: var(--white); margin-bottom: 0.5rem; }
.social-follow-banner p  { color: rgba(255,255,255,.5); margin-bottom: 2rem; }
.social-follow-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.social-follow-link { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.75rem 1.5rem; border-radius: var(--radius); font-weight: 700; font-size: 0.9rem; transition: all var(--transition); }
.social-follow-link svg { width: 20px; height: 20px; }
.social-follow-link.facebook  { background: #1877f2; color: white; }
.social-follow-link.facebook:hover  { background: #1565c0; transform: translateY(-2px); }
.social-follow-link.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.social-follow-link.instagram:hover { opacity: .9; transform: translateY(-2px); }
.social-follow-link.tiktok    { background: #111; color: white; border: 1px solid #2a2a2a; }
.social-follow-link.tiktok:hover    { background: #222; transform: translateY(-2px); }

/* ============================================================ CONTACT ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem; background: var(--gray-50); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); transition: all var(--transition); }
.contact-card:hover { border-color: var(--cyan); box-shadow: var(--shadow-cyan); }
.contact-card-icon { width: 44px; height: 44px; border-radius: var(--radius); background: var(--black); border: 1px solid rgba(0,205,202,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card-icon svg { width: 20px; height: 20px; color: var(--cyan); }
.contact-card h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-500); margin-bottom: 0.25rem; }
.contact-card p, .contact-card a { font-size: 0.98rem; font-weight: 700; color: var(--black); }
.contact-card a:hover { color: var(--cyan); }
.contact-areas { padding: 1.5rem; background: rgba(0,205,202,.04); border-radius: var(--radius-lg); border: 1px solid rgba(0,205,202,.15); }
.contact-areas h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cyan-dark); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.contact-areas h4 svg { width: 14px; height: 14px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-tag { background: var(--black); color: rgba(255,255,255,.65); border: 1px solid rgba(0,205,202,.12); font-size: 0.78rem; font-weight: 600; padding: 0.28rem 0.72rem; border-radius: 100px; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-md); }
.contact-form-wrap h3 { margin-bottom: 0.5rem; }
.contact-form-wrap > p { font-size: 0.95rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.8rem; font-weight: 700; color: var(--gray-700); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group select, .form-group textarea { padding: 0.8rem 1rem; border: 1px solid var(--gray-200); border-radius: var(--radius); font-size: 0.95rem; color: var(--gray-900); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,205,202,.1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; justify-content: center; padding: 1rem; }
.form-success { display: none; text-align: center; padding: 2rem; color: var(--cyan); }
.form-success svg { width: 50px; height: 50px; margin: 0 auto 1rem; }
.form-success h3 { color: var(--black); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); margin-top: 2rem; height: 300px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================ PAGE HERO ============================================================ */
.page-hero { padding: 11rem 0 5rem; background: var(--black); position: relative; overflow: hidden; }
@media (max-width: 768px) { .page-hero { padding: 9rem 0 4rem; } }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,205,202,.07) 0%, transparent 60%); }
.page-hero .container { position: relative; }
.page-hero-label { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(0,205,202,.08); border: 1px solid rgba(0,205,202,.2); color: var(--cyan); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.35rem 1rem; border-radius: 100px; margin-bottom: 1rem; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,.6); font-size: 1.1rem; max-width: 600px; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; font-size: 0.8rem; color: rgba(255,255,255,.3); }
.breadcrumb a { color: rgba(255,255,255,.45); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb svg { width: 13px; height: 13px; }

/* ============================================================ FAQ ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 0.75rem; overflow: hidden; transition: box-shadow var(--transition); }
.faq-item:hover { box-shadow: var(--shadow); }
.faq-question { width: 100%; text-align: left; padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-weight: 700; font-size: 0.98rem; color: var(--black); background: var(--white); transition: background var(--transition); }
.faq-question:hover { background: var(--gray-50); }
.faq-question svg { width: 20px; height: 20px; color: var(--cyan); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question { background: var(--gray-50); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; color: var(--gray-600); font-size: 0.95rem; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================================ FOOTER ============================================================ */
.footer { background: var(--black); padding: 4rem 0 2rem; border-top: 1px solid rgba(0,205,202,.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,.38); max-width: 280px; margin-top: 1rem; }
.footer-logo-img { height: 58px; width: auto; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-link { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); transition: all var(--transition); }
.social-link svg { width: 17px; height: 17px; }
.social-link:hover { background: var(--cyan); color: var(--black); border-color: var(--cyan); }
.footer-col h4 { color: var(--white); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { font-size: 0.87rem; color: rgba(255,255,255,.38); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--cyan); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.87rem; margin-bottom: 0.9rem; }
.footer-contact-item svg { width: 14px; height: 14px; color: var(--cyan); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a, .footer-contact-item span { color: rgba(255,255,255,.4); }
.footer-contact-item a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; color: rgba(255,255,255,.22); }
.footer-bottom a { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: var(--cyan); }
.company-no { color: rgba(255,255,255,.18); font-size: 0.77rem; }

/* Social strip (contact) */
.social-strip { background: var(--black-soft); border-bottom: 1px solid rgba(0,205,202,.08); padding: 2.5rem 0; }
.social-strip-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.social-strip-text h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 0.25rem; }
.social-strip-text p  { color: rgba(255,255,255,.4); font-size: 0.88rem; }
.social-strip-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-strip-link { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.62rem 1.2rem; border-radius: var(--radius); font-weight: 700; font-size: 0.84rem; transition: all var(--transition); }
.social-strip-link svg { width: 16px; height: 16px; }
.social-strip-link.fb  { background: #1877f2; color: white; }
.social-strip-link.fb:hover  { background: #1565c0; transform: translateY(-2px); }
.social-strip-link.ig  { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.social-strip-link.ig:hover  { opacity: .9; transform: translateY(-2px); }
.social-strip-link.tt  { background: rgba(255,255,255,.07); color: white; border: 1px solid rgba(255,255,255,.1); }
.social-strip-link.tt:hover  { background: rgba(255,255,255,.14); transform: translateY(-2px); }

/* Floating CTA — removed */
.float-cta { display: none; }

/* ============================================================ SCROLL ANIMATIONS ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ============================================================ NAV LOGO IMAGE ============================================================ */
.nav-logo-img {
  height: 78px; width: auto; object-fit: contain; display: block;
  transition: opacity var(--transition), height var(--transition);
}
.nav.scrolled .nav-logo-img { height: 64px; }
@media (max-width: 768px) {
  .nav-logo-img { height: 62px; }
  .nav.scrolled .nav-logo-img { height: 52px; }
}
.nav-logo:hover .nav-logo-img { opacity: 0.85; }
.footer-logo .nav-logo-img { height: 72px; }

/* ============================================================ BEFORE/AFTER STRIP (homepage) ============================================================ */
.ba-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.ba-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.ba-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-cyan); }
.ba-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-divider {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: var(--cyan); transform: translateX(-50%); z-index: 2;
}
.ba-divider::before {
  content: ''; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cyan); border: 2px solid var(--white);
  box-shadow: 0 0 12px rgba(0,205,202,.5);
}
.ba-label {
  position: absolute; top: 0.75rem; z-index: 3;
  background: rgba(10,10,10,.85); color: var(--white);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 4px;
  backdrop-filter: blur(4px);
}
/* Left/right split — labels side by side at top */
.ba-before { left: 0.75rem; border-left: 3px solid var(--gray-400); }
.ba-after  { right: 0.75rem; border-left: 3px solid var(--cyan); color: var(--cyan); }

/* Horizontal divider — for top/bottom split images */
.ba-h .ba-divider {
  top: 50%; left: 0; right: 0; bottom: auto;
  width: 100%; height: 2px;
  transform: translateY(-50%);
}
/* BEFORE label stays top-left; AFTER label moves to bottom-left */
.ba-h .ba-after {
  top: auto;
  bottom: 3.2rem; /* sit above the caption */
  right: auto;
  left: 0.75rem;
}

.ba-caption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: linear-gradient(transparent, rgba(10,10,10,.85));
  color: var(--white); font-size: 0.9rem; font-weight: 600;
  padding: 2rem 1rem 1rem; text-align: center;
}
@media (max-width: 768px) {
  .ba-strip { grid-template-columns: 1fr; gap: 1.25rem; }
  .ba-card { aspect-ratio: 4/3; }
}

/* ============================================================ GALLERY ITEM IMAGES ============================================================ */
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* Utilities */
.mt-4 { margin-top: 2rem; }
.d-flex { display: flex; }
.gap-2 { gap: 1rem; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }

/* ============================================================ RESPONSIVE ============================================================ */
/* HARD HORIZONTAL OVERFLOW GUARD — nothing ever escapes the viewport on any device */
html, body { max-width: 100%; overflow-x: hidden; }
img, video, iframe { max-width: 100%; }

/* NAV: switch to hamburger early so the mobile menu always works on tablets and small laptops */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none !important; }
  .nav-toggle { display: flex !important; }
  .nav-drawer { display: flex !important; } /* needs display:flex for opacity transition to work */
}
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form-wrap { padding: 1.75rem; }
}
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .nav { padding: 0.75rem 1rem; }
  .nav-container { border-radius: 18px; padding: 0.5rem 0.75rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .about-badge { right: 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
  .hero-stats { gap: 1rem; padding-top: 1.25rem; }
  .hero-stat-num { font-size: 1.15rem; }
  .hero-stat-label { font-size: 0.6rem; letter-spacing: 0.04em; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-wrap { padding: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .transformations-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  /* Generic 2-col guards — anything that's still 2-up collapses */
  .creds, .about-grid, .ba-strip, .blog-grid, .area-cards, .r-write-cards, .r-summary { grid-template-columns: 1fr !important; }
  /* Force every form to stack inputs */
  .form-row, form .form-grid, form .row, .contact-form .row { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .container { padding: 0 1rem; }
  h1 { font-size: clamp(1.65rem, 7vw, 2.4rem); }
  h2 { font-size: clamp(1.4rem, 6vw, 2rem); }
}

/* ============================================================
   GLOBAL CYAN-GLASS CARDS
   Used to replace heavy white-on-white cards across the site.
   Per-page inline <style> blocks are overridden by these because
   style.css is loaded BEFORE the inline <style>, so we use
   higher-specificity selectors below to ensure overrides.
   ============================================================ */
body .cred,
body .cards-grid .card,
body .blog-card,
body .review-card,
body .g-review-card,
body .r-write-card,
body .svc-hero-card,
body .faq-block,
body .r-platform-card {
  background: rgba(0,205,202,.04) !important;
  border: 1px solid rgba(0,205,202,.16) !important;
  transition: all var(--transition);
}
body .cred:hover,
body .cards-grid .card:hover,
body .blog-card:hover,
body .review-card:hover,
body .g-review-card:hover,
body .r-write-card:hover,
body .svc-hero-card:hover {
  background: rgba(0,205,202,.08) !important;
  border-color: rgba(0,205,202,.38) !important;
  box-shadow: 0 12px 30px rgba(0,205,202,.12) !important;
}

/* Article callouts — keep cyan-tinted left bar but match new system */
body .callout {
  background: rgba(0,205,202,.06) !important;
  border-left: 4px solid var(--cyan-dark) !important;
}
