/* ===========================
   REFINED SPACES — PREMIUM CSS
   =========================== */

:root {
  --dark: #0d0d0d;
  --dark-2: #161616;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --muted-light: #8a8a8a;
  --cream: #f5f0e8;
  --cream-dark: #ede6d8;
  --gold: #c89b45;
  --gold-light: #d4aa55;
  --white: #ffffff;
  --shadow-sm: 0 4px 20px rgba(0,0,0,.08);
  --shadow: 0 20px 60px rgba(0,0,0,.12);
  --shadow-lg: 0 40px 80px rgba(0,0,0,.18);
  --radius: 4px;
  --radius-lg: 16px;
  --radius-xl: 28px;
}

/* BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'DM Sans', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; }

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.05;
}
h1 { font-size: clamp(3rem, 6.5vw, 6.5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); line-height: 1.08; }
h3 { font-size: 1.55rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow-light { color: var(--gold); }

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1);
}
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate].in-view { opacity: 1; transform: none; }

/* Hero animations */
.animate-up { opacity: 0; transform: translateY(30px); animation: fadeUp .85s cubic-bezier(.16,1,.3,1) both; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 999px;
  padding: 15px 30px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  border: 1.5px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: #0d0d0d; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,155,69,.35); }
.btn-gold { background: var(--gold); color: #0d0d0d; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,155,69,.35); }
.btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; background: rgba(255,255,255,.06); }
.btn-ghost:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.8); transform: translateY(-2px); }
.btn-full { width: 100%; }
.btn-icon { display: flex; align-items: center; }

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,13,13,.5);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .3s ease;
}
.site-header.scrolled { background: rgba(13,13,13,.92); }
.navbar {
  max-width: 1280px; margin: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px;
  color: #fff;
  gap: 24px;
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 600; letter-spacing: -.01em;
  color: #fff;
  flex-shrink: 0;
}
.brand span { color: var(--gold); }
.nav-links {
  display: flex; gap: 32px; align-items: center;
  font-size: .875rem; font-weight: 500; letter-spacing: .02em;
}
.nav-links a { color: rgba(255,255,255,.8); transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--gold) !important; color: #0d0d0d !important;
  padding: 10px 22px; border-radius: 999px; font-weight: 600;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.menu-toggle {
  display: none; background: none; border: none; color: #fff;
  flex-direction: column; gap: 5px; padding: 4px;
}
.menu-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: #fff; transition: all .3s;
}

/* Social icons — header */
.header-socials { display: flex; gap: 6px; margin-left: 8px; }
.header-socials a, .footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.8);
  transition: all .2s;
}
.header-socials a svg, .footer-socials a svg { width: 14px; height: 14px; }
.header-socials a:hover, .footer-socials a:hover {
  background: var(--gold); border-color: var(--gold); color: #0d0d0d;
  transform: translateY(-2px);
}

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.55) 50%,
    rgba(0,0,0,.18) 100%
  );
  z-index: 1;
}
.hero-grain {
  position: absolute; inset: 0; z-index: 2;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 3;
  max-width: 1280px; width: 100%;
  margin: 0 auto;
  padding: 160px 32px 110px;
  color: #fff;
}
.hero h1 {
  font-weight: 400;
  margin: 0 0 22px;
  color: #fff;
}
.hero h1 em { font-style: italic; color: rgba(255,255,255,.85); }
.hero-text {
  font-size: 1.1rem; line-height: 1.75;
  color: rgba(255,255,255,.75);
  max-width: 580px; margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-replay {
  position: absolute; bottom: 36px; right: 36px; z-index: 4;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  color: #fff; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  opacity: 0; pointer-events: none;
}
.hero-replay.visible { opacity: 1; pointer-events: all; }
.hero-replay:hover { background: rgba(255,255,255,.22); }
.hero-replay svg { width: 18px; height: 18px; }

.hero-scroll-hint {
  position: absolute; bottom: 42px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.4); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(rgba(255,255,255,.4), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop { 0%, 100% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); } }

/* ===========================
   TRUST BAR
   =========================== */
.trust-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.trust-bar div {
  padding: 32px 28px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex; flex-direction: column; gap: 6px;
}
.trust-bar div:last-child { border-right: none; }
.trust-bar strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 600;
  color: var(--gold);
}
.trust-bar span { font-size: .82rem; color: rgba(255,255,255,.55); letter-spacing: .04em; }

