/* ===========================
   JEWELL ELECTRICAL — MAIN CSS
   =========================== */

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

:root {
  /* ===== JEWELL PALETTE — Modern Graphite + Clean Blue =====
     To try another direction, swap these 8 values.
     (--cyan / --cyan-lt are the accent; kept those names so
      nothing else in this file needs renaming.) */
  --dark:    #111827;   /* page background        */
  --darker:  #080D14;   /* footer / deep sections */
  --mid:     #1B2430;   /* cards, trust bar, CTA  */
  --cyan:    #00F0F0;   /* ACCENT — logo cyan */
  --cyan-lt: #6FF7F7;   /* accent hover           */
  --warm:    #F8FAFC;   /* primary text           */
  --muted:   rgba(248,250,252,0.62);
  --border:  rgba(248,250,252,0.10);
  --max-w:   1080px;
  --accent-rgb: 0,240,240;   /* accent as r,g,b — drives subtle tints */

  /* Hero photo overlay — retinted live by the colour picker (theme.js) */
  --hero-glow:    rgba(0,240,240,0.22);
  --hero-ov-top:  rgba(8,13,20,0.42);
  --hero-ov-mid:  rgba(10,15,24,0.55);
  --hero-ov-bot:  rgba(8,13,20,0.90);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--warm);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(26,31,31,0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  height: 68px; display: flex; justify-content: space-between; align-items: center;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 48px; width: auto; }
