/* ========== ROOT & RESET ========== */
:root {
  --bg: #f0f2f5;
  --bg2: #e8eaee;
  --bg3: #dde0e6;
  --navy: #0f2044;
  --navy2: #1a3260;
  --navy3: #243f76;
  --accent: #1e4db7;
  --accent-light: #2d5fd4;
  --text: #0f2044;
  --text-muted: #4a5878;
  --text-dim: #8a97b0;
  --border: rgba(15,32,68,0.1);
  --card-bg: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --nav-h: 80px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* ========== CURSOR ========== */
.cursor {
  width: 36px; height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform 0.15s ease, opacity 0.3s;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s;
}

/* ========== PRELOADER ========== */
.preloader {
  position: fixed; inset: 0;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-box { text-align: center; }
.preloader-letter {
  font-family: var(--font-heading);
  font-size: clamp(60px, 12vw, 100px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
}
.preloader-letter span { color: #6b9fff; }
.preloader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px; overflow: hidden; margin: 0 auto;
}
.preloader-fill {
  height: 100%; width: 0%;
  background: #6b9fff;
  border-radius: 2px;
  transition: width 0.05s linear;
}

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 5%;
  z-index: 1000;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(240,242,245,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 26px; font-weight: 900;
  color: var(--navy); margin-right: auto;
  letter-spacing: -0.5px;
}
.logo-dot { color: var(--accent); }
.nav-links { display: flex; gap: 36px; margin-right: 40px; }
.nav-links a {
  font-size: 14px; font-weight: 400;
  color: var(--text-muted);
  transition: color 0.2s; letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--navy2); transform: translateY(-1px); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 6px; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--navy); transition: 0.3s; }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: 75%; max-width: 320px; height: 100vh;
  background: var(--navy);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  transition: right 0.4s cubic-bezier(0.77,0,0.175,1);
  border-left: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 32px; text-align: center; }
.mobile-menu a {
  font-family: var(--font-heading); font-size: 28px; font-weight: 700;
  color: #fff; transition: color 0.2s;
}
.mobile-menu a:hover { color: #6b9fff; }

/* ========== SCROLL REVEAL ========== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ========== SECTION LABELS ========== */
.sec-label {
  font-size: 12px; font-weight: 600;
  color: var(--accent); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 16px;
}
.sec-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800; line-height: 1.1;
  color: var(--navy); margin-bottom: 48px;
}
.sec-title em { color: var(--accent); font-style: italic; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 40px) 5% 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(30,77,183,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grain {
  position: absolute; 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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.4;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 18px; border-radius: 100px;
  font-size: 13px; color: rgba(255,255,255,0.6);
  margin-bottom: 32px; width: fit-content;
}
.badge-pulse {
  width: 8px; height: 8px;
  background: #6bffb0; border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107,255,176,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(107,255,176,0); }
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 900; line-height: 0.95;
  color: #fff; margin-bottom: 24px;
  letter-spacing: -2px;
}
.ht-line { display: block; }
.ht-line.italic { font-style: italic; color: #6b9fff; }
.hero-roles {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px; flex-wrap: wrap;
}
.hero-roles span { font-size: clamp(14px, 2vw, 18px); font-weight: 400; color: rgba(255,255,255,0.55); }
.role-x { color: #6b9fff !important; font-size: 20px !important; }
.hero-desc {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.5);
  max-width: 520px; line-height: 1.7;
  margin-bottom: 40px; font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: #fff; color: var(--navy);
  padding: 14px 32px; border-radius: 100px;
  font-weight: 700; font-size: 15px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: #e8edf8; transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,255,255,0.15);
}
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; padding: 14px 32px; border-radius: 100px;
  font-weight: 400; font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.hero-stats {
  display: flex; align-items: center; gap: 40px;
  margin-top: 60px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hstat { text-align: left; }
.hstat-num {
  font-family: var(--font-heading); font-size: clamp(36px, 5vw, 52px);
  font-weight: 900; color: #6b9fff; line-height: 1; display: inline;
}
.hstat-plus { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: #6b9fff; display: inline; }
.hstat-label {
  font-size: 12px; color: rgba(255,255,255,0.4);
  line-height: 1.4; margin-top: 6px;
  font-weight: 300; text-transform: uppercase; letter-spacing: 0.5px;
}
.hstat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.1); }
.scroll-hint {
  display: flex; align-items: center; gap: 12px;
  position: absolute; bottom: 32px; right: 5%;
  font-size: 12px; color: rgba(255,255,255,0.3);
  letter-spacing: 1px; text-transform: uppercase;
}
.scroll-line-anim {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.15); position: relative; overflow: hidden;
}
.scroll-line-anim::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: #6b9fff;
  animation: scanline 1.8s ease-in-out infinite;
}
@keyframes scanline { 0% { left: -100%; } 100% { left: 100%; } }

