/* ══════════════════════════════════════
   TOKENS
══════════════════════════════════════ */
:root {
  --navy: #0B1628;
  --blue: #1A3A6B;
  --accent: #2563EB;
  --accent2: #1d4fd8;
  --white: #FFFFFF;
  --ice: #E8EEF8;
  --muted: #8A9ABB;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --font: 'DM Sans', sans-serif;
}

/* ══════════════════════════════════════
   RESET
══════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════
   LAYOUT
══════════════════════════════════════ */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .wrap {
    padding: 0 40px;
  }
}

@media (min-width: 1280px) {
  .wrap {
    padding: 0 60px;
  }
}

/* ══════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════ */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
}

h2 {
  font-size: clamp(28px, 3.5vw, 52px);
}

h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
}

p {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.22s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-blue {
  background: var(--accent);
  color: #fff;
  padding: 15px 30px;
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
}

.btn-blue:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 18px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}

#nav.scrolled {
  background: rgba(11, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
}

.logo-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
}

.logo-bars span {
  width: 5px;
  border-radius: 2px;
  background: var(--accent);
}

.logo-bars span:nth-child(1) {
  height: 9px;
  background: #1A3A6B;
}

.logo-bars span:nth-child(2) {
  height: 14px;
}

.logo-bars span:nth-child(3) {
  height: 20px;
  background: #fff;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 36px;
  align-items: center;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

@media (min-width: 900px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  background: rgba(11, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  padding: 24px 20px 32px;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  z-index: 199;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: #fff;
}

.mobile-menu .btn-blue {
  margin-top: 8px;
  border-radius: 10px;
  justify-content: center;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: saturate(0.4);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(11, 22, 40, 0.97) 0%, rgba(11, 22, 40, 0.85) 50%, rgba(26, 58, 107, 0.3) 100%);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

#hero .wrap {
  position: relative;
  z-index: 2;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #7BA7F7;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-title {
  margin-bottom: 24px;
  color: #fff;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-avatars {
  display: flex;
}

.trust-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-left: -10px;
}

.trust-avatars span:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.trust-text strong {
  color: #fff;
}

.hero-visual {
  position: relative;
}

.hero-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

