/* ═══════════════════════════════════════════
   EVR — styles.css
   ═══════════════════════════════════════════ */


/* ── CUSTOM PROPERTIES ────────────────────── */

:root {
  --primary:     #0052CC;
  --accent:      #00D9FF;
  --white:       #FFFFFF;
  --dark:        #0d0d14;
  --section-alt: #0f0f1a;
  --dark-mid:    #0a0a0f;
  --mid:         #13131f;
  --text:        #e8eaf0;
  --muted:       #7a8099;
  --border:      rgba(255, 255, 255, 0.07);
}


/* ── RESET & BASE ─────────────────────────── */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul  { list-style: none; }
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }


/* ── TYPOGRAPHY ───────────────────────────── */

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--white);
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
}

p {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
  max-width: 58ch;
  color: var(--text);
}

small,
.label-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* ── ACCESSIBILITY ────────────────────────── */

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}


/* ── LAYOUT UTILITIES ─────────────────────── */

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
}

section {
  padding: 120px 5vw;
}

#services,
#about,
#contact {
  scroll-margin-top: 80px;
}


/* ── GRIDS ────────────────────────────────── */

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
}


/* ── SECTION LABELS (EYEBROWS) ────────────── */

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}


/* ── BUTTONS ──────────────────────────────── */

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}


/* ── NAVIGATION ───────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 13, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-logo-fallback {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-logo-fallback .accent-dot {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-dropdown {
  display: none;
  flex-direction: column;
  padding: 24px 5vw 28px;
  background: var(--section-alt);
  border-top: 1px solid var(--border);
}

.nav-dropdown.open { display: flex; }

.nav-dropdown .nav-link {
  font-size: 1rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.nav-dropdown .nav-link:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}


/* ── HERO ─────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  padding: 100px 5vw 120px;
  overflow: hidden;
}

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

.hero-inner h1 {
  max-width: 16ch;
  margin-bottom: 28px;
}

.hero-subheading {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 44px;
  max-width: 52ch;
}

.hero-visual {
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 50% at 72% 45%, rgba(0, 82, 204, 0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-inner h1 { max-width: none; }
  .hero-visual {
    max-width: 440px;
    margin: 0 auto;
  }
  .hero { padding-top: 120px; align-items: flex-start; }
}


/* ── HERO SVG KEYFRAMES ───────────────────── */

@keyframes hub-glow {
  0%, 100% { opacity: 0.82; }
  50%       { opacity: 1; }
}

@keyframes hub-ring-pulse {
  0%, 100% { opacity: 0.12; }
  50%       { opacity: 0.38; }
}

@keyframes node-pulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

@keyframes spoke-flash {
  0%, 100% { opacity: 0.28; }
  50%       { opacity: 0.55; }
}

.hub-node       { animation: hub-glow        2.4s ease-in-out infinite; }
.hub-ring       { animation: hub-ring-pulse  2.4s ease-in-out infinite; }
.node-primary   { animation: node-pulse      3s   ease-in-out infinite; }
.node-secondary { animation: node-pulse      3.6s ease-in-out infinite 0.4s; }
.spoke-line     { animation: spoke-flash     2.8s ease-in-out infinite; }


/* ── ABOUT SVG KEYFRAMES ──────────────────── */

@keyframes box-glow {
  0%, 100% { opacity: 0.75; }
  50%       { opacity: 1; }
}

@keyframes junction-blink {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.about-box-main { animation: box-glow       2.8s ease-in-out infinite; }
.about-junction { animation: junction-blink 2s   ease-in-out infinite; }


/* ── VALUE PROPS ──────────────────────────── */

.value-props {
  background:
    radial-gradient(ellipse 60% 70% at 25% 55%, rgba(0, 82, 204, 0.08) 0%, transparent 65%),
    var(--section-alt);
}

.value-props-header { margin-bottom: 48px; }
.value-props-header h2 { max-width: 22ch; }

.value-card {
  position: relative;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}

.value-card:hover::before  { opacity: 1; }
.value-card:hover { border-color: rgba(255, 255, 255, 0.12); }

.value-card-icon {
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.value-card h3 { margin-bottom: 12px; }

.value-card p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: none;
}


/* ── ABOUT ────────────────────────────────── */

.about { background: var(--dark); }

.about-grid { align-items: center; }

.about h2 {
  max-width: 20ch;
  margin-bottom: 28px;
}

.about p {
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 52ch;
}

.about p:last-of-type { margin-bottom: 0; }

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.about-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .about-text  { order: 1; }
  .about-visual { order: 2; margin-top: 48px; }
}


/* ── SERVICES ─────────────────────────────── */

.services { background: var(--section-alt); }

.services-header { margin-bottom: 48px; }
.services-header h2 { max-width: 22ch; }

.services .grid-2 { align-items: start; }

.service-card {
  position: relative;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px 40px;
  overflow: hidden;
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover::before { opacity: 1; }
.service-card:hover { border-color: rgba(255, 255, 255, 0.14); }

.service-icon {
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--muted);
  max-width: none;
  margin-bottom: 36px;
  flex: 1;
}


/* ── CTA STRIP ────────────────────────────── */