/* ========== MARQUEE ========== */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: var(--bg2);
}
.marquee-inner {
  display: flex; align-items: center; gap: 32px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  width: max-content;
  font-size: 12px; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1.5px; text-transform: uppercase;
}
.mstar { color: var(--accent); font-size: 9px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== ABOUT ========== */
.about { padding: 120px 0; background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.about-img-wrap { margin-top: 32px; position: relative; display: inline-block; }
.about-img-placeholder {
  width: 200px; height: 200px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 48px;
  font-weight: 900; color: #6b9fff;
}
.about-img-badge {
  position: absolute; bottom: -12px; right: -16px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 8px 14px; border-radius: var(--radius-sm);
  line-height: 1.4; text-align: center;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.about-p { font-size: 16px; line-height: 1.8; color: var(--text-muted); margin-bottom: 20px; font-weight: 300; }
.about-p strong { color: var(--navy); font-weight: 600; }
.about-info {
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 28px;
  background: var(--card-bg);
}
.info-row { display: flex; padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 14px; }
.info-row:last-child { border-bottom: none; }
.info-key { color: var(--text-dim); width: 100px; flex-shrink: 0; font-weight: 400; }
.info-val { color: var(--navy); font-weight: 500; }
.info-val a { color: var(--accent); }
.info-val a:hover { text-decoration: underline; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.about-tags span {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 7px 16px; border-radius: 100px;
  font-size: 13px; color: var(--text-muted);
  font-weight: 400; transition: border-color 0.2s, color 0.2s;
}
.about-tags span:hover { border-color: var(--accent); color: var(--accent); }

/* ========== SERVICES ========== */
.services { padding: 120px 0; background: var(--navy); }
.services .sec-label { color: #6b9fff; }
.services .sec-title { color: #fff; }
.services .sec-title em { color: #6b9fff; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.srv-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 40px 32px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  position: relative; overflow: hidden;
}
.srv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: #6b9fff;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.srv-card:hover { border-color: rgba(107,159,255,0.3); transform: translateY(-4px); background: rgba(255,255,255,0.08); }
.srv-card:hover::before { transform: scaleX(1); }
.srv-num { font-family: var(--font-heading); font-size: 52px; font-weight: 900; color: rgba(255,255,255,0.06); line-height: 1; margin-bottom: 16px; }
.srv-icon { color: #6b9fff; margin-bottom: 20px; }
.srv-card h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.srv-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; font-weight: 300; margin-bottom: 24px; }
.srv-list li {
  font-size: 13px; color: rgba(255,255,255,0.35);
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-left: 16px; position: relative;
}
.srv-list li:last-child { border-bottom: none; }
.srv-list li::before { content: '—'; position: absolute; left: 0; color: #6b9fff; font-size: 11px; }

/* ========== WORK ========== */
.work { padding: 120px 0; background: var(--bg); }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.work-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.work-card:hover { transform: translateY(-6px); border-color: rgba(30,77,183,0.2); box-shadow: 0 20px 60px rgba(15,32,68,0.1); }
.work-img { display: block; height: 220px; position: relative; overflow: hidden; text-decoration: none; }
.ash-img { background: linear-gradient(135deg, #0a1628 0%, #0d2a3a 50%, #1a3a2a 100%); }
.saams-img { background: linear-gradient(135deg, #0f2044 0%, #1a3260 50%, #1e4db7 100%); }
.work-img-inner { width: 100%; height: 100%; position: relative; display: flex; align-items: center; justify-content: center; }
.work-site-preview {
  width: 75%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.wsp-bar { background: rgba(255,255,255,0.05); padding: 8px 12px; display: flex; gap: 5px; align-items: center; }
.wsp-bar span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.wsp-bar span:first-child { background: #ff5f57; }
.wsp-bar span:nth-child(2) { background: #febc2e; }
.wsp-bar span:nth-child(3) { background: #28c840; }
.wsp-content { padding: 16px; }
.ash-content .wsp-title { color: #c9a96e; font-weight: 700; font-size: 13px; }
.saams-content .wsp-title { color: #6b9fff; font-weight: 700; font-size: 13px; }
.wsp-sub { color: rgba(255,255,255,0.4); font-size: 10px; margin-top: 2px; margin-bottom: 10px; }
.wsp-line { height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; margin-bottom: 6px; }
.wsp-line.short { width: 60%; }
.work-hover-label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(15,32,68,0.75);
  color: #fff; font-size: 15px; font-weight: 600;
  opacity: 0; transition: opacity 0.3s; backdrop-filter: blur(4px);
}
.work-img:hover .work-hover-label { opacity: 1; }
.work-meta { padding: 28px; }
.work-tags { display: flex; gap: 8px; margin-bottom: 14px; }
.work-tags span {
  background: var(--bg2); border: 1px solid var(--border);
  padding: 4px 12px; border-radius: 100px;
  font-size: 11px; color: var(--text-dim); font-weight: 500; letter-spacing: 0.5px;
}
.work-meta h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.work-meta p { font-size: 14px; color: var(--text-muted); line-height: 1.6; font-weight: 300; margin-bottom: 16px; }
.work-live { font-size: 13px; color: var(--accent); font-weight: 500; transition: opacity 0.2s; }
.work-live:hover { opacity: 0.7; }

/* ========== REVIEWS ========== */
.reviews { padding: 120px 0; background: var(--bg2); }
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 56px;
  max-width: 820px; margin: 0 auto; position: relative;
}
.review-stars { color: var(--accent); font-size: 20px; letter-spacing: 4px; margin-bottom: 24px; }
.review-text {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 20px);
  font-style: italic; color: var(--navy);
  line-height: 1.7; font-weight: 400; margin-bottom: 36px;
}
.review-author { display: flex; align-items: center; gap: 16px; }
.review-avatar {
  width: 48px; height: 48px; background: var(--navy);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.review-name { font-size: 15px; font-weight: 600; color: var(--navy); }
.review-role { font-size: 13px; color: var(--text-muted); font-weight: 300; margin-top: 2px; }

/* ========== CONTACT ========== */
.contact { padding: 120px 0; background: var(--bg); }
.contact-heading {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900; line-height: 1.1;
  color: var(--navy); margin-bottom: 60px;
}
.contact-heading em { color: var(--accent); font-style: italic; }
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: start; }
.contact-left p { font-size: 16px; color: var(--text-muted); line-height: 1.7; font-weight: 300; margin-bottom: 32px; }
.contact-links { display: flex; flex-direction: column; gap: 14px; }
.clink {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: var(--navy);
  padding: 16px 20px; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s; font-weight: 400;
}
.clink:hover { border-color: var(--accent); background: rgba(30,77,183,0.03); }
.clink-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.phone-icon { background: rgba(30,77,183,0.1); color: var(--accent); }
.wa-icon { background: rgba(37,211,102,0.1); color: #25d366; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grp { display: flex; flex-direction: column; gap: 8px; }
.form-grp label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.form-grp input, .form-grp select, .form-grp textarea {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 18px;
  color: var(--navy); font-family: var(--font-body);
  font-size: 15px; font-weight: 300; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; resize: vertical; appearance: none;
}
.form-grp input:focus, .form-grp select:focus, .form-grp textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(30,77,183,0.08);
}
.form-grp input::placeholder, .form-grp textarea::placeholder { color: var(--text-dim); }
.form-grp select { color: var(--text-muted); cursor: pointer; }
.form-grp select option { background: #fff; }
.btn-submit {
  background: var(--navy); color: #fff;
  border: none; padding: 16px 36px; border-radius: 100px;
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  align-self: flex-start; letter-spacing: 0.3px;
}
.btn-submit:hover { background: var(--navy2); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(15,32,68,0.2); }

/* ========== FOOTER ========== */
.footer { padding: 48px 0; background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer-logo { font-family: var(--font-heading); font-size: 28px; font-weight: 900; color: #fff; }
.footer-logo span { color: #6b9fff; }
.footer-inner p { font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 300; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25) !important; }

/* ========== FLOATING BUTTONS ========== */
.float-wrap { position: fixed; bottom: 28px; right: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 800; }
.float-btn { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(15,32,68,0.25); transition: transform 0.2s, box-shadow 0.2s; }
.float-btn:hover { transform: scale(1.1); }
.fb-wa { background: #25d366; }
.fb-ph { background: var(--navy); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 48px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
  .hero-title { letter-spacing: -1px; }
  .hero-stats { gap: 24px; }
  .hstat-divider { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .review-card { padding: 32px 24px; }
  .scroll-hint { display: none; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; width: 100%; }
  .btn-submit { width: 100%; text-align: center; }
}
