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

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  --bg:        #f4f7ff;
  --bg2:       #eaf0fb;
  --surface:   #ffffff;
  --surface2:  #f0f5ff;
  --border:    #d0dcf5;
  --border2:   #b8ccf0;

  --blue:      #2563eb;
  --blue-lt:   #dbeafe;
  --blue-dk:   #1d4ed8;
  --green:     #16a34a;
  --green-lt:  #dcfce7;
  --orange:    #ea580c;
  --orange-lt: #ffedd5;
  --gris:    #666666;
  --text:      #0f1b3d;
  --text2:     #3d4f78;
  --muted:     #7a8cb0;

  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 4px 24px rgba(37,99,235,.10), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 48px rgba(37,99,235,.14), 0 2px 8px rgba(0,0,0,.06);
}

/* ── Base ────────────────────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--text);
  font-family:'DM Sans',sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* decorative background blobs */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
  opacity: .18;
}
body::before { 
  width: 1000px; height: 700px;
  background: radial-gradient(circle, #60a5fa, #2563eb);
  top: -200px; right: -200px;
  animation: drift 14s ease-in-out infinite alternate;
}
body::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #4ade80, #16a34a);
  bottom: -150px; left: -150px;
  animation: drift 18s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px,20px) scale(1.06); }
}

/* ── Layout ──────────────────────────────────────────────── */
.wrapper {
  position: relative;
  z-index: 1;
  max-width: 1024px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

/* ── Header ──────────────────────────────────────────────── */
header { text-align: center; margin-bottom: 48px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-lt);
  border: 1px solid #bfdbfe;
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(.7); }
}

h1 {
  font-family:'Bebas Neue',sans-serif;
  font-size: clamp(42px, 8vw, 56px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: 0em;
  color: var(--text);
}
h1 .accent-blue   { color: var(--blue); }
h1 .accent-orange { color: var(--orange); }
h1 .accent-gris { color: var(--gris); }

.subtitle {
  margin-top: 16px;
  color: var(--text2);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

/* ── Card ────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  animation: fadeUp .55s cubic-bezier(.22,1,.36,1) both;
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── Field ───────────────────────────────────────────────── */
.field { margin-bottom: 22px; }

label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 9px;
}

.input-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.url-input {
  flex: 1;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 18px;
  color: var(--text);
 font-family:'DM Sans',sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.url-input::placeholder { color: var(--muted); }
.url-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
  background: #fff;
}
.url-input.error {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(234,88,12,.1);
}

.paste-btn {
  background: var(--blue-lt);
  border: 1.5px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
 font-family:'DM Sans',sans-serif;
  cursor: pointer;
  white-space: nowrap;
  display: flex; align-items: center; gap: 7px;
  transition: all .2s;
}
.paste-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.paste-btn svg { width:14px; height:14px; }

/* ── Preview ─────────────────────────────────────────────── */
.preview-box {
  display: none;
  margin-bottom: 20px;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  gap: 14px;
  align-items: center;
  animation: fadeUp .3s ease;
}
.preview-box.visible { display: flex; }
.preview-thumb {
  width: 100px; height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: var(--border);
}
.preview-info { flex: 1; min-width: 0; }
.preview-title {
  font-size: 14px; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  color: var(--text); margin-bottom: 4px;
}
.preview-meta { font-size: 12px; color: var(--muted); }
.preview-loader {
  font-size: 13px; color: var(--muted);
  padding: 4px 0;
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ── Format buttons ──────────────────────────────────────── */
.formats { display: flex; gap: 8px; flex-wrap: wrap; }

.format-btn {
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  color: var(--text2);
  font-size: 13px;
  font-weight: 600;
font-family:'DM Sans',sans-serif;
  cursor: pointer;
  transition: all .18s;
}
.format-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-lt);
}
.format-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 2px 10px rgba(37,99,235,.25);
}
.format-btn[data-fmt="audio"].active {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 2px 10px rgba(22,163,74,.25);
}

