/* Beetel Softwares — global stylesheet (no frameworks) */

:root {
  --primary: #2563eb;
  --secondary: #7c3aed;
  --accent: #06b6d4;
  --highlight: #f59e0b;
  --bg: #f8fafc;
  --dark: #0f172a;
  --card: rgba(255, 255, 255, 0.85);
  --border: #e2e8f0;
  --text: #0f172a;
  --muted: #64748b;
  --radius: 16px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 4px 14px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 24px 60px -20px rgba(37, 99, 235, 0.35);
  --maxw: 1200px;
  --nav-h: 74px;
  --grad: linear-gradient(120deg, var(--primary), var(--secondary) 55%, var(--accent));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .6rem; letter-spacing: -0.025em; font-weight: 800; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.18rem; }
p { margin: 0 0 1rem; color: var(--muted); }

.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section--dark { background: var(--dark); color: #fff; }
.section--dark p { color: #94a3b8; }
.section--tint { background: linear-gradient(180deg, #fff, var(--bg)); }
.center { text-align: center; }
.narrow { max-width: 760px; margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--primary); background: rgba(37, 99, 235, .09);
  border: 1px solid rgba(37, 99, 235, .18); border-radius: 999px; padding: .35rem .8rem;
  margin-bottom: 1rem;
}
.section--dark .eyebrow { color: #a5b4fc; background: rgba(124, 58, 237, .18); border-color: rgba(148, 163, 184, .25); }

.gradient-text {
  background: var(--grad);
  background-size: 220% 220%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradientShift 9s ease infinite;
}
@keyframes gradientShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.4rem; border-radius: 12px; font-weight: 650; font-size: .95rem;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  min-height: 46px;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--grad); background-size: 180% 180%; color: #fff; box-shadow: var(--shadow-lg); }
.btn--ghost { background: rgba(255,255,255,.7); color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn--light { background: #fff; color: var(--dark); }
.btn--outline-light { border-color: rgba(255,255,255,.35); color: #fff; background: rgba(255,255,255,.06); }
.btn--sm { padding: .6rem 1rem; font-size: .87rem; min-height: 40px; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* Navbar */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(248, 250, 252, .55);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent; transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.nav.is-stuck { background: rgba(255,255,255,.82); border-bottom-color: var(--border); box-shadow: 0 8px 30px -18px rgba(15,23,42,.4); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 800; color: var(--text); font-size: 1.05rem; letter-spacing: -.02em; }
.brand:hover { text-decoration: none; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 10px; background: var(--grad); background-size: 200% 200%;
  display: grid; place-items: center; color: #fff; font-size: .95rem; font-weight: 800;
  animation: gradientShift 8s ease infinite; flex: 0 0 auto;
}
.nav__links { display: flex; align-items: center; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  color: var(--muted); font-weight: 600; font-size: .93rem; padding: .5rem .8rem; border-radius: 9px;
  transition: color .18s ease, background .18s ease;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--text); background: rgba(37, 99, 235, .08); text-decoration: none; }
.nav__cta { display: flex; align-items: center; gap: .6rem; }
.nav__toggle {
  display: none; width: 44px; height: 44px; border-radius: 11px; border: 1px solid var(--border);
  background: #fff; cursor: pointer; position: relative;
}
.nav__toggle span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav__toggle span:nth-child(1) { top: 15px; } .nav__toggle span:nth-child(2) { top: 21px; } .nav__toggle span:nth-child(3) { top: 27px; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(255,255,255,.97); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem 1.6rem; display: none; flex-direction: column; gap: .4rem;
    max-height: calc(100dvh - var(--nav-h)); overflow: auto;
  }
  .nav.is-open .nav__menu { display: flex; }
  .nav__links { flex-direction: column; align-items: stretch; }
  .nav__links a { padding: .8rem .9rem; font-size: 1rem; }
  .nav__menu .btn { width: 100%; }
  .nav__cta .btn { display: none; }
}
@media (min-width: 941px) { .nav__menu { display: flex; align-items: center; gap: 1rem; } }

main { padding-top: var(--nav-h); }

/* Hero — split screen */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 7vw, 6rem); }
.hero::before {
  content: ""; position: absolute; inset: -30% -10% auto -20%; height: 120%;
  background:
    radial-gradient(45rem 30rem at 15% 10%, rgba(37, 99, 235, .16), transparent 60%),
    radial-gradient(38rem 26rem at 85% 25%, rgba(124, 58, 237, .18), transparent 62%),
    radial-gradient(30rem 22rem at 65% 85%, rgba(6, 182, 212, .16), transparent 60%);
  animation: floatSlow 18s ease-in-out infinite alternate; pointer-events: none;
}
@keyframes floatSlow { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-2%, 2%, 0) scale(1.06); } }
.hero__grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 1000px) { .hero__grid { grid-template-columns: 1fr; } }
.hero h1 { margin-bottom: 1.1rem; }
.hero__lead { font-size: 1.08rem; max-width: 34rem; }
.typed { color: var(--primary); font-weight: 700; }
.typed::after { content: "|"; margin-left: 2px; animation: caret 1s steps(1) infinite; color: var(--accent); }
@keyframes caret { 50% { opacity: 0; } }

