/* ============================================================
   Automaalaamo Timantti — Shared Stylesheet
   Amber theme, locked. All pages link to this file.
   ============================================================ */

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

:root {
  --bg:   #0c0c0e; --bg2: #111114; --bg3: #18181c; --bg4: #1f1f24;
  --accent: #f59e0b; --accent2: #fbbf24;
  --accent-glow: rgba(245,158,11,0.15); --accent-rgb: 245,158,11;
  --white: #fff; --t1: #f0f0f2; --t2: #a0a0aa; --t3: #65656e;
  --border: rgba(255,255,255,0.06);
  --ease: cubic-bezier(0.16,1,0.3,1);
  --nav-h: 68px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--bg); color: var(--t1); overflow-x: hidden; }

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 3rem; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  transition: all .4s var(--ease); border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(12,12,14,0.95); backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.logo {
  text-decoration: none; display: flex; align-items: center;
}
.logo-text {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem;
  font-weight: 700; color: var(--white); letter-spacing: -.5px; line-height: 1;
}
.logo-text i { color: var(--accent); font-style: normal; }

.nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--t2); text-decoration: none; font-size: .83rem; font-weight: 500;
  transition: color .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { font-weight: 600; }

.nav-call {
  display: flex; align-items: center; gap: .45rem;
  background: var(--accent); color: var(--bg) !important;
  padding: .5rem 1.2rem; border-radius: 8px; font-weight: 700;
  font-size: .82rem; transition: all .3s var(--ease); text-decoration: none;
}
.nav-call:hover {
  background: var(--accent2); transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(var(--accent-rgb),.35);
}

.ins-badge {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(var(--accent-rgb),.08); border: 1px solid rgba(var(--accent-rgb),.18);
  color: var(--accent); padding: .3rem .75rem; border-radius: 20px;
  font-size: .72rem; font-weight: 600; white-space: nowrap;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 5px;
}
.hamburger span { width: 22px; height: 2px; background: var(--white); transition: all .3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mob-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(12,12,14,.98); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mob-menu.active { display: flex; }
.mob-menu a { color: var(--white); text-decoration: none; font-size: 1.5rem; font-weight: 700; }
.mob-menu a:hover { color: var(--accent); }
.mob-call-big {
  display: flex; align-items: center; gap: .6rem;
  background: var(--accent); color: var(--bg) !important;
  padding: .85rem 2rem; border-radius: 12px; font-weight: 700; font-size: 1.1rem;
  text-decoration: none; margin-top: .5rem;
}

/* ── STICKY MOBILE CALL BAR ──────────────────────────────── */
.sticky-call {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--accent); padding: .9rem;
  text-align: center; font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1rem;
}
.sticky-call a {
  color: var(--bg); text-decoration: none;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}

/* ── PAGE WRAPPER ────────────────────────────────────────── */
.page-wrap { padding-top: var(--nav-h); }

