/* ===== VEVOR Services — Global Styles ===== */
:root {
  --blue: #0b3d91;
  --blue-dark: #082b66;
  --orange: #f26522;
  --orange-dark: #d9531a;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --ink: #1c2733;
  --muted: #5b6b7b;
  --line: #e3e9f0;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(11, 61, 145, .08);
  --maxw: 1120px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 96px; gap: 16px;
}
.logo {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  font-weight: 800; font-size: 3.2rem; color: var(--blue);
  letter-spacing: 3px; line-height: 1;
}
.logo:hover { text-decoration: none; }
.logo-badge {
  background: none; color: var(--blue); padding: 0; border-radius: 0;
  font-size: inherit; letter-spacing: inherit; font-weight: 800;
}

.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a { color: var(--ink); font-weight: 600; font-size: .95rem; padding: 6px 2px; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a.active { color: var(--blue); border-bottom-color: var(--orange); text-decoration: none; }
.btn {
  display: inline-block; padding: 11px 22px; border-radius: 8px; font-weight: 700;
  font-size: .95rem; border: none; cursor: pointer; transition: background .2s, transform .1s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-phone {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff; white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.btn-phone:hover { background: var(--orange-dark); }
.btn-phone svg { flex: none; }
.btn-header { padding: 9px 18px; }

/* ===== Phone CTA (header) ===== */
.phone-cta {
  display: inline-flex; align-items: center; gap: 11px;
  text-decoration: none; padding: 6px 8px; border-radius: 10px;
  transition: background .2s;
}
.phone-cta:hover { text-decoration: none; background: #eef3fb; }
.phone-ico {
  width: 40px; height: 40px; flex: none; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(242, 101, 34, .35);
  transition: transform .2s, background .2s;
}
.phone-cta:hover .phone-ico { transform: scale(1.06); background: var(--orange-dark); }
.phone-txt { display: flex; flex-direction: column; line-height: 1.25; }
.phone-txt small {
  font-size: .66rem; font-weight: 700; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--muted);
}
.phone-txt b {
  font-size: 1.12rem; font-weight: 800; color: var(--blue-dark);
  letter-spacing: .5px; font-variant-numeric: tabular-nums; white-space: nowrap;
  transition: color .2s;
}
.phone-cta:hover .phone-txt b { color: var(--orange-dark); }

/* Smooth anchor scrolling below sticky header */
section[id] { scroll-margin-top: 100px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--blue); margin: 5px 0; border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  background:
    linear-gradient(100deg, rgba(8, 43, 102, .92) 0%, rgba(11, 61, 145, .78) 55%, rgba(11, 61, 145, .45) 100%),
    url('../images/hero-banner.jpg') center/cover no-repeat;
  color: #fff; padding: 84px 0 96px; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero-aside { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.hero-card {
  background: rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 16px; padding: 28px; color: #fff;
  width: 100%; max-width: 380px;
  box-shadow: 0 20px 40px rgba(4, 20, 50, .35);
}
.hero-card-head { border-bottom: 1px solid rgba(255,255,255,.18); padding-bottom: 16px; margin-bottom: 16px; }
.hero-card-stars { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 6px; }
.hero-card-stars .stars { color: #ffb27a; font-size: 1.25rem; letter-spacing: 3px; }
.hero-card-stars b { font-size: 1.3rem; }
.hero-card-head p { color: #d7e3f7; font-size: .88rem; }
.hero-card-list { list-style: none; margin-bottom: 22px; }
.hero-card-list li {
  padding: 8px 0 8px 30px; position: relative; font-size: .93rem; color: #eaf1fb;
  border-bottom: 1px dashed rgba(255,255,255,.15);
}
.hero-card-list li:last-child { border-bottom: none; }
.hero-card-list li::before {
  content: ""; position: absolute; left: 2px; top: 12px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--orange) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/12px no-repeat;
}
.hero-card-btn { width: 100%; text-align: center; }
.hero-card-note { text-align: center; color: #b9c9e2; font-size: .8rem; margin-top: 12px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px; padding: 9px 18px;
  color: #eaf1fb; font-size: .82rem; font-weight: 600;
}
.hero-chip-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #2ecc71; flex: none;
  box-shadow: 0 0 0 4px rgba(46, 204, 113, .25);
}
.hero h1 { font-size: 2.25rem; line-height: 1.22; margin-bottom: 16px; }
.hero h1 span { color: #ffb27a; }
.hero p.lead { font-size: 1.12rem; color: #d7e3f7; margin-bottom: 28px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art { text-align: center; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.badge {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  padding: 6px 14px; border-radius: 999px; font-size: .82rem; font-weight: 600;
}

/* ===== Sections ===== */
.section { padding: 64px 0; }
.section.alt { background: var(--surface); }
.section-title { text-align: center; margin-bottom: 12px; font-size: 1.9rem; color: var(--blue-dark); }
.section-sub { text-align: center; color: var(--muted); max-width: 640px; margin: 0 auto 44px; }
.eyebrow { display: block; text-align: center; color: var(--orange); font-weight: 800; letter-spacing: 2px; text-transform: uppercase; font-size: .78rem; margin-bottom: 8px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow); transition: transform .15s;
}
.card:hover { transform: translateY(-4px); }
.card-icon {
  width: 54px; height: 54px; border-radius: 12px; background: #eef3fb;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--blue-dark); }
.card p { color: var(--muted); font-size: .95rem; }
.card-link { font-weight: 700; color: var(--orange); display: inline-block; margin-top: 12px; }

/* Two-card service layout */
.cards.two { grid-template-columns: repeat(2, 1fr); }

/* ===== Feature list / steps ===== */
.feature-list { list-style: none; margin: 18px 0 0; }
.feature-list li { padding-left: 30px; position: relative; margin-bottom: 12px; color: var(--muted); }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 5px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--orange) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/12px no-repeat;
}
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; position: relative; box-shadow: var(--shadow);
}
.step-num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 12px;
}
.step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .9rem; }

