/* accuventuresinc.com — Avenue Link */

html { scroll-behavior: smooth; }

/* ===========================
   Local aliases
   =========================== */
:root {
    --av-navy: #070F1E;
    --av-focus: 0 0 0 4px rgba(var(--color-secondary-rgb), 0.25),
                0 0 0 7px rgba(var(--color-secondary-rgb), 0.10);
}

/* ===========================
   Header
   =========================== */
.site-header {
    background: var(--av-navy);
    color: #EEF2FF;
    position: relative;
    overflow: hidden;
    padding: 0;
}

/* Orange-to-amber top stripe — animated shimmer */
.site-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary) 0%, #FBBF24 50%, var(--color-secondary) 100%);
    background-size: 200% 100%;
    animation: stripe-shimmer 3s linear infinite;
    z-index: 4;
}
@keyframes stripe-shimmer {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* Dot-grid texture — slowly drifts */
.site-header::after {
    content: '';
    position: absolute;
    inset: -32px;
    background-image: radial-gradient(circle, rgba(59, 130, 246, 0.2) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
    animation: dot-drift 12s ease-in-out infinite alternate;
}
@keyframes dot-drift {
    from { background-position: 0 0; }
    to   { background-position: 16px 16px; }
}

/* Giant "A" monogram — drifts and breathes */
.header-ornament {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header-ornament::after {
    content: 'A';
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(14rem, 28vw, 24rem);
    color: rgba(59, 130, 246, 0.04);
    line-height: 0.85;
    user-select: none;
    padding-right: 3rem;
    animation: monogram-drift 10s ease-in-out infinite alternate;
}
@keyframes monogram-drift {
    from { transform: translateY(0) rotate(0deg);    opacity: 0.04; }
    to   { transform: translateY(-3%) rotate(-0.8deg); opacity: 0.065; }
}
.orn-corner { display: none; }

/* Radial glow clouds that breathe inside the header */
.header-inner {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.header-inner::before {
    content: '';
    position: absolute;
    inset: -60px;
    background:
        radial-gradient(ellipse at 75% 50%, rgba(249, 115, 22, 0.09) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 70%, rgba(59, 130, 246, 0.11) 0%, transparent 52%);
    animation: glow-breathe 6s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}
@keyframes glow-breathe {
    from { opacity: 0.6; transform: scale(0.97); }
    to   { opacity: 1;   transform: scale(1.03); }
}

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

/* Scan-line beam that sweeps down the hero copy */
.header-content::after {
    content: '';
    position: absolute;
    left: -10%;
    width: 120%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(249, 115, 22, 0.45) 35%,
        rgba(59, 130, 246, 0.45) 65%,
        transparent 100%);
    animation: scan-line 7s linear 2s infinite;
    pointer-events: none;
    z-index: 10;
}
@keyframes scan-line {
    0%   { top: -5%;  opacity: 0; }
    4%   { opacity: 1; }
    96%  { opacity: 0.7; }
    100% { top: 105%; opacity: 0; }
}

/* Kicker with pulsing live dot */
.header-kicker {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin: 0 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    animation: hdr-up 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.1s;
}
.header-kicker::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-secondary);
    flex-shrink: 0;
    animation: pulse-dot 2.2s ease-in-out 1s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1);   box-shadow: 0 0 0 0 rgba(249,115,22,0); }
    50%       { opacity: 0.6; transform: scale(0.85); box-shadow: 0 0 0 5px rgba(249,115,22,0); }
}

/* Title with gradient fill — white → sky blue → orange */
.site-title {
    font-family: 'Syne', system-ui, sans-serif;
    font-size: clamp(2rem, 5.5vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #FFFFFF 0%, #93C5FD 55%, #FBBF24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 1.25rem;
    line-height: 1.05;
    opacity: 0;
    animation: hdr-up 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.22s;
}

/* Orange rule — pulses with a glow */
.header-rule {
    width: 48px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 2px;
    margin: 0 auto 1.25rem;
    opacity: 0;
    animation:
        hdr-fade 0.5s ease forwards 0.36s,
        rule-glow 2.4s ease-in-out 1.6s infinite alternate;
}
@keyframes rule-glow {
    from { box-shadow: 0 0 4px rgba(249,115,22,0.3); }
    to   { box-shadow: 0 0 16px rgba(249,115,22,0.8), 0 0 32px rgba(249,115,22,0.3); }
}

.header-tagline {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(238, 242, 255, 0.58);
    margin: 0 0 1.5rem;
    line-height: 1.7;
    opacity: 0;
    animation: hdr-up 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.44s;
}

/* Form panel — animated orange aura */
.header-form-panel {
    background: #ffffff;
    border-radius: 6px;
    border-top: 4px solid var(--color-secondary);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.48),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    z-index: 3;
    animation: panel-aura 4s ease-in-out 1s infinite alternate;
}
@keyframes panel-aura {
    from {
        box-shadow:
            0 24px 64px rgba(0,0,0,.48),
            0 0 0 1px rgba(255,255,255,.05),
            0 0 28px rgba(249,115,22,.12),
            0 0 60px rgba(249,115,22,.06);
    }
    to {
        box-shadow:
            0 24px 64px rgba(0,0,0,.48),
            0 0 0 1px rgba(255,255,255,.05),
            0 0 44px rgba(249,115,22,.22),
            0 0 90px rgba(249,115,22,.1);
    }
}

