/* CSS File */

: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(251, 113, 133, 0.18);
}

/* Site Header */
.site-header {
    box-shadow: 0 2px 12px rgba(55, 65, 81, 0.5);
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 60%, rgba(var(--color-primary-rgb), 0.3) 100%);
    position: relative;
    z-index: 10;
}

/* Site Title */
.site-title {
    font-weight: 600;
    color: #333333;
    letter-spacing: 0.025em; 
}

/* Form Background */
.form-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    overflow: hidden;
    z-index: 1;
  }
  
  /* Subtle overlays for depth */
  .form-background::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 70%);
  }
  
  .form-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom right, rgba(0,0,0,0.05), transparent 70%);
  }

/* Form Section */
.form-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0.5rem 0;
}

/* Hero Step Icons */
.step-icon {
    background: var(--color-secondary);
    border-radius: 0.5rem;
}

.step-icon i {
    text-shadow: 0 2px 4px rgba(55, 65, 81, 1);
}

/* Hero Steps Title */
.steps-main-title {
    color: var(--color-primary) !important;
}

/* Button States */
button,
input[type="submit"],
.btn {
    background-color: var(--color-secondary) !important;
}

button:hover,
input[type="submit"]:hover,
.btn:hover {
    background-color: var(--color-secondary) !important;
}

/* Form Background Button States */
.form-background button,
.form-background input[type="submit"],
.form-background .btn {
    background-color: var(--color-secondary) !important;
}

.form-background button:hover,
.form-background input[type="submit"]:hover,
.form-background .btn:hover {
    background-color: var(--color-secondary) !important;
}

/* Tablet and up */
@media (min-width: 768px) {
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Desktop and up */
@media (min-width: 1024px) {
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Popup Close Button */
.popup-close {
    background: #000000 !important;
    color: #ffffff !important;
    border: none !important;
}

.popup-close:hover {
    background: #333333 !important;
    color: #ffffff !important;
}

/* ============================================================
   Footer (Concept 3 · Dark)
   ============================================================ */
.footer-floating-card {
  background: #10131A;
  color: #E8EAF0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, 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: 12px;
  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: #faf6fb; }

.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; }
}
