/* Bahçeşehir Beyaz Eşya — light, refined, mobile-first */
:root {
  --bg: #f4f6f8;
  --bg-soft: #eef2f5;
  --surface: #ffffff;
  --ink: #0b1f33;
  --ink-soft: #3d5166;
  --muted: #6b7c8f;
  --line: #d9e2ec;
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-soft: rgba(13, 148, 136, 0.12);
  --navy: #0b1f33;
  --amber: #c2410c;
  --ok: #15803d;
  --shadow: 0 18px 50px rgba(11, 31, 51, 0.08);
  --shadow-sm: 0 8px 24px rgba(11, 31, 51, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --font-h: "Sora", system-ui, sans-serif;
  --font-b: "Manrope", system-ui, sans-serif;
  --max: 1120px;
  --tr: 0.25s ease;
  --header-h: 64px;
  --mbar-h: 0px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100% }
body {
  font-family: var(--font-b);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(13, 148, 136, 0.10), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(11, 31, 51, 0.06), transparent 50%),
    var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: calc(var(--mbar-h) + var(--safe-b));
  -webkit-tap-highlight-color: rgba(13, 148, 136, 0.15);
}
body.menu-open { overflow: hidden; touch-action: none }
img { max-width: 100%; display: block }
a { color: inherit; text-decoration: none }
button, input, select, textarea { font: inherit }
::selection { background: var(--teal); color: #fff }

.container { width: min(100% - 1.25rem, var(--max)); margin-inline: auto }
@media (min-width: 640px) {
  .container { width: min(100% - 2rem, var(--max)) }
}
.skip { position: absolute; left: -9999px }
.skip:focus { left: 1rem; top: 1rem; z-index: 9999; background: #fff; padding: .75rem 1rem; border-radius: 8px }

/* NAV */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(244, 246, 248, 0.92);
  border-bottom: 1px solid transparent;
  transition: border-color var(--tr), background var(--tr);
  padding-top: var(--safe-t);
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,.94) }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: .65rem;
  position: relative;
}
.brand { display: flex; align-items: center; gap: .65rem; min-width: 0 }
.brand img { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; flex-shrink: 0 }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0 }
.brand-text strong { font-family: var(--font-h); font-size: .92rem; color: var(--navy) }
.brand-text span { font-size: .7rem; color: var(--teal-dark); font-weight: 700; letter-spacing: .02em }
.nav-tools { display: none; align-items: center; gap: .45rem; flex-shrink: 0 }
.nav-call {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--teal); color: #fff;
  box-shadow: 0 6px 16px rgba(13,148,136,.28);
}
.nav-links { display: flex; align-items: center; gap: 1.25rem; list-style: none }
.nav-links a {
  font-size: .9rem; font-weight: 650; color: var(--ink-soft);
  min-height: 44px; display: inline-flex; align-items: center;
}
.nav-links a:hover { color: var(--teal-dark) }
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  background: var(--navy); color: #fff !important;
  padding: .7rem 1rem; border-radius: 999px; font-size: .88rem !important;
}
.nav-cta:hover { background: var(--teal-dark) }
.nav-cta-wa { background: #25d366 !important; display: none }
.nav-cta-wa:hover { background: #1fb855 !important }
.menu-btn {
  display: none; background: #fff; border: 1px solid var(--line);
  width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  cursor: pointer;
}
.menu-btn span { width: 18px; height: 2px; background: var(--ink); display: block; transition: transform var(--tr), opacity var(--tr) }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0 }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

@media (max-width: 920px) {
  .nav-tools { display: flex }
  .menu-btn { display: flex }
  .nav-links {
    display: none; position: absolute; inset: calc(var(--header-h) + .35rem) 0 auto;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: .65rem; flex-direction: column; align-items: stretch;
    box-shadow: var(--shadow); gap: .2rem; z-index: 120;
    max-height: min(78vh, 520px); overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { display: flex }
  .nav-links li { width: 100% }
  .nav-links a {
    width: 100%; padding: .85rem 1rem; border-radius: 12px;
    font-size: 1rem; font-weight: 700;
  }
  .nav-links a:active { background: var(--bg-soft) }
  .nav-cta { justify-content: center; margin-top: .25rem; min-height: 48px }
  .nav-cta-wa { display: inline-flex !important; margin-top: .15rem }
}

/* HERO */
.hero {
  padding: 1.75rem 0 1.5rem;
  display: grid; gap: 1.35rem;
}
@media (min-width: 900px) {
  .hero { grid-template-columns: 1.15fr .85fr; align-items: center; padding: 4.5rem 0 4rem; gap: 2.5rem }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-h); font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--teal-dark);
  background: var(--teal-soft); padding: .4rem .75rem; border-radius: 999px; margin-bottom: .85rem;
  max-width: 100%;
}
.hero h1 {
  font-family: var(--font-h); font-weight: 700;
  font-size: clamp(1.55rem, 6.2vw, 3.2rem);
  line-height: 1.15; letter-spacing: -.03em; margin-bottom: .85rem; color: var(--navy);
}
.hero h1 em { font-style: normal; color: var(--teal-dark) }
.hero-lead {
  color: var(--ink-soft);
  font-size: .98rem;
  max-width: 36rem;
  margin-bottom: 1.15rem;
  line-height: 1.55;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 1rem;
}
.hero-note { color: var(--muted); font-size: .88rem }
.hero-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  padding: 1.2rem; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.hero-card::before {
  content: ""; position: absolute; inset: auto -20% -40% 20%; height: 70%;
  background: radial-gradient(circle, rgba(13,148,136,.18), transparent 70%); pointer-events: none;
}
.hero-card h2 { font-family: var(--font-h); font-size: 1.08rem; margin-bottom: .75rem }
.hero-card ul { list-style: none; display: grid; gap: .55rem; margin-bottom: 1.1rem }
.hero-card li { display: flex; gap: .65rem; align-items: flex-start; color: var(--ink-soft); font-size: .92rem }
.hero-card li::before { content: "✓"; color: var(--teal-dark); font-weight: 800; margin-top: .1rem }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  border: none; border-radius: 999px; padding: .9rem 1.2rem; font-weight: 700;
  font-family: var(--font-h); font-size: .95rem; cursor: pointer;
  transition: transform var(--tr), background var(--tr), box-shadow var(--tr);
  min-height: 48px; touch-action: manipulation;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-1px) }
}
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 10px 24px rgba(13,148,136,.25) }
.btn-primary:hover { background: var(--teal-dark) }
.btn-dark { background: var(--navy); color: #fff }
.btn-dark:hover { background: #16324d }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--line) }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-dark) }
.btn-wa { background: #25d366; color: #fff }
.btn-wa:hover { background: #1fb855 }

/* SECTIONS */
section { padding: 2.4rem 0 }
@media (min-width: 900px) { section { padding: 4rem 0 } }
.section-head { max-width: 40rem; margin-bottom: 1.35rem }
@media (min-width: 900px) { .section-head { margin-bottom: 2rem } }
.section-head.center { text-align: center; margin-inline: auto }
.kicker {
  font-family: var(--font-h); font-size: .74rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--teal-dark); margin-bottom: .5rem;
}
.section-head h2 {
  font-family: var(--font-h); font-size: clamp(1.35rem, 4.5vw, 2.2rem);
  letter-spacing: -.02em; line-height: 1.22; margin-bottom: .55rem;
}
.section-head p { color: var(--ink-soft); font-size: .95rem }

.grid-3 { display: grid; gap: .85rem; grid-template-columns: 1fr }
.grid-2 { display: grid; gap: .85rem; grid-template-columns: 1fr }
.grid-4 { display: grid; gap: .85rem; grid-template-columns: 1fr }
@media (min-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; gap: 1rem }
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 1rem }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr) }
  .grid-4 { grid-template-columns: repeat(4, 1fr) }
}

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.15rem; box-shadow: var(--shadow-sm);
  transition: border-color var(--tr), transform var(--tr);
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .card:hover { border-color: rgba(13,148,136,.45); transform: translateY(-2px) }
}
.card:active { border-color: rgba(13,148,136,.45) }
.card .icon {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--teal-soft); color: var(--teal-dark); font-size: .82rem;
  font-family: var(--font-h); font-weight: 750; margin-bottom: .75rem;
}
.card h3 { font-family: var(--font-h); font-size: 1.02rem; margin-bottom: .35rem }
.card p { color: var(--ink-soft); font-size: .9rem }
.card a.more {
  display: inline-flex; align-items: center; margin-top: .45rem;
  color: var(--teal-dark); font-weight: 750; font-size: .9rem; min-height: 44px;
}

