/* ============================================================
   Vespa Capital Growth — style.css
   Design: Contemporary Corporate Minimalism
   Colors: Navy #0F1F3D | Teal #2E7D6E | Off-white #FAFAF8
   Fonts: Syne (headings) + DM Sans (body) + DM Mono (labels)
   ============================================================ */

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

:root {
  --navy:        oklch(0.18 0.055 255);
  --navy-mid:    oklch(0.24 0.055 255);
  --navy-dark:   oklch(0.12 0.045 255);
  --teal:        oklch(0.52 0.10 175);
  --teal-light:  oklch(0.62 0.09 175);
  --teal-pale:   oklch(0.52 0.10 175 / 0.10);
  --off-white:   oklch(0.985 0.004 80);
  --warm-gray:   oklch(0.96 0.004 80);
  --text-body:   oklch(0.15 0.01 255);
  --text-muted:  oklch(0.48 0.015 255);
  --border:      oklch(0.88 0.008 255);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── UTILITIES ─────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 640px) { .container { padding: 0 1.25rem; } }

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--teal);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.9rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 2px;
  height: 18px;
  background: var(--teal);
  flex-shrink: 0;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.1rem;
}
.section-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: filter .2s, box-shadow .2s;
}
.btn-primary:hover { filter: brightness(1.1); box-shadow: 0 6px 20px rgba(46,125,110,.4); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.35);
  cursor: pointer;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); }

/* ── NAVBAR ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s;
}
#navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.nav-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-divider { width: 1px; height: 16px; background: rgba(255,255,255,.2); }
.btn-portal {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.75);
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  transition: color .2s;
  padding: 0;
}
.btn-portal:hover { color: #fff; }
.btn-cta {
  background: var(--teal);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: .55rem 1.25rem;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  transition: filter .2s;
}
.btn-cta:hover { filter: brightness(1.1); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: .9rem;
  background: var(--navy);
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a,
.mobile-menu button {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-align: left;
  padding: 4px 0;
}
.mobile-menu a:hover,
.mobile-menu button:hover { color: #fff; }
.mobile-divider { height: 1px; background: rgba(255,255,255,.1); }

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

/* ── HERO ───────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/vcg-hero.jpg');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, oklch(0.12 0.045 255 / 0.92) 0%, oklch(0.12 0.045 255 / 0.72) 60%, oklch(0.12 0.045 255 / 0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  padding-bottom: 6rem;
  width: 100%;
}
.hero-label {
  font-family: 'DM Mono', monospace;
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--teal-light);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-headline .accent { color: var(--teal-light); display: block; }
.hero-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  letter-spacing: .15em;
  font-family: 'DM Mono', monospace;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── SECTIONS ───────────────────────────────────────────── */
section { padding: 5rem 0; }

/* What We Do */
#what-we-do { background: var(--off-white); }
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.what-photo {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.what-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.what-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(46,125,110,.25);
  border-radius: 2px;
  pointer-events: none;
}
.what-text blockquote {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--teal);
  background: var(--teal-pale);
  border-radius: 0 4px 4px 0;
  font-style: italic;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.65;
}
@media (max-width: 768px) { .what-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* Expertise */
#expertise { background: var(--navy); }
#expertise .section-label { color: var(--teal-light); }
#expertise .section-label::before { background: var(--teal-light); }
#expertise .section-title { color: #fff; }
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.expertise-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  padding: 2rem;
  transition: background .2s, border-color .2s, transform .2s;
}
.expertise-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(46,125,110,.4);
  transform: translateY(-3px);
}
.expertise-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: rgba(46,125,110,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.expertise-icon svg { color: var(--teal-light); }
.expertise-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: .75rem;
}
.expertise-card p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.expertise-photo {
  border-radius: 4px;
  overflow: hidden;
  min-height: 260px;
}
.expertise-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .expertise-photo { grid-column: span 2; }
}
@media (max-width: 600px) {
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-photo { grid-column: span 1; }
}

/* How We Work */
#how-we-work { background: var(--warm-gray); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
.how-step { text-align: center; padding: 0 .5rem; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  border: 3px solid var(--teal);
}
.how-step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: .5rem;
}
.how-step p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }
@media (max-width: 768px) {
  .how-steps { grid-template-columns: 1fr 1fr; }
  .how-steps::before { display: none; }
}
@media (max-width: 480px) { .how-steps { grid-template-columns: 1fr; } }

/* Why Us */
#why-us { background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-items { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; margin-top: 1.75rem; }
.why-item h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: .35rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.why-item h4::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}
.why-item p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }
.why-photo { border-radius: 4px; overflow: hidden; aspect-ratio: 3/4; }
.why-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-photo { aspect-ratio: 16/9; }
  .why-items { grid-template-columns: 1fr; }
}

/* CTA Banner */
#cta-banner {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/vcg-warehouse.jpg');
  background-size: cover;
  background-position: center;
}
.cta-overlay { position: absolute; inset: 0; background: oklch(0.12 0.045 255 / 0.88); }
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}
.cta-content .section-label { justify-content: center; color: var(--teal-light); }
.cta-content .section-label::before { background: var(--teal-light); }
.cta-content h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
  line-height: 1.2;
}
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn-ghost {
  display: inline-block;
  background: none;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  padding: .85rem 2rem;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); }

