/* ============================================================
   RS on the Go LLC — styles.css
   ============================================================ */

:root {
  --red: #CC1B1B;
  --red-dk: #a51616;
  --red-light: #fff0f0;
  --dark: #0d0d0d;
  --dark2: #161616;
  --white: #ffffff;
  --off: #f9f8f6;
  --border: #e9e4dc;
  --text: #1a1a1a;
  --muted: #74706a;
  --nav: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

/* ── LOGO UPLOAD ADMIN PANEL ── */
#logo-admin {
  background: #0a0a0a;
  border-bottom: 2px solid var(--red);
  padding: 0 clamp(1.25rem, 5vw, 4.5rem);
  position: relative;
  z-index: 1000;
}

.la-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.la-left {
  display: flex;
  align-items: center;
  gap: .875rem;
}

.la-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(204, 27, 27, .15);
  border: 1px solid rgba(204, 27, 27, .3);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.la-icon svg {
  width: 17px; height: 17px;
  stroke: #e87878; fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.la-left strong {
  display: block;
  font-size: .8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .3px;
  margin-bottom: 1px;
}

.la-left span {
  font-size: .7rem;
  color: rgba(255,255,255,.38);
  font-weight: 500;
}

.la-controls {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.la-preview-wrap {
  height: 42px;
  min-width: 90px;
  background: rgba(255,255,255,.06);
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  overflow: hidden;
}

.la-preview-wrap img {
  height: 34px;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

#laEmpty {
  font-size: .65rem;
  font-weight: 600;
  color: rgba(255,255,255,.25);
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Shared button base */
.la-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  letter-spacing: .3px;
  transition: background .18s, transform .15s, opacity .15s;
  white-space: nowrap;
  text-decoration: none;
}

.la-btn svg {
  width: 13px; height: 13px;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.la-btn--upload {
  background: var(--red);
  color: #fff;
}
.la-btn--upload svg { stroke: #fff; }
.la-btn--upload:hover { background: var(--red-dk); transform: translateY(-1px); }

.la-btn--paste {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.12);
}
.la-btn--paste svg { stroke: rgba(255,255,255,.65); }
.la-btn--paste:hover { background: rgba(255,255,255,.14); color: #fff; transform: translateY(-1px); }

.la-btn--remove {
  background: transparent;
  color: rgba(255,100,100,.7);
  border: 1px solid rgba(255,100,100,.2);
}
.la-btn--remove svg { stroke: rgba(255,100,100,.7); }
.la-btn--remove:hover { background: rgba(255,50,50,.1); color: #ff8080; transform: translateY(-1px); }

/* Tip / feedback bar */
.la-tip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: .6rem 0 .75rem;
  font-size: .75rem;
  font-weight: 600;
  color: #7dde92;
  border-top: 1px solid rgba(255,255,255,.06);
}

.la-tip svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.la-tip--error { color: #ff8080; }

/* ── NAV logo image variant ── */
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(204,27,27,.25));
  transition: transform .2s, filter .2s;
}

.logo:hover .logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 14px rgba(204,27,27,.4));
}

.logo-img--footer {
  height: 52px;
  margin-bottom: .5rem;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav);
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 5vw, 4.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: box-shadow .3s;
}