/* ── CTA button ──────────────────────────────────────────── */
.cta-btn {
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dk) 100%);
  color: #fff;
  font-family:'DM Sans',sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .04em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform .15s, box-shadow .2s, filter .2s;
  box-shadow: 0 4px 20px rgba(37,99,235,.3);
  position: relative;
  overflow: hidden;
}
.cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .2s;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,99,235,.4); }
.cta-btn:hover::after { opacity: 1; }
.cta-btn:active { transform: translateY(0); }
.cta-btn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.cta-btn svg { width: 20px; height: 20px; }

/* ── Progress ────────────────────────────────────────────── */
.progress-wrap { margin-top: 20px; display: none; }
.progress-wrap.visible { display: block; animation: fadeUp .3s ease; }
.progress-label {
  font-size: 13px; color: var(--text2);
  margin-bottom: 8px;
  display: flex; justify-content: space-between;
}
.progress-label span:last-child { font-weight: 700; color: var(--blue); }
.progress-bar {
  height: 6px;
  background: var(--bg2);
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 100px;
  width: 0%;
  transition: width .4s ease;
}

/* ── Messages ────────────────────────────────────────────── */
.msg {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  display: none;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  font-weight: 500;
}
.msg.visible { display: flex; animation: fadeUp .3s ease; }
.msg.success {
  background: var(--green-lt);
  border: 1.5px solid #86efac;
  color: var(--green);
}
.msg.error {
  background: var(--orange-lt);
  border: 1.5px solid #fdba74;
  color: var(--orange);
}
.msg svg { width:16px; height:16px; flex-shrink:0; margin-top:2px; }

/* ── Divider ─────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

/* ── Sites ───────────────────────────────────────────────── */
.sites-label { font-size: 13px; color: var(--muted); margin-bottom: 10px; font-weight: 500; }
.sites { display: flex; flex-wrap: wrap; gap: 8px; }
.site-tag {
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  transition: all .15s;
}
.site-tag:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-lt); }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
footer a { color: var(--blue); text-decoration: none; font-weight: 600; }
footer a:hover { text-decoration: underline; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 480px) {
  .card { padding: 24px 18px; }
  .input-row { flex-direction: column; }
  .paste-btn { padding: 12px; justify-content: center; }
  h1 { font-size: 48px; }
}

/* ── Content Section ─────────────────────────────────────── */
.content-section {
  margin-top: 56px;
}

.content-intro {
  margin-bottom: 36px;
}
.content-intro h2 {
  font-family:'DM Sans',sans-serif;
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.25;
}
.content-intro p {
  color: var(--text2);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 12px;
}