.cta-strip {
  background: var(--section-alt);
  text-align: center;
}

.cta-strip-inner {
  max-width: 680px;
  margin: 0 auto;
}

.cta-strip .section-label { justify-content: center; }
.cta-strip h2 { margin-bottom: 16px; }

.cta-strip p {
  color: var(--muted);
  max-width: none;
  margin: 0 auto 40px;
}

.cta-strip-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ── FOOTER ───────────────────────────────── */

footer {
  padding: 60px 5vw;
  background: var(--section-alt);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-brand .accent-dot { color: var(--accent); }

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

.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-email a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-email a:hover { color: var(--accent); }

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: none;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-links { flex-wrap: wrap; gap: 16px 24px; }
}


/* ── HERO LOGO GLOW ───────────────────────── */

.hero-logo-glow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 380px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

/* Static ambient glow behind the logo */
.hero-logo-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 82, 204, 0.2) 0%, transparent 68%);
  z-index: 0;
}

.hero-logo-img {
  position: relative;
  z-index: 2;
  width: 58%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 32px rgba(0, 82, 204, 0.5));
}

.glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 175px;
  height: 175px;
  border-radius: 50%;
  border-width: 1px;
  border-style: solid;
  z-index: 1;
}

.glow-ring--1 {
  border-color: rgba(0, 217, 255, 0.55);
  animation: ring-expand 3.8s ease-out infinite 0s;
}

.glow-ring--2 {
  border-color: rgba(0, 82, 204, 0.5);
  animation: ring-expand 3.8s ease-out infinite 1.27s;
}

.glow-ring--3 {
  border-color: rgba(0, 217, 255, 0.3);
  animation: ring-expand 3.8s ease-out infinite 2.53s;
}

@keyframes ring-expand {
  0%   { transform: translate(-50%, -50%) scale(0.48); opacity: 0.85; }
  75%  { opacity: 0.2; }
  100% { transform: translate(-50%, -50%) scale(1.7);  opacity: 0; }
}


/* ── TESTIMONIALS ─────────────────────────── */

.testimonials { background: var(--dark); }

.testimonials-header { margin-bottom: 48px; }

.testimonials-header h2 { max-width: 28ch; }

.testimonial-card {
  position: relative;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}

.testimonial-card:hover::before { opacity: 1; }

/* Decorative open-quote mark */
.testimonial-card::after {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(0, 82, 204, 0.18);
  pointer-events: none;
  user-select: none;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  max-width: none;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}


/* ── CONTACT ──────────────────────────────── */

.contact { background: var(--dark); }

.contact-header { margin-bottom: 48px; }

.contact-header h2 { max-width: 24ch; }

.contact-header p {
  color: var(--muted);
  margin-top: 16px;
}

.contact-form-card {
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px;
  max-width: 720px;
}

/* ── FORM ELEMENTS ────────────────────────── */

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

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-label .required {
  color: var(--accent);
  margin-left: 2px;
}

.form-input,
.form-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

/* Custom dropdown arrow */
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8099' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.form-input::placeholder { color: var(--muted); opacity: 0.7; }

.form-select option { background: var(--mid); color: var(--text); }

.form-submit-row { margin-top: 8px; }

.form-success {
  display: none;
  background: rgba(0, 217, 255, 0.07);
  border: 1px solid rgba(0, 217, 255, 0.22);
  border-radius: 8px;
  padding: 20px 24px;
  color: var(--accent);
  font-weight: 500;
  text-align: center;
  margin-top: 8px;
}

/* After successful submission, collapse fields and show message */
.contact-form--submitted .form-group,
.contact-form--submitted .form-row,
.contact-form--submitted .form-submit-row { display: none; }

.contact-form--submitted .form-success { display: block; }

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
}


/* ══════════════════════════════════════════
   EVR AGENT PAGE
   ══════════════════════════════════════════ */

/* ── HERO — single column centred ─────────── */

.hero--single .hero-inner {
  display: block;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.hero--single .hero-inner h1         { max-width: none; }
.hero--single .hero-subheading       { max-width: 60ch; margin: 0 auto 44px; }
.hero--single .section-label         { justify-content: center; }
.hero--single .section-label::after  { display: none; }


/* ── BETA BADGE ───────────────────────────── */

.beta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 217, 255, 0.45);
  color: var(--accent);
  background: rgba(0, 217, 255, 0.06);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.beta-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: badge-blink 1.6s ease-in-out infinite;
}

@keyframes badge-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}


/* ── WORKFLOW ANIMATION ───────────────────── */

.workflow-section { background: var(--section-alt); }

.workflow-header          { margin-bottom: 40px; }
.workflow-header h2       { max-width: 26ch; }
.workflow-header > p      { color: var(--muted); margin-top: 16px; }

.workflow-card {
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 24px;
  overflow-x: auto;
}

.workflow-svg {
  width: 100%;
  height: auto;
  display: block;
  min-width: 560px;
}

@keyframes conn-glow {
  0%, 100% { opacity: 0.28; }
  50%       { opacity: 0.85; }
}

