/* ═══════════════════════════════════════════════════
   TELFI — BOLD LANDING  |  style.css
   ═══════════════════════════════════════════════════ */

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

:root {
  --bg:         #080808;
  --bg2:        #0A0A0A;
  --bg-card:    #111111;
  --cyan:       #00E5FF;
  --red:        #FF2D55;
  --white:      #FFFFFF;
  --muted:      #A1A1AA;
  --dim:        #555555;
  --border-dk:  #1F1F1F;
  --border-md:  #222222;
  --border-lt:  #333333;
  --max:        1440px;
  --pad-x:      60px;
  --pad-x-m:    20px;
  --f-inter:    'Inter', sans-serif;
  --f-mono:     'Geist Mono', monospace;
  --f-anton:    'Anton', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-inter);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }

/* ── Helpers ── */
.text-white { color: var(--white); }
.text-cyan  { color: var(--cyan);  }

.section-label {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-title {
  font-family: var(--f-inter);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 500;
  line-height: .95;
  color: var(--white);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--pad-x);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 16px 40px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-cyan {
  background: var(--cyan);
  color: var(--bg);
}
.btn-cyan:hover { transform: translateY(-2px); opacity: .9; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn-outline:hover { transform: translateY(-2px); border-color: var(--cyan); color: var(--cyan); }

/* ── Scroll Reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }


/* ═══════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  background: var(--bg);
  transition: backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(8, 8, 8, 0.85);
  border-color: var(--border-dk);
}

.nav-logo {
  font-family: var(--f-inter);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--bg) !important;
  background: var(--cyan);
  padding: 12px 28px;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: .85; transform: translateY(-1px) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* Burger menu overlay */
.burger-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.burger-overlay.open {
  transform: translateY(0);
  pointer-events: all;
}

.burger-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x-m);
  height: 56px;
  border-bottom: 1px solid var(--border-dk);
  flex-shrink: 0;
}
.burger-logo {
  font-family: var(--f-inter);
  font-size: 18px;
  font-weight: 700;
  color: var(--cyan);
}
.burger-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.burger-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.burger-sep {
  height: 1px;
  background: #1A1A1A;
}
.burger-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  font-family: var(--f-inter);
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  transition: color 0.2s;
}
.burger-link:hover { color: var(--cyan); }
.burger-arrow { color: var(--cyan); font-size: 20px; }

.burger-footer {
  padding: var(--pad-x-m);
}
.burger-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  background: var(--cyan);
  color: var(--bg);
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  width: 100%;
  transition: opacity 0.2s;
}
.burger-cta-btn:hover { opacity: .85; }


/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
#hero {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/grid-hero.webp') center / cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--pad-x) 80px;
  position: relative;
  z-index: 1;
}

.hero-inner > .section-label { margin-top: 0; }

.hero-h1 {
  font-family: var(--f-inter);
  font-size: clamp(56px, 7.6vw, 110px);
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-line { display: block; }

.hero-line-row {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-sub {
  font-size: clamp(15px, 1.25vw, 18px);
  color: var(--muted);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-divider {
  height: 2px;
  background: var(--cyan);
  margin-bottom: 32px;
}

.hero-tagline {
  font-family: var(--f-anton);
  font-size: clamp(28px, 3.3vw, 48px);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}


/* ═══════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════ */
#services {
  background: var(--bg2);
}

.svc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.svc-head .section-title { margin-bottom: 0; }

.svc-head .btn-cyan {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0 28px;
  height: 56px;
  flex-shrink: 0;
}

.svc-btn-mobile { display: none; }

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
  tabindex: -1;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dk);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.svc-card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-4px);
}

.card-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--cyan);
}

.card-title {
  font-family: var(--f-inter);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  color: var(--white);
}

.card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════ */
#process {
  background:
    url('https://images.unsplash.com/photo-1633259584604-afdc243122ea?q=80&w=1470&auto=format&fit=crop') center / cover no-repeat;
  position: relative;
}

#process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.72);
  pointer-events: none;
}

#process .section-inner {
  position: relative;
  z-index: 1;
}

.proc-title { margin-bottom: 20px; }

