/* premiumlendingnetwork.com — Avenue Link */

:root {
    --aim-teal-500: var(--color-primary);
    --aim-teal-700: var(--color-secondary);
    --aim-teal-600: var(--color-accent);
    --aim-focus: 0 0 0 4px rgba(var(--color-primary-rgb), 0.22), 0 0 0 7px rgba(var(--color-primary-rgb), 0.10);
}

/* ===========================
   Header
   =========================== */
.site-header {
    background: #0c1a2e;
    color: #f0ece4;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--color-secondary) 20%, #e8d68a 50%, var(--color-secondary) 80%, transparent 100%);
    z-index: 3;
}

.header-ornament {
    position: absolute;
    inset: 14px;
    pointer-events: none;
    z-index: 2;
}

.orn-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: rgba(var(--color-secondary-rgb), 0.4);
    border-style: solid;
    border-width: 0;
}
.orn-corner.orn-tl { top: 0; left: 0; border-top-width: 1.5px; border-left-width: 1.5px; }
.orn-corner.orn-tr { top: 0; right: 0; border-top-width: 1.5px; border-right-width: 1.5px; }
.orn-corner.orn-bl { bottom: 0; left: 0; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.orn-corner.orn-br { bottom: 0; right: 0; border-bottom-width: 1.5px; border-right-width: 1.5px; }

.header-inner {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    margin: 0 auto;
    padding: 2rem 1.5rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.header-content {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-form-panel {
    background: #ffffff;
    border-radius: 8px;
    border-top: 3px solid var(--color-secondary);
    box-shadow:
        0 20px 64px rgba(0, 0, 0, 0.38),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.header-kicker {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin: 0 0 1.25rem;
    opacity: 0;
    animation: hdr-up 0.65s ease forwards 0.1s;
}

.site-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    color: #f0ece4;
    margin: 0 0 1.25rem;
    line-height: 1.1;
    opacity: 0;
    animation: hdr-up 0.65s ease forwards 0.22s;
}

.header-rule {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    margin: 0 auto 1.25rem;
    opacity: 0;
    animation: hdr-fade 0.6s ease forwards 0.38s;
}

.header-tagline {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(240, 236, 228, 0.6);
    margin: 0 0 2rem;
    line-height: 1.65;
    letter-spacing: 0.01em;
    opacity: 0;
    animation: hdr-up 0.65s ease forwards 0.44s;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--color-secondary);
    color: #0c1a2e;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.875rem 2.25rem;
    border-radius: 2px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    opacity: 0;
    animation: hdr-up 0.65s ease forwards 0.56s;
}

.header-cta:hover, .header-cta:focus-visible {
    background: #ddb94f;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(var(--color-secondary-rgb), 0.35);
    outline: none;
}

.cta-arrow {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
    display: inline-block;
}
.header-cta:hover .cta-arrow,
.header-cta:focus-visible .cta-arrow { transform: translateX(3px); }

.header-trust-bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    padding: 1rem 2rem;
    border-top: 1px solid rgba(var(--color-secondary-rgb), 0.12);
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 400;
    color: rgba(240, 236, 228, 0.45);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0;
    animation: hdr-fade 0.6s ease forwards 0.72s;
}

.trust-sep {
    font-size: 0.35rem;
    color: rgba(var(--color-secondary-rgb), 0.45);
    line-height: 1;
}

@keyframes hdr-up {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes hdr-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .header-kicker, .site-title, .header-rule, .header-tagline,
    .header-cta, .header-trust-bar {
        animation: none;
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .header-inner  { padding: 1.5rem 1rem 1rem; }
    .header-kicker { margin-bottom: 0.5rem; }
    .site-title    { margin-bottom: 0.625rem; font-size: clamp(1.5rem, 7vw, 2rem); }
    .header-rule   { margin-bottom: 0.625rem; }
    .header-tagline { margin-bottom: 1rem; font-size: 0.875rem; }
    .header-trust-bar { display: none; }
}

@media (min-width: 900px) {
    .header-inner {
        grid-template-columns: 1fr minmax(420px, 500px);
        gap: 4rem;
        padding: 4rem 2.5rem 3rem;
        align-items: center;
    }
    .header-content { text-align: left; }
    .header-rule { margin-left: 0; margin-right: auto; }
}

/* ===========================
   Form section
   =========================== */
.form-section {
    position: relative;
    background: #f8f7f4;
    padding: 0;
    overflow: hidden;
}

.hero-split {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Form on top on mobile */
.form-container { order: -1; }

.hero-left {
    padding: 0.25rem 0 0.5rem;
}

.hero-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.625rem, 4vw, 2.625rem);
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1.15;
    letter-spacing: 0.02em;
    margin: 0 0 1rem;
}

.hero-lead {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    color: #5c5750;
    line-height: 1.7;
    margin: 0 0 1.5rem;
}

.hero-trust {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.hero-trust li {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #3d3830;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.hero-trust li::before {
    content: '◆';
    font-size: 0.375rem;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.form-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #f8f7f4;
    z-index: 1;
    overflow: hidden;
}

.form-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px circle at 88% 60%, rgba(var(--color-primary-rgb), 0.04), transparent),
        radial-gradient(500px circle at 6% 40%, rgba(var(--color-secondary-rgb), 0.05), transparent);
    pointer-events: none;
}

