:root {
  --bg:      #0e0b1f;
  --bg2:     #130f28;
  --bg3:     #1a1535;
  --purple:  #6c3fc5;
  --violet:  #9b5de5;
  --pink:    #f15bb5;
  --orange:  #ff6b35;
  --grad:    linear-gradient(135deg, #ff6b35, #f15bb5, #9b5de5);
  --grad2:   linear-gradient(135deg, #6c3fc5, #f15bb5);
  --text:    #f0ecff;
  --muted:   #8b82b0;
  --border:  rgba(255,255,255,0.07);
  --header-h: 64px;
  --accent:  #9b5de5;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 48px;
  background: rgba(14,11,31,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  color: var(--text);
  text-decoration: none;
}
.nav-logo svg { flex-shrink: 0; width: 28px; height: 28px; }
.nav-logo span { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo strong { font-weight: 800; }
.nav-logo-sub { font-size: 10px; font-weight: 400; color: var(--muted); letter-spacing: .3px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); background: rgba(155,93,229,0.1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
}
.lang-switcher a {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  padding: 4px 7px;
  border-radius: 4px;
  transition: color .2s, background .2s;
}
.lang-switcher a:hover,
.lang-switcher a.active { color: var(--text); background: rgba(155,93,229,0.15); }

.btn,
.btn-primary,
.btn-outline,
.btn-secondary,
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
  transition: opacity .2s, transform .15s, background .2s, border-color .2s;
  font-family: inherit;
}
.btn-primary {
  background: #6c3fc5;
  color: #fff;
  border-color: #6c3fc5;
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--violet);
}
.btn-outline:hover { background: rgba(155,93,229,0.12); transform: translateY(-1px); }
.btn-secondary {
  background: rgba(255,255,255,0.07);
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }
.btn-submit {
  background: #6c3fc5;
  color: #fff;
  border-color: #6c3fc5;
  width: 100%;
  font-size: 15px;
  padding: 14px 24px;
  min-height: 52px;
}
.btn-submit:hover { opacity: .88; transform: translateY(-1px); }

#burgerBtn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
#burgerBtn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

#mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: var(--bg2);
  z-index: 190;
  flex-direction: column;
  padding: 24px 24px 40px;
  gap: 4px;
  overflow-y: auto;
}
#mobile-overlay.open { display: flex; }
#mobile-overlay a {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  padding: 12px 16px;
  border-radius: 8px;
  border-bottom: 1px solid var(--border);
  transition: color .2s, background .2s;
}
#mobile-overlay a:hover { color: var(--text); background: rgba(155,93,229,0.1); }
.mob-cta { margin-top: 16px; }
.mob-cta .btn-primary { width: 100%; justify-content: center; font-size: 15px; }
.mob-lang {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.mob-lang a {
  font-size: 12px !important;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 12px !important;
  border-radius: 6px;
  border: 1px solid var(--border) !important;
  border-bottom: none !important;
}
.mob-lang a.active { color: var(--text); border-color: var(--violet) !important; }

main { padding-top: var(--header-h); }

.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px max(48px, calc(50% - 580px));
  position: relative;
  overflow: hidden;
  gap: 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 70% 40%, rgba(108,63,197,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(241,91,181,0.12) 0%, transparent 55%),
    var(--bg);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  flex: 0 1 540px;
  min-width: 0;
  z-index: 1;
  position: relative;
}
.hero-visual {
  flex: 0 1 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.hero-visual img {
  border-radius: 16px;
  border: 1px solid var(--border);
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  box-shadow: 0 32px 80px rgba(108,63,197,0.25);
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 12px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.trust-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px max(48px, calc(50% - 580px));
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
}
.trust-strip::-webkit-scrollbar { display: none; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: none; }
.trust-icon { color: var(--violet); flex-shrink: 0; }
.trust-text strong { display: block; font-size: 15px; font-weight: 700; }
.trust-text span { font-size: 12px; color: var(--muted); }

.section-wrap {
  padding: 80px max(48px, calc(50% - 580px));
}
.section-wrap.alt { background: var(--bg2); }
.section-wrap.dark { background: var(--bg3); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: rgba(155,93,229,0.4); transform: translateY(-4px); }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(108,63,197,0.15);
  border: 1px solid rgba(155,93,229,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--violet);
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.two-col {
  display: flex;
  align-items: center;
  gap: 64px;
}
.two-col-text { flex: 0 1 520px; min-width: 0; }
.two-col-visual { flex: 0 1 460px; display: flex; justify-content: center; }
.two-col-visual img {
  border-radius: 16px;
  border: 1px solid var(--border);
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(108,63,197,0.2);
}
.two-col-text h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -.8px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.two-col-text p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.two-col-text p:last-child { margin-bottom: 0; }
.two-col.reverse { flex-direction: row-reverse; }

.check-list {
  list-style: none;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.check-list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(155,93,229,0.15);
  border: 1.5px solid rgba(155,93,229,0.5);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='%239b5de5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.video-section-wrap {
  padding: 80px max(48px, calc(50% - 580px));
  background: var(--bg2);
}
.video-embed-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 32px 80px rgba(108,63,197,0.2);
}
.video-embed-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.location-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color .2s;
}
.location-card:hover { border-color: rgba(155,93,229,0.4); }
.location-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.location-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--violet);
  background: rgba(155,93,229,0.1);
  border: 1px solid rgba(155,93,229,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.cta-banner {
  background: var(--grad2);
  border-radius: 20px;
  padding: 48px 56px;
  text-align: center;
  margin: 0 max(48px, calc(50% - 580px));
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -.8px;
  margin-bottom: 12px;
}
.cta-banner p { color: rgba(255,255,255,.8); font-size: 15px; margin-bottom: 28px; }
.cta-banner .btn-primary {
  background: #fff;
  color: #6c3fc5;
  border-color: #fff;
  font-size: 14px;
}
.cta-banner .btn-primary:hover { opacity: .9; }
.cta-banner-wrap { padding: 80px 0; }

.contact-section {
  padding: 80px max(48px, calc(50% - 580px));
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -.8px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact-info p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.contact-link:hover { color: var(--violet); }
.contact-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.venue-box {
  margin-top: 20px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
}
.venue-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 8px;
}
.venue-box p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }

.form-wrap {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.form-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: border-color .2s;
  outline: none;
}
.form-row input:focus,
.form-row textarea:focus { border-color: var(--violet); }
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-honey { position: absolute; left: -9999px; top: -9999px; opacity: 0; pointer-events: none; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 12px; line-height: 1.5; }
.msg-ok {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 20px;
}
.msg-err {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 20px;
}

.page-hero {
  padding: 80px max(48px, calc(50% - 580px)) 60px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(to bottom, var(--bg2), var(--bg));
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(108,63,197,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.page-hero .section-label { margin-bottom: 8px; }
.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.page-hero h1 em {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 0;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.article-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.article-meta-item svg { width: 16px; height: 16px; }

.article-wrap {
  padding: 60px max(48px, calc(50% - 580px));
  max-width: 100%;
}
.article-wrap h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--text);
}
.article-wrap h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text);
}
.article-wrap p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 760px;
}
.article-wrap ul, .article-wrap ol {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 12px 0 20px 20px;
  max-width: 760px;
}
.article-wrap li { margin-bottom: 8px; }
.article-highlight {
  background: rgba(108,63,197,0.1);
  border: 1px solid rgba(155,93,229,0.25);
  border-left: 3px solid var(--violet);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 24px 0;
  max-width: 760px;
}
.article-highlight p { color: var(--text); margin: 0; }
.article-img {
  border-radius: 12px;
  overflow: hidden;
  margin: 32px 0;
  border: 1px solid var(--border);
  max-width: 760px;
}
.article-img img { width: 100%; height: auto; display: block; }
.article-cta-box {
  background: var(--bg3);
  border: 1px solid rgba(155,93,229,0.25);
  border-radius: 16px;
  padding: 36px 40px;
  margin: 48px 0;
  max-width: 760px;
}
.article-cta-box h3 {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 12px;
}
.article-cta-box p { color: var(--muted); font-size: 15px; margin-bottom: 24px; max-width: 100%; }
.article-btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.article-faq { max-width: 760px; margin-top: 48px; }
.article-faq h2 { margin-top: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  font-family: inherit;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-q svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--violet); transition: transform .3s; }
.faq-q[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 16px;
}
.faq-a.open,
.faq-item.open .faq-a { display: block; }
.faq-a p { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 0; max-width: 100%; }

.page-hero-hero { background: var(--bg2); }

#site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px max(48px, calc(50% - 580px)) 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.footer-bottom a { color: var(--violet); }
.footer-bottom a:hover { color: var(--text); }
.footer-legal-note { margin-top: 8px; }
.footer-brand .nav-logo { margin-bottom: 4px; }
.footer-brand .nav-logo svg { width: 24px; height: 24px; }

.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  transition: color .2s;
}
.social-link:hover { color: var(--violet); }
.social-link svg { width: 16px; height: 16px; flex-shrink: 0; }

.inline-link { color: var(--violet); }
.inline-link:hover { text-decoration: underline; }
.text-violet { color: var(--violet); }
.text-violet:hover { text-decoration: underline; }

.location-site-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--violet);
  margin-top: 12px;
  transition: opacity .2s;
}
.location-site-link:hover { opacity: 0.75; }

.contact-section-compact { padding-top: 48px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  #site-header { padding: 0 20px; gap: 16px; }
  .nav-links { display: none; }
  .nav-right { display: none; }
  #burgerBtn { display: flex; }
  .hero { flex-direction: column; padding: 60px 24px 48px; gap: 40px; align-items: flex-start; }
  .hero-content { flex: none; max-width: 100%; }
  .hero-visual { flex: none; width: 100%; }
  .hero-visual img { max-height: 280px; }
  .trust-strip { padding: 16px 24px; gap: 0; }
  .trust-item { padding: 8px 16px; }
  .section-wrap, .contact-section, .video-section-wrap, .article-wrap { padding-left: 24px; padding-right: 24px; }
  .two-col, .two-col.reverse { flex-direction: column; gap: 32px; }
  .two-col-text, .two-col-visual { flex: none; width: 100%; max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-banner { margin: 0 24px; padding: 36px 28px; }
  .page-hero { padding: 60px 24px 48px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .article-btn-row { flex-direction: column; }
  .hero-title { letter-spacing: -1px; }
  .locations-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 28px 20px; }
  .form-wrap { padding: 24px 20px; }
  .article-cta-box { padding: 24px 20px; }
}
