/* ============================================
   UNIFIED TEK — Main Stylesheet
   Friendly & Approachable | Suffolk County, NY
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

/* ── CSS Variables ── */
:root {
  --blue:        #2563EB;
  --blue-dark:   #1D4ED8;
  --blue-light:  #EFF6FF;
  --teal:        #0D9488;
  --teal-light:  #F0FDFA;
  --orange:      #F97316;
  --orange-light:#FFF7ED;
  --text:        #1E293B;
  --text-muted:  #64748B;
  --text-light:  #94A3B8;
  --bg:          #FFFFFF;
  --bg-soft:     #F8FAFC;
  --border:      #E2E8F0;
  --radius:      14px;
  --radius-lg:   22px;
  --shadow-sm:   0 2px 8px rgba(37,99,235,.08);
  --shadow-md:   0 8px 30px rgba(37,99,235,.12);
  --shadow-lg:   0 20px 60px rgba(37,99,235,.16);
  --transition:  all .25s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--text-muted); }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: .3rem .85rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}
.section-title { margin-bottom: .75rem; }
.section-sub   { font-size: 1.1rem; max-width: 560px; }

/* ── Container ── */
.container { width: 90%; max-width: 1160px; margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: 99px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 18px rgba(37,99,235,.35);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,.4); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.btn-white {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 900;
  font-size: 1.45rem;
  color: var(--text);
}
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}
.logo span { color: var(--blue); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-muted);
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  border-radius: 99px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: .5rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .3rem;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px; height: 2.5px;
  background: var(--text);
  border-radius: 99px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 998;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--blue); }