/* ===== Stats ===== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat b { font-size: 2rem; color: var(--orange); display: block; }
.stat span { color: var(--muted); font-size: .92rem; }

/* ===== Testimonials ===== */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); font-style: italic; color: var(--muted);
}
.quote .who { margin-top: 14px; font-style: normal; font-weight: 700; color: var(--ink); font-size: .92rem; }
.quote .stars { color: #f5a623; letter-spacing: 2px; font-style: normal; margin-bottom: 8px; }

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(120deg, var(--orange) 0%, #e0561b 100%);
  color: #fff; padding: 52px 0; text-align: center;
}
.cta-band h2 { font-size: 1.8rem; margin-bottom: 10px; }
.cta-band p { color: #ffe3d2; margin-bottom: 24px; }
.btn-white { background: #fff; color: var(--orange-dark); }

/* ===== Page hero (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff; padding: 52px 0;
}
.page-hero h1 { font-size: 2.1rem; margin-bottom: 8px; }
.page-hero p { color: #d7e3f7; max-width: 640px; }
.breadcrumb { font-size: .85rem; color: #9db8e6; margin-bottom: 14px; }
.breadcrumb a { color: #cdddf8; }

/* ===== Split layout ===== */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.split h2 { color: var(--blue-dark); font-size: 1.6rem; margin-bottom: 12px; }
.split p { color: var(--muted); }
.split-art { background: transparent; border-radius: var(--radius); padding: 0; text-align: center; }
.split-art img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: auto; }

/* ===== Pricing / packages ===== */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; text-align: center; box-shadow: var(--shadow);
}
.price-card.featured { border: 2px solid var(--orange); position: relative; }
.price-card .tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: .72rem; font-weight: 800;
  padding: 4px 14px; border-radius: 999px; letter-spacing: 1px;
}
.price-card .amount { font-size: 1.9rem; font-weight: 800; color: var(--blue-dark); margin: 10px 0 2px; }
.price-card .per { color: var(--muted); font-size: .85rem; margin-bottom: 16px; }
.price-card ul { list-style: none; text-align: left; margin-bottom: 20px; }
.price-card ul li { padding: 7px 0 7px 26px; position: relative; border-bottom: 1px dashed var(--line); font-size: .92rem; color: var(--muted); }
.price-card ul li::before {
  content: ""; position: absolute; left: 2px; top: 12px; width: 14px; height: 14px; border-radius: 50%;
  background: #e8f4ea url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232e8b57"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/9px no-repeat;
}

/* ===== Case studies ===== */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: transform .15s;
}
.case-card:hover { transform: translateY(-4px); }
.case-thumb { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.case-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.case-card:hover .case-thumb img { transform: scale(1.06); }
.case-tag {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: rgba(8, 43, 102, .9); color: #fff; font-size: .7rem; font-weight: 700;
  letter-spacing: 1.2px; padding: 5px 12px; border-radius: 999px; text-transform: uppercase;
}
.case-body { padding: 22px; }
.case-body h3 { font-size: 1.08rem; color: var(--blue-dark); margin-bottom: 8px; }
.case-body p { color: var(--muted); font-size: .92rem; margin-bottom: 14px; }
.case-meta {
  display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap;
  font-size: .8rem; color: var(--muted); border-top: 1px dashed var(--line); padding-top: 12px;
}
.case-meta b { color: var(--orange); }

/* ===== FAQ ===== */
.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  padding: 16px 20px; margin-bottom: 12px;
}
.faq summary { font-weight: 700; cursor: pointer; color: var(--blue-dark); }
.faq p { color: var(--muted); margin-top: 10px; }