/* ── HERO (etusivu) ──────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 4rem; position: relative; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--accent-glow); border: 1px solid rgba(var(--accent-rgb),.2);
  color: var(--accent); padding: .4rem 1rem; border-radius: 6px;
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; width: fit-content; margin-bottom: 1.5rem;
}
.hero-tag::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%; animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem,4.5vw,3.8rem);
  font-weight: 700; line-height: 1.06; letter-spacing: -2px; margin-bottom: 1.1rem;
}
.acc { color: var(--accent); }
.hero p { color: var(--t2); font-size: 1.05rem; line-height: 1.7; max-width: 480px; margin-bottom: 1.5rem; }

.trust-row { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 2rem; }
.trust-badge {
  display: flex; align-items: center; gap: .4rem;
  background: var(--bg3); border: 1px solid var(--border);
  padding: .4rem .85rem; border-radius: 6px;
  font-size: .78rem; font-weight: 500; color: var(--t2);
}
.trust-badge b { color: var(--t1); }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.8) contrast(1.1); display: block; }
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 30%);
}

.geo { position: absolute; border-radius: 50%; border: 1px solid rgba(var(--accent-rgb),.1); pointer-events: none; }
.geo-1 { width: 500px; height: 500px; top: -100px; right: -100px; }
.geo-2 { width: 300px; height: 300px; bottom: -50px; left: -50px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 1.8rem; border-radius: 10px; font-weight: 600;
  font-size: .92rem; cursor: pointer; transition: all .35s var(--ease);
  border: none; text-decoration: none; font-family: 'Outfit', sans-serif;
}
.btn-accent {
  background: var(--accent); color: var(--bg);
  box-shadow: 0 8px 32px rgba(var(--accent-rgb),.2);
}
.btn-accent:hover {
  background: var(--accent2); transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(var(--accent-rgb),.35);
}
.btn-ghost { background: var(--bg3); color: var(--t1); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--bg4); border-color: rgba(255,255,255,.12); }
.btn-call {
  background: var(--accent); color: var(--bg);
  font-size: 1rem; font-weight: 700; padding: 1rem 2rem;
  box-shadow: 0 8px 32px rgba(var(--accent-rgb),.25);
}
.btn-call:hover { background: var(--accent2); transform: translateY(-2px); }

/* ── STATS STRIP ─────────────────────────────────────────── */
.stats-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.stat-item { padding: 2rem; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Space Grotesk',sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--accent); }
.stat-label { color: var(--t3); font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; margin-top: .25rem; }

/* ── SECTION UTILITIES ───────────────────────────────────── */
.section-pad { padding: 5rem 4rem; }
.section-label {
  display: flex; align-items: center; gap: .75rem;
  color: var(--accent); font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 32px; height: 2px; background: var(--accent); }
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 700;
  letter-spacing: -1px; margin-bottom: 2.5rem; max-width: 620px;
}
.center { text-align: center; }
.center .section-label { justify-content: center; }
.center .section-title { margin-left: auto; margin-right: auto; }

/* ── SERVICE CARDS ───────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.25rem; max-width: 1200px; margin: 0 auto;
}
.svc-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; text-decoration: none;
  display: block; transition: all .4s var(--ease);
}
.svc-card:hover {
  transform: translateY(-6px); border-color: rgba(var(--accent-rgb),.25);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.svc-card:hover .svc-img img { transform: scale(1.06); }
.svc-img { height: 190px; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); display: block; }
.svc-body { padding: 1.5rem; }
.svc-num { font-family: 'Space Grotesk',sans-serif; font-size: .72rem; color: var(--accent); font-weight: 600; letter-spacing: 1px; margin-bottom: .4rem; }
.svc-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; color: var(--t1); }
.svc-body p { color: var(--t2); font-size: .85rem; line-height: 1.55; margin-bottom: .85rem; }
.svc-tags { display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: .85rem; }
.svc-tag { font-size: .68rem; font-weight: 500; padding: .2rem .55rem; border-radius: 4px; background: var(--bg4); color: var(--t3); border: 1px solid var(--border); }
.svc-arrow { display: inline-flex; align-items: center; gap: .4rem; color: var(--accent); font-weight: 600; font-size: .82rem; transition: gap .3s; }
.svc-card:hover .svc-arrow { gap: .75rem; }

/* ── BANNER (vahinkotarkastus highlight) ─────────────────── */
.banner {
  max-width: 1200px; margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
  border: 1px solid rgba(var(--accent-rgb),.15); border-radius: 16px;
  padding: 2.5rem 3rem; display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 2rem; position: relative; overflow: hidden;
}
.banner::before {
  content: ''; position: absolute; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(var(--accent-rgb),.07), transparent);
  border-radius: 50%; top: -100px; right: 0;
}
.banner-label {
  font-family: 'Space Grotesk',sans-serif; font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: .4rem;
}
.banner h3 { font-family: 'Space Grotesk',sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: .4rem; letter-spacing: -.5px; }
.banner p { color: var(--t2); font-size: .92rem; line-height: 1.6; max-width: 560px; }

/* ── WHY US ──────────────────────────────────────────────── */
.why-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; max-width: 1200px; margin: 0 auto; }
.why-item { padding: 2.25rem 1.75rem; border-right: 1px solid var(--border); text-align: center; transition: background .3s; }
.why-item:last-child { border-right: none; }
.why-item:hover { background: var(--bg3); }
.why-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--accent-glow); border: 1px solid rgba(var(--accent-rgb),.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin: 0 auto 1rem;
}
.why-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: .35rem; }
.why-item p { color: var(--t3); font-size: .82rem; line-height: 1.5; }

