:root {
  --purple:       #7c3aed;
  --purple-light: #a855f7;
  --purple-glow:  #9d4edd22;
  --purple-dim:   #4c1d95;
  --black:        #050508;
  --black-2:      #0d0d14;
  --black-3:      #12121c;
  --black-4:      #1a1a28;
  --white:        #f0eeff;
  --muted:        #8880aa;
  --border:       #1e1e30;
  --success:      #22c55e;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  min-height: 100vh;
}

/* noise overlay */
body::before {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.45;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(5,5,8,.88); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); transition: background .3s;
}
.nav-brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.nav-logo-img { width: 32px; height: 32px; border-radius: 8px; object-fit: contain; display: block; flex-shrink: 0; }
.nav-logo-img-placeholder {
  width: 32px; height: 32px; border-radius: 8px; background: var(--purple);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: .9rem; color: var(--white);
}
.nav-logo-text { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.45rem; color: var(--white); letter-spacing: -.04em; }
.nav-logo-text span { color: var(--purple-light); }
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .87rem; font-weight: 400; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--purple-light); }
.nav-right { display: flex; align-items: center; gap: .75rem; }
.nav-pill {
  color: var(--purple-light); text-decoration: none; font-size: .84rem;
  border: 1px solid var(--purple-dim); padding: .48rem 1rem; border-radius: 6px; transition: all .2s;
}
.nav-pill:hover { background: var(--purple-glow); border-color: var(--purple); }
.nav-cta {
  background: var(--purple); color: var(--white); padding: .6rem 1.4rem;
  border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: .88rem;
  font-weight: 500; text-decoration: none; transition: background .2s, box-shadow .2s;
}
.nav-cta:hover { background: var(--purple-light); box-shadow: 0 0 20px var(--purple-glow); }
.nav-back {
  display: flex; align-items: center; gap: 0.5rem; color: var(--muted);
  text-decoration: none; font-size: 0.88rem; border: 1px solid var(--border);
  padding: 0.5rem 1.1rem; border-radius: 6px; transition: all 0.2s;
}
.nav-back:hover { color: var(--white); border-color: var(--purple-dim); }

/* ── PAGE HERO ── */
#page-hero { padding: 9rem 5% 4rem; position: relative; overflow: hidden; }
.grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 55px 55px; opacity: 0.25; pointer-events: none;
}
.glow-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.glow-orb-1 { top: -80px; right: 10%; width: 520px; height: 520px; background: radial-gradient(circle, #7c3aed38, transparent 65%); }
.glow-orb-2 { bottom: -60px; left: 5%; width: 360px; height: 360px; background: radial-gradient(circle, #a855f718, transparent 65%); }

.hero-inner {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 2rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--black-4); border: 1px solid var(--border);
  border-radius: 999px; padding: 0.35rem 0.9rem; font-size: 0.77rem;
  color: var(--purple-light); letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 1.6rem; animation: fadeUp 0.7s ease both;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--purple-light); animation: pulse 1.6s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

h1.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 7vw, 6rem); font-weight: 800;
  letter-spacing: -0.045em; line-height: 0.95;
  animation: fadeUp 0.7s 0.1s ease both;
}
h1.hero-title .accent { color: var(--purple-light); }
h1.hero-title .outline { -webkit-text-stroke: 2px var(--purple-light); color: transparent; }

.hero-right { max-width: 380px; animation: fadeUp 0.7s 0.2s ease both; }
.hero-right p { color: var(--muted); line-height: 1.75; font-size: 0.95rem; }
.response-badge {
  display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 1.5rem;
  background: var(--black-3); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.7rem 1rem; font-size: 0.82rem;
}
.response-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: pulse 2s ease infinite; }
.response-text { color: var(--muted); }
.response-text strong { color: var(--white); }
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }

/* ── DIVIDER ── */
.page-divider { height: 1px; background: var(--border); margin: 0 5%; position: relative; }
.page-divider::after {
  content: ''; position: absolute; left: 0; top: 0;
  width: 200px; height: 1px;
  background: linear-gradient(90deg, var(--purple), transparent);
}

