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

:root {
  --orange: #E8521A;
  --black: #0A0A0A;
  --white: #F5F0EB;
  --gray: #1A1A1A;
  --mid: #2A2A2A;
  --text-muted: #888;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  /* cursor: default — no custom cursor per request */
}

/* =====================
   NAVIGATION
   ===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 60px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232,82,26,0.2);
  transition: border-color 0.3s;
}

/* Logo image in nav */
.nav-logo-link { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img  { height: 36px; width: auto; display: block; }

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--black) !important;
  padding: 10px 24px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--white) !important; color: var(--black) !important; }

/* =====================
   HERO
   ===================== */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(232,82,26,0.08) 0%, transparent 70%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 0, transparent 80px),
    repeating-linear-gradient(0deg,  rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 0, transparent 80px);
}

.hero-tag {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
  position: relative;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(72px, 11vw, 160px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  max-width: 900px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
  position: relative;
}
.hero-title em { font-style: normal; color: var(--orange); display: block; }

.hero-sub {
  margin-top: 40px;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
  position: relative;
}

.hero-actions {
  margin-top: 52px;
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
  position: relative;
}

.hero-stats {
  position: absolute;
  bottom: 60px; right: 60px;
  display: flex;
  gap: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}
.stat-item { text-align: right; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.scroll-line {
  position: absolute;
  bottom: 0; left: 60px;
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--orange));
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:0.3;} 50%{opacity:1;} }

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
  background: var(--orange);
  color: var(--black);
  padding: 16px 40px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--white); transform: translateY(-2px); }

.btn-ghost {
  color: var(--white);
  padding: 16px 40px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* =====================
   SHARED
   ===================== */
section { padding: 120px 60px; }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.divider { width: 60px; height: 3px; background: var(--orange); margin: 24px 0; }

/* =====================
   REVEAL ANIMATION
   ===================== */
@keyframes fadeUp { from{opacity:0;transform:translateY(30px);} to{opacity:1;transform:translateY(0);} }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================
   ABOUT
   ===================== */
#about {
  background: var(--gray);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  color: #aaa;
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 28px;
  font-weight: 300;
}
.about-text p + p { margin-top: 16px; }

.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.about-card {
  background: var(--mid);
  padding: 28px;
  border-left: 3px solid var(--orange);
  transition: background 0.2s;
}
.about-card:hover { background: #333; }
.about-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.about-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* =====================
   SERVICES — with images
   ===================== */
#services { background: var(--black); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
/* services-header p replaced by .services-sub */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--gray);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}
.service-card:hover { background: var(--mid); }
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover::after { transform: scaleX(1); }

/* Service image panel */
.service-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-vertical-descosition: center;
  position: relative;
  flex-shrink: 0;
}
.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(26,26,26,0.85) 100%);
}

/* Service text body */
.service-body {
  padding: 28px 28px 36px;
  flex: 1;
}

.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(232,82,26,0.18);
  line-height: 1;
  margin-bottom: 14px;
}
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.service-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-card li { font-size: 0.78rem; color: var(--text-muted); padding-left: 14px; position: relative; }
.service-card li::before { content: '—'; position: absolute; left: 0; color: var(--orange); }

/* =====================
   VERTICALS — with logo images
   ===================== */
#verticals { background: var(--gray); }

.verticals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 64px;
}