nav.scrolled { box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4); }

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.logo-sq {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-sq svg {
  width: 18px; height: 18px;
  stroke: #fff; fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-txt { line-height: 1.15; }
.logo-txt strong { display: block; font-size: .95rem; font-weight: 800; color: #fff; letter-spacing: .2px; }
.logo-txt small { font-size: .55rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255, 255, 255, .3); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  transition: color .2s;
}

.nav-links a:hover { color: #fff; }

.nav-call {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 700;
  transition: background .2s, transform .15s;
}

.nav-call:hover { background: var(--red-dk); transform: translateY(-1px); }

.nav-call svg {
  width: 13px; height: 13px;
  stroke: #fff; fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.ham span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}

.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob {
  display: none;
  position: fixed;
  top: var(--nav);
  left: 0; right: 0;
  z-index: 998;
  background: #111;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  flex-direction: column;
  padding: 1.5rem clamp(1.25rem, 5vw, 4.5rem);
}

.mob.open { display: flex; }

.mob a {
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  text-transform: uppercase;
  letter-spacing: .8px;
  transition: color .2s;
}

.mob a:hover { color: #fff; }

.mob .mob-cta {
  background: var(--red);
  color: #fff !important;
  text-align: center;
  border-radius: 8px;
  margin-top: 12px;
  padding: 14px !important;
  border-bottom: none !important;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 10, 10, .72) 40%, rgba(10, 10, 10, .25) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 5rem clamp(1.25rem, 5vw, 4.5rem);
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204, 27, 27, .18);
  border: 1px solid rgba(204, 27, 27, .35);
  color: #ff8a8a;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.badge-dot {
  width: 6px; height: 6px;
  background: #ff6b6b;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.5); }
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.02;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}

.hero h1 span { color: var(--red); }

.hero-desc {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: .875rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  transition: background .2s, transform .15s;
}

.btn-red:hover { background: var(--red-dk); transform: translateY(-2px); }

.btn-red svg {
  width: 15px; height: 15px;
  stroke: #fff; fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, .25);
  color: #fff;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
  transition: border-color .2s, transform .15s;
}

.btn-outline:hover { border-color: #fff; transform: translateY(-2px); }

.btn-outline svg {
  width: 15px; height: 15px;
  stroke: #fff; fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ── SECTION SHARED ── */
.sec {
  padding: 6rem clamp(1.25rem, 5vw, 4.5rem);
  background: var(--white);
}

.sec--dark { background: var(--dark); }
.sec--off  { background: var(--off); }

.sec-eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .6rem;
}

.sec-eyebrow--light { color: #e87878; }

.sec-title {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: .75rem;
}

.sec-title--light { color: #fff; }

.sec-body {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.75;
}

.sec-body--light { color: rgba(255, 255, 255, .5); }

/* ── SERVICES ── */
.svc-intro { margin-bottom: 3rem; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.svc-card {
  background: #fff;
  border-radius: 18px;
  padding: 2.25rem;
  border: 1px solid var(--border);
  transition: box-shadow .3s, transform .25s;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.svc-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
  transform: translateY(-5px);
}

.svc-card--wide { grid-column: span 2; }

.svc-icon-wrap {
  width: 56px; height: 56px;
  background: var(--red-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-icon-wrap svg {
  width: 26px; height: 26px;
  stroke: var(--red); fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 5px;
  align-self: flex-start;
}

.svc-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: .4rem; }
.svc-card p  { font-size: .9rem; color: var(--muted); line-height: 1.65; }

.svc-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: .5rem; }

.chip {
  font-size: .68rem;
  font-weight: 700;
  background: var(--off);
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}

.about-content { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }

.checklist { margin: 2rem 0; display: flex; flex-direction: column; gap: 1.1rem; }

.chk { display: flex; align-items: flex-start; gap: 12px; }

.chk-ic {
  width: 22px; height: 22px;
  flex-shrink: 0;
  background: rgba(204, 27, 27, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.chk-ic svg {
  width: 11px; height: 11px;
  stroke: var(--red); fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chk strong { font-size: .95rem; font-weight: 700; color: #fff; display: block; margin-bottom: 2px; }
.chk p { font-size: .875rem; color: rgba(255, 255, 255, .45); line-height: 1.6; }

/* ── VIDEO ── */
.video-frame {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .5);
  aspect-ratio: 16/9;
  background: #111;
}

.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.video-play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--red);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, background .2s;
  box-shadow: 0 8px 32px rgba(204, 27, 27, .4);
}

.video-play-btn:hover { transform: scale(1.08); background: var(--red-dk); }

.video-play-btn svg { width: 28px; height: 28px; fill: #fff; margin-left: 3px; }

.video-placeholder p { color: rgba(255, 255, 255, .4); font-size: .85rem; font-weight: 600; letter-spacing: .5px; }

/* ── OUR WORK ── */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.work-item {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 14px;
}

.work-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.work-item:hover img { transform: scale(1.04); }

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 60%);
}

.work-label {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: var(--red);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 5px;
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.why-card {
  padding: 1.75rem;
  border-radius: 16px;
  background: var(--off);
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .2s;
}

.why-card:hover { box-shadow: 0 8px 32px rgba(0, 0, 0, .07); transform: translateY(-3px); }

.why-icon {
  width: 46px; height: 46px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.why-icon svg {
  width: 20px; height: 20px;
  stroke: var(--red); fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h4 { font-size: .95rem; font-weight: 800; margin-bottom: .4rem; }
.why-card p  { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ── CTA ── */
.cta {
  margin: 0 clamp(1.25rem, 5vw, 4.5rem) 6rem;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: var(--dark);
}

.cta-inner {
  position: relative;
  z-index: 1;
  padding: 5rem clamp(2rem, 6vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 27, 27, .18) 0%, transparent 70%);
}

.cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.5px;
}

.cta p { color: rgba(255, 255, 255, .5); margin-top: .5rem; max-width: 400px; font-size: 1rem; line-height: 1.7; }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  padding: 17px 34px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
}

.btn-cta:hover { background: var(--red-dk); transform: translateY(-2px); }

.btn-cta svg {
  width: 16px; height: 16px;
  stroke: #fff; fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── CONTACT ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 4rem;
  margin-top: 3.5rem;
  align-items: start;
}

.contact-side h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: .75rem; }
.contact-side > p { color: var(--muted); line-height: 1.75; margin-bottom: 2rem; font-size: .95rem; }

.ci {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}

.ci:last-child { border-bottom: none; }

.ci-ic {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.ci-ic svg {
  width: 17px; height: 17px;
  stroke: var(--red); fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ci-lbl { font-size: .65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1.2px; font-weight: 600; }

.ci-val {
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  font-size: .98rem;
  display: block;
  margin-top: 2px;
}

.ci-val:hover { color: var(--red); }

.form-box {
  background: #fff;
  border-radius: 20px;
  padding: 2.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0, 0, 0, .05);
}

.form-box h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: .4rem; }
.form-box > p { font-size: .875rem; color: var(--muted); margin-bottom: 2rem; }

.fg { margin-bottom: 1.1rem; }

.fg label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .2s;
  appearance: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus { border-color: var(--red); }

.fg textarea { min-height: 110px; resize: vertical; }

.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.f-btn {
  width: 100%;
  padding: 15px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  margin-top: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.f-btn:hover { background: var(--red-dk); }

.f-btn svg {
  width: 15px; height: 15px;
  stroke: #fff; fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--muted);
  margin-top: .9rem;
  justify-content: center;
}

.form-note svg { width: 12px; height: 12px; stroke: var(--muted); fill: none; stroke-width: 2; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  transition: background .25s, border-radius .25s, box-shadow .25s, margin .3s;
  overflow: hidden;
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item.open {
  background: #fff;
  border-radius: 16px;
  border-bottom-color: transparent;
  box-shadow: 0 8px 40px rgba(0,0,0,.09);
  margin: .5rem 0;
  border-top: 1px solid var(--border) !important;
}

.faq-item.open + .faq-item {
  border-top: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.25rem 1.4rem 0;
  gap: 1rem;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  transition: color .2s, padding .25s;
}

.faq-item.open .faq-q {
  color: var(--red);
  padding-left: 1.25rem;
}

.faq-q:hover { color: var(--red); }

.faq-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background .3s cubic-bezier(.4,0,.2,1),
    border-color .3s,
    transform .4s cubic-bezier(.34,1.56,.64,1),
    box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.faq-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  border-radius: 50%;
  transform: scale(0);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}

.faq-item.open .faq-icon::before { transform: scale(1); }

.faq-item.open .faq-icon {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(204,27,27,.12);
  transform: rotate(135deg);
}

.faq-icon svg {
  width: 13px; height: 13px;
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  position: relative;
  z-index: 1;
  transition: stroke .3s;
}

.faq-icon .icon-h { stroke: var(--muted); transition: stroke .3s, opacity .25s, transform .3s; }
.faq-icon .icon-v { stroke: var(--muted); transition: stroke .3s, transform .3s cubic-bezier(.4,0,.2,1); }
.faq-item.open .faq-icon .icon-h { stroke: #fff; }
.faq-item.open .faq-icon .icon-v { stroke: #fff; }

.faq-a {
  overflow: hidden;
  height: 0;
  transition: height .42s cubic-bezier(.4,0,.2,1);
}

.faq-a-inner {
  padding: 0 1.25rem 1.4rem;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity .3s ease .05s,
    transform .35s cubic-bezier(.4,0,.2,1) .05s;
}

.faq-item.open .faq-a-inner {
  opacity: 1;
  transform: translateY(0);
}

.faq-a p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.8;
}

.faq-a-inner::before {
  content: '';
  display: block;
  width: 3px;
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  position: absolute;
  left: 0; top: 0;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: opacity .3s ease .15s, transform .4s cubic-bezier(.4,0,.2,1) .1s;
}

.faq-a-inner {
  position: relative;
  padding-left: 1.5rem;
}

.faq-item.open .faq-a-inner::before {
  opacity: 1;
  transform: scaleY(1);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 4rem clamp(1.25rem, 5vw, 4.5rem) 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.f-about .f-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 1rem;
}

.f-about p { font-size: .875rem; color: rgba(255, 255, 255, .35); line-height: 1.75; max-width: 280px; }

.f-col h5 {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 1.1rem;
}

.f-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }

.f-col ul a {
  text-decoration: none;
  font-size: .875rem;
  color: rgba(255, 255, 255, .4);
  transition: color .2s;
}

.f-col ul a:hover { color: #fff; }

.footer-btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, .22);
}

.footer-btm a { color: rgba(255, 255, 255, .35); text-decoration: none; }
.footer-btm a:hover { color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr !important; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .f-about { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links, .nav-call { display: none; }
  .ham { display: flex; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card--wide { grid-column: span 1; }
  .fg-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .la-inner { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .la-controls { width: 100%; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .f-about { grid-column: span 1; }
  .work-grid { grid-template-columns: 1fr; }
}