/* ── MAIN CONTACT SECTION ── */
#contact-main {
  padding: 5rem 5% 6rem;
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 5rem;
  align-items: start;
}

/* LEFT COLUMN */
.section-label {
  font-size: 0.73rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--purple-light); margin-bottom: 0.6rem; font-weight: 500;
}
.col-title {
  font-family: 'Syne', sans-serif; font-size: 1.7rem; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1.2rem;
}
.col-title .accent { color: var(--purple-light); }
.col-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.78; }

.contact-cards { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: var(--black-3); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.4rem 1.6rem;
  display: flex; align-items: flex-start; gap: 1.1rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
}
.contact-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at left, var(--purple-glow), transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.contact-card:hover { border-color: var(--purple); transform: translateX(4px); box-shadow: 0 4px 24px #7c3aed14; }
.contact-card:hover::before { opacity: 1; }
.card-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--black-4); border: 1px solid var(--border);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1rem;
  position: relative; z-index: 1; transition: border-color 0.25s;
}
.contact-card:hover .card-icon { border-color: var(--purple); }
.card-text { position: relative; z-index: 1; min-width: 0; flex: 1; }
.card-label { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.3rem; }
.card-val { font-size: 0.9rem; color: var(--white); font-weight: 400; word-break: break-word; }
.card-arrow {
  margin-left: auto; color: var(--muted); font-size: 1rem;
  position: relative; z-index: 1; align-self: center; flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}
.contact-card:hover .card-arrow { transform: translateX(4px); color: var(--purple-light); }

.quick-topics { margin-top: 2.5rem; }
.qt-title { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.9rem; }
.qt-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.qt-chip {
  background: var(--black-4); border: 1px solid var(--border);
  border-radius: 999px; padding: 0.35rem 0.85rem;
  font-size: 0.79rem; color: var(--muted); cursor: pointer; transition: all 0.2s;
}
.qt-chip:hover, .qt-chip.active {
  background: var(--purple-glow); border-color: var(--purple); color: var(--purple-light);
}

.social-row { margin-top: 2.5rem; }
.social-row .qt-title { margin-bottom: 0.9rem; }
.socials { display: flex; gap: 0.65rem; flex-wrap: wrap; }
.social-btn {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--black-3); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.55rem 1rem;
  color: var(--muted); text-decoration: none; font-size: 0.82rem; transition: all 0.2s;
}
.social-btn:hover { border-color: var(--purple); color: var(--purple-light); }

/* ── CONTACT CARD & TEAM CONTACT SOCIAL ICONS ── */

/* Container for the social icons */
.tc-socials-row {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  align-items: center;
}

/* Individual social link button */
.tc-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--black-4);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* SVG Icon sizing */
.tc-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor; /* Inherits color from the anchor tag */
  transition: transform 0.2s ease;
}

/* Hover States */
.tc-social-link:hover {
  color: var(--purple-light);
  border-color: var(--purple);
  background: var(--purple-glow);
  box-shadow: 0 0 12px var(--purple-glow);
  transform: translateY(-2px);
}

.tc-social-link:hover svg {
  transform: scale(1.1);
}

/* Optional: Active/Click state */
.tc-social-link:active {
  transform: translateY(0) scale(0.95);
}

/* RIGHT COLUMN — FORM */
.form-card {
  background: var(--black-2); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.8rem;
  position: relative; overflow: hidden;
}
.form-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle at top right, #7c3aed18, transparent 65%);
  pointer-events: none;
}
.form-card-header { margin-bottom: 2rem; position: relative; z-index: 1; }
.form-card-title {
  font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 0.4rem;
}
.form-card-sub { color: var(--muted); font-size: 0.85rem; }