/* ===========================
   SECTION LAYOUT
   =========================== */
.section { max-width: 1280px; margin: auto; padding: 110px 32px; }
.section-intro { max-width: 740px; margin-bottom: 56px; }
.section-intro h2 { margin: 0; }

/* ===========================
   SERVICES
   =========================== */
.services-section { padding-top: 120px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--white); border: 1px solid #ebebeb;
  padding: 36px 32px 32px; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.card:hover { border-color: #d8d0c8; box-shadow: var(--shadow); transform: translateY(-4px); }
.card:hover::before { transform: scaleX(1); }
.card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300;
  color: #ececec; line-height: 1;
  position: absolute; top: 24px; right: 28px;
}
.card h3 { margin: 0; font-size: 1.3rem; z-index: 1; position: relative; }
.card p { color: var(--muted); font-size: .9rem; line-height: 1.7; flex: 1; }
.card-arrow {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  margin-top: 8px; transition: background .2s, transform .2s;
}
.card-arrow svg { width: 16px; height: 16px; color: var(--gold); }
.card:hover .card-arrow { background: var(--gold); transform: translateX(4px); }
.card:hover .card-arrow svg { color: #0d0d0d; }

/* ===========================
   BEFORE / AFTER
   =========================== */
.ba-section {
  background: var(--dark-2);
  padding: 110px 32px;
  overflow: hidden;
}
.ba-intro {
  max-width: 1280px; margin: 0 auto 52px;
}
.ba-intro h2 { color: #fff; margin: 0; }

.ba-slider-wrap {
  max-width: 1100px; margin: 0 auto 48px;
}
.ba-slider {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
  cursor: ew-resize; user-select: none;
  height: 540px;
}
.ba-after, .ba-before {
  position: absolute; inset: 0;
}
.ba-after img, .ba-before img {
  width: 100%; height: 100%; object-fit: cover;
}
.ba-before {
  clip-path: inset(0 50% 0 0);
  transition: clip-path .02s;
}
.ba-label {
  position: absolute; top: 22px;
  background: rgba(13,13,13,.75); backdrop-filter: blur(8px);
  color: #fff; font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
}
.ba-label-after { right: 22px; }
.ba-label-before { left: 22px; }
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  pointer-events: none; z-index: 10;
}
.ba-line { flex: 1; width: 2px; background: rgba(255,255,255,.85); }
.ba-circle {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,.3);
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: 50%; transform: translateY(-50%);
  transition: transform .15s;
}
.ba-slider:active .ba-circle { transform: translateY(-50%) scale(1.1); }
.ba-circle svg { width: 18px; height: 18px; color: var(--text); }

.ba-hint {
  text-align: center; margin-top: 16px;
  color: rgba(255,255,255,.35); font-size: .78rem; letter-spacing: .1em;
  text-transform: uppercase;
}

.ba-points {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ba-point {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl); padding: 28px 24px;
  display: flex; align-items: flex-start; gap: 16px;
}
.ba-check {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%; background: rgba(200,155,69,.15);
  border: 1px solid rgba(200,155,69,.3);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.ba-check svg { width: 14px; height: 14px; color: var(--gold); }
.ba-point p { color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.65; }

/* ===========================
   FOUNDER SECTIONS
   =========================== */
.founder-section { overflow: hidden; }
.founder-dark { background: var(--dark); }
.founder-light { background: var(--cream); }

.founder-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 110px 32px;
}
.founder-reverse { direction: rtl; }
.founder-reverse > * { direction: ltr; }

.founder-copy h2 { margin: 0 0 20px; }
.founder-dark .founder-copy h2 { color: #fff; }
.founder-copy p { color: var(--muted); line-height: 1.8; margin-bottom: 14px; font-size: .95rem; }
.founder-dark .founder-copy p { color: rgba(255,255,255,.6); }
.founder-copy .btn { margin-top: 16px; }

.founder-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.founder-img-wrap img {
  width: 100%; height: 580px; object-fit: cover;
  object-position: top;
  transition: transform .6s ease;
}
.founder-img-wrap:hover img { transform: scale(1.03); }
.founder-img-accent {
  position: absolute; bottom: -24px; right: -24px;
  width: 200px; height: 200px; border-radius: 50%;
  background: var(--dark-2); opacity: .6; z-index: -1;
}
.accent-gold { background: var(--gold); opacity: .15; }

/* Feature list */
.feature-list {
  list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 12px;
}
.feature-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: .9rem; color: var(--text); font-weight: 500;
}
.feature-list li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ===========================
   PROCESS
   =========================== */
