:root {
  --bg: #ffffff;
  --bg-soft: #faf9fd;
  --surface: #ffffff;
  --surface-2: #f7f5fc;
  --border: #ecebf2;
  --border-strong: #dcd9e8;
  --text: #0f0f1a;
  --text-dim: #4b4b5a;
  --text-muted: #7a7a8c;
  --accent: #7c3aed;
  --accent-dark: #6d28d9;
  --accent-2: #a855f7;
  --accent-soft: #f3ecff;
  --accent-softer: #faf5ff;
  --grad: linear-gradient(135deg, #7c3aed 0%, #a855f7 55%, #c084fc 100%);
  --grad-soft: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(168, 85, 247, 0.06) 100%);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 16px 40px -16px rgba(124, 58, 237, 0.35);
  --shadow-card: 0 4px 24px -8px rgba(15, 15, 26, 0.06);
  --container: 1200px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html { max-width: 100vw; overflow-x: clip; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: clip;
  max-width: 100vw;
  overflow-wrap: break-word;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(124, 58, 237, 0.10), transparent),
    radial-gradient(1000px 500px at 80% 10%, rgba(168, 85, 247, 0.08), transparent);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
@media (max-width: 500px) {
  .container { padding: 0 16px; }
}

a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-dim); }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  background: var(--accent-softer);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent-dark);
  letter-spacing: 0.02em;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.6);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  font-family: inherit;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(124, 58, 237, 0.55); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--accent-softer); border-color: var(--accent); color: var(--accent-dark); }

.btn .arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Navbar */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo img { display: block; height: 32px; width: auto; }
.footer-brand .nav-logo img { height: 38px; }
@media (max-width: 540px) {
  .nav-logo img { height: 26px; }
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.94rem; color: var(--text-dim); }
.nav-links a:hover { color: var(--accent); }
.nav-cta { display: flex; gap: 10px; }

.nav-toggle { display: none; background: none; border: 0; color: var(--text); cursor: pointer; padding: 6px; }

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 540px) {
  .nav-cta .btn-primary { padding: 10px 14px; font-size: 0.82rem; }
  .nav-cta .btn-primary .arrow { display: none; }
}
@media (max-width: 420px) {
  .nav-cta .btn-primary { padding: 8px 12px; font-size: 0.75rem; }
}

/* Sections */
section { padding: 110px 0; position: relative; z-index: 1; }
section.tight { padding: 70px 0; }
.section-head { text-align: center; max-width: 740px; margin: 0 auto 64px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.05rem; }

/* Hero */
.hero {
  padding-top: 180px;
  padding-bottom: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1400px 700px at 50% 0%, rgba(124, 58, 237, 0.16), transparent 70%),
    linear-gradient(180deg, #fbf8ff 0%, #ffffff 70%, #faf6ff 100%);
}
@media (max-width: 720px) {
  .hero { padding-top: 130px; padding-bottom: 60px; }
}

/* Hero scene — background orbs + floating cards */
.hero-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.45;
  will-change: transform;
}
.orb-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 65%);
  top: -140px; left: -160px;
  animation: orb-float-a 22s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #a855f7 0%, transparent 65%);
  top: 10%; right: -180px;
  animation: orb-float-b 19s ease-in-out infinite;
}
.orb-3 {
  width: 440px; height: 440px;
  background: radial-gradient(circle, #c084fc 0%, transparent 65%);
  bottom: -120px; left: 28%;
  animation: orb-float-c 26s ease-in-out infinite;
}
.orb-4 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #ec4899 0%, transparent 65%);
  top: 45%; left: 12%;
  opacity: 0.35;
  animation: orb-float-d 21s ease-in-out infinite;
}

@keyframes orb-float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(50px, 60px) scale(1.08); }
}
@keyframes orb-float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-60px, 40px) scale(0.94); }
}
@keyframes orb-float-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, -50px) scale(1.06); }
}
@keyframes orb-float-d {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-30px, -40px) scale(1.1); }
}

/* Floating UI cards — parallax + 3D tilt */
.float-wrapper {
  position: absolute;
  will-change: transform;
  animation: card-bob 8s ease-in-out infinite;
}
.card-1 { top: 22%; left: 1.5%;  animation-delay: 0s; }
.card-2 { top: 14%; right: 1.5%; animation-delay: -2.5s; }
.card-3 { top: 56%; left: 2.5%;  animation-delay: -5s; }
.card-4 { top: 48%; right: 2.5%; animation-delay: -3.5s; }