.hero-spacer { display: none; }

.form-container {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 4px;
    border-top: 3px solid var(--color-secondary);
    box-shadow:
        0 4px 32px rgba(12, 26, 46, 0.09),
        0 0 0 1px rgba(12, 26, 46, 0.04);
    overflow: hidden;
    padding: 0;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-split {
        grid-template-columns: 1fr minmax(420px, 500px);
        gap: 3.5rem;
        padding: 4rem 2rem;
        align-items: start;
    }
    .form-container { order: 0; }
}

/* ===========================
   Steps section
   =========================== */
.steps-section {
    background: #f2f0eb;
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Warm ambient glow in background */
.steps-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 82% 18%, rgba(201, 168, 76, 0.09) 0%, transparent 52%),
        radial-gradient(ellipse at 12% 82%, rgba(26, 58, 107, 0.06) 0%, transparent 48%);
    pointer-events: none;
}

.steps-header {
    text-align: center;
    margin-bottom: 3.75rem;
    position: relative;
    z-index: 1;
}

.steps-main-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--color-primary);
    font-size: clamp(1.875rem, 4.5vw, 2.75rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    margin: 0 0 1rem;
    line-height: 1.1;
}

/* Gold ornament rule below header title */
.steps-header::after {
    content: '';
    display: block;
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    margin: 0 auto;
}

.steps-subtitle {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: #7a7570;
    font-size: 0.9375rem;
    font-weight: 300;
    margin: 0.875rem 0 0;
    letter-spacing: 0.01em;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Dashed gold connector line between cards on desktop */
@media (min-width: 768px) {
    .steps-container::before {
        content: '';
        position: absolute;
        top: 3.25rem;
        left: calc(16.66% + 1.25rem);
        right: calc(16.66% + 1.25rem);
        height: 0;
        border-top: 1px dashed rgba(201, 168, 76, 0.32);
        z-index: 0;
        pointer-events: none;
    }
}

/* Dark navy card — inverted from the white-card pattern */
.step {
    background: #0d1d34;
    border-radius: 4px;
    padding: 2.5rem 1.75rem 2.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(201, 168, 76, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: step-fade-in 0.75s ease both;
}
.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.25s; }
.step:nth-child(3) { animation-delay: 0.4s; }
@keyframes step-fade-in {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Gold step numeral — Cormorant serif, large, centered */
.step::before {
    content: '0' attr(data-step);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.75rem;
    font-weight: 300;
    color: var(--color-secondary);
    letter-spacing: 0.15em;
    line-height: 1;
    margin-bottom: 1.25rem;
    display: block;
    opacity: 0.85;
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease, letter-spacing 0.35s ease;
}
.step:hover::before {
    opacity: 1;
    letter-spacing: 0.24em;
}

/* Centered gold hairline at card top — expands on hover */
.step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 30%;
    right: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    opacity: 0.45;
    transition: left 0.4s ease, right 0.4s ease, opacity 0.35s ease;
}
.step:hover::after {
    left: 8%;
    right: 8%;
    opacity: 0.9;
}

/* Lift with gold glow on hover */
.step:hover {
    transform: translateY(-7px);
    box-shadow:
        0 22px 52px rgba(0, 0, 0, 0.32),
        0 0 0 1px rgba(201, 168, 76, 0.28),
        0 0 36px rgba(201, 168, 76, 0.07);
}

/* Hollow gold ring icon — outline only, no fill */
.step-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--color-secondary);
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.25rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.step:hover .step-icon {
    border-color: var(--color-secondary);
    background: rgba(201, 168, 76, 0.07);
    transform: scale(1.1);
}

