/* ============================================================
   Clear Line Signs — Premium Shared Stylesheet
   Rich teal palette · Atmospheric depth · Geometric textures
   ============================================================ */


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

:root {
  /* Core brand teal palette */
  --teal-50:    #E6F4F6;
  --teal-100:   #C0E4EA;
  --teal-200:   #7FCAD6;
  --teal-400:   #00A3BB;
  --teal-500:   #00697A;   /* primary brand */
  --teal-600:   #00515F;
  --teal-700:   #003D48;
  --teal-800:   #002830;
  --teal-900:   #001A1F;

  /* Neutrals */
  --white:      #FFFFFF;
  --gray-50:    #F8FAFB;
  --gray-100:   #EEF3F4;
  --gray-200:   #D6E4E7;
  --gray-300:   #B0C8CC;
  --gray-500:   #6A8A90;
  --gray-700:   #2D4A50;
  --gray-900:   #0A2228;

  /* Semantic */
  --bg-dark:    var(--teal-900);
  --bg-mid:     var(--teal-800);
  --surface:    rgba(255,255,255,0.04);
  --border:     rgba(255,255,255,0.1);
  --border-light: var(--gray-200);

  --text:       #1A3035;
  --text-muted: #5A7A80;
  --text-light: rgba(255,255,255,0.7);
  --text-dim:   rgba(255,255,255,0.4);

  /* Radius */
  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(0,105,122,0.12);
  --sh:    0 8px 32px rgba(0,105,122,0.16);
  --sh-lg: 0 20px 60px rgba(0,105,122,0.22);
  --sh-dark: 0 20px 60px rgba(0,0,0,0.4);

  /* Timing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--teal-900);
  padding: 9px 0;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}
.topbar .inner {
  max-width: 1240px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.topbar-left {
  display: flex; align-items: center; gap: 6px; color: var(--text-dim);
}
.topbar-left svg { width: 13px; height: 13px; opacity: 0.5; flex-shrink: 0; }
.topbar a { color: var(--text-light); text-decoration: none; transition: color .2s; }
.topbar a:hover { color: var(--white); }
.tb-left { color: var(--text-dim); }
.tb-right { display: flex; align-items: center; gap: 20px; }

/* ── NAV ── */
nav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 0; z-index: 500;
  box-shadow: 0 1px 20px rgba(0,105,122,0.08);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(0,105,122,0.12); }

.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: 72px;
}
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo img { height: 40px; width: auto; display: block; }

.nav-links { display: flex; list-style: none; gap: 2px; align-items: center; }
.nav-links a {
  display: block; padding: 8px 14px;
  font-size: 0.875rem; font-weight: 500;
  color: var(--gray-700); text-decoration: none; border-radius: var(--r-sm);
  transition: color .2s, background .2s; white-space: nowrap;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 2px; background: var(--teal-500); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.25s var(--ease);
}
.nav-links a:hover { color: var(--teal-500); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--teal-500); font-weight: 600; }

.nav-cta {
  background: var(--teal-500) !important; color: var(--white) !important;
  padding: 10px 22px !important; border-radius: var(--r-sm) !important;
  font-weight: 600 !important; margin-left: 8px;
  box-shadow: 0 4px 14px rgba(0,105,122,0.3);
  transition: background .2s, transform .2s, box-shadow .2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--teal-600) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,105,122,0.4) !important; }

.nav-phone {
  color: var(--teal-500) !important;
  font-weight: 600 !important;
  font-size: 0.875rem;
  white-space: nowrap;
}
.nav-phone::after { display: none !important; }
.nav-phone:hover { color: var(--teal-600) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--teal-500); border-radius: 2px; transition: .3s; }

/* ── HERO (homepage) ── */
.home-hero {
  background: var(--teal-900);
  position: relative; overflow: hidden;
  padding: 120px 32px 100px; text-align: center;
  min-height: 88vh; display: flex; align-items: center;
  background-size: cover; background-position: center;
}

/* Dark overlay so text stays readable over photo */
.home-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    rgba(0,26,31,0.72),
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0,163,187,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(0,105,122,0.18) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* Geometric diamond grid — from logo mark */
.home-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.025) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255,255,255,0.025) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255,255,255,0.025) 25%, transparent 25%),
    linear-gradient(45deg,  rgba(255,255,255,0.025) 25%, transparent 25%);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,163,187,0.12); border: 1px solid rgba(0,163,187,0.25);
  color: var(--teal-200); font-size: 0.73rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 20px; border-radius: 100px; margin-bottom: 36px;
  animation: fadeUp 0.8s var(--ease) both;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-400); flex-shrink: 0;
  box-shadow: 0 0 8px var(--teal-400); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