/* ── PAGE WRAPPER ── */
.page { padding-top: 70px; }

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #EFF6FF 0%, #F0FDFA 50%, #F8FAFC 100%);
  padding: 5rem 0 4rem;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .45;
  pointer-events: none;
}
.hero-blob-1 { width: 500px; height: 500px; background: #BFDBFE; top: -120px; right: -80px; }
.hero-blob-2 { width: 350px; height: 350px; background: #99F6E4; bottom: -80px; left: -50px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: .35rem 1rem .35rem .6rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.4); }
}
.hero-title { margin-bottom: 1.25rem; }
.hero-title em { font-style: normal; color: var(--blue); }
.hero-sub { font-size: 1.15rem; margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-stack { position: relative; width: 340px; height: 340px; }
.hcard {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.hcard-main { width: 260px; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 3; }
.hcard-back1 { width: 230px; top: 30px; left: 30px; transform: rotate(-6deg); z-index: 2; opacity: .85; }
.hcard-back2 { width: 230px; bottom: 20px; right: 20px; transform: rotate(5deg); z-index: 1; opacity: .7; }
.hcard-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: .85rem;
}
.hcard-icon.blue  { background: var(--blue-light); }
.hcard-icon.teal  { background: var(--teal-light); }
.hcard-icon.orange{ background: var(--orange-light); }
.hcard h4 { font-size: 1rem; font-weight: 800; margin-bottom: .25rem; }
.hcard p  { font-size: .82rem; margin: 0; }
.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.stat { text-align: left; }
.stat-num { font-size: 1.6rem; font-weight: 900; color: var(--blue); line-height: 1; }
.stat-label { font-size: .78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }

/* ── SECTION SPACING ── */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-soft); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .section-sub { margin: 0 auto; }

/* ── SERVICE GRID (home preview) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.svc-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.svc-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.svc-card p  { font-size: .88rem; }
.svc-arrow {
  position: absolute;
  bottom: 1.4rem; right: 1.4rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  transition: var(--transition);
  opacity: 0;
}
.svc-card:hover .svc-arrow { opacity: 1; transform: translateX(3px); }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 1.25rem; }
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  transition: var(--transition);
}
.why-item:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.why-item-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-item-text h4 { font-size: .95rem; margin-bottom: .2rem; }
.why-item-text p  { font-size: .85rem; margin: 0; }
.why-visual {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}
.why-visual::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -30px;
  width: 250px; height: 250px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.why-visual h2 { color: #fff; font-size: 2rem; margin-bottom: .5rem; position: relative; }
.why-visual p  { color: rgba(255,255,255,.85); position: relative; }
.why-big-num { font-size: 5rem; font-weight: 900; line-height: 1; color: rgba(255,255,255,.15); position: relative; }

/* ── TESTIMONIALS / TRUST ── */
.trust-bar {
  background: var(--blue);
  padding: 1.5rem 0;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  white-space: nowrap;
}
.trust-item svg { opacity: .8; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  padding: 4rem 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content:'';
  position:absolute; inset:0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band h2 { color: #fff; margin-bottom: .75rem; position: relative; }
.cta-band p  { color: rgba(255,255,255,.85); margin-bottom: 2rem; font-size: 1.1rem; position: relative; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FOOTER ── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { color: #fff; margin-bottom: 1rem; }
.footer-brand .logo span { color: #60A5FA; }
.footer-brand p { font-size: .88rem; max-width: 260px; line-height: 1.7; }
.footer h4 {
  color: #fff;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { font-size: .9rem; transition: var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-contact p { font-size: .9rem; line-height: 1.8; }
.footer-contact a { color: #60A5FA; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .83rem; }

/* ── SERVICES PAGE ── */
.services-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  padding: 4rem 0 3rem;
  color: #fff;
  text-align: center;
}
.services-hero h1 { color: #fff; }
.services-hero p   { color: rgba(255,255,255,.85); font-size: 1.1rem; margin: .75rem auto 0; max-width: 520px; }

.cat-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 70px;
  z-index: 100;
}
.cat-nav-inner {
  display: flex;
  gap: .25rem;
  overflow-x: auto;
  padding: .75rem 0;
  scrollbar-width: none;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.1rem;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  color: var(--text-muted);
  white-space: nowrap;
  transition: var(--transition);
}
.cat-btn:hover, .cat-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.services-section { padding: 3.5rem 0; }
.services-section + .services-section { border-top: 1px solid var(--border); }
.cat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.cat-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.cat-header h2 { font-size: 1.6rem; margin-bottom: .2rem; }
.cat-header p   { font-size: .9rem; margin: 0; }

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.item-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.item-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.item-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.item-card h4 { font-size: .95rem; margin-bottom: .3rem; }
.item-card p  { font-size: .82rem; margin: 0; }

/* ── ABOUT PAGE ── */
.about-hero {
  background: linear-gradient(135deg, #EFF6FF 0%, #F0FDFA 100%);
  padding: 4rem 0;
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  color: #fff;
  text-align: center;
}
.about-visual .big-emoji { font-size: 5rem; margin-bottom: 1rem; }
.about-visual h3 { color: #fff; font-size: 1.5rem; margin-bottom: .5rem; }
.about-visual p  { color: rgba(255,255,255,.85); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.value-emoji { font-size: 2.4rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.value-card p  { font-size: .85rem; }

.area-section { padding: 4rem 0; }
.area-section .section-header { text-align: left; }
.area-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.area-tag {
  padding: .4rem 1rem;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 99px;
  font-weight: 700;
  font-size: .85rem;
}

/* ── CONTACT PAGE ── */
.contact-hero {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  padding: 4rem 0 3rem;
  color: #fff;
  text-align: center;
}
.contact-hero h1 { color: #fff; }
.contact-hero p   { color: rgba(255,255,255,.85); font-size: 1.1rem; margin: .75rem auto 0; max-width: 480px; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  padding: 4rem 0;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.info-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}
.info-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.info-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.info-card h4 { font-weight: 800; margin-bottom: .25rem; }
.info-card p  { font-size: .9rem; margin: 0; line-height: 1.6; }
.info-card a  { color: var(--blue); font-weight: 600; }

/* Form */
.contact-form-wrap {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-title { margin-bottom: 1.75rem; }
.form-title h3 { font-size: 1.4rem; margin-bottom: .3rem; }
.form-title p  { font-size: .9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.form-group label { font-weight: 700; font-size: .88rem; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--bg-soft);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; padding: .9rem; font-size: 1rem; margin-top: .5rem; }
.form-note { text-align: center; font-size: .8rem; color: var(--text-light); margin-top: .75rem; }

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { margin-bottom: .5rem; }

/* ── MAP EMBED PLACEHOLDER ── */
.map-section { padding: 0; }
.map-wrap {
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  margin-top: 3rem;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── PAGE HERO GENERIC ── */
.page-hero-mini {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.breadcrumb a { color: var(--blue); font-weight: 600; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner        { grid-template-columns: 1fr; text-align: center; }
  .hero-sub          { margin-left: auto; margin-right: auto; }
  .hero-actions      { justify-content: center; }
  .hero-stats        { justify-content: center; }
  .hero-visual       { display: none; }
  .why-grid          { grid-template-columns: 1fr; }
  .about-hero-inner  { grid-template-columns: 1fr; }
  .contact-layout    { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .form-row          { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-inner { gap: 1.5rem; }
  .hero-stats { flex-direction: column; align-items: center; }
}