.header-trust-bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
    padding: 1rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    color: rgba(238, 242, 255, 0.36);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    animation: hdr-fade 0.6s ease forwards 0.72s;
}

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

/* ===========================
   Shared header animations
   =========================== */
@keyframes hdr-up {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes hdr-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .site-header::before   { animation: none; }
    .site-header::after    { animation: none; }
    .header-ornament::after { animation: none; }
    .header-inner::before  { animation: none; }
    .header-content::after { display: none; }
    .header-kicker::before { animation: none; }
    .header-rule           { animation: none; opacity: 1; }
    .header-form-panel     { animation: none; }
    .header-kicker, .site-title, .header-tagline, .header-trust-bar {
        animation: none;
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .header-inner     { padding: 1.75rem 1rem 1.25rem; }
    .header-kicker    { justify-content: center; margin-bottom: 0.625rem; }
    .site-title       { margin-bottom: 0.75rem; font-size: clamp(1.75rem, 9vw, 2.375rem); }
    .header-rule      { margin-bottom: 0.75rem; }
    .header-tagline   { margin-bottom: 1.25rem; font-size: 0.9375rem; }
    .header-trust-bar { display: none; }
    .header-ornament::after { font-size: 9rem; padding-right: 0.5rem; }
}

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

/* ===========================
   Steps section
   =========================== */
.steps-section {
    background: linear-gradient(160deg, #E8EEFF 0%, #EEF2FF 45%, #E4ECFF 100%);
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Radial glow overlays on the steps background */
.steps-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 85%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 15%, rgba(249, 115, 22, 0.05) 0%, transparent 42%);
    pointer-events: none;
}

/* Subtle top separator */
.steps-section::after {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30,58,138,0.2), transparent);
}

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

.steps-main-title {
    font-family: 'Syne', system-ui, sans-serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 2.375rem);
    color: var(--color-primary);
    letter-spacing: -0.025em;
    margin: 0 0 0.75rem;
    line-height: 1.15;
}

.steps-subtitle {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: #6B7DB3;
    font-size: 0.9375rem;
    font-weight: 400;
    margin: 0;
}

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

/* Step card — staggered entrance + hover effects */
.step {
    background: #ffffff;
    border-radius: 6px;
    padding: 2rem 1.75rem 2rem;
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--color-primary);
    box-shadow:
        0 2px 16px rgba(30, 58, 138, 0.07),
        0 0 0 1px rgba(30, 58, 138, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: step-enter 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Stagger each card's entrance */
.step:nth-child(1) { animation-delay: 0.15s; }
.step:nth-child(2) { animation-delay: 0.30s; }
.step:nth-child(3) { animation-delay: 0.45s; }

@keyframes step-enter {
    from { opacity: 0; transform: translateY(24px) translateX(-6px); }
    to   { opacity: 1; transform: translateY(0) translateX(0); }
}

/* Shimmer overlay on hover */
.step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(30,58,138,0.03) 0%, rgba(59,130,246,0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
}
.step:hover::before { opacity: 1; }

/* Phantom step number watermark */
.step::after {
    content: '0' attr(data-step);
    position: absolute;
    bottom: -0.5rem;
    right: 1rem;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 5.5rem;
    line-height: 0.85;
    color: rgba(30, 58, 138, 0.055);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    transition: color 0.3s ease;
}
.step:hover::after {
    color: rgba(30, 58, 138, 0.1);
}

/* Slide right + glow on left border on hover */
.step:hover {
    transform: translateX(5px);
    box-shadow:
        0 8px 32px rgba(30, 58, 138, 0.13),
        0 0 0 1px rgba(30, 58, 138, 0.08),
        -5px 0 20px rgba(30, 58, 138, 0.18);
}

/* Square icon badge — lifts and gains gradient on hover */
.step-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 8px;
    background: var(--color-primary);
    color: #ffffff;
    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: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.step:hover .step-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 6px 18px rgba(30, 58, 138, 0.35);
}

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