@keyframes wf-node-pulse {
  0%, 100% { opacity: 0.75; }
  50%       { opacity: 1; }
}

@keyframes status-dot-pulse {
  0%, 80%, 100% { opacity: 0.9; }
  40%            { opacity: 0.15; }
}

.conn-line      { animation: conn-glow        1.8s ease-in-out infinite; }
.conn-line--alt { animation-delay: 0.4s; }
.workflow-node  { animation: wf-node-pulse    3s   ease-in-out infinite; }
.status-dot     { animation: status-dot-pulse 2.2s ease-in-out infinite; }
.status-dot--2  { animation-delay: 0.73s; }
.status-dot--3  { animation-delay: 1.47s; }


/* ── AGENT OVERVIEW ───────────────────────── */

.agent-overview { background: var(--dark); }

.agent-stat-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-item {
  padding: 22px 24px;
  background: var(--mid);
  border: 1px solid var(--border);
  border-left-width: 3px;
  border-left-color: var(--accent);
  border-radius: 12px;
}

.stat-number {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.stat-desc {
  font-size: 0.86rem;
  color: var(--muted);
  max-width: none;
  line-height: 1.55;
  margin: 0;
}


/* ── KEY FEATURES ─────────────────────────── */

.key-features { background: var(--section-alt); }

.features-header     { margin-bottom: 48px; }
.features-header h2  { max-width: 28ch; }


/* ── HOW IT WORKS — timeline ──────────────── */

.how-it-works { background: var(--dark); }

.how-header     { margin-bottom: 48px; }
.how-header h2  { max-width: 26ch; }

.timeline {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 52px;
  width: 1px;
  background: var(--border);
  z-index: 0;
}

.timeline-step {
  display: flex;
  gap: 32px;
  padding-bottom: 40px;
  align-items: flex-start;
}
.timeline-step:last-child { padding-bottom: 0; }

.timeline-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 82, 204, 0.12);
  border: 1px solid rgba(0, 82, 204, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-content     { padding-top: 10px; }
.timeline-content h3  { margin-bottom: 8px; color: var(--white); }
.timeline-content p   { color: var(--muted); font-size: 0.95rem; max-width: 52ch; }


/* ── BETA INFO CARD ───────────────────────── */

.beta-section { background: var(--section-alt); }

.beta-card {
  background: rgba(0, 82, 204, 0.07);
  border: 1px solid rgba(0, 217, 255, 0.22);
  border-radius: 12px;
  padding: 56px 48px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.beta-card .section-label          { justify-content: center; margin-bottom: 20px; }
.beta-card .section-label::after   { display: none; }
.beta-card h2                      { max-width: none; margin-bottom: 24px; }
.beta-card p                       { color: var(--muted); max-width: 54ch; margin: 0 auto 16px; }
.beta-card p:last-of-type          { margin-bottom: 36px; }


/* ── FORM TEXTAREA ────────────────────────── */

.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 120px;
  resize: vertical;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}
.form-textarea::placeholder { color: var(--muted); opacity: 0.7; }


@media (max-width: 768px) {
  .beta-card              { padding: 32px 24px; }
  .timeline::before       { display: none; }
  .timeline-step          { gap: 20px; }
  .workflow-header > p    { max-width: none; }
}


/* ══════════════════════════════════════════
   EVR BUILD PAGE
   ══════════════════════════════════════════ */

/* ── OVERVIEW (What is EVR Build) ────────── */

.build-overview { background: var(--section-alt); }

.build-overview-text p          { margin-bottom: 20px; max-width: 52ch; }
.build-overview-text p:last-child { margin-bottom: 0; }

.build-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.build-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .build-visual { margin-top: 48px; }
}


/* ── WHAT WE BUILD (4 cards, 2×2) ───────── */

.what-we-build { background: var(--dark); }

.what-we-build-header       { margin-bottom: 48px; }
.what-we-build-header h2    { max-width: 24ch; }
.what-we-build .grid-2      { align-items: start; }


/* ── PROCESS (How We Work) ───────────────── */

.process-section { background: var(--section-alt); }

.process-header     { margin-bottom: 48px; }
.process-header h2  { max-width: 28ch; }

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Horizontal connector line through all step circles */
.process-grid::before {
  content: '';
  position: absolute;
  top: 24px; /* half-height of 48px circles */
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.process-step { text-align: center; }

.process-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 82, 204, 0.12);
  border: 1px solid rgba(0, 82, 204, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.process-step h3 { margin-bottom: 12px; }
.process-step p  { color: var(--muted); font-size: 0.92rem; max-width: none; }

/* Mobile: collapse to vertical layout */
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    gap: 32px;
  }
  .process-grid::before { display: none; }
  .process-step {
    text-align: left;
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }
  .process-number { margin: 0; flex-shrink: 0; }
}


/* ── WHY CHOOSE EVR BUILD ─────────────────── */

.why-choose { background: var(--dark); }

.why-choose-header      { margin-bottom: 48px; }
.why-choose-header h2   { max-width: 24ch; }
.why-choose .grid-2     { align-items: start; }


/* ── CONTACT — EVR Build variant ─────────── */

.build-contact { background: var(--section-alt); }