.proc-sub {
  font-size: clamp(14px, 1.2vw, 17px);
  color: var(--white);
  opacity: 0.8;
  line-height: 1.5;
  max-width: 620px;
  margin-bottom: 56px;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.step {
  background: #111111FF;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background 0.25s;
}
.step:hover { background: #181818; }

.step--glass {
  background: rgba(0, 60, 62, 0.5);
  border-top: 2px solid var(--cyan);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.step--glass:hover { background: rgba(0, 80, 82, 0.6); }

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-num {
  font-family: var(--f-anton);
  font-size: 56px;
  font-weight: 400;
  color: var(--white);
  opacity: 0.08;
  line-height: 1;
}
.step-num--cyan { color: var(--cyan); opacity: 0.3; }

.step-bar {
  height: 2px;
  width: 32px;
  flex-shrink: 0;
}
.step-bar--cyan { background: var(--cyan); }
.step-bar--red  { background: var(--red); }

.step-title {
  font-family: var(--f-anton);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}
.step-title--cyan { color: var(--cyan); }

.step-desc {
  font-size: 13px;
  color: var(--white);
  opacity: 0.6;
  line-height: 1.6;
}
.step--glass .step-desc { opacity: 0.8; }


/* ═══════════════════════════════════════════════════
   PORTFOLIO
   ═══════════════════════════════════════════════════ */
#portfolio { background: var(--bg); }

.port-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.port-title { max-width: 700px; }

.port-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 280px;
}

.port-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.port-card {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease;
  color: inherit;
}
.port-card:hover { transform: translateY(-4px); }

.port-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.port-card:hover .port-img { transform: scale(1.04); }

.port-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 20px;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.port-card-title {
  font-family: var(--f-inter);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.port-card-type {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}


/* ═══════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════ */
#pricing { background: var(--bg2); }

.pricing-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-title {
  text-align: center;
  margin-bottom: 20px;
}

.pricing-sub {
  font-size: clamp(14px, 1.2vw, 17px);
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
  max-width: 620px;
  margin-bottom: 48px;
}

.price-row {
  display: flex;
  gap: 2px;
  width: 100%;
  align-items: stretch;
}

.price-card {
  flex: 1;
  background: var(--bg-card);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.3s;
}
.price-card:hover { transform: translateY(-4px); }

.price-card--featured {
  background: var(--bg);
  outline: 2px solid var(--cyan);
  outline-offset: -2px;
}

.price-popular {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan);
  color: var(--bg);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  padding: 6px 14px;
  align-self: flex-start;
}

.price-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 3px;
}

.price-amount {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.price-num {
  font-family: var(--f-anton);
  font-size: clamp(36px, 3.6vw, 52px);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.price-num--cyan { color: var(--cyan); }

.price-cur {
  font-size: 20px;
  color: var(--muted);
  line-height: 2;
}

.price-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.price-sep {
  height: 1px;
  background: #222222;
}
.price-sep--dark { background: #1E1E1E; }

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.price-features li {
  font-family: var(--f-inter);
  font-size: 13px;
  color: var(--white);
  line-height: 1.8;
}

.price-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: auto;
  border: none;
  text-align: center;
}
.price-btn:hover { transform: translateY(-2px); opacity: .88; }

.price-btn--dark {
  background: #1E1E1E;
  color: var(--white);
  border: 1px solid var(--border-lt);
}
.price-btn--cyan {
  background: var(--cyan);
  color: var(--bg);
}


/* ═══════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════ */
#faq { background: var(--bg); }

.faq-title { margin-bottom: 48px; }

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-dk);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 28px 32px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--f-inter);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--cyan); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--cyan);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.faq-item.open .faq-a { max-height: 200px; }

.faq-a p {
  padding: 0 32px 28px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════
   CONTACT / CTA
   ═══════════════════════════════════════════════════ */
#contact {
  background: var(--bg);
  position: relative;
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/grid-cta.webp') center / cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.contact-top-line {
  height: 2px;
  background: var(--cyan);
  position: relative;
  z-index: 1;
}

.contact-bottom-line {
  height: 1px;
  background: #1E1E1E;
  position: relative;
  z-index: 1;
}

