/* ============================================================
   gem colorados — Site styles (landing + login)
   Pure CSS, no dependencies.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --bg: #0F0F0F;
  --bg-2: #0c0c0c;
  --bg-alt: #141414;
  --card: #1A1A1A;
  --orange: #FF5400;
  --orange-d: #E64B00;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --muted: #999999;
  --muted-2: #6f6f6f;
  --field: rgba(255, 255, 255, 0.04);
  --f-head: 'Space Grotesk', sans-serif;
  --f-body: 'DM Sans', sans-serif;
  --f-mono: 'Space Mono', monospace;
}

html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { display: block; }
::selection { background: rgba(255, 84, 0, 0.3); color: #fff; }
input::placeholder, textarea::placeholder { color: #5a5a5a; }

@keyframes scrollL { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollR { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 84, 0, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(255, 84, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 84, 0, 0); }
}

/* ====================================================================
   LANDING PAGE
   ==================================================================== */
.site { background: var(--bg); }
.page-wrap { background: var(--bg); color: #CCCCCC; overflow-x: hidden; width: 100%; position: relative; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 980px; }
.container-faq { max-width: 820px; }

.kicker {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 20px;
}
.center-text { text-align: center; }

.sec { padding: 110px 0; background: var(--bg); }
.sec-alt { background: var(--bg-alt); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.sec-alt2 { background: var(--bg-alt); border-top: 1px solid rgba(255,255,255,0.06); }
.sec.center { text-align: center; }

.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.sec-title {
  font-family: var(--f-head); font-weight: 700;
  font-size: clamp(34px, 4.6vw, 54px); line-height: 1.05; letter-spacing: -0.025em;
  color: #fff; margin: 0; max-width: 560px;
}
.sec-title.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-lead { color: #888; font-size: 17px; line-height: 1.6; max-width: 430px; margin: 0; }
.center-block { margin-left: auto; margin-right: auto; text-align: center; max-width: 540px; }
.mb-sm { margin-bottom: 22px; }
.mb-lg { margin-bottom: 58px; }
.mb-xl { margin-bottom: 64px; }

/* ---- Buttons ---- */
.btn-primary {
  background: var(--orange); color: #fff; text-decoration: none;
  font-size: 14.5px; font-weight: 600; font-family: var(--f-head);
  padding: 11px 18px; border-radius: 6px; display: inline-flex; align-items: center; gap: 7px;
  white-space: nowrap; border: none; cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.btn-primary:hover { background: var(--orange-d); transform: translateY(-1px); }
.btn-ghost {
  color: #fff; text-decoration: none; font-size: 14.5px; font-weight: 600; font-family: var(--f-head);
  padding: 10px 16px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.18);
  white-space: nowrap; transition: all .2s ease; background: transparent; cursor: pointer;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.04); }
.btn-lg { font-size: 16px; padding: 16px 26px; border-radius: 7px; }
.btn-block { width: 100%; justify-content: center; padding: 15px; font-size: 16px; border-radius: 8px; }
.arr { font-size: 1.06em; }

/* ---- Navbar ---- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 74px; display: flex; align-items: center; }
.nav-bg {
  position: absolute; inset: 0; z-index: -1;
  border-bottom: 1px solid rgba(255,255,255,0); background: rgba(13,13,13,0);
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
}
.nav.scrolled .nav-bg {
  border-bottom: 1px solid rgba(255,255,255,0.08); background: rgba(13,13,13,0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 32px; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-link { color: #999; text-decoration: none; font-size: 14.5px; font-weight: 500; transition: color .2s ease; }
.nav-link:hover { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ---- Hero ---- */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 120px 32px 80px; overflow: hidden;
}
.hero-glow {
  position: absolute; top: 18%; left: 50%; transform: translateX(-50%);
  width: 720px; height: 520px; max-width: 92vw;
  background: radial-gradient(ellipse at center, rgba(255,84,0,0.16), rgba(255,84,0,0) 65%);
  pointer-events: none; filter: blur(8px);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}
.eyebrow {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,84,0,0.12); border: 1px solid rgba(255,84,0,0.3); color: var(--orange);
  font-family: var(--f-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 8px 16px; border-radius: 100px; margin-bottom: 34px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 100px; background: var(--orange); display: inline-block; }
.hero-title {
  position: relative; font-family: var(--f-head); font-weight: 700;
  font-size: clamp(40px, 6.6vw, 86px); line-height: 1.02; letter-spacing: -0.03em;
  color: #fff; margin: 0; max-width: 1000px;
}
.hero-underline { position: relative; display: inline-block; }
.hero-underline::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 4px; background: var(--orange); border-radius: 4px; }
.hero-sub { position: relative; color: #CCCCCC; font-size: clamp(16px, 1.6vw, 19px); line-height: 1.6; max-width: 600px; margin: 34px auto 0; }
.hero-actions { position: relative; display: flex; align-items: center; gap: 14px; margin-top: 42px; flex-wrap: wrap; justify-content: center; }
.hero-actions .btn-primary:hover { transform: translateY(-2px); }

/* ---- Metrics bar ---- */
.metrics-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.metrics-grid { max-width: 1180px; margin: 0 auto; padding: 46px 32px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.metric { text-align: center; padding: 10px 16px; border-right: 1px solid rgba(255,255,255,0.06); }
.metric:last-child { border-right: none; }
.metric-num { font-family: var(--f-head); font-weight: 700; font-size: clamp(34px, 4vw, 46px); color: #fff; letter-spacing: -0.02em; line-height: 1; }
.metric-num .o { color: var(--orange); }
.metric-label { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: #777; margin-top: 12px; }

/* ---- Marquee ---- */
.marquee-sec { padding: 54px 0; background: var(--bg); overflow: hidden; }
.marquee-cap { text-align: center; font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: #666; margin: 0 0 30px; }
.marquee-row { display: flex; width: max-content; }
.marquee-l { animation: scrollL 38s linear infinite; margin-bottom: 18px; }
.marquee-r { animation: scrollR 44s linear infinite; }
.mq-item { font-family: var(--f-head); font-size: 21px; font-weight: 500; color: #777; padding: 0 26px; white-space: nowrap; display: inline-flex; align-items: center; gap: 26px; }
.mq-item i { width: 4px; height: 4px; border-radius: 100px; background: var(--orange); opacity: 0.6; }
.marquee-r.dim .mq-item { color: #5f5f5f; }
.marquee-r.dim .mq-item i { opacity: 0.4; }

/* ---- Services ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 18px; margin-top: 58px; }
.service-card { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 32px; transition: border-color .25s ease, transform .25s ease, background .25s ease; }
.service-card:hover { border-color: rgba(255,84,0,0.4); transform: translateY(-3px); background: #1d1d1d; }
.service-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.service-idx { font-family: var(--f-mono); font-size: 13px; font-weight: 700; color: var(--orange); }
.service-card h3 { font-family: var(--f-head); font-weight: 600; font-size: 20px; color: #fff; margin: 0 0 13px; }
.service-card p { color: #999; font-size: 14.5px; line-height: 1.65; margin: 0; }

/* ---- Process ---- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 60px; }
.step { position: relative; padding-top: 28px; border-top: 1px solid rgba(255,84,0,0.25); }
.step-num { font-family: var(--f-head); font-weight: 700; font-size: 48px; color: var(--orange); line-height: 1; letter-spacing: -0.02em; margin-bottom: 18px; }
.step h3 { font-family: var(--f-head); font-weight: 600; font-size: 19px; color: #fff; margin: 0 0 11px; }
.step p { color: #999; font-size: 14.5px; line-height: 1.65; margin: 0; }

/* ---- Differentials ---- */
.diffs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.diff { background: var(--bg); padding: 40px; transition: background .25s ease; }
.diff:hover { background: #1a1a1a; }
.diff-head { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.diff-check { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 7px; background: rgba(255,84,0,0.12); flex-shrink: 0; }
.diff h3 { font-family: var(--f-head); font-weight: 600; font-size: 19px; color: #fff; margin: 0; }
.diff p { color: #999; font-size: 15px; line-height: 1.65; margin: 0; padding-left: 41px; }

/* ---- Results ---- */
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 36px 16px; }
.result { text-align: center; }
.result-num { font-family: var(--f-head); font-weight: 700; font-size: clamp(44px, 5vw, 62px); color: #fff; letter-spacing: -0.03em; line-height: 1; }
.result-num .o { color: var(--orange); }
.result-label { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: #888; margin-top: 16px; line-height: 1.5; }

/* ---- Testimonials ---- */
.carousel { overflow: hidden; border-radius: 14px; }
.carousel-track { display: flex; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.slide { flex: 0 0 100%; box-sizing: border-box; padding: 2px; }
.quote-card { background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--orange); border-radius: 12px; padding: 48px 52px; }
.quote { font-family: var(--f-head); font-weight: 500; font-style: italic; font-size: clamp(20px, 2.4vw, 27px); line-height: 1.45; color: #eee; margin: 0 0 34px; letter-spacing: -0.01em; }
.author { display: flex; align-items: center; gap: 15px; }
.avatar { width: 50px; height: 50px; border-radius: 100px; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--f-head); font-weight: 700; font-size: 16px; flex-shrink: 0; }
.author-name { color: #fff; font-weight: 600; font-size: 15.5px; font-family: var(--f-head); }
.author-role { color: #888; font-size: 13.5px; margin-top: 2px; }
.carousel-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; }
.dots { display: flex; gap: 9px; }
.dot { height: 9px; width: 9px; border-radius: 100px; border: none; cursor: pointer; padding: 0; background: rgba(255,255,255,0.2); transition: all .3s ease; }
.dot.active { width: 26px; background: var(--orange); }
.arrows { display: flex; gap: 10px; }
.arrow-btn { width: 46px; height: 46px; border-radius: 100px; background: transparent; border: 1px solid rgba(255,255,255,0.18); color: #fff; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: all .2s ease; }
.arrow-btn:hover { border-color: var(--orange); color: var(--orange); }

/* ---- Pricing ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 58px; align-items: start; }
.plan { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 38px 32px; display: flex; flex-direction: column; transition: border-color .25s ease, transform .25s ease; }
.plan:hover { border-color: rgba(255,255,255,0.18); transform: translateY(-3px); }
.plan-featured { background: #181412; border: 1px solid rgba(255,84,0,0.45); box-shadow: 0 24px 60px rgba(255,84,0,0.10); }
.plan-featured:hover { border-color: rgba(255,84,0,0.7); }
.plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-family: var(--f-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 14px; border-radius: 100px; white-space: nowrap; }
.plan-name { font-family: var(--f-head); font-weight: 700; font-size: 22px; color: #fff; margin-bottom: 8px; }
.plan-for { color: #8a8a8a; font-size: 14px; line-height: 1.5; min-height: 42px; margin-bottom: 24px; }
.plan-price { font-family: var(--f-head); font-weight: 700; font-size: 46px; color: #fff; letter-spacing: -0.03em; line-height: 1; margin-bottom: 28px; display: flex; align-items: baseline; gap: 2px; }
.plan-cur { color: var(--orange); font-size: 26px; }
.plan-per { font-family: var(--f-body); font-weight: 500; font-size: 15px; color: #777; letter-spacing: 0; margin-left: 6px; }
.plan-feats { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.plan-feats li { position: relative; display: flex; align-items: flex-start; gap: 11px; color: #cfcfcf; font-size: 14.5px; line-height: 1.5; }
.plan-feats li svg { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 1px; }
.plan-cta { text-decoration: none; text-align: center; font-family: var(--f-head); font-weight: 600; font-size: 15px; padding: 14px; border-radius: 9px; transition: all .2s ease; display: block; }
.plan-cta-solid { background: var(--orange); color: #fff; }
.plan-cta-solid:hover { background: var(--orange-d); transform: translateY(-1px); }
.plan-cta-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.plan-cta-ghost:hover { border-color: var(--orange); color: var(--orange); }
.pricing-note { text-align: center; font-family: var(--f-mono); font-size: 11.5px; color: #777; margin: 40px auto 0; max-width: 620px; line-height: 1.6; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 56px; align-items: start; }
.contact-lead { color: #aaa; font-size: 17px; line-height: 1.65; margin: 0 0 32px; max-width: 420px; }
.contact-points { display: flex; flex-direction: column; gap: 14px; }
.cp { display: flex; align-items: center; gap: 11px; color: #ccc; font-size: 14.5px; }
.cp-dot { width: 6px; height: 6px; border-radius: 100px; background: var(--orange); display: inline-block; }
.contact-card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 34px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.flabel { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: #888; display: block; margin-bottom: 8px; }
.finput { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 12px 14px; color: #fff; font-family: var(--f-body); font-size: 15px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.finput:focus { border-color: rgba(255,84,0,0.6); box-shadow: 0 0 0 3px rgba(255,84,0,0.12); }
.fselect { appearance: none; -webkit-appearance: none; }
.fselect option { background: var(--card); }
.ftext { resize: vertical; }
.form-fine { font-family: var(--f-mono); font-size: 11px; color: #777; text-align: center; margin: 2px 0 0; line-height: 1.5; }
.contact-success { text-align: center; padding: 40px 12px; }
.success-icon { width: 60px; height: 60px; border-radius: 100px; background: rgba(255,84,0,0.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.contact-success h3 { font-family: var(--f-head); font-weight: 700; font-size: 24px; color: #fff; margin: 0 0 12px; }
.contact-success p { color: #aaa; font-size: 15.5px; line-height: 1.6; margin: 0 auto; max-width: 340px; }

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: transparent; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 4px; text-align: left; }
.faq-q span:first-child { font-family: var(--f-head); font-weight: 600; font-size: 18px; color: #fff; }
.faq-sign { font-family: var(--f-head); font-weight: 400; font-size: 26px; color: var(--orange); line-height: 1; flex-shrink: 0; width: 24px; text-align: center; }
.faq-a { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .35s ease, opacity .3s ease; }
.faq-item.open .faq-a { max-height: 320px; opacity: 1; }
.faq-a p { color: #aaa; font-size: 15.5px; line-height: 1.7; margin: 0; padding: 0 60px 26px 4px; }

/* ---- Final CTA ---- */
.final-cta { background: var(--orange); padding: 96px 32px; text-align: center; position: relative; overflow: hidden; }
.final-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 54px 54px; -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 30%, transparent 75%); mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 30%, transparent 75%); pointer-events: none; }
.final-inner { position: relative; max-width: 740px; margin: 0 auto; }
.final-logo { display: inline-flex; background: #fff; padding: 14px 22px; border-radius: 10px; margin-bottom: 36px; }
.final-logo img { height: 30px; width: auto; }
.final-title { font-family: var(--f-head); font-weight: 700; font-size: clamp(38px, 5.4vw, 68px); line-height: 1.03; letter-spacing: -0.03em; color: #fff; margin: 0 0 22px; }
.final-sub { color: rgba(255,255,255,0.9); font-size: clamp(16px, 1.7vw, 19px); line-height: 1.6; margin: 0 auto 40px; max-width: 540px; }
.final-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-white { background: #fff; color: #111; text-decoration: none; font-family: var(--f-head); font-weight: 600; font-size: 16px; padding: 16px 28px; border-radius: 8px; display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; transition: transform .2s ease, box-shadow .2s ease; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.18); }
.btn-outline { background: transparent; color: #fff; text-decoration: none; font-family: var(--f-head); font-weight: 600; font-size: 16px; padding: 16px 28px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.6); white-space: nowrap; transition: background .2s ease; }
.btn-outline:hover { background: rgba(255,255,255,0.14); }
.final-fine { font-family: var(--f-mono); font-size: 11.5px; color: rgba(255,255,255,0.8); margin-top: 30px; letter-spacing: 0.04em; }

/* ---- Footer ---- */
.footer { background: #0A0A0A; border-top: 3px solid var(--orange); padding: 64px 32px 36px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand { max-width: 340px; }
.footer-brand img { height: 46px; width: auto; margin-bottom: 24px; }
.footer-brand p { color: #777; font-size: 14.5px; line-height: 1.65; margin: 0; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-h { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.footer-col a { color: #888; text-decoration: none; font-size: 14.5px; transition: color .2s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 28px; }
.footer-bottom p { color: #555; font-size: 13px; margin: 0; font-family: var(--f-mono); }

/* ---- Landing responsive ---- */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 600px) {
  .nav { height: 64px; }
  .nav-inner { padding: 0 18px; gap: 10px; }
  .nav-logo img { height: 26px; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn-primary { display: none; }
  .nav-cta .btn-ghost { padding: 9px 14px; font-size: 13.5px; }

  .sec { padding: 72px 0; }
  .container { padding: 0 20px; }

  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero-actions { gap: 12px; width: 100%; }
  .hero-actions .btn-lg { width: 100%; justify-content: center; box-sizing: border-box; }

  .metrics-grid { grid-template-columns: 1fr 1fr; padding: 32px 20px; }
  .metric { padding: 14px 10px; }
  .metric:nth-child(2n) { border-right: none; }

  .sec-head { gap: 18px; }
  .mb-lg { margin-bottom: 40px; }
  .mb-xl { margin-bottom: 44px; }

  .services-grid { margin-top: 38px; }
  .service-card { padding: 26px 24px; }
  .process-grid { margin-top: 40px; }

  .diffs-grid { grid-template-columns: 1fr; }
  .diff { padding: 30px 26px; }

  .results-grid { grid-template-columns: 1fr 1fr; gap: 30px 12px; }

  .quote-card { padding: 30px 24px; }
  .carousel-nav { margin-top: 22px; }

  .pricing-grid { grid-template-columns: 1fr; gap: 30px; margin-top: 44px; }
  .plan { padding: 32px 26px; }
  .plan-for { min-height: 0; }

  .contact-grid { gap: 40px; }
  .contact-card { padding: 26px 22px; }
  .row2 { grid-template-columns: 1fr; }

  .faq-q span:first-child { font-size: 16.5px; }
  .faq-a p { padding-right: 24px; }

  .final-cta { padding: 72px 22px; }
  .final-actions { flex-direction: column; width: 100%; }
  .btn-white, .btn-outline { width: 100%; justify-content: center; box-sizing: border-box; text-align: center; }

  .footer { padding: 56px 22px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}
@media (max-width: 400px) {
  .nav-logo img { height: 24px; }
  .nav-inner { padding: 0 14px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ====================================================================
   LOGIN PAGE  (only applies on the login screen)
   ==================================================================== */
.login-page { background: var(--bg); color: var(--text); }
.page { display: flex; min-height: 100vh; width: 100%; }

.panel-form { flex: 0 0 480px; max-width: 480px; background: var(--bg); border-right: 1px solid var(--line); display: flex; align-items: center; justify-content: center; padding: 48px 56px; position: relative; z-index: 2; }
.form-inner { width: 100%; max-width: 340px; display: flex; flex-direction: column; }

.brand { display: flex; align-items: center; gap: 14px; margin-bottom: 64px; }
.brand-logo { height: 30px; width: auto; }
.brand-tag { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); padding: 5px 9px; border: 1px solid var(--line); border-radius: 5px; white-space: nowrap; }

.form-head h1 { font-family: var(--f-head); font-weight: 700; font-size: 32px; letter-spacing: -0.025em; margin: 0 0 12px; color: #fff; }
.form-head p { margin: 0 0 38px; color: var(--muted); font-size: 15px; line-height: 1.55; }

.login-form { display: flex; flex-direction: column; }
.field { margin-bottom: 20px; }
.field label, .field-top label { display: block; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 9px; }
.field-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0; }
.field-top label { margin-bottom: 9px; }
.link-muted { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--orange); text-decoration: none; transition: opacity .2s ease; }
.link-muted:hover { opacity: 0.75; }

.login-page input[type="email"], .login-page input[type="password"], .login-page input[type="text"] {
  width: 100%; background: var(--field); border: 1px solid rgba(255,255,255,0.1); border-radius: 9px;
  padding: 13px 15px; color: #fff; font-family: var(--f-body); font-size: 15px; outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.login-page input::placeholder { color: #555; }
.login-page input:focus { border-color: rgba(255,84,0,0.6); box-shadow: 0 0 0 3px rgba(255,84,0,0.12); background: rgba(255,255,255,0.05); }

.pw-wrap { position: relative; }
.pw-wrap input { padding-right: 46px; }
.pw-toggle { position: absolute; top: 50%; right: 6px; transform: translateY(-50%); background: transparent; border: none; color: var(--muted-2); cursor: pointer; padding: 8px; display: flex; align-items: center; justify-content: center; transition: color .2s ease; }
.pw-toggle:hover { color: #fff; }

.remember { display: flex; align-items: center; gap: 10px; cursor: pointer; user-select: none; margin: 4px 0 28px; font-size: 14px; color: var(--muted); }
.remember input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkmark { width: 18px; height: 18px; border: 1px solid var(--line-strong); border-radius: 5px; flex-shrink: 0; position: relative; transition: all .18s ease; }
.remember input:checked + .checkmark { background: var(--orange); border-color: var(--orange); }
.checkmark::after { content: ""; position: absolute; left: 5.5px; top: 2px; width: 4px; height: 8px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg) scale(0); transition: transform .18s ease; }
.remember input:checked + .checkmark::after { transform: rotate(45deg) scale(1); }

.btn-submit { width: 100%; background: var(--orange); color: #fff; border: none; font-family: var(--f-head); font-weight: 600; font-size: 15.5px; padding: 15px; border-radius: 9px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 9px; white-space: nowrap; transition: background .2s ease, transform .15s ease, box-shadow .2s ease; }
.btn-submit:hover { background: var(--orange-d); transform: translateY(-1px); box-shadow: 0 10px 26px rgba(255,84,0,0.25); }
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { opacity: 0.7; cursor: default; transform: none; box-shadow: none; }
.btn-submit .btn-arrow { font-size: 17px; transition: transform .2s ease; }
.btn-submit:hover .btn-arrow { transform: translateX(3px); }
.btn-submit.loading .btn-label, .btn-submit.loading .btn-arrow { display: none; }
.btn-submit.loading::after { content: ""; width: 17px; height: 17px; border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }

.secure-note { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--f-mono); font-size: 11px; color: var(--muted-2); margin: 22px 0 0; }
.lock-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 8px rgba(255,84,0,0.8); }

.form-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); font-family: var(--f-mono); font-size: 11px; color: var(--muted-2); }
.form-foot a { text-decoration: none; transition: color .2s ease; }
.form-foot a:hover { color: #fff; }

.panel-globe { flex: 1 1 auto; position: relative; overflow: hidden; background: radial-gradient(ellipse 90% 80% at 62% 42%, #161310 0%, #0b0b0b 55%, #080808 100%); min-width: 0; }
.globe-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px); background-size: 58px 58px; -webkit-mask-image: radial-gradient(ellipse 70% 70% at 62% 42%, #000 25%, transparent 75%); mask-image: radial-gradient(ellipse 70% 70% at 62% 42%, #000 25%, transparent 75%); pointer-events: none; }
.globe-glow { position: absolute; top: 42%; left: 62%; width: 70%; height: 70%; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(255,84,0,0.20) 0%, rgba(255,84,0,0.05) 38%, transparent 65%); filter: blur(10px); pointer-events: none; }
#globe { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

.globe-overlay { position: absolute; inset: 0; padding: 44px 52px; display: flex; flex-direction: column; justify-content: space-between; pointer-events: none; z-index: 3; }
.mono-label { display: inline-flex; align-items: center; gap: 9px; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #8a8a8a; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(255,84,0,0.6); animation: pulse 2s infinite; }
.overlay-bottom { max-width: 460px; }
.overlay-bottom h2 { font-family: var(--f-head); font-weight: 700; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.04; letter-spacing: -0.03em; margin: 0 0 18px; color: #fff; }
.overlay-bottom > p { margin: 0 0 32px; color: #b4b4b4; font-size: 16px; line-height: 1.6; }
.overlay-stats { display: flex; gap: 38px; flex-wrap: wrap; }
.stat strong { display: block; font-family: var(--f-head); font-weight: 700; font-size: 27px; letter-spacing: -0.02em; color: #fff; }
.stat span { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-2); margin-top: 5px; display: block; }

@media (max-width: 940px) {
  .login-page { overflow-x: hidden; }
  .page { flex-direction: column; min-height: 100vh; align-items: center; justify-content: center; }
  .panel-globe { display: none; }
  .panel-form { flex: 1 1 auto; max-width: none; width: 100%; border-right: none; padding: 56px 26px; }
  .form-inner { max-width: 400px; margin: 0 auto; width: 100%; }
  .brand { margin-bottom: 32px; }
  .form-head h1 { font-size: 30px; }
  .form-head p { margin-bottom: 30px; }
}
@media (max-width: 420px) {
  .panel-form { padding: 40px 22px; }
  .form-head h1 { font-size: 27px; }
  .brand { margin-bottom: 26px; }
  .form-foot { flex-direction: column; gap: 12px; align-items: flex-start; }
}