.step-title {
    font-family: 'Syne', system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 0.5rem;
    letter-spacing: -0.015em;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    transition: color 0.2s ease;
}
.step:hover .step-title {
    color: var(--color-accent);
}

.step-description {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: #5B6FA8;
    line-height: 1.65;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    .step { animation: none; opacity: 1; }
}

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

/* ===========================
   Loading spinner
   =========================== */
.loading-container { text-align: center; padding: 3rem; }
.loading-spinner {
    width: 36px; height: 36px;
    border: 3px solid rgba(var(--color-primary-rgb), 0.15);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
    margin: 0 auto 1rem;
}
.loading-text {
    color: #6B7DB3;
    margin: 0;
    font-size: 0.875rem;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Hide the empty additional-content placeholder */
#additional-content:empty { display: none; }

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    background: #070F1E;
    padding: 5.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Dot-grid texture — same rhythm as hero */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(59, 130, 246, 0.18) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

/* Central radial glow */
.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, rgba(59, 130, 246, 0.13) 0%, rgba(249, 115, 22, 0.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: cta-glow-breathe 5s ease-in-out infinite alternate;
}
@keyframes cta-glow-breathe {
    from { opacity: 0.7; transform: scale(0.96); }
    to   { opacity: 1;   transform: scale(1.04); }
}

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-kicker {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.cta-kicker::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-secondary);
    animation: pulse-dot 2.2s ease-in-out infinite;
}

.cta-headline {
    font-family: 'Syne', system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(1.875rem, 4.5vw, 3rem);
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #FFFFFF 0%, #93C5FD 60%, #FBBF24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.05;
}

.cta-body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(238, 242, 255, 0.55);
    margin: 0;
    line-height: 1.65;
}

/* Three trust badges */
.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
    margin: 0.5rem 0;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(238, 242, 255, 0.5);
    letter-spacing: 0.02em;
}
.cta-trust-item svg {
    width: 1rem;
    height: 1rem;
    color: rgba(var(--color-secondary-rgb), 0.7);
    flex-shrink: 0;
}

/* The button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--color-secondary);
    color: #0A1629;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.0625rem 2.5rem;
    border-radius: 4px;
    position: relative;
    margin-top: 0.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    animation: btn-glow 3s ease-in-out 1s infinite alternate;
}
@keyframes btn-glow {
    from { box-shadow: 0 4px 16px rgba(249,115,22,0.25); }
    to   { box-shadow: 0 4px 32px rgba(249,115,22,0.55), 0 0 60px rgba(249,115,22,0.18); }
}

.cta-btn:hover,
.cta-btn:focus-visible {
    background: #FBBF24;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(249, 115, 22, 0.45);
    outline: none;
    animation: none;
}
.cta-btn:active { transform: translateY(0); }

.cta-btn svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}
.cta-btn:hover svg { transform: translateY(-3px); }

/* ===========================
   Disclaimer
   =========================== */
.disclaimer { background: #F5F7FF; }
.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(7, 15, 30, 0.72);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
}
.popup-overlay[aria-hidden="false"] { display: flex; }
.popup-content {
    position: relative;
    background: #fff;
    border-radius: 8px;
    max-width: 640px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 32px 80px rgba(7, 15, 30, 0.35);
}
#popup-body { padding: 2rem; }
.popup-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #EEF2FF;
    border: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    font-size: 1.125rem;
    line-height: 1;
    cursor: pointer;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.popup-close:hover { background: #DBEAFE; }
.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 3 · Dark)
   ============================================================ */
.footer-floating-card {
  background: #10131A;
  color: #E8EAF0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, "Segoe UI", sans-serif;
  padding-bottom: 24px;
  box-sizing: border-box;
}
.footer-floating-card *, .footer-floating-card *::before, .footer-floating-card *::after { box-sizing: border-box; }

.footer-floating-card .accent-card {
  margin: 0 16px;
  border-radius: 16px;
  padding: 22px 18px 20px;
  transform: translateY(-22px);
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,.18);
}
.footer-floating-card .accent-kicker {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
  opacity: 0.7;
}
.footer-floating-card .accent-headline {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  line-height: 1.15;
}
.footer-floating-card .accent-sub {
  font-size: 13px;
  margin: 0 0 16px;
  opacity: 0.82;
  line-height: 1.5;
}

.footer-floating-card .ca-row { display: grid; gap: 10px; }
.footer-floating-card .ca {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 14px 38px 14px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease;
}
.footer-floating-card .ca::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: right .15s ease;
}
.footer-floating-card .ca:hover,
.footer-floating-card .ca:focus-visible  { transform: translateY(-1px); outline: none; }
.footer-floating-card .ca:hover::after,
.footer-floating-card .ca:focus-visible::after { right: 12px; }
.footer-floating-card .ca:active { transform: translateY(0); }
.footer-floating-card .ca .ca-sub { font-size: 12px; font-weight: 500; opacity: 0.9; letter-spacing: 0; }