.home-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 400; line-height: 1.08;
  color: var(--white); letter-spacing: -0.02em; margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s var(--ease) both;
}
.home-hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--teal-400) 0%, var(--teal-200) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-light); max-width: 580px; margin: 0 auto 44px;
  font-weight: 300; line-height: 1.8;
  animation: fadeUp 0.8s 0.2s var(--ease) both;
}

.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s var(--ease) both;
}

/* Glass cards below hero */
.hero-stats {
  display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
  margin-top: 80px; padding-top: 56px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.8s 0.4s var(--ease) both;
}
.stat { text-align: center; padding: 0 48px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-num { display: block; font-family: 'DM Serif Display', serif; font-size: 2.6rem; color: var(--white); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.72rem; color: var(--text-dim); letter-spacing: 0.12em; text-transform: uppercase; }

@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--teal-900);
  position: relative; overflow: hidden;
  padding: 80px 32px 72px; text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(0,163,187,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 75% 40%, rgba(0,81,95,0.2) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.02) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255,255,255,0.02) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255,255,255,0.02) 25%, transparent 25%),
    linear-gradient(45deg,  rgba(255,255,255,0.02) 25%, transparent 25%);
  background-size: 48px 48px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal-400); margin-bottom: 16px;
}
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 400;
  color: var(--white); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 18px;
}
.page-hero p {
  font-size: 1.08rem; color: var(--text-light);
  max-width: 560px; margin: 0 auto; font-weight: 300; line-height: 1.75;
}

/* ── LAYOUT ── */
section { padding: 96px 32px; }
.container { max-width: 1240px; margin: 0 auto; }

.overline {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal-500); margin-bottom: 16px;
}
.overline::before {
  content: ''; width: 24px; height: 2px; background: var(--teal-500); border-radius: 2px; flex-shrink: 0;
}

h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400;
  color: var(--gray-900); line-height: 1.2; margin-bottom: 18px; letter-spacing: -0.02em;
}
h2.light { color: var(--white); }
.lead {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 620px; font-weight: 300; line-height: 1.8;
}
.lead.light { color: var(--text-light); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; font-weight: 600; font-family: 'DM Sans', sans-serif;
  border-radius: var(--r-sm); transition: all 0.25s var(--ease);
  cursor: pointer; border: none; font-size: 0.95rem; line-height: 1;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--teal-500); color: var(--white);
  padding: 15px 30px; box-shadow: 0 4px 20px rgba(0,105,122,0.35);
}
.btn-primary:hover { background: var(--teal-600); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,105,122,0.45); }

.btn-white {
  background: var(--white); color: var(--teal-600);
  padding: 15px 30px; box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  font-weight: 700;
}
.btn-white:hover { background: var(--teal-50); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

.btn-ghost {
  background: transparent; color: var(--white);
  padding: 14px 28px; border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }

.btn-outline {
  background: transparent; color: var(--teal-500);
  padding: 13px 26px; border: 1.5px solid var(--teal-200);
}
.btn-outline:hover { background: var(--teal-50); border-color: var(--teal-500); }

/* ── SECTION DIVIDERS ── */
.section-dark { background: var(--teal-900); }
.section-mid  { background: var(--teal-800); }
.section-muted { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }

/* ── GLASS CARD ── */
.glass-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
}

/* ── TRUST BAR ── */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 18px 32px; }
.trust-bar-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.83rem; font-weight: 500; color: var(--gray-500);
  padding: 6px 28px; border-right: 1px solid var(--gray-200);
}
.trust-item:last-child { border-right: none; }
.trust-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-500); flex-shrink: 0; }