.band {
  background: linear-gradient(135deg, #0b1f33 0%, #134e4a 100%);
  color: #e8f4f2; border-radius: 22px; padding: 1.35rem 1.2rem; box-shadow: var(--shadow);
}
@media (min-width: 700px) { .band { border-radius: 28px; padding: 2rem } }
.band h2 { color: #fff; font-family: var(--font-h); font-size: clamp(1.25rem, 4vw, 1.9rem); margin-bottom: .55rem }
.band p { color: rgba(255,255,255,.82); max-width: 40rem; margin-bottom: 1rem; font-size: .95rem }
.band .actions { display: flex; flex-wrap: wrap; gap: .65rem }
.band .actions .btn { flex: 1 1 140px }

.area-chip {
  display: flex; flex-direction: column; gap: .3rem; padding: 1rem 1.05rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
  min-height: 72px;
}
@media (hover: hover) and (pointer: fine) {
  .area-chip:hover { border-color: rgba(13,148,136,.45); transform: translateY(-2px); box-shadow: var(--shadow-sm) }
}
.area-chip:active { border-color: rgba(13,148,136,.45) }
.area-chip strong { font-family: var(--font-h); font-size: .95rem; color: var(--navy) }
.area-chip span { color: var(--muted); font-size: .82rem }
.area-chip.is-active {
  border-color: var(--teal); background: var(--teal-soft);
  box-shadow: inset 0 0 0 1px rgba(13,148,136,.25);
}
.region-switch { margin-bottom: .5rem }

.steps { counter-reset: step }
.step { position: relative; padding-left: 3rem; margin-bottom: 1.1rem }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 2.2rem; height: 2.2rem;
  border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-family: var(--font-h); font-weight: 700;
}
.step h3 { font-family: var(--font-h); font-size: 1.02rem; margin-bottom: .2rem }
.step p { color: var(--ink-soft); font-size: .92rem }

.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .95rem 1rem; margin-bottom: .6rem;
}
.faq summary {
  cursor: pointer; font-family: var(--font-h); font-weight: 700; list-style: none;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  min-height: 44px; font-size: .95rem; line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none }