.footer-floating-card .ca.primary {
  background: #ffffff;
  color: var(--color-primary);
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
.footer-floating-card .ca.primary:hover,
.footer-floating-card .ca.primary:focus-visible { background: #F0F4FF; }

.footer-floating-card .ca.secondary {
  background: rgba(255,255,255,.08);
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,.85);
}
.footer-floating-card .ca.secondary:hover,
.footer-floating-card .ca.secondary:focus-visible { background: rgba(255,255,255,.18); }

.footer-floating-card .links {
  padding: 0 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 16px;
}
.footer-floating-card .links .col-full { grid-column: 1 / -1; margin-top: 28px; }

@media (min-width: 600px) {
  .footer-floating-card .links { grid-template-columns: 1fr 1fr 1fr; }
  .footer-floating-card .links .col-full { grid-column: auto; margin-top: 0; }
}

.footer-floating-card .col-title {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  color: #6B7280;
}
.footer-floating-card .col-link {
  display: block;
  font-size: 13.5px;
  padding: 5px 0;
  text-decoration: none;
  color: #B7C0D4;
  transition: color .15s ease;
  cursor: pointer;
}
.footer-floating-card .col-link:hover,
.footer-floating-card .col-link:focus-visible { color: #ffffff; outline: none; }

.footer-floating-card .meta {
  padding: 0 22px;
  margin-top: 22px;
  font-size: 12px;
  line-height: 1.6;
  color: #6B7589;
  text-align: center;
}
.footer-floating-card .meta-divider { height: 1px; margin: 0 0 16px; background: #1E232E; }
.footer-floating-card .meta-name { display: block; font-size: 13px; font-weight: 500; color: #C8CCD8; margin-bottom: 2px; }
.footer-floating-card .meta-copy { margin-top: 8px; display: block; }

@media (min-width: 768px) {
  .footer-floating-card { padding: 56px 0 28px; }
  .footer-floating-card .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: minmax(320px, 380px) 1fr;
    gap: 56px;
    align-items: start;
  }
  .footer-floating-card .accent-card {
    margin: 0;
    transform: none;
    border-radius: 18px;
    padding: 28px 28px 26px;
    box-shadow: 0 4px 12px rgba(0,0,0,.18);
  }
  .footer-floating-card .accent-kicker { font-size: 11px; margin-bottom: 12px; }
  .footer-floating-card .accent-headline { font-size: 28px; margin-bottom: 8px; }
  .footer-floating-card .accent-sub { font-size: 14px; margin-bottom: 20px; }
  .footer-floating-card .ca { padding: 16px 42px 16px 18px; }
  .footer-floating-card .ca::after { right: 18px; width: 8px; height: 8px; }
  .footer-floating-card .ca:hover::after,
  .footer-floating-card .ca:focus-visible::after { right: 14px; }

  .footer-floating-card .links {
    padding: 0;
    gap: 0 40px;
    grid-template-columns: 1fr 1fr;
  }
  .footer-floating-card .links .col-full { grid-column: 1 / -1; margin-top: 28px; }
  .footer-floating-card .col-title { font-size: 11px; margin-bottom: 14px; }
  .footer-floating-card .col-link { font-size: 14px; padding: 6px 0; }

  .footer-floating-card .meta {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 22px 40px 0;
    font-size: 13px;
    border-top: 1px solid #1E232E;
  }
  .footer-floating-card .meta-divider { display: none; }
  .footer-floating-card .meta-name { font-size: 14px; font-weight: 600; color: #E8EAF0; margin: 0; }
  .footer-floating-card .meta-address { font-size: 12px; opacity: 0.85; }
  .footer-floating-card .meta-copy { margin: 8px 0 0; font-size: 12px; display: block; }
}

@media (min-width: 1100px) {
  .footer-floating-card .links { grid-template-columns: 1fr 1fr 1fr; }
  .footer-floating-card .links .col-full { grid-column: auto; margin-top: 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: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    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: #EFF6FF;
    border: 1.5px solid #BFDBFE;
    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: #DBEAFE; border-color: var(--color-primary); }
.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: #0f172a;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    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-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb, 30,58,138), 0.12);
    background: #fff;
}
.form-group input::placeholder { color: #94a3b8; }

.btn-submit {
    width: 100%;
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    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(30,58,138,0.3);
    margin-top: 0.4rem;
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(30,58,138,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; }