.step-icon svg {
    width: 1em;
    height: 1em;
}

/* Ivory Cormorant title — shifts to gold on hover */
.step-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 400;
    color: #f0ece4;
    margin: 0 0 0.625rem;
    letter-spacing: 0.04em;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    transition: color 0.28s ease;
}
.step:hover .step-title {
    color: rgba(201, 168, 76, 0.9);
}

.step-description {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(240, 236, 228, 0.48);
    line-height: 1.65;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    .step { animation: none; opacity: 1; }
    .step::before, .step::after, .step-icon { transition: none; }
}

@media (min-width: 768px) {
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

/* ===========================
   Loading spinner
   =========================== */
.loading-container { text-align: center; padding: 2rem; }
.loading-spinner {
    width: 40px; height: 40px;
    border: 3px solid rgba(var(--color-primary-rgb), 0.2);
    border-top-color: var(--color-primary, #2563eb);
    border-radius: 50%;
    animation: spin 0.85s linear infinite;
    margin: 0 auto 1rem;
}
.loading-text { color: #64748b; margin: 0; font-size: 0.875rem; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===========================
   Disclaimer
   =========================== */
.disclaimer-content {
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
}
.disclaimer strong { color: inherit; }

/* ===========================
   Popup
   =========================== */
.popup-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9999; align-items: center; justify-content: center; padding: 1rem; }
.popup-overlay[aria-hidden="false"] { display: flex; }
#popup-body { padding: 2rem; }
.popup-close { position: absolute; top: 0.5rem; right: 0.5rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #64748b; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   Footer (Concept 2 · Variation A · Light)
   ============================================================ */
.footer-stacked {
  --brand-color:       var(--color-primary, #1a3a6b);
  --brand-color-hover: color-mix(in srgb, #000000 20%, var(--brand-color));
  --brand-color-ring:  rgba(26, 58, 107, .35);

  --fc2-bg:        #FAFAF7;
  --fc2-ink:       #1A1A1A;
  --fc2-ink-soft:  #333333;
  --fc2-muted:     #666666;
  --fc2-dim:       #888888;
  --fc2-rule:      #ECECE6;

  background: var(--fc2-bg);
  color: var(--fc2-ink);
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  border-top: 1px solid var(--fc2-rule);
  box-sizing: border-box;
}
.footer-stacked *, .footer-stacked *::before, .footer-stacked *::after { box-sizing: border-box; }

.footer-stacked .footer-inner { padding: 28px 22px 22px; }

.footer-stacked .band { padding-bottom: 36px; }
.footer-stacked .kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fc2-dim);
  font-weight: 600;
  margin-bottom: 8px;
}
.footer-stacked .band-heading {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  line-height: 1.2;
  color: var(--fc2-ink);
}
.footer-stacked .band-sub {
  font-size: 13.5px;
  color: var(--fc2-muted);
  line-height: 1.55;
  margin: 0 0 18px;
}
.footer-stacked .band-actions { display: flex; flex-direction: column; gap: 8px; }

.footer-stacked .ca {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--brand-color);
  color: #ffffff;
  border-radius: 10px;
  padding: 14px 16px;
  text-decoration: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background .15s ease, transform .12s ease;
  text-align: left;
}
.footer-stacked .ca::after {
  content: "→";
  font-size: 16px;
  opacity: 0.85;
  margin-left: 16px;
  flex-shrink: 0;
  transition: transform .15s ease;
}
.footer-stacked .ca:hover, .footer-stacked .ca:focus-visible {
  background: var(--brand-color-hover);
  outline: none;
}
.footer-stacked .ca:hover::after, .footer-stacked .ca:focus-visible::after { transform: translateX(2px); }
.footer-stacked .ca:focus-visible { box-shadow: 0 0 0 3px var(--brand-color-ring); }
.footer-stacked .ca:active { transform: scale(0.985); }

.footer-stacked .links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 16px;
  padding-top: 8px;
  border-top: 1px solid var(--fc2-rule);
}
.footer-stacked .links-brand { grid-column: 1 / -1; }
.footer-stacked .brand-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--fc2-ink);
  margin-bottom: 4px;
}
.footer-stacked .brand-address {
  font-size: 12.5px;
  color: var(--fc2-muted);
  line-height: 1.55;
  margin: 0;
}
.footer-stacked .col-title {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fc2-dim);
  margin-bottom: 10px;
}
.footer-stacked .col-link {
  display: block;
  font-size: 13px;
  padding: 4px 0;
  text-decoration: none;
  color: var(--fc2-ink-soft);
  transition: color .15s ease;
  cursor: pointer;
}
.footer-stacked .col-link:hover, .footer-stacked .col-link:focus-visible {
  color: var(--brand-color);
  outline: none;
}