.faq summary::after { content: "+"; color: var(--teal-dark); font-size: 1.25rem; flex-shrink: 0 }
.faq details[open] summary::after { content: "–" }
.faq details p { margin-top: .7rem; color: var(--ink-soft); font-size: .92rem }

.form-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  padding: 1.15rem; box-shadow: var(--shadow-sm);
}
@media (min-width: 700px) { .form-card { border-radius: 24px; padding: 1.5rem } }
.form-grid { display: grid; gap: .85rem; grid-template-columns: 1fr }
@media (min-width: 700px) { .form-grid { grid-template-columns: 1fr 1fr; gap: .9rem } }
label { display: grid; gap: .35rem; font-size: .88rem; font-weight: 700; color: var(--ink-soft) }
label.full { grid-column: 1 / -1 }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: .9rem 1rem;
  background: #fff; color: var(--ink);
  font-size: 16px;
  min-height: 48px;
  appearance: none; -webkit-appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7c8f' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem;
}
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(13,148,136,.35); border-color: var(--teal) }
textarea { min-height: 120px; resize: vertical }

.contact-grid { display: grid; gap: 1rem; grid-template-columns: 1fr }
@media (min-width: 800px) { .contact-grid { grid-template-columns: 1.1fr .9fr } }
.contact-item {
  display: flex; gap: .85rem; padding: 1rem; background: var(--bg-soft); border-radius: var(--radius-sm); margin-bottom: .65rem;
}
.contact-item strong { display: block; font-family: var(--font-h); margin-bottom: .15rem }
.contact-item span, .contact-item a { color: var(--ink-soft); font-size: .92rem }