.vertical-card {
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.vertical-labs  { background: #1C1A00; }
.vertical-works { background: #1A0A1F; }

/* Logo image replacing the old text logo */
.vertical-logo-img {
  display: block;
  width: auto;
  margin-bottom: 24px;
  border-radius: 0;
}
.vertical-logo-img--labs  { height: 100px; }
.vertical-logo-img--works { height: 100px; }

.vertical-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.vertical-desc { font-size: 0.88rem; color: #aaa; line-height: 1.7; max-width: 480px; }

.vertical-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.vertical-item {
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border-top: 2px solid;
}
.vertical-labs  .vertical-item { border-color: #F5C800; }
.vertical-works .vertical-item { border-color: #C070E0; }
.vertical-item h5 { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.vertical-item p  { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }

/* =====================
   EXPERTISE
   ===================== */
#expertise { background: var(--black); }

.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 64px; }
.expertise-card {
  background: var(--gray);
  padding: 36px;
  border-top: 1px solid rgba(232,82,26,0.3);
  transition: border-color 0.2s, background 0.2s;
}
.expertise-card:hover { border-color: var(--orange); background: var(--mid); }
.expertise-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.expertise-card p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-top: 8px; }
.expertise-card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.tag { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; background: rgba(232,82,26,0.1); color: var(--orange); border: 1px solid rgba(232,82,26,0.2); }

/* =====================
   WHO WE SERVE
   ===================== */
#serve { background: var(--gray); }

.serve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 64px; }
.serve-card { background: var(--gray); padding: 40px 32px; position: relative; overflow: hidden; }
.serve-card::after {
  content: ''; position: absolute; top: 0; right: 0; width: 3px; height: 100%;
  background: var(--orange); transform: scaleY(0); transform-origin: top; transition: transform 0.3s ease;
}
.serve-card:hover::after { transform: scaleY(1); }
.serve-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; }
.serve-card p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* =====================
   CLIENTS — logo carousel
   ===================== */
#clients { background: var(--black); text-align: center; }

.clients-intro { font-size: 0.9rem; color: var(--text-muted); margin: 20px auto 56px; max-width: 500px; }

/* Carousel wrapper with fade-edge effect */
.carousel-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 64px;
}

.carousel-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.carousel-fade--left  { left: 0;  background: linear-gradient(to right, var(--black), transparent); }
.carousel-fade--right { right: 0; background: linear-gradient(to left,  var(--black), transparent); }

/* Scrolling track */
.carousel-track {
  display: flex;
  gap: 2px;
  width: max-content;
  animation: carousel-scroll 28s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }

@keyframes carousel-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* half = one full set of items */
}

.carousel-item {
  background: var(--mid);
  min-width: 200px;
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.carousel-item:hover { background: #333; }
.carousel-item span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
  white-space: nowrap;
}

.client-stats { display: flex; justify-content: center; gap: 64px; }
.cstat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--orange); line-height: 1; }
.cstat-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

/* =====================
   UNIFIED CTA + FOOTER
   ===================== */
#cta.cta-unified {
  background: var(--orange);
  padding: 0;
  color: var(--black);
  text-align: left;
}

/* Two-column top section */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

/* Left: info, details, socials */
.cta-info {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cta-title { color: var(--black); margin-bottom: 12px; }
.cta-sub {
  font-size: 0.95rem;
  color: rgba(0,0,0,0.55);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 48px;
}

/* Contact detail rows */
.cta-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.cta-detail { display: flex; flex-direction: column; gap: 4px; }
.cta-detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(0,0,0,0.4);
}
.cta-detail address,
.cta-detail a,
.cta-detail p {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.75);
  line-height: 1.7;
  text-decoration: none;
  transition: color 0.2s;
}
.cta-detail a:hover { color: var(--black); }

/* Social icon row */
.cta-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cta-socials a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(0,0,0,0.2);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.cta-socials a:hover { background: rgba(0,0,0,0.1); border-color: rgba(0,0,0,0.5); }
.cta-socials svg { width: 15px; height: 15px; fill: rgba(0,0,0,0.65); }
.cta-socials .wa-icon svg { fill: rgba(0,0,0,0.65); }

/* Right: form on darker orange panel */
.cta-form-wrap {
  background: rgba(0,0,0,0.1);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Dark variant form fields — high contrast on orange */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Default form (orange bg) */
.contact-form input,
.contact-form textarea {
  background: rgba(0,0,0,0.18);
  border: 1.5px solid rgba(0,0,0,0.35);
  color: var(--black);
  padding: 14px 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  width: 100%;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  transition: border-color 0.2s, background 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(0,0,0,0.4); }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--black);
  background: rgba(0,0,0,0.25);
}
.contact-form textarea { resize: vertical; min-height: 140px; }

/* Dark form variant (form in shaded panel) */
.contact-form--dark input,
.contact-form--dark textarea {
  background: rgba(0,0,0,0.25);
  border-color: rgba(0,0,0,0.45);
}
.contact-form--dark input:focus,
.contact-form--dark textarea:focus {
  border-color: rgba(0,0,0,0.8);
  background: rgba(0,0,0,0.32);
}

/* Consent checkbox */
.consent-label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; margin-top: 4px; }
.consent-label input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--white);
  appearance: auto;
  -webkit-appearance: checkbox;
  opacity: 1;
  position: relative;
  z-index: 1;
}
.consent-label span { font-size: 0.76rem; color: rgba(0,0,0,0.55); line-height: 1.5; }
.consent-label a { color: rgba(0,0,0,0.75); font-weight: 600; text-decoration: underline; }
.consent-label a:hover { color: var(--black); }

/* Dark consent label variant */
.consent-label--dark span { color: rgba(0,0,0,0.5); }
.consent-label--dark a { color: rgba(0,0,0,0.7); }

