:root {
  --bg: #0d1117;
  --bg-2: #131a23;
  --surface: #181f29;
  --surface-2: #1f2733;
  --border: rgba(255,255,255,0.055);
  --border-strong: rgba(255,255,255,0.11);
  --text: #d8dde6;
  --text-dim: #8a94a6;
  --text-muted: #6a7388;
  --brand: #5b9fc4;
  --brand-2: #7eb8d4;
  --brand-deep: #2d6982;
  --accent: #c9a96e;
  --success: #6fbc92;
  --danger: #d97570;
  --grad-1: linear-gradient(135deg, #5b9fc4 0%, #4a7e9a 100%);
  --grad-2: linear-gradient(135deg, #7eb8d4 0%, #5b9fc4 100%);
  --shadow-lg: 0 18px 40px -18px rgba(0, 0, 0, 0.55);
  --radius: 14px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-2); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--brand); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- BACKGROUND DECOR ---------- */
.bg-decor {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 700px at 80% -10%, rgba(91,159,196,0.07), transparent 65%),
    radial-gradient(700px 500px at -5% 35%, rgba(91,159,196,0.04), transparent 65%);
}
.bg-grid {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 20%, transparent 70%);
}

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(6,11,24,0.72);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; letter-spacing: -0.02em; font-size: 1.05rem;
  color: var(--text);
}
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  filter: drop-shadow(0 6px 14px rgba(0,173,239,0.35));
  flex-shrink: 0;
}
.brand-mark svg, .brand-mark img { width: 100%; height: 100%; display: block; }
.brand small { display: block; font-weight: 400; font-size: .68rem; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; margin-top: -2px; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  color: var(--text-dim); font-size: 0.92rem; padding: 8px 14px;
  border-radius: 8px; font-weight: 500; transition: all .15s ease;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-cta {
  background: var(--brand); color: #ffffff !important; font-weight: 600;
  padding: 9px 18px !important; border-radius: 999px !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.nav-cta:hover { transform: translateY(-1px); background: #6caed0 !important; color: #ffffff !important; }
.mobile-toggle { display: none; padding: 8px; border-radius: 8px; }
.mobile-toggle svg { width: 22px; height: 22px; }

@media (max-width: 860px) {
  .mobile-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 18px 18px;
    background: rgba(13,17,23,0.96);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }
  .nav-links.nav-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-links a:not(.nav-cta) {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 1rem;
    text-align: center;
  }
  .nav-links a.nav-cta {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 0.98rem;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand); color: #ffffff;
  box-shadow: 0 6px 18px -6px rgba(0,0,0,0.5);
}
.btn-primary:hover { transform: translateY(-1px); background: #6caed0; box-shadow: 0 10px 22px -8px rgba(0,0,0,0.55); color: #ffffff; }
.btn-secondary {
  background: rgba(255,255,255,0.04); color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.28); }
.btn svg { width: 16px; height: 16px; }

/* ---------- HERO ---------- */
.hero { padding: 80px 0 100px; position: relative; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.eyebrow {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin-bottom: 22px;
}
.hero h1 .grad { color: var(--brand-2); }
.hero p.lead {
  font-size: 1.18rem; color: var(--text-dim);
  max-width: 580px; margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 44px;
  display: flex; flex-wrap: wrap; gap: 28px 36px; align-items: center;
  color: var(--text-muted); font-size: 0.86rem;
}
.hero-trust strong { color: var(--text); font-weight: 600; }
.hero-trust .item { display: flex; align-items: center; gap: 10px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--brand-2); }

/* Hero visual (photo card) */
.hero-visual {
  position: relative; max-width: 540px; margin-left: auto; margin-right: -12px;
  width: 100%;
}
.hero-photo-card {
  background: rgba(24,31,41,0.85);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-photo-card .photo-frame { position: relative; overflow: hidden; }
.hero-photo-card .photo-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(24,31,41,0.55) 100%);
  pointer-events: none;
}
.hero-photo-card img { width: 100%; display: block; filter: saturate(0.82) contrast(0.96) brightness(0.92); }
.hero-photo-card figcaption { padding: 22px 24px 24px; border-top: 1px solid var(--border); }
.cap-eyebrow { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 8px; }
.cap-title { font-size: 1.06rem; font-weight: 700; color: var(--text); letter-spacing: -0.01em; margin-bottom: 14px; }
.cap-list { display: flex; flex-wrap: wrap; gap: 6px 8px; color: var(--text-dim); font-size: 0.86rem; }
.cap-list .sep { color: var(--text-muted); opacity: 0.5; }
.cap-highlights { display: grid; gap: 10px; }
.cap-h {
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(126, 184, 212, 0.04), rgba(126, 184, 212, 0));
  transition: border-color .2s ease, background .2s ease;
  overflow: hidden;
}
.cap-h.is-open { border-color: rgba(126, 184, 212, 0.32); background: linear-gradient(180deg, rgba(126, 184, 212, 0.08), rgba(126, 184, 212, 0)); }
.cap-h:hover { border-color: rgba(126, 184, 212, 0.28); }
.cap-h-head {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 13px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.cap-h-head::-webkit-details-marker { display: none; }
.cap-h-head::marker { display: none; }
.cap-h-icon { width: 15px; height: 15px; color: var(--brand-2); flex-shrink: 0; }
.cap-h-label { color: var(--text); font-weight: 600; font-size: 0.9rem; letter-spacing: -0.005em; flex: 1; }
.cap-h-chev { width: 14px; height: 14px; color: var(--text-muted); flex-shrink: 0; transition: transform .28s ease, color .28s ease; }
.cap-h.is-open .cap-h-chev { transform: rotate(180deg); color: var(--brand-2); }
.cap-wrap { height: 0; overflow: hidden; transition: height .28s ease; }
.cap-h.is-open .cap-wrap { height: auto; }
.cap-tags {
  display: flex; flex-wrap: wrap; gap: 5px;
  padding: 0 13px 12px 37px;
}
.cap-tags span {
  font-size: 0.72rem; line-height: 1.4;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(91, 159, 196, 0.07);
  border: 1px solid rgba(91, 159, 196, 0.18);
  color: var(--text-dim);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { margin: 0 auto; max-width: 460px; }
  .hero { padding: 50px 0 70px; }
}

/* ---------- SECTIONS ---------- */
section { padding: 100px 0; position: relative; }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-eyebrow {
  display: inline-block; font-size: 0.74rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--brand-2); font-weight: 600;
  margin-bottom: 14px; opacity: 0.85;
}
.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px;
}
.section-head p { font-size: 1.1rem; color: var(--text-dim); }

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
}
.trust-strip .container {
  display: flex; flex-wrap: wrap; justify-content: space-around; align-items: center; gap: 24px;
  color: var(--text-muted); font-size: 0.84rem; letter-spacing: 0.02em;
}
.trust-strip .item { display: flex; align-items: center; gap: 10px; }
.trust-strip svg { width: 22px; height: 22px; color: var(--text-dim); }