.logo-name { font-family: 'Sora', sans-serif; font-size: 19px; font-weight: 700; color: var(--warm); }
.logo-name span { color: var(--cyan); }
.header-nav { display: flex; gap: 28px; font-size: 13px; font-weight: 500; color: var(--muted); list-style: none; }
.header-nav a { transition: color 0.2s; }
.header-nav a:hover, .header-nav a.active { color: var(--warm); }
.header-cta {
  background: var(--cyan); color: var(--btn-text, #FFFFFF);
  font-size: 12px; font-weight: 700;
  padding: 10px 22px; border-radius: 50px;
  transition: background 0.2s; white-space: nowrap;
}
.header-cta:hover { background: var(--cyan-lt); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--warm); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav dropdown */
.mobile-nav {
  display: none; flex-direction: column;
  background: #141C28; border-top: 1px solid var(--border);
  position: absolute; top: 68px; left: 0; right: 0;
  z-index: 99;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 16px 24px; font-size: 14px; font-weight: 500;
  color: var(--muted); border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover { color: var(--warm); background: rgba(255,255,255,0.03); }
.mobile-nav .mobile-cta {
  margin: 16px 24px; background: var(--cyan); color: var(--btn-text, #FFFFFF);
  font-weight: 700; text-align: center; padding: 14px;
  border-radius: 50px; border-bottom: none;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  position: relative; overflow: hidden; padding: 100px 40px 80px;
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  animation: heroZoom 32s ease-in-out infinite alternate;
}
/* Slow crossfade between photos, synced to the cycling words.
   The overlay above stays constant, so legibility never shifts. */
.hp1 { animation: heroZoom 32s ease-in-out infinite alternate, bgFade1 35s linear infinite; }
.hp2 { opacity: 0; animation: heroZoom 32s ease-in-out infinite alternate, bgFade2 35s linear infinite; }
.hp3 { opacity: 0; animation: heroZoom 32s ease-in-out infinite alternate, bgFade3 35s linear infinite; }
.hp4 { opacity: 0; animation: heroZoom 32s ease-in-out infinite alternate, bgFade4 35s linear infinite; }
.hp5 { opacity: 0; animation: heroZoom 32s ease-in-out infinite alternate, bgFade5 35s linear infinite; }
.hp6 { opacity: 0; animation: heroZoom 32s ease-in-out infinite alternate, bgFade6 35s linear infinite; }
.hp7 { opacity: 0; animation: heroZoom 32s ease-in-out infinite alternate, bgFade7 35s linear infinite; }
.hp8 { opacity: 0; animation: heroZoom 32s ease-in-out infinite alternate, bgFade8 35s linear infinite; }
@keyframes bgFade1 { 0%{opacity:1} 8.75%{opacity:1} 12.5%{opacity:0} 96.25%{opacity:0} 100%{opacity:1} }
@keyframes bgFade2 { 0%{opacity:0} 8.75%{opacity:0} 12.5%{opacity:1} 21.25%{opacity:1} 25%{opacity:0} 100%{opacity:0} }
@keyframes bgFade3 { 0%{opacity:0} 21.25%{opacity:0} 25%{opacity:1} 33.75%{opacity:1} 37.5%{opacity:0} 100%{opacity:0} }
@keyframes bgFade4 { 0%{opacity:0} 33.75%{opacity:0} 37.5%{opacity:1} 46.25%{opacity:1} 50%{opacity:0} 100%{opacity:0} }
@keyframes bgFade5 { 0%{opacity:0} 46.25%{opacity:0} 50%{opacity:1} 58.75%{opacity:1} 62.5%{opacity:0} 100%{opacity:0} }
@keyframes bgFade6 { 0%{opacity:0} 58.75%{opacity:0} 62.5%{opacity:1} 71.25%{opacity:1} 75%{opacity:0} 100%{opacity:0} }
@keyframes bgFade7 { 0%{opacity:0} 71.25%{opacity:0} 75%{opacity:1} 83.75%{opacity:1} 87.5%{opacity:0} 100%{opacity:0} }
@keyframes bgFade8 { 0%{opacity:0} 83.75%{opacity:0} 87.5%{opacity:1} 96.25%{opacity:1} 100%{opacity:0} }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--hero-ov-mid) 0%, var(--hero-ov-top) 46%, var(--hero-ov-bot) 100%);
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
}
.hero-text { max-width: 760px; margin: 0 auto; text-align: center; }
.hero-eyebrow {
  font-size: 14px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 26px; text-shadow: 0 1px 10px rgba(0,0,0,0.45);
}
.hero-headline {
  font-family: 'Sora', sans-serif; font-size: 53px; line-height: 1.1; font-weight: 700;
  color: var(--warm); text-shadow: 0 2px 22px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.4);
}
.hero-cycle-wrapper {
  font-family: 'Sora', sans-serif; font-size: 53px; line-height: 1.1;
  font-weight: 700; font-style: normal; color: var(--cyan);
  height: 64px; overflow: hidden; margin-bottom: 32px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.45),
               0 0 28px var(--cyan-glow, rgba(var(--accent-rgb),0.28));
}
.hero-cycle { display: flex; flex-direction: column; animation: cycleUp 35s ease-in-out infinite; }
.hero-cycle span { display: block; height: 64px; line-height: 64px; white-space: nowrap; }
@keyframes cycleUp {
  0%,8.75%    { transform: translateY(0); }
  12.5%,21.25% { transform: translateY(-64px); }
  25%,33.75%   { transform: translateY(-128px); }
  37.5%,46.25% { transform: translateY(-192px); }
  50%,58.75%   { transform: translateY(-256px); }
  62.5%,71.25% { transform: translateY(-320px); }
  75%,83.75%   { transform: translateY(-384px); }
  87.5%,96.25% { transform: translateY(-448px); }
  100%         { transform: translateY(-512px); }
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.12); }
}
.hero-sub { font-size: 16px; line-height: 1.8; color: var(--warm); opacity: 0.88; max-width: 540px; margin: 0 auto 36px; text-shadow: 0 1px 12px rgba(0,0,0,0.55); }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(245,242,236,0.18);
}
.scroll-hint::after {
  content: ''; width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(245,242,236,0.2), transparent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.3;} 50%{opacity:.9;} }