.map-embed {
  border: 0; width: 100%; min-height: 220px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--bg-soft);
}
@media (min-width: 700px) { .map-embed { min-height: 280px } }

/* LEGAL */
.legal-hero { padding: 2rem 0 1.25rem }
.legal-hero h1 { font-family: var(--font-h); font-size: clamp(1.5rem, 5vw, 2.4rem); margin-bottom: .5rem }
.legal-wrap { max-width: 820px; padding-bottom: 2.5rem }
.legal-wrap h2 {
  font-family: var(--font-h); font-size: 1.15rem; margin: 1.6rem 0 .65rem;
  padding-bottom: .35rem; border-bottom: 1px solid var(--line); color: var(--navy);
}
.legal-wrap h3 { font-family: var(--font-h); font-size: 1rem; margin: 1.1rem 0 .4rem }
.legal-wrap p, .legal-wrap li { color: var(--ink-soft); margin-bottom: .65rem; font-size: .94rem }
.legal-wrap ul { padding-left: 1.15rem; margin-bottom: 1rem }
.legal-nav { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1rem 0 1.35rem }
.legal-nav a {
  font-size: .85rem; font-weight: 700; padding: .55rem .8rem; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line); color: var(--ink-soft);
  min-height: 40px; display: inline-flex; align-items: center;
}
.info-box {
  background: var(--teal-soft); border: 1px solid rgba(13,148,136,.25);
  border-radius: var(--radius-sm); padding: 1rem 1.05rem; margin: 1.1rem 0;
}

/* PAGE HERO */
.page-hero {
  padding: 1.5rem 0 1.15rem; border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.7), transparent);
}
@media (min-width: 900px) { .page-hero { padding: 2.5rem 0 1.5rem } }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; font-size: .8rem; color: var(--muted); margin-bottom: .85rem }
.breadcrumb a { color: var(--teal-dark); font-weight: 700 }
.page-hero h1 { font-family: var(--font-h); font-size: clamp(1.4rem, 5.5vw, 2.5rem); letter-spacing: -.02em; margin-bottom: .6rem; line-height: 1.2 }
.page-hero p { color: var(--ink-soft); max-width: 42rem; font-size: .95rem }
.page-hero .hero-actions { margin-top: .9rem }
.page-hero .hero-actions .btn { flex: 1 1 140px }

.prose { max-width: 760px }
.prose h2 { font-family: var(--font-h); font-size: 1.2rem; margin: 1.5rem 0 .6rem }
.prose h3 { font-family: var(--font-h); font-size: 1.02rem; margin: 1.1rem 0 .4rem }
.prose p, .prose li { color: var(--ink-soft); margin-bottom: .7rem }
.prose ul { padding-left: 1.1rem; margin-bottom: 1rem }