/* ---------- SERVICES ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: rgba(24,31,41,0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.service-card:hover { transform: translateY(-2px); border-color: rgba(91,159,196,0.22); background: rgba(31,39,51,0.7); }
.service-icon {
  width: 46px; height: 46px; border-radius: 11px;
  background: rgba(91,159,196,0.08);
  border: 1px solid rgba(91,159,196,0.18);
  display: grid; place-items: center; color: var(--brand-2);
  margin-bottom: 20px;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.service-card p { color: var(--text-dim); font-size: 0.94rem; }
.service-card ul { list-style: none; margin-top: 14px; }
.service-card li { color: var(--text-muted); font-size: 0.85rem; padding: 3px 0; padding-left: 18px; position: relative; }
.service-card li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand-2);
}

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- WHY US ---------- */
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.why-content h2 { font-size: clamp(2rem, 3.6vw, 2.7rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 20px; }
.why-content .lead { color: var(--text-dim); font-size: 1.06rem; margin-bottom: 28px; }
.why-list { list-style: none; display: grid; gap: 18px; }
.why-list li { display: flex; gap: 14px; align-items: flex-start; }
.why-list .check {
  flex: 0 0 28px; width: 28px; height: 28px; border-radius: 8px;
  background: rgba(111,188,146,0.10);
  border: 1px solid rgba(111,188,146,0.22);
  display: grid; place-items: center; color: var(--success);
  margin-top: 2px;
}
.why-list .check svg { width: 14px; height: 14px; }
.why-list h4 { font-size: 1rem; font-weight: 600; margin-bottom: 2px; }
.why-list p { color: var(--text-dim); font-size: 0.92rem; }

.why-visual {
  position: relative;
  background: rgba(24,31,41,0.75);
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.why-visual h4 { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
.stat-row { display: flex; align-items: baseline; gap: 14px; padding: 14px 0; border-top: 1px solid var(--border); }
.stat-row:first-of-type { border-top: none; }
.stat-row .num { font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; color: var(--text); font-family: 'Inter', sans-serif; min-width: 110px; }
.stat-row .num span.gradient { color: var(--brand-2); }
.stat-row .desc { color: var(--text-dim); font-size: 0.92rem; }

@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- ROI ---------- */
.roi {
  background: rgba(91,159,196,0.025);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.roi-card {
  background: rgba(24,31,41,0.85);
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center;
}
.roi-inputs { display: grid; gap: 26px; }
.roi-field label { display: flex; justify-content: space-between; font-size: 0.88rem; color: var(--text-dim); margin-bottom: 10px; font-weight: 500; }
.roi-field label .val { color: var(--brand-2); font-weight: 700; font-variant-numeric: tabular-nums; }
.roi-field input[type=range] {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 6px; background: rgba(255,255,255,0.08); border-radius: 999px; outline: none;
}
.roi-field input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--brand); cursor: pointer;
  border: 3px solid #e8edf3;
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
  transition: transform .12s ease;
}
.roi-field input[type=range]::-webkit-slider-thumb:active { transform: scale(1.08); }
.roi-field input[type=range]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--brand); cursor: pointer; border: 3px solid #e8edf3;
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
}
.roi-output { text-align: center; }
.roi-output .label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 16px; }
.roi-output .savings {
  font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 800;
  color: var(--brand-2);
  letter-spacing: -0.04em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.roi-output .savings-sub { color: var(--text-dim); font-size: 1rem; margin-top: 10px; }
.roi-output .payback {
  margin-top: 22px; padding: 14px 18px;
  background: rgba(91,159,196,0.06); border: 1px solid rgba(91,159,196,0.18);
  border-radius: 12px; font-size: 0.92rem; color: var(--text);
}
.roi-output .payback strong { color: var(--brand-2); }
.roi-disclaimer { text-align: center; color: var(--text-muted); font-size: 0.82rem; margin-top: 24px; }

@media (max-width: 800px) { .roi-card { grid-template-columns: 1fr; padding: 30px; gap: 32px; } }

/* ---------- PROCESS ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-grid::before {
  content: ""; position: absolute; top: 26px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong) 12%, var(--border-strong) 88%, transparent);
  z-index: 0;
}
.process-step { position: relative; padding: 0 8px; }
.step-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong);
  display: grid; place-items: center; margin: 0 auto 22px;
  font-weight: 700; color: var(--brand-2); font-size: 1.1rem;
  position: relative; z-index: 1;
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}
.process-step h4 { text-align: center; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { text-align: center; color: var(--text-dim); font-size: 0.9rem; }

@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}
@media (max-width: 500px) { .process-grid { grid-template-columns: 1fr; } }

/* ---------- AUDIENCE ---------- */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.audience-card {
  position: relative;
  background: rgba(24,31,41,0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  overflow: hidden;
}
.audience-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--brand);
  opacity: 0.7;
}
.audience-card .tag {
  display: inline-block; background: rgba(91,159,196,0.08); border: 1px solid rgba(91,159,196,0.22);
  color: var(--brand-2); padding: 5px 12px; border-radius: 999px;
  font-size: 0.76rem; font-weight: 600; margin-bottom: 18px; letter-spacing: 0.04em;
}
.audience-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 14px; letter-spacing: -0.02em; }
.audience-card p { color: var(--text-dim); margin-bottom: 18px; font-size: 0.96rem; }
.audience-card ul { list-style: none; }
.audience-card li {
  padding: 7px 0; padding-left: 26px; color: var(--text); font-size: 0.92rem; position: relative;
}
.audience-card li::before {
  content: "✓"; position: absolute; left: 0; top: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--brand); color: #ffffff;
  font-size: 0.7rem; font-weight: 700;
  display: grid; place-items: center;
}