/* ===== Contact form ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 40px; align-items: start; }
.info-block { margin-bottom: 22px; display: flex; gap: 14px; align-items: flex-start; }
.info-block .ico {
  width: 44px; height: 44px; border-radius: 10px; background: #eef3fb; flex: none;
  display: flex; align-items: center; justify-content: center;
}
.info-block b { display: block; color: var(--blue-dark); }
.info-block span { color: var(--muted); font-size: .93rem; }
.form-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow);
}
.form-card h2 { color: var(--blue-dark); margin-bottom: 6px; }
.form-card .form-note { color: var(--muted); font-size: .9rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px; border: 1px solid #cdd8e4; border-radius: 8px;
  font-size: .95rem; font-family: inherit; background: #fbfcfe; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11,61,145,.12); background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.field .error-msg { color: #c0392b; font-size: .8rem; margin-top: 4px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0392b; background: #fff6f5; }
.field.invalid .error-msg { display: block; }
.form-success {
  display: none; background: #e8f6ec; border: 1px solid #b7dfc2; color: #1e6b3a;
  border-radius: 10px; padding: 16px 18px; margin-bottom: 18px; font-size: .93rem;
}
.form-success.show { display: block; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--muted); }
.consent input { width: auto; margin-top: 3px; }

/* ===== Footer ===== */
.site-footer { background: var(--blue-dark); color: #b9c9e2; margin-top: 0; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 40px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 9px; }
.site-footer a { color: #b9c9e2; font-size: .92rem; }
.site-footer a:hover { color: #fff; }
.footer-logo {
  display: inline-block; text-decoration: none; margin-bottom: 16px;
}
.footer-logo:hover { text-decoration: none; }
.footer-brand {
  display: block; color: #fff; font-weight: 800; font-size: 2.6rem;
  letter-spacing: 4px; line-height: 1;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; font-size: .84rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom .container-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; width: 100%; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .header-inner { height: 80px; }
  .main-nav { top: 80px; }
  .logo { font-size: 2.4rem; }
  .btn-header { padding: 8px 14px; font-size: .85rem; }
  .phone-ico { width: 34px; height: 34px; }
  .phone-ico svg { width: 14px; height: 14px; }
  .phone-txt small { font-size: .58rem; letter-spacing: 1.2px; }
  .phone-txt b { font-size: .95rem; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr 1fr; }
  .hero-art { display: none; }
  .cards, .cards.two, .quote-grid, .price-cards { grid-template-columns: 1fr 1fr; }
  .steps, .stats { grid-template-columns: 1fr 1fr; }
  .main-nav {
    display: none; position: absolute; top: 96px; left: 0; right: 0;
    background: var(--surface); flex-direction: column; align-items: flex-start;
    padding: 18px 20px; gap: 14px; border-bottom: 1px solid var(--line); box-shadow: 0 12px 20px rgba(0,0,0,.08);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .cards, .cards.two, .quote-grid, .price-cards, .steps, .stats, .form-row, .case-grid { grid-template-columns: 1fr; }
  .footer-brand { font-size: 2rem; }
  .hero h1 { font-size: 1.9rem; }
}

/* ===== Motion & polish ===== */

/* Entrance keyframes */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes popIn {
  0% { opacity: 0; transform: translateY(18px) scale(.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, .45); }
  70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Hero staggered entrance */
.hero h1, .hero .lead, .hero .hero-actions, .hero .hero-badges {
  opacity: 0; animation: fadeUp .8s cubic-bezier(.22, .61, .36, 1) forwards;
}
.hero h1 { animation-delay: .1s; }
.hero .lead { animation-delay: .25s; }
.hero .hero-actions { animation-delay: .4s; }
.hero .hero-badges { animation-delay: .55s; }
.hero-aside { opacity: 0; animation: popIn .9s cubic-bezier(.22, .61, .36, 1) .55s forwards; }
.hero-chip-dot { animation: pulseDot 2s infinite; }
.hero-card { animation: floatY 6s ease-in-out 2s infinite; }

/* Scroll-reveal (applied by JS) */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; }

/* Header elevation on scroll */
.site-header { transition: box-shadow .25s ease; }
.site-header.scrolled { box-shadow: 0 6px 24px rgba(11, 61, 145, .14); }

/* Nav link underline slide */
.main-nav a:not(.btn) { position: relative; }
.main-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--orange); border-radius: 2px; transition: width .25s ease;
}
.main-nav a:not(.btn):hover::after, .main-nav a:not(.btn).active::after { width: 100%; }
.main-nav a:not(.btn):hover, .main-nav a:not(.btn).active { border-bottom-color: transparent; }

/* Button sheen sweep */
.btn-primary, .btn-white { position: relative; overflow: hidden; }
.btn-primary::before, .btn-white::before {
  content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg); transition: left .5s ease;
}
.btn-primary:hover::before, .btn-white:hover::before { left: 130%; }

/* Case card image zoom softening + gradient wash on thumb */
.case-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 43, 102, .35));
  opacity: 0; transition: opacity .35s ease;
}
.case-card:hover .case-thumb::after { opacity: 1; }

/* Card hover accent line */
.card, .price-card { position: relative; overflow: hidden; }
.card::after, .price-card::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), #ffb27a);
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.card:hover::after, .price-card:hover::after { transform: scaleX(1); }

/* Smooth global focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--orange); outline-offset: 2px;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero h1, .hero .lead, .hero .hero-actions, .hero .hero-badges, .hero-aside { opacity: 1; }
}