.footer-stacked .legal {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--fc2-rule);
  text-align: center;
}
.footer-stacked .legal-copy {
  font-size: 11.5px;
  color: var(--fc2-dim);
}

@media (min-width: 600px) {
  .footer-stacked .band-actions { flex-direction: row; }
  .footer-stacked .ca { width: auto; flex: 1; }
}

@media (min-width: 768px) {
  .footer-stacked .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 40px 32px;
  }
  .footer-stacked .band {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: end;
    padding-bottom: 48px;
  }
  .footer-stacked .band-text { max-width: 520px; }
  .footer-stacked .band-heading { font-size: 24px; }
  .footer-stacked .band-sub { font-size: 14.5px; margin-bottom: 0; }
  .footer-stacked .band-actions { flex-direction: column; min-width: 280px; }
  .footer-stacked .ca { width: 100%; }

  .footer-stacked .links {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 0 40px;
  }
  .footer-stacked .links-brand { grid-column: auto; }
  .footer-stacked .col-title { font-size: 11px; margin-bottom: 12px; }
  .footer-stacked .col-link { font-size: 13.5px; padding: 5px 0; }
}

/* ─── Dummy Form ─────────────────────────────────────────────── */
#dummy-form-container { padding: 1.5rem 1.75rem 2rem; }

.form-step { display: none; }
.form-step.active { display: block; }

.form-step-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0d1d34;
    text-align: center;
    margin: 0 0 1.25rem;
    line-height: 1.3;
}

.amount-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.amount-btn {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    background: #F5F2EC;
    border: 1.5px solid #E2D9C6;
    border-radius: 8px;
    padding: 0.6rem 0.5rem;
    cursor: pointer;
    transition: all 0.18s ease;
    text-align: center;
    line-height: 1.2;
}
.amount-btn:hover { background: #EDE7D8; border-color: var(--color-secondary); }
.amount-btn.active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

.ssl-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    color: #64748b;
    margin-bottom: 0.3rem;
}
.ssl-text-bold { font-weight: 700; color: #1e293b; }
.ssl-icon { color: #16a34a; }
.ssl-description { text-align: center; font-size: 0.72rem; color: #94a3b8; margin: 0 0 0.5rem; }
.advertising-disclosure { text-align: center; font-size: 0.72rem; margin: 0; }
.advertising-disclosure a { color: var(--color-primary); text-decoration: none; }
.advertising-disclosure a:hover { text-decoration: underline; }

.form-group { margin-bottom: 0.9rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: #334155; margin-bottom: 0.3rem; }
.form-group input {
    width: 100%;
    font-size: 0.9375rem;
    color: #0d1d34;
    background: #faf9f7;
    border: 1.5px solid #ddd5c4;
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s;
    box-sizing: border-box;
}
.form-group input:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
    background: #fff;
}
.form-group input::placeholder { color: #94a3b8; }

.btn-submit {
    width: 100%;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0d1d34 100%);
    border: none;
    border-radius: 8px;
    padding: 0.85rem 1.5rem;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 16px rgba(13,29,52,0.3);
    margin-top: 0.4rem;
    letter-spacing: 0.02em;
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(13,29,52,0.4); }
.btn-submit:active { transform: translateY(0); }

.success-content { text-align: center; padding: 1.5rem 0; }
.success-content .form-step-title { color: var(--color-primary); margin-bottom: 0.75rem; }
.success-content p { font-size: 0.9375rem; color: #475569; margin-bottom: 0.5rem; }
.selected-amount-display { font-size: 0.875rem; color: #64748b; margin-top: 0.75rem; }