/* ── SERVICE CARDS ── */
.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--gray-200);
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gray-200);
  margin-top: 56px;
}
.svc-card {
  background: var(--white); padding: 44px 36px;
  text-decoration: none; display: block; color: inherit;
  position: relative; transition: background 0.25s;
  border: none;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-400));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.svc-card:hover { background: var(--gray-50); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon-wrap {
  width: 56px; height: 56px; border-radius: var(--r);
  background: linear-gradient(135deg, var(--teal-50), var(--teal-100));
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
  transition: background 0.25s;
}
.svc-card:hover .svc-icon-wrap { background: linear-gradient(135deg, var(--teal-100), var(--teal-200)); }
.svc-icon-wrap svg { width: 28px; height: 28px; }
.svc-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; font-weight: 400; color: var(--gray-900); margin-bottom: 12px; }
.svc-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.tag {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal-600); background: var(--teal-50);
  padding: 4px 11px; border-radius: 100px; border: 1px solid var(--teal-100);
}
.svc-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--teal-500); font-size: 0.83rem; font-weight: 600;
  margin-top: 22px; opacity: 0; transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s;
}
.svc-card:hover .svc-arrow { opacity: 1; transform: translateX(0); }

/* ── FEATURE STRIP (WHY US) ── */
.feature-strip {
  background: var(--teal-900);
  position: relative; overflow: hidden;
}
.feature-strip::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(0,163,187,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 30%, rgba(0,105,122,0.15) 0%, transparent 55%);
  pointer-events: none;
}
.feature-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px;
  background: rgba(255,255,255,0.06); border-radius: var(--r-lg); overflow: hidden;
  margin-top: 52px; position: relative; z-index: 1;
}
.feature-item {
  background: rgba(255,255,255,0.03); padding: 40px 28px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.25s;
}
.feature-item:hover { background: rgba(255,255,255,0.07); }
.feature-num {
  font-family: 'DM Serif Display', serif; font-size: 3rem; color: rgba(255,255,255,0.08); line-height: 1; margin-bottom: 16px;
}
.feature-item h4 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.feature-item p { font-size: 0.86rem; color: var(--text-dim); line-height: 1.7; }
.feature-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,163,187,0.15); border: 1px solid rgba(0,163,187,0.3);
  margin-bottom: 16px;
}
.feature-check svg { width: 14px; height: 14px; }

/* ── PROCESS ── */
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  margin-top: 60px; position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 36px;
  left: calc(12.5% + 18px); right: calc(12.5% + 18px);
  height: 1px; background: linear-gradient(90deg, var(--teal-200), var(--teal-100), var(--teal-200));
}
.process-step { padding: 0 24px; position: relative; z-index: 1; }
.process-num {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid var(--teal-200);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: var(--teal-500);
  box-shadow: var(--sh-sm);
}
.process-step .step-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal-500); margin-bottom: 8px; }
.process-step h3 { font-size: 1.05rem; font-weight: 600; color: var(--gray-900); margin-bottom: 10px; }
.process-step p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }

/* ── SIGN TYPES GRID ── */
.types-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(175px,1fr)); gap: 10px;
  margin-top: 44px;
}
.type-chip {
  background: var(--white); border: 1.5px solid var(--gray-200);
  padding: 14px 16px; border-radius: var(--r);
  font-size: 0.85rem; font-weight: 500; color: var(--gray-700);
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: all 0.2s var(--ease);
  box-shadow: var(--sh-sm);
}
.type-chip:hover { border-color: var(--teal-500); color: var(--teal-600); box-shadow: 0 4px 16px rgba(0,105,122,0.14); transform: translateY(-1px); }
.type-chip::before { content: '→'; color: var(--teal-400); font-size: 0.9rem; flex-shrink: 0; }

/* ── INDUSTRIES ── */
.ind-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(155px,1fr)); gap: 10px;
  margin-top: 44px;
}
.ind-chip {
  background: var(--teal-900); color: rgba(255,255,255,0.65);
  padding: 15px 16px; border-radius: var(--r);
  font-size: 0.84rem; font-weight: 500;
  text-decoration: none; text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s var(--ease);
}
.ind-chip:hover { background: var(--teal-700); color: var(--white); border-color: rgba(255,255,255,0.18); transform: translateY(-1px); }