/* Page hero (non-home) */
.page-hero {
  padding: 140px 40px 80px; text-align: center;
  background: linear-gradient(180deg, var(--darker) 0%, var(--mid) 100%);
  position: relative;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--border);
}
.page-hero-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.page-hero h1 { font-family: 'Sora', sans-serif; font-size: 48px; font-weight: 700; line-height: 1.15; color: var(--warm); margin-bottom: 16px; }
.page-hero p { font-size: 15px; color: var(--muted); max-width: 540px; margin: 0 auto; line-height: 1.75; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.trust-item { text-align: center; padding: 28px 20px; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; }
.trust-num { font-family: 'Sora', sans-serif; font-size: 30px; font-weight: 700; color: var(--warm); display: block; }
.trust-label { font-size: 10px; font-weight: 500; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; display: block; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--cyan); color: var(--btn-text, #FFFFFF);
  font-size: 13px; font-weight: 700; padding: 15px 30px; border-radius: 50px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s; display: inline-block;
  box-shadow: 0 6px 18px -6px var(--cyan-glow, rgba(0,200,214,0.5));
}
.btn-primary:hover { background: var(--cyan-lt); transform: translateY(-1px); box-shadow: 0 10px 24px -8px var(--cyan-glow, rgba(0,200,214,0.6)); }
.btn-ghost {
  color: rgba(245,242,236,0.7); font-size: 13px; font-weight: 500;
  padding: 15px 26px; border-radius: 50px;
  border: 1px solid rgba(245,242,236,0.18);
  transition: border-color 0.2s, color 0.2s; display: inline-block;
}
.ph-ico { width: 1.05em; height: 1.05em; fill: currentColor; vertical-align: -0.16em; margin-right: 7px; }
.btn-ghost:hover { border-color: rgba(245,242,236,0.45); color: var(--warm); }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.section-heading { font-family: 'Sora', sans-serif; font-size: 40px; font-weight: 700; line-height: 1.2; color: var(--warm); }
.section-sub { font-size: 14px; line-height: 1.75; color: var(--muted); max-width: 480px; margin: 16px auto 0; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ===== ABOUT GRID ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image {
  border-radius: 6px; min-height: 420px;
  background: linear-gradient(145deg, var(--darker), var(--mid));
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-image::before { content: ''; position: absolute; bottom: 0; left: 0; width: 48px; height: 3px; background: var(--cyan); }
.about-image-hint { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(245,242,236,0.15); text-align: center; padding: 20px; line-height: 1.8; }
.about-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.about-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.about-heading { font-family: 'Sora', sans-serif; font-size: 36px; font-weight: 700; line-height: 1.2; color: var(--warm); margin-bottom: 24px; }
.about-body { font-size: 14px; line-height: 1.85; color: var(--muted); margin-bottom: 14px; }
.licence-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(var(--accent-rgb),0.07); border: 1px solid rgba(var(--accent-rgb),0.2);
  border-radius: 4px; padding: 10px 16px; font-size: 11px;
  font-weight: 600; color: var(--cyan); letter-spacing: 0.5px; margin-top: 12px;
}

/* ===== SERVICES ===== */
.services-list { border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.service-row {
  display: grid; grid-template-columns: 52px 1fr;
  gap: 0 20px; align-items: start;
  padding: 24px 28px; border-bottom: 1px solid var(--border);
  background: var(--mid); transition: background 0.2s;
}
.service-row:last-child { border-bottom: none; }
.service-row:hover { background: #26313F; }
.service-row.special { background: rgba(var(--accent-rgb),0.04); }
.service-num { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; color: var(--cyan); opacity: 0.4; padding-top: 2px; }
.service-num.q { opacity: 0.7; }
.service-name { font-size: 14px; font-weight: 600; color: var(--warm); margin-bottom: 6px; }
.service-name.cyan { color: var(--cyan); }
.service-desc { font-size: 12px; color: var(--muted); line-height: 1.65; }
.service-desc a { color: var(--cyan); }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.service-tag {
  font-size: 10px; font-weight: 500; color: rgba(var(--accent-rgb),0.75);
  background: rgba(var(--accent-rgb),0.06); border: 1px solid rgba(var(--accent-rgb),0.15);
  padding: 4px 9px; border-radius: 3px;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-tile {
  border-radius: 5px; overflow: hidden; position: relative;
  aspect-ratio: 4/3; background: var(--mid);
}
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-tile:hover img { transform: scale(1.04); }
.gallery-tile-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 12px 10px;
  background: linear-gradient(to top, rgba(12,14,14,0.88), transparent);
  font-size: 11px; font-weight: 600; color: var(--warm);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-tile:hover .gallery-tile-label { opacity: 1; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card {
  background: var(--mid); border-radius: 6px; padding: 32px 28px;
  border-top: 2px solid var(--cyan); display: flex; flex-direction: column;
}
.review-stars { color: var(--cyan); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.review-text {
  font-family: 'Sora', sans-serif; font-size: 14px; font-style: normal;
  line-height: 1.75; color: rgba(245,242,236,0.85); flex: 1; margin-bottom: 20px;
}
.review-author { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: 0.5px; padding-top: 16px; border-top: 1px solid var(--border); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-label { font-size: 10px; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.contact-heading { font-family: 'Sora', sans-serif; font-size: 36px; font-weight: 700; line-height: 1.2; color: var(--warm); margin-bottom: 20px; }
.contact-body { font-size: 14px; line-height: 1.8; color: var(--muted); margin-bottom: 28px; }
.big-phone { font-family: 'Sora', sans-serif; font-size: 36px; font-weight: 700; color: var(--warm); margin-bottom: 6px; transition: color 0.2s; display: block; }
.big-phone:hover { color: var(--cyan); }
.phone-sub { font-size: 12px; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.form-field {
  background: rgba(245,242,236,0.04); border: 1px solid rgba(245,242,236,0.09);
  border-radius: 4px; padding: 13px 16px; font-size: 12px; color: var(--muted);
  font-family: 'Inter', sans-serif; width: 100%; transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-field::placeholder { color: rgba(245,242,236,0.28); }
.form-field:focus { outline: none; border-color: rgba(var(--accent-rgb),0.45); color: var(--warm); }
.form-field.full { grid-column: 1 / -1; }
textarea.form-field { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%; background: var(--cyan); color: var(--btn-text, #FFFFFF);
  font-size: 13px; font-weight: 700; padding: 15px; border: none;
  border-radius: 50px; margin-top: 8px; font-family: 'Inter', sans-serif;
  cursor: pointer; transition: background 0.2s;
}
.form-submit:hover { background: var(--cyan-lt); }
.form-thanks {
  display: none; text-align: center; padding: 40px 20px;
  color: var(--warm);
}
.form-thanks h3 { font-family: 'Sora', sans-serif; font-size: 24px; margin-bottom: 10px; color: var(--cyan); }
.form-thanks p { font-size: 14px; color: var(--muted); }

/* Contact details list */
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-details li { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.contact-details li strong { color: var(--warm); display: block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.contact-details li .icon { font-size: 18px; flex-shrink: 0; }

/* ===== VALUES ===== */
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.value-card { background: var(--mid); border-radius: 6px; padding: 28px 24px; border-top: 2px solid var(--border); transition: border-color 0.2s; }
.value-card:hover { border-color: var(--cyan); }
.value-icon { font-size: 28px; margin-bottom: 12px; }
.value-title { font-size: 13px; font-weight: 700; color: var(--warm); margin-bottom: 8px; }
.value-desc { font-size: 12px; color: var(--muted); line-height: 1.65; }

/* ===== AREAS ===== */
.areas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.area-pill {
  background: var(--mid); border: 1px solid var(--border);
  border-radius: 4px; padding: 12px 16px; text-align: center;
  font-size: 12px; font-weight: 500; color: rgba(245,242,236,0.65);
  transition: all 0.2s;
}
.area-pill:hover { background: rgba(var(--accent-rgb),0.12); color: var(--warm); border-color: rgba(var(--accent-rgb),0.4); }
.area-pill.primary { border-color: rgba(var(--accent-rgb),0.3); color: var(--cyan); font-weight: 600; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 60px 40px; text-align: center; }
.cta-banner h2 { font-family: 'Sora', sans-serif; font-size: 32px; font-weight: 700; color: var(--warm); margin-bottom: 10px; }
.cta-banner p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.cta-banner .cta-phone { font-family: 'Sora', sans-serif; font-size: 40px; font-weight: 700; color: var(--warm); display: block; margin-bottom: 20px; transition: color 0.2s; }
.cta-banner .cta-phone:hover { color: var(--cyan); }

/* ===== FOOTER ===== */
.site-footer { background: var(--darker); border-top: 1px solid var(--border); padding: 52px 0; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; align-items: start;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-img { height: 32px; width: auto; }
.footer-brand-name { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: var(--warm); }
.footer-brand-name span { color: var(--cyan); }
.footer-detail { font-size: 11px; line-height: 2.1; color: rgba(245,242,236,0.3); }
.footer-detail strong { color: rgba(245,242,236,0.55); font-weight: 500; }
.footer-detail a { color: var(--cyan); }
.footer-col-title { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(245,242,236,0.25); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 12px; color: rgba(245,242,236,0.4); transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-copy {
  font-size: 11px; color: rgba(245,242,236,0.2); margin-top: 40px; text-align: center;
  max-width: var(--max-w); margin-left: auto; margin-right: auto;
  padding: 24px 40px 0; border-top: 1px solid var(--border);
}

/* ===== MOBILE STICKY CALL ===== */
.sticky-call {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--cyan); color: var(--btn-text, #FFFFFF); font-size: 14px; font-weight: 700;
  padding: 16px 32px; border-radius: 0;
  box-shadow: 0 -4px 20px var(--cyan-glow, rgba(var(--accent-rgb),0.2));
  z-index: 200; white-space: nowrap; text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .header-inner { padding: 0 20px; }
  .header-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 20px 80px; }
  .hero-headline, .hero-cycle-wrapper { font-size: 33px; }
  .hero-cycle-wrapper { height: 42px; }
  .hero-cycle span { height: 42px; line-height: 42px; }
  @keyframes cycleUp {
    0%,8.75%    { transform: translateY(0); }
    12.5%,21.25% { transform: translateY(-42px); }
    25%,33.75%   { transform: translateY(-84px); }
    37.5%,46.25% { transform: translateY(-126px); }
    50%,58.75%   { transform: translateY(-168px); }
    62.5%,71.25% { transform: translateY(-210px); }
    75%,83.75%   { transform: translateY(-252px); }
    87.5%,96.25% { transform: translateY(-294px); }
    100%         { transform: translateY(-336px); }
  }

  .page-hero { padding: 120px 20px 60px; }
  .page-hero h1 { font-size: 34px; }

  .trust-inner { grid-template-columns: 1fr 1fr; padding: 0 20px; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(1),.trust-item:nth-child(2) { border-bottom: 1px solid var(--border); }

  .section-inner { padding: 0 20px; }
  .section { padding: 60px 0; }
  .section-heading { font-size: 30px; }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-image { min-height: 260px; }

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

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

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .big-phone { font-size: 28px; }

  .values-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }

  .cta-banner { padding: 40px 20px; }
  .cta-banner .cta-phone { font-size: 28px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .footer-copy { padding: 24px 20px 0; }

  .sticky-call { display: block; }
  body { padding-bottom: 56px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-field.full { grid-column: 1; }
}

/* ===== FORM STATUS / ACCESSIBILITY ===== */
.form-status { margin-top: 12px; font-size: 12px; line-height: 1.6; color: var(--muted); }
.form-status.error { color: #ffb4b4; }
.form-status a { color: var(--cyan); text-decoration: underline; }
.form-submit:disabled { opacity: 0.65; cursor: wait; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