.contact-inner {
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-inner .section-label { margin-bottom: 32px; }

.contact-title {
  font-family: var(--f-inter);
  font-size: clamp(36px, 6.6vw, 96px);
  font-weight: 500;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 28px;
}

.contact-sub {
  font-size: clamp(14px, 1.25vw, 18px);
  color: var(--muted);
  line-height: 1.5;
  max-width: 580px;
  margin-bottom: 56px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 560px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-input, .form-textarea {
  width: 100%;
  background: #111111;
  border: 1px solid var(--border-md);
  color: var(--white);
  font-family: var(--f-mono);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-input { height: 52px; padding: 0 20px; }
.form-textarea { padding: 16px 20px; resize: none; line-height: 1.5; height: 110px; }
.form-input::placeholder, .form-textarea::placeholder { color: #555555; }
.form-input:focus, .form-textarea:focus { border-color: rgba(0, 229, 255, 0.4); }

.form-submit {
  height: 56px;
  background: var(--cyan);
  color: var(--bg);
  border: none;
  font-family: var(--f-mono);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.form-submit:hover { opacity: .88; transform: translateY(-2px); }

.form-note {
  font-family: var(--f-mono);
  font-size: 11px;
  color: #444444;
  text-align: center;
}
.form-note-link {
  color: #666666;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.form-note-link:hover { color: var(--cyan); }

/* Success state */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 48px 0;
}
.form-success[hidden] { display: none; }

.success-icon {
  font-size: 48px;
  color: var(--cyan);
  line-height: 1;
}
.success-title {
  font-family: var(--f-inter);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}
.success-sub {
  font-size: 15px;
  color: var(--muted);
}


/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
footer {
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--f-anton);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  gap: 36px;
}
.footer-links a {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--border-lt);
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET 1024px
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --pad-x: 40px;
  }

  .hero-h1 { font-size: clamp(48px, 6.5vw, 80px); }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .price-row { flex-wrap: wrap; }
  .price-card { min-width: calc(50% - 1px); }
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE 768px
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --pad-x: var(--pad-x-m);
  }

  /* Nav */
  #nav { padding: 0 var(--pad-x-m); height: 56px; }
  .nav-links { display: none; }
  .burger { display: flex; }

  /* Hero */
  .hero-inner { padding: 60px var(--pad-x-m) 60px; }
  .hero-inner > .section-label { margin-top: 56px; }
  .hero-h1 { font-size: 44px; }
  .hero-line-row { gap: 10px; }
  .hero-tagline { font-size: 22px; }

  /* Sections */
  .section-inner { padding: 60px var(--pad-x-m); }

  /* Services */
  .svc-head { flex-direction: column; align-items: flex-start; }
  .svc-btn-desktop { display: none; }
  .svc-btn-mobile {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    height: 52px;
  }
  .svc-grid { grid-template-columns: 1fr; gap: 12px; }
  .svc-card { padding: 28px 20px; }
  .card-title { font-size: 28px; }

  /* Process */
  .steps-row { grid-template-columns: 1fr; }
  .proc-title { font-size: 34px; }

  /* Portfolio */
  .port-head { flex-direction: column; align-items: flex-start; }
  .port-grid { grid-template-columns: 1fr; gap: 10px; }
  .port-img { aspect-ratio: 1 / 1; }

  /* Pricing */
  .pricing-title { font-size: 32px; }
  .price-row { flex-direction: column; gap: 2px; }
  .price-card { min-width: unset; }

  /* FAQ */
  .faq-title { font-size: 40px; }
  .faq-q { padding: 20px; font-size: 15px; }
  .faq-a p { padding: 0 20px 20px; }

  /* Contact */
  .contact-title { font-size: 36px; }
  .form-row { flex-direction: column; }
  .contact-inner { padding-top: 60px; padding-bottom: 60px; }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px var(--pad-x-m);
  }

  /* Port head */
  .port-sub { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — SMALL 480px
   ═══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-h1 { font-size: 36px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; }
  .hero-tagline { font-size: 18px; }
  .section-title { font-size: 36px; }
  .contact-title { font-size: 28px; }
}