/* ── LOCATIONS ── */
.loc-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 12px;
  margin-top: 44px;
}
.loc-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  padding: 22px 20px; border-radius: var(--r); text-decoration: none;
  transition: background 0.2s;
}
.loc-card:hover { background: rgba(255,255,255,0.1); }
.loc-name { display: block; font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.loc-desc { font-size: 0.76rem; color: var(--text-dim); }

/* ── BLOG CARDS ── */
.blog-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px;
}
.blog-card {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gray-200);
  background: var(--white); text-decoration: none; display: block; color: inherit;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  box-shadow: var(--sh-sm);
}
.blog-card:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.bc-img { height: 160px; position: relative; overflow: hidden; background-size: cover; background-position: center; }
.bc-img::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,30,40,0.35); z-index: 0;
}
.bc-img-bg {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--teal-800) 0%, var(--teal-700) 100%);
  display: flex; align-items: center; justify-content: center;
}
.bc-label { z-index: 2; }
.bc-img-bg svg { width: 60px; height: 60px; opacity: 0.15; }
.bc-label {
  position: absolute; top: 14px; left: 14px;
  background: var(--teal-500); color: var(--white);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.bc-body { padding: 26px; }
.bc-body h3 { font-family: 'DM Serif Display', serif; font-size: 1.1rem; font-weight: 400; color: var(--gray-900); margin-bottom: 10px; line-height: 1.4; }
.bc-body p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }
.bc-link { color: var(--teal-500); font-size: 0.84rem; font-weight: 600; margin-top: 16px; display: inline-flex; align-items: center; gap: 5px; }

/* ── QUOTE / CONTACT FORM ── */
.quote-wrap {
  background: var(--white); border-radius: var(--r-xl); padding: 48px;
  box-shadow: var(--sh-lg); border: 1px solid var(--gray-200);
}
.quote-wrap h3 { font-family: 'DM Serif Display', serif; font-size: 1.6rem; font-weight: 400; color: var(--gray-900); margin-bottom: 6px; }
.quote-wrap .form-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; }

.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 0.73rem; font-weight: 700; color: var(--gray-500); margin-bottom: 7px; letter-spacing: 0.08em; text-transform: uppercase; }
input, select, textarea {
  width: 100%; border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm); padding: 13px 15px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--text);
  background: var(--white); outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(0,105,122,0.1); }
textarea { resize: vertical; min-height: 120px; }
.submit-btn {
  width: 100%; background: var(--teal-500); color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700;
  padding: 16px; border: none; border-radius: var(--r-sm);
  cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 8px; box-shadow: 0 4px 16px rgba(0,105,122,0.3);
}
.submit-btn:hover { background: var(--teal-600); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,105,122,0.4); }
.form-note { font-size: 0.75rem; color: var(--gray-300); text-align: center; margin-top: 12px; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--teal-900); position: relative; overflow: hidden;
  padding: 96px 32px; text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(0,163,187,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 75% 50%, rgba(0,105,122,0.18) 0%, transparent 55%);
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: var(--text-light); font-size: 1.08rem; font-weight: 300; max-width: 500px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--teal-900);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem;
}
.footer-top {
  max-width: 1240px; margin: 0 auto; padding: 72px 32px 52px;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 56px;
}

/* ── FOOTER GRID (matches shared.js footer HTML) ── */
.footer-grid {
  max-width: 1240px; margin: 0 auto; padding: 64px 32px 44px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px;
}

.footer-brand {}
.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 34px; width: auto; opacity: 0.9; }
.footer-brand p { font-size: 0.87rem; color: var(--text-dim); line-height: 1.8; margin-bottom: 12px; }
.footer-brand a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.87rem; transition: color .2s; }
.footer-brand a:hover { color: var(--white); }

.footer-col p { line-height: 1.75; margin-bottom: 12px; color: rgba(255,255,255,0.42); font-size: 0.87rem; }
.footer-col h4 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.38); text-decoration: none; font-size: 0.86rem; transition: color .2s; }
.footer-col a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  max-width: 1240px; margin: 0 auto; padding: 22px 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 0.78rem; color: rgba(255,255,255,0.28);
}
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 36px; }
  .process-grid::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding: 48px 24px 32px; gap: 32px; }
}
@media (max-width: 768px) {
  section { padding: 72px 20px; }
  .hero-stats { flex-direction: column; gap: 0; }
  .stat { padding: 16px 24px; border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .trust-item { border-right: none; padding: 7px 14px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white); border-top: 1px solid var(--gray-200);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 15px 24px; border-bottom: 1px solid var(--gray-100); border-radius: 0; }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 12px 24px !important; text-align: center; }
  .nav-inner { position: relative; height: 64px; }
  .hamburger { display: flex; }
  .svc-grid, .feature-grid, .process-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .home-hero { min-height: auto; padding: 80px 20px 70px; }
  .quote-wrap { padding: 28px 20px; }
  .tb-right { gap: 12px; }
  .nav-phone { display: none; }
}