@media (max-width: 800px) { .audience-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: rgba(255,255,255,0.018);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: border-color .2s ease, background .2s ease;
}
.faq-item[open] { border-color: rgba(91,159,196,0.22); background: rgba(91,159,196,0.04); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px; font-weight: 600; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.4rem; color: var(--brand-2);
  transition: transform .25s ease; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer-wrap {
  height: 0;
  overflow: hidden;
  transition: height .3s ease;
}
.faq-item .answer { padding: 0 24px 22px; color: var(--text-dim); font-size: 0.96rem; }

/* ---------- CTA ---------- */
.cta {
  position: relative; overflow: hidden;
  background: rgba(91,159,196,0.04);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-card { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-card h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; }
.cta-card p { font-size: 1.1rem; color: var(--text-dim); margin-bottom: 30px; }
.cta-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-whisper {
  margin-top: -14px; margin-bottom: 26px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-dim);
  letter-spacing: 0.005em;
}
.cta-whisper a {
  color: var(--brand-2);
  text-decoration: none;
  border-bottom: 1px dashed rgba(126, 184, 212, 0.4);
  transition: color .2s ease, border-color .2s ease;
  padding-bottom: 1px;
}
.cta-whisper a:hover { color: var(--text); border-bottom-color: var(--brand-2); }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-grid > * { min-width: 0; }
.contact-info h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 14px; letter-spacing: -0.02em; }
.contact-info p { color: var(--text-dim); margin-bottom: 30px; }
.contact-channels { display: grid; gap: 16px; }
.contact-channel {
  display: flex; align-items: center; gap: 16px; min-width: 0;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 20px;
  transition: all .15s ease;
}
.contact-channel:hover { border-color: rgba(91,159,196,0.25); background: rgba(91,159,196,0.04); transform: translateY(-1px); }
.contact-channel .ico {
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(91,159,196,0.08);
  border: 1px solid rgba(91,159,196,0.18);
  display: grid; place-items: center; color: var(--brand-2);
  flex-shrink: 0;
}
.contact-channel .ico svg { width: 20px; height: 20px; }
.contact-channel > div:last-child { flex: 1; min-width: 0; }
.contact-channel .label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-channel .val { font-size: 1rem; color: var(--text); font-weight: 600; overflow-wrap: anywhere; word-break: break-word; }