.process-section { background: var(--white); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step {
  padding: 0 32px 0 0;
  border-right: 1px solid #ececec;
  padding-right: 36px;
}
.step:last-child { border-right: none; padding-right: 0; }
.step + .step { padding-left: 36px; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem; font-weight: 300; line-height: 1;
  color: #ececec; margin-bottom: 18px;
}
.step-line {
  width: 32px; height: 2px; background: var(--gold); margin-bottom: 20px;
}
.step h3 { font-size: 1.25rem; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: .9rem; line-height: 1.7; }

/* ===========================
   CONTACT
   =========================== */
.contact-section {
  background: var(--dark);
  padding: 0 32px 100px;
}
.contact-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: 80px; align-items: start;
  background: var(--dark-2);
  border-radius: 40px;
  padding: 72px 64px;
  border: 1px solid rgba(255,255,255,.07);
}
.contact-copy h2 { color: #fff; margin-bottom: 16px; }
.contact-copy > p { color: rgba(255,255,255,.55); line-height: 1.7; font-size: .95rem; }
.contact-copy strong { color: var(--gold); font-weight: 600; }
.contact-methods { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.contact-method {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.8); font-size: .9rem;
  transition: border-color .2s, background .2s;
}
.contact-method:hover { border-color: var(--gold); background: rgba(200,155,69,.08); }
.cm-icon {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%;
  background: rgba(200,155,69,.15); display: flex; align-items: center; justify-content: center;
}
.cm-icon svg { width: 16px; height: 16px; color: var(--gold); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; color: #fff; font: inherit;
  font-size: .9rem;
  transition: border-color .2s, background .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(255,255,255,.09);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.25); }