/* ── AREA TAGS ───────────────────────────────────────────── */
.alue-section { background: var(--bg2); border-top: 1px solid var(--border); }
.alue-inner {
  max-width: 1100px; margin: 0 auto; padding: 2.5rem 4rem;
  display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: center;
}
.alue-inner h3 { font-family: 'Space Grotesk',sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: .35rem; }
.alue-inner p { color: var(--t3); font-size: .82rem; }
.alue-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.alue-tag {
  font-size: .78rem; font-weight: 500; padding: .35rem .85rem; border-radius: 20px;
  background: var(--bg3); color: var(--t2); border: 1px solid var(--border); transition: all .3s;
}
.alue-tag.main { background: var(--accent-glow); border-color: rgba(var(--accent-rgb),.25); color: var(--accent); font-weight: 600; }

/* ── SUB-HERO (inner pages) ──────────────────────────────── */
.sub-hero {
  min-height: 42vh; display: grid; grid-template-columns: 1.2fr 1fr;
  overflow: hidden; position: relative;
}
.sub-hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 4rem 3rem; position: relative; z-index: 2;
}
.sub-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem,4vw,3rem); font-weight: 700;
  letter-spacing: -1.5px; margin-bottom: .75rem;
}
.sub-hero p { color: var(--t2); font-size: 1rem; line-height: 1.7; max-width: 520px; margin-bottom: 1rem; }
.sub-hero-img { position: relative; overflow: hidden; }
.sub-hero-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.75); display: block; }
.sub-hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 40%);
}
.kw-chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .75rem; }
.kw-chip { font-size: .7rem; padding: .25rem .65rem; border-radius: 4px; background: var(--bg3); color: var(--t3); border: 1px solid var(--border); }

/* ── FEATURE ROWS ────────────────────────────────────────── */
.feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1100px; margin: 0 auto 4.5rem; }
.feat-row.flip { direction: rtl; }
.feat-row.flip > * { direction: ltr; }
.feat-img { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.feat-img img { width: 100%; height: 320px; object-fit: cover; display: block; }
.feat-text h3 { font-family: 'Space Grotesk',sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: .85rem; letter-spacing: -.5px; }
.feat-text p { color: var(--t2); line-height: 1.7; margin-bottom: 1.25rem; font-size: .93rem; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.check-list li { display: flex; align-items: center; gap: .7rem; color: var(--t1); font-size: .9rem; }
.check-list li::before {
  content: ''; width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0;
  background: var(--accent-glow) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23f59e0b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
  border: 1px solid rgba(var(--accent-rgb),.2);
}

/* ── PROCESS STEPS ───────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; max-width: 1100px; margin: 2rem auto 0; }
.proc-step { background: var(--bg3); border: 1px solid var(--border); border-radius: 14px; padding: 1.75rem 1.35rem; text-align: center; transition: border-color .3s; }
.proc-step:hover { border-color: rgba(var(--accent-rgb),.2); }
.proc-num { font-family: 'Space Grotesk',sans-serif; width: 42px; height: 42px; border-radius: 10px; background: var(--accent); color: var(--bg); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.05rem; margin: 0 auto .85rem; }
.proc-step h4 { font-weight: 700; margin-bottom: .35rem; font-size: .92rem; }
.proc-step p { color: var(--t3); font-size: .82rem; line-height: 1.5; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--t1);
  font-family: 'Outfit', sans-serif; font-size: .97rem; font-weight: 600;
  padding: 1.25rem 0; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color .3s;
}
.faq-q:hover { color: var(--accent); }
.faq-ico { font-size: 1.1rem; color: var(--accent); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 1.25rem; color: var(--t2); font-size: .9rem; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── INFO CARDS ──────────────────────────────────────────── */
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; max-width: 1100px; margin: 0 auto; }
.info-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 14px; padding: 1.75rem; }
.info-card .tag { display: inline-block; font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: .6rem; }
.info-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.info-card p { color: var(--t2); font-size: .87rem; line-height: 1.6; }