@keyframes card-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.floating-card {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  box-shadow:
    0 30px 70px -20px rgba(124, 58, 237, 0.35),
    0 10px 20px -6px rgba(15, 15, 26, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  min-width: 190px;
  max-width: 210px;
  opacity: 0;
  animation: card-reveal 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.card-1 .floating-card { transform: perspective(800px) rotateY(7deg) rotateX(-2deg) rotate(-4deg); animation-delay: 0.9s; }
.card-2 .floating-card { transform: perspective(800px) rotateY(-7deg) rotateX(-2deg) rotate(3deg); animation-delay: 1.1s; }
.card-3 .floating-card { transform: perspective(800px) rotateY(5deg) rotateX(2deg) rotate(2deg); animation-delay: 1.3s; }
.card-4 .floating-card { transform: perspective(800px) rotateY(-6deg) rotateX(2deg) rotate(-3deg); animation-delay: 1.5s; }

@keyframes card-reveal {
  from { opacity: 0; translate: 0 20px; }
  to   { opacity: 1; translate: 0 0; }
}

.floating-card .card-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -4px var(--icon-shadow, rgba(15, 15, 26, 0.25));
}
.floating-card .card-icon.green  { background: linear-gradient(135deg, #10b981, #059669); --icon-shadow: rgba(16, 185, 129, 0.5); }
.floating-card .card-icon.violet { background: linear-gradient(135deg, #7c3aed, #a855f7); --icon-shadow: rgba(124, 58, 237, 0.5); }
.floating-card .card-icon.amber  { background: linear-gradient(135deg, #f59e0b, #d97706); --icon-shadow: rgba(245, 158, 11, 0.5); }
.floating-card .card-icon.rose   { background: linear-gradient(135deg, #ec4899, #db2777); --icon-shadow: rgba(236, 72, 153, 0.5); }

.floating-card .card-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.2;
}
.floating-card .card-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Hide cards below 1180px to avoid overlap with the h1 */
@media (max-width: 1180px) {
  .float-wrapper { display: none; }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  margin-bottom: 32px;
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}
.hero h1 {
  max-width: 820px;
  margin: 0 auto 28px;
  font-size: clamp(1.9rem, 6vw, 4.9rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  opacity: 0;
  animation: fade-up 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.25s forwards;
}
.hero h1 .italic-accent {
  font-style: italic;
  font-weight: 600;
}
.hero p.lead {
  font-size: 1.18rem;
  max-width: 680px;
  margin: 0 auto 40px;
  color: var(--text-dim);
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.45s forwards;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-stats {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  opacity: 0;
  animation: fade-up 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.75s forwards;
}
.hero-stats > div { min-width: 0; }
.hero-stats .stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--text); }
.hero-stats .stat-num.grad { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-stats .stat-label { color: var(--text-muted); font-size: 0.88rem; margin-top: 4px; }

@media (max-width: 820px) {
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Positioning */
.positioning-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.positioning-grid .quote-card {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(500px 300px at 0% 0%, rgba(124, 58, 237, 0.10), transparent),
    var(--accent-softer);
  position: relative;
  box-shadow: var(--shadow-card);
}
.positioning-grid .quote-card .quote-mark { font-family: var(--font-display); font-size: 4rem; color: var(--accent); line-height: 0.7; opacity: 0.5; }
.positioning-grid .quote-card blockquote { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.5; margin: 12px 0 24px; color: var(--text); }
.positioning-grid .quote-card cite { color: var(--text-muted); font-style: normal; font-size: 0.9rem; }

.vs-table { display: grid; gap: 12px; margin-top: 24px; }
.vs-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.vs-row .bad { color: var(--text-muted); text-decoration: line-through; text-decoration-color: rgba(255, 80, 80, 0.4); }
.vs-row .good { color: var(--text); font-weight: 500; }
.vs-row .arrow { color: var(--accent); font-weight: 700; }

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

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow: var(--shadow-card);
}
.service-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 20px 40px -16px rgba(124, 58, 237, 0.22); }
.service-card .num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 0.96rem; }
.service-card ul { margin-top: 16px; padding: 0; list-style: none; }
.service-card ul li { padding: 6px 0 6px 22px; position: relative; color: var(--text-dim); font-size: 0.9rem; }
.service-card ul li::before { content: ''; position: absolute; left: 0; top: 12px; width: 12px; height: 2px; background: var(--grad); border-radius: 2px; }

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

/* Cases */
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.case-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
  box-shadow: var(--shadow-card);
}
.case-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 20px 40px -16px rgba(124, 58, 237, 0.22); }
.case-card .tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  align-self: flex-start;
}
.case-card h3 { font-size: 1.25rem; }
.case-card .meta { color: var(--text-muted); font-size: 0.85rem; margin-top: auto; }

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

/* Process */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.process-step {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, border-color .2s ease;
}
.process-step:hover { transform: translateY(-4px); border-color: var(--accent); }
.process-step .step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 { margin-bottom: 10px; }
.process-step .duration { color: var(--accent); font-size: 0.85rem; font-weight: 500; margin-top: 14px; display: inline-block; }

@media (max-width: 860px) { .process-steps { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color .15s ease;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer { padding: 0 24px 22px; color: var(--text-dim); font-size: 0.95rem; }

/* CTA */
.cta-section { padding: 90px 0 120px; }
.cta-box {
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(124, 58, 237, 0.14), transparent),
    var(--accent-softer);
  text-align: center;
  box-shadow: var(--shadow-card);
}
.cta-box h2 { margin-bottom: 16px; }
.cta-box p { max-width: 560px; margin: 0 auto 28px; }

.booking-wrap {
  margin-top: 48px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.booking-wrap iframe {
  display: block;
  width: 100%;
  height: 780px;
  border: 0;
  border-radius: calc(var(--radius-lg) - 12px);
  background: var(--bg);
}
@media (max-width: 720px) { .booking-wrap iframe { height: 920px; } }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 60px 0 30px; position: relative; z-index: 1; background: var(--bg-soft); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 320px; margin-top: 14px; }
.footer-col h5 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 16px; font-family: var(--font-sans); font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-dim); font-size: 0.92rem; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

/* Legal / contact pages */
.page-hero { padding-top: 160px; padding-bottom: 60px; text-align: center; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { max-width: 640px; margin: 0 auto; }

.prose { max-width: 800px; margin: 0 auto; padding: 30px 0 90px; }
.prose h2 { margin: 38px 0 14px; font-size: 1.5rem; }
.prose h3 { margin: 26px 0 10px; font-size: 1.15rem; }
.prose p { margin-bottom: 14px; color: var(--text-dim); line-height: 1.75; }
.prose ul { margin: 10px 0 20px 20px; color: var(--text-dim); }
.prose ul li { margin-bottom: 6px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--accent-dark); }
.prose .info-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  margin: 24px 0;
  box-shadow: var(--shadow-card);
}
.prose .updated { color: var(--text-muted); font-size: 0.85rem; margin-top: 40px; font-style: italic; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1040px; margin: 0 auto; padding-bottom: 90px; }
.contact-grid .info-block { padding: 32px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-card); }
.contact-grid .info-block h3 { margin-bottom: 20px; }
.contact-grid .info-block .row { padding: 14px 0; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: 4px; }
.contact-grid .info-block .row:last-child { border-bottom: 0; }
.contact-grid .info-block .row .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.contact-grid .info-block .row .value { color: var(--text); font-size: 0.98rem; }
.contact-grid .info-block .row .value a { color: var(--text); }
.contact-grid .info-block .row .value a:hover { color: var(--accent); }

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; padding-bottom: 60px; } }

/* Utility */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-16 { margin-top: 16px; }

/* Small-screen overrides (placed late so they win the cascade) */
@media (max-width: 500px) {
  html, body { width: 100%; max-width: 100vw; overflow-x: clip; }
  .container, .nav-inner, section, .hero, .hero-content, .footer { max-width: 100vw; }
  .container { padding: 0 20px; }
  .nav { width: 100vw; }
  .nav-inner { padding: 12px 0; gap: 10px; }
  .nav-logo img { height: 22px; }
  .nav-cta .btn-primary { padding: 8px 14px; font-size: 0.78rem; flex-shrink: 0; }
  .nav-cta .btn-primary .hide-sm, .nav-cta .btn-primary .arrow { display: none; }
  .hero { padding-top: 120px; padding-bottom: 50px; }
  .hero h1 {
    font-size: 1.55rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  .hero p.lead {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 26px;
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas .btn { padding: 13px 18px; font-size: 0.92rem; width: 100%; justify-content: center; }
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px;
    gap: 14px;
    max-width: 100%;
  }
  .hero-stats .stat-num { font-size: 1.35rem; }
  .hero-stats .stat-label { font-size: 0.76rem; }
  .hero-stats > div { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
}