.contact-form select option { background: #1a1a1a; color: #fff; }
.contact-form textarea { resize: vertical; min-height: 130px; }
.form-full { grid-column: 1 / -1; }

/* ===========================
   LOGO STRIP
   =========================== */
.logo-strip {
  background: var(--white);
  padding: 60px 0 64px;
  text-align: center;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  overflow: hidden;
}
.logo-eyebrow { justify-content: center; margin-bottom: 28px; color: var(--gold); }
.logo-eyebrow::before { background: var(--gold); }
.logo-marquee {
  overflow: hidden; white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.logo-track {
  display: inline-flex; align-items: center; gap: 56px;
  width: max-content;
  animation: logoMove 38s linear infinite;
}
.logo-track img {
  height: 52px; max-width: 180px; width: auto;
  object-fit: contain; opacity: .7;
  filter: none;
  transition: opacity .3s, transform .3s;
  background: transparent;
  padding: 4px 8px;
}
.logo-track img:hover { opacity: 1; transform: scale(1.06); }
@keyframes logoMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-note {
  max-width: 640px; margin: 24px auto 0; padding: 0 24px;
  color: var(--muted-light); font-size: .78rem; line-height: 1.6;
}

/* ===========================
   CHAT WIDGET
   =========================== */
.chat-widget { position: fixed; right: 24px; bottom: 24px; z-index: 200; }
.chat-button {
  display: flex; align-items: center; gap: 10px;
  background: var(--gold); color: #0d0d0d;
  border: none; border-radius: 999px;
  padding: 14px 22px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: .88rem;
  box-shadow: 0 8px 30px rgba(200,155,69,.4);
  transition: transform .2s, box-shadow .2s;
}
.chat-button:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(200,155,69,.5); }
.chat-button svg { width: 18px; height: 18px; }

.chat-window {
  position: absolute; right: 0; bottom: 68px;
  width: 340px;
  background: var(--white); border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  border: 1px solid #eaeaea;
  overflow: hidden;
  display: none;
  transform: scale(.95) translateY(10px);
  transform-origin: bottom right;
  transition: transform .25s cubic-bezier(.16,1,.3,1), opacity .25s;
  opacity: 0;
}
.chat-widget.open .chat-window {
  display: block;
  animation: chatPop .3s cubic-bezier(.16,1,.3,1) both;
}
@keyframes chatPop {
  from { opacity: 0; transform: scale(.92) translateY(12px); }
  to { opacity: 1; transform: none; }
}
.chat-header {
  background: var(--dark);
  padding: 18px 18px 18px 20px;
  display: flex; align-items: center; gap: 12px;
  color: #fff;
}
.chat-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800; color: #0d0d0d;
  flex-shrink: 0;
}
.chat-header strong { font-size: .92rem; display: block; }
.chat-status { font-size: .75rem; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #6ee89c; display: inline-block; }
.chat-close {
  background: none; border: none; color: rgba(255,255,255,.5);
  margin-left: auto; padding: 4px; transition: color .2s;
}
.chat-close:hover { color: #fff; }
.chat-close svg { width: 16px; height: 16px; }
.chat-body { padding: 18px; min-height: 90px; max-height: 250px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.chat-bubble {
  background: var(--cream); padding: 13px 16px;
  border-radius: 16px 16px 16px 4px;
  color: #333; line-height: 1.55; font-size: .88rem;
  max-width: 90%; align-self: flex-start;
}
.chat-bubble.user-bubble {
  background: var(--gold); color: #0d0d0d;
  border-radius: 16px 16px 4px 16px; align-self: flex-end;
}
.chat-input-wrap {
  padding: 14px 16px;
  display: flex; gap: 8px; align-items: center;
  border-top: 1px solid #eee;
}
.chat-input-wrap input {
  flex: 1; border: 1px solid #e8e8e8; border-radius: 20px;
  padding: 11px 16px; font: inherit; font-size: .88rem;
  outline: none; transition: border-color .2s;
}
.chat-input-wrap input:focus { border-color: var(--gold); }
#chatSend {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); border: none;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
#chatSend:hover { transform: scale(1.08); }
#chatSend svg { width: 15px; height: 15px; color: #0d0d0d; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #080808;
  padding: 48px 32px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px; align-items: start;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-brand .brand { margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,.35); font-size: .85rem; line-height: 1.6; }
.footer-links {
  display: flex; flex-direction: column; gap: 12px; padding-top: 4px;
}
.footer-links a { color: rgba(255,255,255,.45); font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.8); }
.footer-contact p { color: rgba(255,255,255,.45); font-size: .88rem; margin-bottom: 8px; }
.footer-socials { display: flex; gap: 8px; margin-top: 16px; }
.footer-socials a { width: 38px; height: 38px; }
.footer-socials a svg { width: 15px; height: 15px; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .founder-inner { gap: 50px; padding: 90px 24px; }
  .contact-inner { padding: 52px 40px; gap: 50px; }
}

@media (max-width: 850px) {
  .menu-toggle { display: flex; }
  .header-socials { display: none; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 16px; right: 16px;
    background: rgba(13,13,13,.97); border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px; padding: 20px 24px;
    flex-direction: column; gap: 4px;
    backdrop-filter: blur(20px);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .hero-content { padding: 130px 24px 90px; }
  .hero h1 { font-size: clamp(2.6rem, 9vw, 4.5rem); }
  .btn { padding: 14px 22px; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .ba-section { padding: 80px 24px; }
  .ba-slider { height: 360px; }
  .ba-points { grid-template-columns: 1fr; }
  .founder-inner { grid-template-columns: 1fr; gap: 40px; padding: 80px 24px; }
  .founder-reverse { direction: ltr; }
  .founder-img-wrap img { height: 380px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-right: none; padding-right: 0; border-bottom: 1px solid #ececec; padding-bottom: 32px; margin-bottom: 8px; }
  .step:last-child { border-bottom: none; }
  .step + .step { padding-left: 0; }
  .contact-section { padding: 0 20px 80px; }
  .contact-inner { grid-template-columns: 1fr; padding: 40px 28px; gap: 40px; border-radius: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; gap: 32px; }
  .hero-scroll-hint { display: none; }
  .chat-window { width: 300px; }
  .logo-track img { height: 44px; }
  .logo-track { gap: 36px; }
}

@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
}