/* ── PRICE CARDS ─────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; max-width: 1100px; margin: 0 auto; }
.price-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 14px; padding: 1.75rem 2rem; transition: border-color .3s; }
.price-card:hover { border-color: rgba(var(--accent-rgb),.2); }
.price-card .ptag { display: inline-block; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: .5rem; }
.price-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .35rem; }
.price-from { font-family: 'Space Grotesk',sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--accent); margin: .5rem 0 .25rem; }
.price-from span { font-size: .85rem; font-weight: 500; color: var(--t3); }
.price-card p { color: var(--t2); font-size: .83rem; line-height: 1.55; }
.price-note { text-align: center; margin-top: 1.5rem; color: var(--t3); font-size: .82rem; }

/* ── CTA BOX ─────────────────────────────────────────────── */
.cta-section { padding: 4rem 4rem; }
.cta-box {
  max-width: 1000px; margin: 0 auto;
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
  border: 1px solid var(--border); border-radius: 20px; padding: 3.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.cta-box::before { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle,rgba(var(--accent-rgb),.08),transparent); border-radius: 50%; top: -150px; right: -100px; }
.cta-box::after  { content: ''; position: absolute; width: 300px; height: 300px; background: radial-gradient(circle,rgba(var(--accent-rgb),.05),transparent); border-radius: 50%; bottom: -100px; left: -50px; }
.cta-box h2 { font-family: 'Space Grotesk',sans-serif; font-size: 1.9rem; font-weight: 700; margin-bottom: .65rem; position: relative; z-index: 1; }
.cta-box p { color: var(--t2); margin-bottom: 1.75rem; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── CONTACT / LOCATION ──────────────────────────────────── */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1100px; margin: 0 auto; }
.map-wrap { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); height: 400px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.contact-info h3 { font-family: 'Space Grotesk',sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 1.25rem; }
.c-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.c-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--accent-glow); border: 1px solid rgba(var(--accent-rgb),.15); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.c-item strong { display: block; font-weight: 600; margin-bottom: .1rem; font-size: .9rem; }
.c-item a { color: var(--accent); text-decoration: none; font-size: .9rem; font-weight: 700; }
.c-item a:hover { color: var(--accent2); }
.c-item span { color: var(--t2); font-size: .88rem; }
.hours-tbl { width: 100%; margin-top: .75rem; border-collapse: collapse; }
.hours-tbl td { padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .87rem; }
.hours-tbl td:first-child { font-weight: 600; }
.hours-tbl td:last-child { text-align: right; color: var(--t2); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border); padding: 2.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 0;
}
.foot-logo { font-family: 'Space Grotesk',sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--white); }
.foot-logo i { color: var(--accent); font-style: normal; }
footer p { color: var(--t3); font-size: .78rem; }
.foot-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.foot-links a { color: var(--t3); text-decoration: none; font-size: .82rem; transition: color .3s; }
.foot-links a:hover { color: var(--accent); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .price-grid, .info-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 4rem 3rem 4rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-item:nth-child(2) { border-right: none; }
  .why-item:nth-child(3), .why-item:nth-child(4) { border-top: 1px solid var(--border); }
  .sub-hero { grid-template-columns: 1fr; }
  .sub-hero-img { display: none; }
  .banner { grid-template-columns: 1fr; }
  .alue-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .ins-badge { display: none; }
  .section-pad { padding: 3.5rem 1.5rem; }
  .hero-left { padding: 3rem 1.5rem 4rem; }
  .services-grid, .price-grid, .info-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .why-item:last-child { border-bottom: none; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
  .feat-row, .feat-row.flip { grid-template-columns: 1fr; direction: ltr; gap: 2rem; }
  .feat-row.flip > * { direction: ltr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .sub-hero-text { padding: 3rem 1.5rem 2.5rem; }
  footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
  .alue-inner { padding: 2rem 1.5rem; }
  .banner { padding: 1.75rem; }
  .sticky-call { display: block; }
  footer { margin-bottom: 56px; } /* make room for sticky bar */
  .partners-logo-grid { gap: 2rem 1.5rem; }
  .partner-logo img { max-height: 36px; }
}

/* ── PARTNER LOGOS ─────────────────────────────────────────── */
.partners-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners-logo-grid {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 2.5rem 3.5rem; max-width: 1100px; margin: 0 auto;
}
.partner-logo img {
  max-height: 44px; width: auto; object-fit: contain;
  filter: grayscale(100%); opacity: 0.55;
  transition: filter .25s, opacity .25s;
}
.partner-logo img:hover { filter: grayscale(0%); opacity: 1; }
.partner-logo-invert img { filter: grayscale(100%) invert(1); opacity: 0.65; }
.partner-logo-invert img:hover { filter: grayscale(0%) invert(1); opacity: 1; }