.service-tabs { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 2rem; position: relative; z-index: 1; }
.svc-tab {
  background: var(--black-4); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.45rem 0.9rem;
  font-size: 0.78rem; color: var(--muted); cursor: pointer;
  transition: all 0.2s; user-select: none;
}
.svc-tab:hover { border-color: var(--purple-dim); color: var(--white); }
.svc-tab.selected { background: var(--purple); border-color: var(--purple); color: var(--white); }
.svc-label { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.6rem; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-group {
  display: flex; flex-direction: column; gap: 0.45rem;
  margin-bottom: 1.1rem; position: relative; z-index: 1;
}
.field-group label { font-size: 0.77rem; color: var(--muted); letter-spacing: 0.04em; }
.field-group input,
.field-group textarea,
.field-group select {
  background: var(--black-4); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.78rem 1rem;
  color: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; outline: none; resize: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  /* Prevent iOS zoom on focus — inputs must be at least 16px */
  font-size: max(0.9rem, 16px);
  width: 100%;
}
.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px #7c3aed18;
}
.field-group input::placeholder,
.field-group textarea::placeholder { color: #55526a; }
.field-group textarea { height: 120px; }
.field-group select option { background: var(--black-3); }

.budget-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.budget-pill {
  background: var(--black-4); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.45rem 0.85rem;
  font-size: 0.78rem; color: var(--muted); cursor: pointer;
  transition: all 0.2s; user-select: none;
}
.budget-pill:hover { border-color: var(--purple-dim); color: var(--white); }
.budget-pill.sel { background: var(--purple-dim); border-color: var(--purple); color: var(--white); }

.form-submit-row { display: flex; align-items: center; gap: 1rem; margin-top: 0.5rem; position: relative; z-index: 1; flex-wrap: wrap; }
.btn-submit {
  flex: 1; min-width: 140px; background: var(--purple); color: var(--white); border: none;
  padding: 1rem 2rem; border-radius: 10px; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 500; cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.btn-submit:hover { background: var(--purple-light); box-shadow: 0 0 28px #9d4edd44; transform: translateY(-1px); }
.btn-submit:active { transform: translateY(0); }
.btn-submit.sent { background: #166534; }
.submit-note { font-size: 0.74rem; color: var(--muted); line-height: 1.5; }

/* SUCCESS OVERLAY */
.success-overlay {
  position: absolute; inset: 0; background: var(--black-2);
  border-radius: 20px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  opacity: 0; pointer-events: none; transition: opacity 0.4s; z-index: 10;
  padding: 2rem; text-align: center;
}
.success-overlay.show { opacity: 1; pointer-events: all; }
.success-icon { font-size: 3rem; }
.success-title { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; }
.success-sub { color: var(--muted); font-size: 0.88rem; text-align: center; max-width: 300px; }

/* ── FAQ ── */
#faq { padding: 4rem 5%; background: var(--black-2); border-top: 1px solid var(--border); }
.faq-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.faq-left p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; margin-top: 0.75rem; }
.faq-grid { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.3rem 0; cursor: pointer; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700;
  color: var(--white); gap: 1rem;
}
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--black-4); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0; color: var(--muted); transition: all 0.2s;
}
.faq-item.open .faq-icon { background: var(--purple); border-color: var(--purple); color: var(--white); transform: rotate(45deg); }
.faq-a {
  color: var(--muted); font-size: 0.87rem; line-height: 1.75;
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s;
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 0.9rem; }

/* ── TEAM CONTACT ── */
#team-contact { padding: 5rem 5%; background: var(--black); border-top: 1px solid var(--border); }
.tc-header { margin-bottom: 2.5rem; }
.tc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.tc-card {
  background: var(--black-3); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.4rem 1.6rem;
  transition: border-color 0.2s, transform 0.2s;
}
.tc-card:hover { border-color: var(--purple-dim); transform: translateY(-3px); }
.tc-top { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.tc-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  border: 2px solid var(--purple-light); padding: 2px;
  overflow: hidden; background: var(--black-4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tc-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.tc-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.92rem; }
.tc-role { font-size: 0.72rem; color: var(--purple-light); margin-top: 0.15rem; }
.tc-links { display: flex; flex-direction: column; gap: 0.45rem; }
.tc-link {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--muted); text-decoration: none; transition: color 0.2s;
  word-break: break-all;
}
.tc-link:hover { color: var(--white); }
.tc-link span { font-size: 0.72rem; flex-shrink: 0; }

/* ── FOOTER ── */
footer { background: var(--black); border-top: 1px solid var(--border); padding: 2.5rem 5%; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.footer-logo-img { width: 26px; height: 26px; border-radius: 6px; object-fit: contain; }
.footer-logo-placeholder {
  width: 26px; height: 26px; border-radius: 6px; background: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: .72rem; color: var(--white);
}
.footer-logo-text { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; letter-spacing: -.04em; color: var(--white); }
.footer-logo-text span { color: var(--purple-light); }
.footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: .82rem; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { color: var(--muted); font-size: .78rem; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════ */

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  #contact-main {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 5%;
  }
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .tc-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { flex-direction: column; align-items: flex-start; }
  .hero-right { max-width: 100%; }
}

/* ── Mobile (≤640px) ── */
@media (max-width: 640px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-pill { display: none; }
  nav { padding: 0.9rem 4%; }

  /* Hero */
  #page-hero { padding: 7rem 4% 3rem; }
  .hero-inner { gap: 1.5rem; }
  h1.hero-title {
    font-size: clamp(1.75rem, 9vw, 2.6rem);
    line-height: 1.05;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
  }
  .hero-right { max-width: 100%; }
  .hero-right p { font-size: 0.88rem; }
  .response-badge { font-size: 0.76rem; padding: 0.6rem 0.85rem; flex-wrap: wrap; gap: 0.4rem; }

  /* Contact main */
  #contact-main { padding: 3rem 4% 4rem; gap: 2.5rem; }
  .col-title { font-size: 1.4rem; }

  /* Contact cards — prevent overflow */
  .contact-cards { gap: 0.75rem; }
  .contact-card { padding: 1.1rem 1.2rem; gap: 0.8rem; }
  .card-val { font-size: 0.82rem; word-break: break-all; }
  .card-arrow { display: none; }

  /* Quick topic chips */
  .qt-chips { gap: 0.4rem; }
  .qt-chip { font-size: 0.74rem; padding: 0.3rem 0.7rem; }

  /* Socials */
  .socials { gap: 0.5rem; }
  .social-btn { font-size: 0.78rem; padding: 0.5rem 0.8rem; }

  /* Form card */
  .form-card { padding: 1.5rem; border-radius: 14px; }
  .form-card-title { font-size: 1.15rem; }

  /* Service tabs */
  .service-tabs { gap: 0.35rem; }
  .svc-tab { font-size: 0.73rem; padding: 0.38rem 0.75rem; }

  /* Field row always stacks on mobile */
  .field-row { grid-template-columns: 1fr; gap: 0; }

  /* Budget pills */
  .budget-pills { gap: 0.4rem; }
  .budget-pill { font-size: 0.74rem; padding: 0.38rem 0.7rem; }

  /* Submit row */
  .form-submit-row { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .btn-submit { min-width: unset; width: 100%; }
  .submit-note { text-align: center; }

  /* FAQ */
  #faq { padding: 3rem 4%; }
  .faq-inner { gap: 1.5rem; }
  .faq-q { font-size: 0.88rem; }

  /* Team contacts — single column */
  #team-contact { padding: 3rem 4%; }
  .tc-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .tc-card { padding: 1.1rem 1.2rem; }
  .tc-name { font-size: 0.86rem; }
  .tc-link { font-size: 0.74rem; }

  /* Footer */
  footer { padding: 2rem 4%; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .footer-links { gap: 1.2rem; }
  .footer-links a { font-size: 0.8rem; }
}

/* ── Very small phones (≤380px) ── */
@media (max-width: 380px) {
  #page-hero { padding: 6.5rem 4% 2.5rem; }
  h1.hero-title {
    font-size: clamp(1.5rem, 10vw, 2rem);
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .form-card { padding: 1.2rem; }
  .contact-card { padding: 1rem; }
  #contact-main { padding: 2.5rem 4% 3rem; }
  .tc-grid { grid-template-columns: 1fr; }
  footer { padding: 2rem 4%; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .footer-links { display: none; }
  .footer-links a { font-size: 0.8rem; }
}