/* FOOTER */
.site-footer {
  margin-top: 1.5rem; background: var(--navy); color: rgba(255,255,255,.78);
  padding: 2.25rem 0 calc(1.25rem + var(--mbar-h) + var(--safe-b));
}
.footer-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; margin-bottom: 1.5rem }
@media (min-width: 560px) { .footer-grid { grid-template-columns: 1fr 1fr } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem } }
.site-footer h3 { color: #fff; font-family: var(--font-h); font-size: .95rem; margin-bottom: .7rem }
.site-footer a {
  color: rgba(255,255,255,.75); font-size: .9rem; display: block;
  margin-bottom: .15rem; padding: .35rem 0; min-height: 40px;
}
.site-footer a:hover { color: #fff }
.footer-brand strong { color: #fff; font-family: var(--font-h); display: block; margin-bottom: .45rem }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 1rem;
  display: flex; flex-wrap: wrap; gap: .65rem; justify-content: space-between; font-size: .8rem;
}

/* Desktop floating buttons */
.floats {
  position: fixed; bottom: 1.4rem; right: 1.1rem;
  display: none; flex-direction: column; gap: .7rem; z-index: 90;
}
.fbtn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: #fff; border: none; cursor: pointer;
  box-shadow: 0 10px 28px rgba(11, 31, 51, 0.22);
  transition: transform var(--tr), box-shadow var(--tr), opacity var(--tr);
  position: relative; text-decoration: none;
  touch-action: manipulation;
}
@media (hover: hover) and (pointer: fine) {
  .fbtn:hover { transform: scale(1.08) }
  .fbtn:hover::before { opacity: 1 }
}
.fbtn::before {
  content: attr(data-tip);
  position: absolute; right: 68px;
  background: var(--navy); color: #fff;
  padding: .45rem .75rem; border-radius: 8px;
  font-family: var(--font-h); font-size: .78rem; font-weight: 700;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity var(--tr);
}
.fwa { background: #25d366; box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35) }
.fph { background: var(--teal); box-shadow: 0 10px 28px rgba(13, 148, 136, 0.35) }
.ftop {
  background: var(--navy); font-family: var(--font-h); font-weight: 800; font-size: .95rem;
  opacity: 0; pointer-events: none;
}
.ftop.is-visible { opacity: 1; pointer-events: auto }

/* Mobil sticky iletişim çubuğu */
.mbar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  padding: .55rem .65rem calc(.55rem + var(--safe-b));
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 28px rgba(11, 31, 51, 0.1);
  gap: .55rem;
}
.mbar-btn {
  flex: 1; display: flex; align-items: center; gap: .55rem;
  min-height: 52px; padding: .55rem .75rem; border-radius: 14px;
  color: #fff; font-family: var(--font-h); touch-action: manipulation;
}
.mbar-ico {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center; flex-shrink: 0;
  background: rgba(255,255,255,.18); font-size: 1.05rem;
}
.mbar-txt { display: flex; flex-direction: column; line-height: 1.15; min-width: 0 }
.mbar-txt strong { font-size: .92rem; font-weight: 800 }
.mbar-txt small {
  font-size: .68rem; font-weight: 600; opacity: .9;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 42vw;
}
.mbar-call { background: var(--teal); box-shadow: 0 8px 18px rgba(13,148,136,.28) }
.mbar-wa { background: #25d366; box-shadow: 0 8px 18px rgba(37,211,102,.28) }

@media (max-width: 920px) {
  :root { --mbar-h: 72px }
  .mbar { display: flex }
  .floats { display: none }
  .hero-actions .btn { flex: 1 1 calc(50% - .4rem); min-width: 0 }
  .hero-actions .btn-ghost { flex: 1 1 100% }
}

@media (min-width: 921px) {
  .floats { display: flex }
  .mbar { display: none }
  .brand img { width: 44px; height: 44px }
  .brand-text strong { font-size: .98rem }
  .brand-text span { font-size: .72rem }
  :root { --header-h: 72px; --mbar-h: 0px }
  .site-footer { padding: 3rem 0 1.5rem }
}

@media (max-width: 380px) {
  .brand-text strong { font-size: .84rem }
  .hero h1 { font-size: 1.4rem }
  .mbar-txt small { display: none }
  .hero-actions .btn { flex: 1 1 100% }
}

.reveal { opacity: 0; transform: translateY(14px); transition: .55s ease }
.reveal.visible { opacity: 1; transform: none }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto }
  .reveal { opacity: 1; transform: none; transition: none }
  .btn, .card, .area-chip, .fbtn { transition: none }
}