.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2.4rem; }
.stat {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.1rem 1.2rem; backdrop-filter: blur(8px); box-shadow: var(--shadow-sm);
}
.stat__num { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 850; letter-spacing: -.03em; }
.stat__label { font-size: .82rem; color: var(--muted); font-weight: 600; }

/* Hero workspace visual */
.workspace { position: relative; min-height: 520px; }
@media (max-width: 1000px) { .workspace { min-height: 470px; margin-top: 1rem; } }
.panel {
  position: absolute; background: rgba(255,255,255,.9); border: 1px solid var(--border);
  border-radius: 14px; box-shadow: 0 20px 50px -24px rgba(15, 23, 42, .45);
  backdrop-filter: blur(10px); padding: .8rem .9rem; font-size: .78rem;
  animation: bob 7s ease-in-out infinite;
}
.panel__title { display: flex; align-items: center; gap: .45rem; font-weight: 700; font-size: .74rem; color: var(--muted); margin-bottom: .55rem; text-transform: uppercase; letter-spacing: .08em; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.panel--editor { left: 0; top: 4%; width: 62%; animation-delay: -.4s; background: #0b1224; border-color: #1e293b; color: #cbd5e1; }
.panel--editor .panel__title { color: #64748b; }
.panel--editor code { display: block; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .74rem; line-height: 1.75; white-space: pre; overflow: hidden; }
.tok-k { color: #a78bfa; } .tok-s { color: #34d399; } .tok-f { color: #60a5fa; } .tok-c { color: #475569; }

.panel--api { right: 0; top: 0; width: 46%; animation-delay: -2.2s; }
.api-row { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .28rem 0; border-bottom: 1px dashed var(--border); }
.api-row:last-child { border-bottom: 0; }
.pill { font-size: .66rem; font-weight: 800; padding: .1rem .45rem; border-radius: 6px; letter-spacing: .04em; }
.pill--ok { background: rgba(16, 185, 129, .14); color: #047857; }
.pill--get { background: rgba(37, 99, 235, .12); color: var(--primary); }
.pill--post { background: rgba(245, 158, 11, .16); color: #b45309; }

.panel--chart { right: 4%; top: 33%; width: 50%; animation-delay: -1.2s; }
.bars { display: flex; align-items: flex-end; gap: 6px; height: 74px; }
.bars i { flex: 1; background: var(--grad); border-radius: 4px 4px 2px 2px; animation: grow 3.4s ease-in-out infinite; transform-origin: bottom; }
.bars i:nth-child(2n) { opacity: .75; animation-delay: -.5s; }
.bars i:nth-child(3n) { animation-delay: -1.1s; }
@keyframes grow { 0%,100% { transform: scaleY(.55); } 50% { transform: scaleY(1); } }

.panel--cloud { left: 6%; bottom: 16%; width: 44%; animation-delay: -3s; }
.nodes { display: flex; align-items: center; gap: .45rem; }
.node { flex: 1; text-align: center; padding: .35rem .2rem; border: 1px solid var(--border); border-radius: 9px; font-weight: 700; font-size: .68rem; background: #fff; }
.node::before { content: ""; display: block; width: 7px; height: 7px; border-radius: 50%; background: #10b981; margin: 0 auto .25rem; animation: pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,.5); } 60% { box-shadow: 0 0 0 7px rgba(16,185,129,0); } }

.panel--db { left: 2%; bottom: 2%; width: 40%; animation-delay: -4.4s; }
.db-line { display: flex; align-items: center; gap: .4rem; font-size: .72rem; color: var(--muted); }
.db-line span { height: 2px; flex: 1; background: linear-gradient(90deg, var(--accent), transparent); animation: flow 2.4s linear infinite; background-size: 200% 100%; }
@keyframes flow { to { background-position: -200% 0; } }

.panel--mobile { right: 2%; bottom: 4%; width: 30%; animation-delay: -5.2s; border-radius: 20px; padding: .6rem; }
.phone { border-radius: 14px; background: linear-gradient(160deg, #eef2ff, #ecfeff); border: 1px solid var(--border); padding: .55rem; }
.phone b { display: block; font-size: .72rem; margin-bottom: .35rem; }
.phone i { display: block; height: 7px; border-radius: 4px; background: #dbeafe; margin-bottom: 5px; }
.phone i:nth-child(3) { width: 70%; background: #e9d5ff; }
.phone i:nth-child(4) { width: 45%; background: #cffafe; }

.panel--chat { right: 30%; bottom: 26%; width: 36%; animation-delay: -6s; }
.bubble { background: rgba(37, 99, 235, .1); border-radius: 10px 10px 10px 3px; padding: .35rem .55rem; font-size: .72rem; color: var(--text); margin-bottom: .35rem; }
.bubble--me { background: rgba(124, 58, 237, .12); border-radius: 10px 10px 3px 10px; text-align: right; }
.typing i { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--muted); margin-right: 3px; animation: bounce 1.2s infinite; }
.typing i:nth-child(2) { animation-delay: .15s; } .typing i:nth-child(3) { animation-delay: .3s; }
@keyframes bounce { 0%,60%,100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-4px); opacity: 1; } }

.panel--flow { left: 30%; top: 44%; width: 38%; animation-delay: -2.8s; }
.flow-step { display: flex; align-items: center; gap: .45rem; font-size: .72rem; font-weight: 600; padding: .18rem 0; }
.flow-step em { width: 18px; height: 18px; border-radius: 6px; background: rgba(6,182,212,.16); color: #0e7490; font-style: normal; font-size: .62rem; display: grid; place-items: center; font-weight: 800; }

@media (max-width: 560px) {
  .panel { font-size: .7rem; }
  .panel--chat, .panel--flow { display: none; }
  .panel--editor { width: 78%; }
  .panel--api { width: 56%; }
  .panel--chart { width: 62%; }
  .panel--cloud { width: 60%; }
  .panel--db { width: 56%; }
  .panel--mobile { width: 36%; }
}

/* Cards & grids */
.grid { display: grid; gap: 1.2rem; }
.grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 960px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; backdrop-filter: blur(8px); box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,.3); }
.card h3 { margin-bottom: .35rem; }
.card p { margin-bottom: 0; font-size: .93rem; }
.card__icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(37,99,235,.14), rgba(124,58,237,.14));
  color: var(--primary); margin-bottom: .9rem; font-size: 1.25rem;
}
.section--dark .card { background: rgba(255,255,255,.05); border-color: rgba(148,163,184,.2); color: #fff; }
.section--dark .card p { color: #94a3b8; }
.card--service ul { margin: .9rem 0 1.1rem; padding-left: 1.1rem; color: var(--muted); font-size: .92rem; }
.card--service li { margin-bottom: .25rem; }

.list-check { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.list-check li { position: relative; padding-left: 1.6rem; margin-bottom: .5rem; color: var(--muted); }
.list-check li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 800; }

/* Process timeline */
.timeline { position: relative; margin-top: 2.5rem; padding-left: 2.4rem; }
.timeline::before { content: ""; position: absolute; left: 11px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.timeline__progress { position: absolute; left: 11px; top: 6px; width: 2px; background: var(--grad); height: 0; transition: height .2s linear; }
.tl-item { position: relative; margin-bottom: 1.6rem; opacity: .45; transition: opacity .35s ease, transform .35s ease; transform: translateY(8px); }
.tl-item.is-active { opacity: 1; transform: none; }
.tl-item::before {
  content: ""; position: absolute; left: -2.4rem; top: 6px; width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 2px solid var(--border); transition: border-color .3s ease, box-shadow .3s ease;
}
.tl-item.is-active::before { border-color: var(--primary); box-shadow: 0 0 0 6px rgba(37,99,235,.12); }
.tl-item h3 { margin-bottom: .2rem; }
.tl-item p { margin: 0; font-size: .93rem; }

/* Marquee */
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 1rem; width: max-content; animation: slide 28s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.tech-chip {
  display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap;
  padding: .7rem 1.15rem; border-radius: 999px; border: 1px solid var(--border);
  background: rgba(255,255,255,.85); font-weight: 650; font-size: .92rem;
  transition: transform .18s ease, border-color .18s ease, color .18s ease;
}
.tech-chip:hover { transform: translateY(-4px) scale(1.04); border-color: var(--primary); color: var(--primary); }

/* Industries */
.industry {
  display: block; border-radius: var(--radius); border: 1px solid var(--border); padding: 1.4rem;
  background: linear-gradient(150deg, #fff, #f1f5f9); color: var(--text);
  transition: transform .22s ease, box-shadow .22s ease; position: relative; overflow: hidden;
}
.industry:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); text-decoration: none; }
.industry::after {
  content: ""; position: absolute; right: -30px; bottom: -30px; width: 120px; height: 120px; border-radius: 50%;
  background: var(--grad); opacity: .12; transition: transform .3s ease;
}
.industry:hover::after { transform: scale(1.35); }
.industry span { font-size: 1.6rem; }
.industry h3 { margin: .5rem 0 .2rem; }
.industry p { font-size: .9rem; margin: 0; }

/* Projects slider */
.slider { position: relative; }
.slider__viewport { overflow: hidden; border-radius: var(--radius); }
.slider__track { display: flex; transition: transform .5s cubic-bezier(.22,.8,.3,1); }
.slide { min-width: 100%; padding: .25rem; }
.project { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1.6rem; align-items: center; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; }
@media (max-width: 860px) { .project { grid-template-columns: 1fr; } }
.mockups { display: grid; grid-template-columns: 1fr auto; gap: .7rem; align-items: end; }
.mock-desktop { background: #0b1224; border-radius: 12px; padding: .5rem; }
.mock-desktop b { display: block; height: 8px; width: 40px; border-radius: 4px; background: #334155; margin-bottom: .45rem; }
.mock-screen { border-radius: 8px; height: 120px; background: linear-gradient(135deg, #1e3a8a, #6d28d9 60%, #0e7490); position: relative; overflow: hidden; }
.mock-screen::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.28) 50%, transparent 60%); animation: sheen 4s linear infinite; }
@keyframes sheen { to { transform: translateX(120%); } }
.mock-side { display: grid; gap: .5rem; }
.mock-tablet { width: 78px; height: 96px; border-radius: 10px; background: #0b1224; padding: .35rem; }
.mock-phone { width: 52px; height: 92px; border-radius: 12px; background: #0b1224; padding: .3rem; }
.mock-inner { height: 100%; border-radius: 7px; background: linear-gradient(160deg, #38bdf8, #a78bfa); opacity: .85; }
.tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: .8rem 0 1rem; }
.tag { font-size: .74rem; font-weight: 700; padding: .22rem .6rem; border-radius: 999px; background: rgba(6,182,212,.12); color: #0e7490; }
.slider__nav { display: flex; gap: .5rem; justify-content: center; margin-top: 1.2rem; }
.slider__dot { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--border); cursor: pointer; padding: 0; }
.slider__dot.is-active { background: var(--primary); width: 26px; border-radius: 999px; }

/* Testimonials */
.testi {
  background: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.6);
  backdrop-filter: blur(14px); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm);
  min-width: 340px; max-width: 340px;
}
@media (max-width: 560px) { .testi { min-width: 84vw; max-width: 84vw; } }
.testi__head { display: flex; align-items: center; gap: .7rem; margin-bottom: .7rem; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; background: var(--grad); flex: 0 0 auto; }
.stars { color: var(--highlight); letter-spacing: .1em; font-size: .85rem; }
.testi p { color: var(--text); font-size: .93rem; margin: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 1.6rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-row { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: 1rem; }
.info-row span:first-child { font-size: 1.1rem; }
.map { border: 0; width: 100%; height: 260px; border-radius: 12px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
label { font-size: .82rem; font-weight: 700; }
input, select, textarea {
  font: inherit; font-size: .95rem; padding: .75rem .85rem; border-radius: 11px;
  border: 1px solid var(--border); background: #fff; color: var(--text); width: 100%;
  transition: border-color .18s ease, box-shadow .18s ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(37,99,235,.14); }
textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--muted); margin: .8rem 0 0; }
.socials { display: flex; gap: .5rem; flex-wrap: wrap; }
.socials a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--border); display: grid; place-items: center; background: #fff; }
.socials a:hover { border-color: var(--primary); text-decoration: none; }

/* CTA banner */
.cta-banner {
  border-radius: 24px; padding: clamp(2.2rem, 5vw, 3.6rem); text-align: center; color: #fff;
  background: linear-gradient(125deg, #0f172a, #1e3a8a 45%, #4c1d95 80%);
  background-size: 200% 200%; animation: gradientShift 12s ease infinite; box-shadow: var(--shadow-lg);
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: #cbd5e1; }
.cta-banner .btn-row { justify-content: center; }

/* Footer */
.footer { background: var(--dark); color: #cbd5e1; padding: 3.5rem 0 6.5rem; }
@media (min-width: 861px) { .footer { padding-bottom: 2.5rem; } }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: .8rem; }
.footer a { color: #94a3b8; font-size: .92rem; display: inline-block; padding: .15rem 0; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2rem; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer .brand { color: #fff; }
.footer p { color: #94a3b8; font-size: .92rem; }
.newsletter { display: flex; gap: .5rem; margin-top: .6rem; }
.newsletter input { background: rgba(255,255,255,.07); border-color: rgba(148,163,184,.25); color: #fff; }
.newsletter input::placeholder { color: #64748b; }
.footer__bottom { border-top: 1px solid rgba(148,163,184,.2); margin-top: 2.4rem; padding-top: 1.2rem; display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between; font-size: .85rem; }

/* Mobile action bar */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; display: none;
  grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border);
  border-top: 1px solid var(--border); box-shadow: 0 -8px 24px -14px rgba(15,23,42,.4);
}
.mobile-bar a {
  background: #fff; color: var(--text); text-align: center; padding: .7rem .3rem;
  font-size: .78rem; font-weight: 700; min-height: 58px; display: grid; place-items: center; gap: 2px;
}
.mobile-bar a:hover { text-decoration: none; }
.mobile-bar a span { font-size: 1.05rem; }
@media (max-width: 860px) { .mobile-bar { display: grid; } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,.8,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Legal pages */
.legal h2 { font-size: 1.35rem; margin-top: 2rem; }
.legal p, .legal li { color: var(--muted); }
.legal ul { padding-left: 1.2rem; }

.skip-link { position: absolute; left: -9999px; top: 0; background: #fff; padding: .7rem 1rem; z-index: 100; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid rgba(37,99,235,.5); outline-offset: 2px; border-radius: 6px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (min-width: 941px) { .nav__menu > .btn { display: none; } }