/* Contact */
#contact { background: var(--warm-gray); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 1rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-intro { font-size: 1rem; color: var(--text-muted); line-height: 1.75; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: var(--teal-pale);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { color: var(--teal); }
.contact-detail h4 {
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-detail a,
.contact-detail p {
  font-size: .95rem;
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.contact-detail a:hover { color: var(--teal); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: 'DM Mono', monospace;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea {
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--navy);
  background: #fff;
  transition: border-color .2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { min-height: 120px; }
.form-submit {
  background: var(--teal);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: .9rem 2rem;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  transition: filter .2s;
  align-self: flex-start;
}
.form-submit:hover { filter: brightness(1.1); }
.form-success {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: 4px;
  background: rgba(46,125,110,.1);
  border: 1px solid rgba(46,125,110,.3);
  color: var(--teal);
  font-size: .9rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* Footer */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: .75rem;
  display: block;
}
.footer-brand p { font-size: .85rem; max-width: 260px; line-height: 1.6; }
.footer-col-title {
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
  margin-bottom: .6rem;
  display: block;
}
.footer-links,
.footer-contact-col { display: flex; flex-direction: column; gap: .45rem; }
.footer-links a,
.footer-contact-col a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .875rem;
  transition: color .2s;
}
.footer-links a:hover,
.footer-contact-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ── SCROLL ANIMATIONS ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: .1s; }
.fade-up.d2 { transition-delay: .2s; }
.fade-up.d3 { transition-delay: .3s; }
.fade-up.d4 { transition-delay: .4s; }
.fade-up.d5 { transition-delay: .5s; }

/* ── CLIENT PORTAL MODAL ────────────────────────────────── */
#portal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: oklch(0.12 0.045 255 / 0.78);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#portal-overlay.open { display: flex; }
.portal-modal {
  background: var(--off-white);
  border-radius: 4px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,.4);
}
.portal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.portal-header-left { display: flex; align-items: center; gap: .75rem; }
.portal-header-icon {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: rgba(46,125,110,.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.portal-title {
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .95rem;
}
.portal-subtitle {
  color: rgba(255,255,255,.4);
  font-family: 'DM Mono', monospace;
  font-size: .58rem;
  letter-spacing: .14em;
  margin-top: 2px;
}
.portal-close {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background .2s;
}
.portal-close:hover { background: rgba(255,255,255,.1); }
.portal-body { padding: 1.75rem 2rem; }
.portal-step { display: none; }
.portal-step.active { display: block; }
.portal-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: .4rem;
}
.portal-sub { font-size: .9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100%;
  text-align: left;
  margin-bottom: .75rem;
  font-family: 'DM Sans', sans-serif;
}
.payment-option:hover {
  border-color: var(--teal);
  background: rgba(46,125,110,.04);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.payment-option-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  flex-shrink: 0;
  background: rgba(46,125,110,.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-option-text h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.payment-option-text p { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }
.payment-option-arrow { margin-left: auto; color: rgba(15,31,61,.3); align-self: center; flex-shrink: 0; transition: color .2s; }
.payment-option:hover .payment-option-arrow { color: var(--teal); }
.stripe-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: .75rem 1rem;
  border-radius: 4px;
  background: #f5f3ef;
  border: 1px solid var(--border);
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.4;
  width: 100%;
  box-sizing: border-box;
}
.stripe-note svg {
  flex-shrink: 0;
}
.portal-back {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--teal);
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  padding: 0;
}
.portal-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.portal-field label {
  font-family: 'DM Mono', monospace;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.portal-field label span { color: var(--teal); }
.portal-field input {
  padding: .65rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--navy);
  background: #fff;
  transition: border-color .2s;
  outline: none;
  width: 100%;
}
.portal-field input:focus { border-color: var(--teal); }
.portal-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-proceed {
  width: 100%;
  padding: .85rem;
  border-radius: 4px;
  background: var(--teal);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  transition: filter .2s;
  margin-top: .5rem;
}
.btn-proceed:hover:not(:disabled) { filter: brightness(1.1); }
.btn-proceed:disabled { opacity: .4; cursor: not-allowed; }
.confirm-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(46,125,110,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.confirm-center { text-align: center; }
.confirm-center .portal-sub { max-width: 360px; margin-left: auto; margin-right: auto; }
.summary-card {
  background: #f5f3ef;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.25rem;
  margin: 1.25rem 0;
}
.summary-label {
  font-family: 'DM Mono', monospace;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .75rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
  gap: 1rem;
}
.summary-row:last-child { margin-bottom: 0; }
.sr-label { font-size: .85rem; color: var(--text-muted); }
.sr-value { font-size: .9rem; font-weight: 600; color: var(--navy); text-align: right; }
.sr-value.highlight { color: var(--teal); }
.confirm-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.confirm-actions a {
  flex: 1;
  min-width: 120px;
  padding: .8rem 1rem;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: filter .2s, background .2s;
}
.confirm-call { background: var(--teal); color: #fff; }
.confirm-call:hover { filter: brightness(1.1); }
.confirm-email { background: #fff; color: var(--navy); border: 1.5px solid var(--border); }
.confirm-email:hover { background: var(--warm-gray); }
.confirm-restart {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  width: 100%;
}
.confirm-restart:hover { color: var(--navy); }