form.contact-form {
  background: rgba(24,31,41,0.75);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; min-width: 0; }
.form-field { display: flex; flex-direction: column; min-width: 0; }
.form-field.full { grid-column: 1/-1; }
.form-field input, .form-field select, .form-field textarea { width: 100%; max-width: 100%; min-width: 0; }
.form-field select { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }
.form-field label { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 6px; font-weight: 500; }
.form-field select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237eb8d4' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px !important;
  cursor: pointer;
}
.form-field select option {
  background-color: #161b22;
  color: var(--text);
  padding: 10px;
}
.form-field select option:checked,
.form-field select option:hover {
  background: linear-gradient(0deg, rgba(91,159,196,0.25), rgba(91,159,196,0.25)) #161b22;
  color: #fff;
}
.form-field input, .form-field select, .form-field textarea {
  background: rgba(0,0,0,0.25); border: 1px solid var(--border-strong);
  border-radius: 10px; padding: 12px 14px;
  color: var(--text); font-family: inherit; font-size: 0.95rem;
  transition: border-color .15s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--brand); background: rgba(91,159,196,0.05);
}
.form-field textarea { resize: vertical; min-height: 110px; }
form.contact-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { color: var(--text-muted); font-size: 0.8rem; text-align: center; margin-top: 14px; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 28px;
  background: rgba(0,0,0,0.25);
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 24px;
  justify-content: space-between; align-items: center;
}
.footer-inner .copy { color: var(--text-muted); font-size: 0.86rem; }
.footer-inner nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-inner nav a { color: var(--text-dim); font-size: 0.88rem; }

/* ---------- REVEAL ON SCROLL ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

::selection { background: var(--brand); color: #fff; }

/* ---------- BACK TO TOP ---------- */
.back-top {
  position: fixed; right: 20px; bottom: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(24,31,41,0.92); border: 1px solid var(--border-strong);
  color: var(--text-dim);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, color .15s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  z-index: 90;
}
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { color: var(--text); transform: translateY(-2px); }
.back-top svg { width: 18px; height: 18px; }