/* Content cards grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 600px) {
  .content-grid { grid-template-columns: 1fr; }
}

.content-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.content-card--blue  { border-top: 3px solid var(--blue); }
.content-card--green { border-top: 3px solid var(--green); }
.content-card--orange{ border-top: 3px solid var(--orange); }

.content-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.content-card h3 {
  font-family:'DM Sans',sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.content-card p {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.content-note {
  background: var(--bg2);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 13px !important;
  color: var(--muted) !important;
  border: 1px solid var(--border);
}

.steps-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 14px;
  counter-reset: steps;
}
.steps-list li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.5;
  margin-bottom: 8px;
}
.steps-list li::before {
  content: counter(steps);
  min-width: 22px; height: 22px;
  background: var(--blue-lt);
  color: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}

.compat-list, .why-list {
  padding-left: 0;
  list-style: none;
  margin-top: 10px;
}
.compat-list li, .why-list li {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.compat-list li:last-child, .why-list li:last-child { border-bottom: none; }
.compat-list li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 13px; }
.why-list li::before   { content: '✓'; color: var(--blue);  font-weight: 700; font-size: 13px; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { margin-top: 8px; }

.faq-title {
  font-family:'DM Sans',sans-serif;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}

.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  font-family:'DM Sans',sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.faq-question:hover { background: var(--surface2); }
.faq-item.open .faq-question { color: var(--blue); background: var(--blue-lt); }

.faq-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform .3s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.75;
}

/* ── Navigation ──────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.navbar-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.navbar-logo {
  font-family:'Bebas Neue',sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-decoration: none;
  color: var(--text);
  letter-spacing: -.01em;
}
.navbar-logo .accent-blue   { color: var(--blue); }
.navbar-logo .accent-orange { color: var(--orange); }
.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  text-decoration: none;
  transition: all .18s;
}
.nav-link:hover { background: var(--surface2); color: var(--blue); }
.nav-link.active {
  background: var(--blue-lt);
  color: var(--blue);
}

/* ── Page hero (contact & about) ─────────────────────────── */
.page-hero {
  text-align: center;
  padding: 0px 0 40px;
}
.page-hero h1 {
  font-family:'Bebas Neue',sans-serif;
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.page-hero h1 span { color: var(--blue); }
.page-hero p {
  color: var(--text2);
  font-size: 16px;
  line-height: 1.65;
  max-width: 500px;
  margin: 0 auto;
}

/* ── Contact form ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
  margin-bottom: 60px;
}
@media (max-width: 680px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family:'DM Sans',sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
  background: #fff;
}
.form-input.error,
.form-textarea.error { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(234,88,12,.09); }
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%237a8cb0' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }

.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dk));
  color: #fff;
  font-family:'DM Sans',sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .04em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(37,99,235,.28);
  margin-top: 8px;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,.38); }
.submit-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.submit-btn svg { width:18px; height:18px; }

/* Contact info sidebar */
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.info-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.info-card-icon {
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
}
.info-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.info-card p { font-size: 13px; color: var(--text2); line-height: 1.6; }
.info-card a { color: var(--blue); text-decoration: none; font-weight: 600; }
.info-card a:hover { text-decoration: underline; }

/* ── About page ──────────────────────────────────────────── */
.about-intro {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-lg);
}
.about-intro p {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-intro p:last-child { margin-bottom: 0; }
.about-intro strong { color: var(--text); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
@media (max-width: 600px) { .about-grid { grid-template-columns: 1fr; } }

.about-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.about-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.about-card-emoji { font-size: 32px; margin-bottom: 12px; display: block; }
.about-card h3 {
  font-family:'DM Sans',sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.about-card p { font-size: 13px; color: var(--text2); line-height: 1.65; }

.about-card--blue   { border-top: 3px solid var(--blue); }
.about-card--green  { border-top: 3px solid var(--green); }
.about-card--orange { border-top: 3px solid var(--orange); }

.about-values {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.about-values h2 {
  font-family:'DM Sans',sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--text); margin-bottom: 20px;
}
.values-list { display: flex; flex-direction: column; gap: 14px; }
.value-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.value-item:last-child { border-bottom: none; padding-bottom: 0; }
.value-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.value-icon--blue   { background: var(--blue-lt); }
.value-icon--green  { background: var(--green-lt); }
.value-icon--orange { background: var(--orange-lt); }
.value-item h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.value-item p  { font-size: 13px; color: var(--text2); line-height: 1.6; }

.about-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dk) 100%);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: 0 8px 32px rgba(37,99,235,.25);
}
.about-cta h2 { font-family:'DM Sans',sans-serif; font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.about-cta p  { color: rgba(255,255,255,.8); font-size: 15px; margin-bottom: 20px; }
.about-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  color: #FFF;
  font-family:'DM Sans',sans-serif; font-size: 16px; font-weight: 700;
  padding: 12px 28px; border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
background: var(--orange);
}
.about-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ── Burger menu (mobile) ────────────────────────────────── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.burger:hover { background: var(--surface2); }
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 600px) {
  .burger { display: flex; }

  .navbar-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 12px 16px 16px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    z-index: 99;
  }
  .navbar-links.open { display: flex; }

  .nav-link {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 15px;
  }

  .navbar {
    position: sticky;
    top: 0;
  }
}