@media (max-width: 899px) {
  .hero-img-wrap {
    height: 280px;
    border-radius: 16px;
  }
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(11, 22, 40, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-icon {
  width: 38px;
  height: 38px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.badge-label {
  font-size: 11px;
  color: var(--muted);
}

.badge-val {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.hero-stat-card {
  position: absolute;
  top: 20px;
  right: -20px;
  background: rgba(11, 22, 40, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
}

@media (max-width: 899px) {
  .hero-stat-card {
    display: none;
  }
}

.stat-val {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.stat-lbl {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
#strip {
  padding: 28px 0;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════
   PAIN
══════════════════════════════════════ */
#pain {
  padding: 100px 0;
  background: #080f1e;
}

.section-head {
  max-width: 580px;
  margin-bottom: 64px;
}

.section-head h2 {
  margin-bottom: 16px;
}

.section-head p {
  font-size: 17px;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

@media (min-width: 700px) {
  .pain-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.pain-item {
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.025);
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.pain-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pain-item:hover {
  background: rgba(37, 99, 235, 0.06);
}

.pain-item:hover::after {
  transform: scaleX(1);
}

.pain-num {
  font-size: 52px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.pain-item h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 20px;
}

.pain-item p {
  font-size: 15px;
}

/* ══════════════════════════════════════
   SOLUTION
══════════════════════════════════════ */
#solution {
  padding: 100px 0;
  background: var(--navy);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 900px) {
  .solution-grid {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
  }
}

.solution-img {
  border-radius: 20px;
  overflow: hidden;
  height: 480px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.solution-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-img-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--accent);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.solution-text h2 {
  margin-bottom: 20px;
}

.solution-text .lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  line-height: 1.7;
}

.solution-text p {
  margin-bottom: 16px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0 40px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(37, 99, 235, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 1px;
}

/* ══════════════════════════════════════
   WHY
══════════════════════════════════════ */
#why {
  padding: 100px 0;
  background: #080f1e;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 64px;
}

@media (min-width: 700px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.why-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(37, 99, 235, 0.05);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(37, 99, 235, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.why-card h3 {
  margin-bottom: 12px;
  color: #fff;
}

.why-card p {
  font-size: 15px;
  line-height: 1.75;
}

/* ══════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════ */
#portfolio {
  padding: 100px 0;
  background: var(--navy);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 64px;
}

@media (min-width: 700px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #0e1c33;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.portfolio-img {
  height: 220px;
  overflow: hidden;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-img img {
  transform: scale(1.05);
}

.portfolio-info {
  padding: 24px 24px 28px;
}

.portfolio-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.portfolio-info h3 {
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
}

.portfolio-info p {
  font-size: 14px;
  color: var(--muted);
}

/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
#reviews {
  padding: 100px 0;
  background: #080f1e;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 64px;
}

@media (min-width: 700px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color 0.25s;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
}

.stars {
  color: #F59E0B;
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.review-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 28px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-ava {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.reviewer-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ══════════════════════════════════════
   STEPS
══════════════════════════════════════ */
#steps {
  padding: 100px 0;
  background: var(--navy);
}

.steps-img-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 64px;
}

@media (min-width: 900px) {
  .steps-img-row {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.steps-image {
  border-radius: 20px;
  overflow: hidden;
  height: 440px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.steps-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps-list {
  display: flex;
  flex-direction: column;
}

.step-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.step-item:last-child {
  border-bottom: none;
}

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(37, 99, 235, 0.35);
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 2px;
}

.step-body h3 {
  font-size: 17px;
  margin-bottom: 6px;
  color: #fff;
}

.step-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
#cta-banner {
  padding: 0 0 100px;
  background: var(--navy);
}

.cta-box {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.cta-box-img {
  position: absolute;
  inset: 0;
}

.cta-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 22, 40, 0.97) 40%, rgba(11, 22, 40, 0.5) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 64px 48px;
  max-width: 600px;
}

@media (max-width: 600px) {
  .cta-content {
    padding: 48px 28px;
  }
}

.cta-content h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 3.5vw, 46px);
}

.cta-content h2 em {
  font-style: normal;
  color: var(--accent);
}

.cta-content p {
  margin-bottom: 36px;
  font-size: 17px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-perks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.cta-perk {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.cta-perk::before {
  content: '✓';
  color: #4ADE80;
  font-weight: 700;
  font-size: 12px;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
#contact {
  padding: 100px 0;
  background: #080f1e;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info p {
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-val {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-input:focus {
  border-color: rgba(37, 99, 235, 0.6);
}

textarea.form-input {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border-radius: 10px;
}

/* Form states */
.form-submit.loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

#form-success {
  display: none;
  padding: 36px 32px;
  background: rgba(74, 222, 128, 0.07);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 14px;
  text-align: center;
  margin-top: 8px;
}

#form-success h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

#form-success p {
  font-size: 15px;
  color: var(--muted);
}

#form-error {
  display: none;
  padding: 16px 20px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 10px;
  font-size: 14px;
  color: #FCA5A5;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: #040a14;
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim {
  opacity: 0;
  animation: fadeUp 0.65s ease forwards;
}

.d1 {
  animation-delay: 0.10s;
}

.d2 {
  animation-delay: 0.22s;
}

.d3 {
  animation-delay: 0.34s;
}

.d4 {
  animation-delay: 0.46s;
}

.d5 {
  animation-delay: 0.58s;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   UTILITIES
══════════════════════════════════════ */
.text-accent {
  color: var(--accent);
}

.light-text {
  color: rgba(255, 255, 255, 0.55);
}