/* CTA submit button */
.btn-submit-cta {
  align-self: flex-start;
  margin-top: 4px;
  background: var(--black);
  color: var(--white);
  padding: 16px 40px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-submit-cta:hover { background: #1a1a1a; transform: translateY(-2px); }
.btn-submit-cta:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Form status */
.form-status { font-size: 0.83rem; font-weight: 500; min-height: 1.4em; margin-top: 4px; letter-spacing: 0.02em; }
.form-status.success { color: #0a3d00; }
.form-status.error   { color: #5c0000; }

/* ── Footer bar (bottom strip of CTA section) ── */
.cta-footer-bar {
  background: rgba(0,0,0,0.15);
  border-top: 1px solid rgba(0,0,0,0.15);
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-footer-bar .nav-logo-link img {
  /* invert to black so it shows on orange */
  filter: brightness(0);
  opacity: 0.7;
  height: 26px;
}
.cta-footer-bar .footer-copy {
  font-size: 0.72rem;
  color: rgba(0,0,0,0.45);
  letter-spacing: 0.04em;
}
.cta-footer-bar .footer-copy a { color: rgba(0,0,0,0.5); text-decoration: none; }
.cta-footer-bar .footer-copy a:hover { color: var(--black); }
.cta-footer-bar .tagline { font-size: 0.72rem; color: rgba(0,0,0,0.35); font-style: italic; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  nav { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-logo-img { height: 28px; }
  section { padding: 80px 24px; }
  #hero { padding: 100px 24px 80px; }
  #about { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr 1fr; }
  .verticals-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { position: static; margin-top: 48px; justify-content: flex-start; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-info { padding: 60px 24px 40px; }
  .cta-form-wrap { padding: 40px 24px 60px; }
  .cta-footer-bar { flex-direction: column; gap: 12px; text-align: center; padding: 24px; }
  .btn-submit-cta { align-self: stretch; text-align: center; }
}

/* =====================
   SERVICES HEADER FIX
   ===================== */
.services-sub {
  max-width: 260px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  align-self: flex-end;
}

/* =====================
   VERTICAL LOGOS — square versions
   ===================== */
.vertical-logo-img--sq {
  height: 120px;
  width: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 28px;
  display: block;
}

/* =====================
   CLIENT LOGO CARDS in carousel
   ===================== */
.client-logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 4px 8px;
}
.client-logo-abbr {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
}
.client-logo-name {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

/* =====================
   HERO FEATURE IMAGE SECTION
   ===================== */
#hero-feature {
  padding: 0;
}
.hero-feature-img {
  width: 100%;
  height: 540px;
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  position: relative;
}
.hero-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.7) 45%,
    rgba(232,82,26,0.15) 100%
  );
  display: flex;
  align-items: center;
  padding: 0 60px;
}
.hero-feature-title {
  font-size: clamp(44px, 7vw, 100px);
  margin-bottom: 20px;
}
.hero-feature-sub {
  max-width: 480px;
  color: rgba(245,240,235,0.65);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .hero-feature-img {
    height: 380px;
    background-attachment: scroll;
  }
  .hero-feature-overlay { padding: 0 24px; }
  .hero-feature-sub { font-size: 0.88rem; }
}

/* =====================
   CTA — SOCIAL CARDS
   ===================== */
.cta-social-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 32px;
}

.cta-social-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(0,0,0,0.12);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.cta-social-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: rgba(0,0,0,0.25);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.cta-social-card:hover { background: rgba(0,0,0,0.2); }
.cta-social-card:hover::after { transform: scaleX(1); }

.cta-social-icon {
  width: 34px; height: 34px;
  border: 1px solid rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta-social-icon svg { width: 15px; height: 15px; fill: rgba(0,0,0,0.65); }

.cta-social-icon--wa { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.3); }
.cta-social-icon--wa svg { fill: #1a7a35; }

.cta-social-meta { display: flex; flex-direction: column; gap: 2px; }
.cta-social-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.75);
}
.cta-social-handle {
  font-size: 0.7rem;
  color: rgba(0,0,0,0.45);
  letter-spacing: 0.03em;
}

/* =====================
   CTA — MAP
   ===================== */
.cta-map {
  border-top: 1px solid rgba(0,0,0,0.12);
}
.cta-map iframe {
  width: 100%;
  height: 300px;
  display: block;
  border: none;
  filter: grayscale(1) invert(1) contrast(0.85) brightness(0.75) sepia(0.1);
}
.cta-map-label {
  padding: 16px 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: rgba(0,0,0,0.45);
  letter-spacing: 0.05em;
  background: rgba(0,0,0,0.08);
}
.cta-map-label::before {
  content: '';
  width: 7px; height: 7px;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .cta-social-cards { grid-template-columns: 1fr; }
  .cta-map-label { padding: 14px 24px; }
}
