/* ================================================================
   ICU INDEX PAGE  |  assets/css/index.css
================================================================ */
:root {
  --navy: #021633;
  --blue: #0a2342;
  --accent: #4b38f5;
  --accent2: #6a5cff;
  --gold: #c9a227;
  --light: #f3f5f9;
  --muted: #64748b;
  --white: #ffffff;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.75rem;
}
.top-bar a {
  color: var(--gold);
  font-weight: 700;
  margin-left: 8px;
}

/* ── CATEGORY NAV ── */
.cat-nav {
  background: #f8fafc;
  border-bottom: 1px solid #e8eaf0;
}
.cat-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  gap: 12px;
  flex-wrap: wrap;
}
.cat-links {
  display: flex;
  flex-wrap: wrap;
}
.cat-link {
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.cat-link:hover,
.cat-link.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.top-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.top-links a {
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 20px;
  transition: 0.2s;
  white-space: nowrap;
}
.top-links a:hover {
  background: #f0f2ff;
  color: var(--accent);
}
#google_translate_element {
  display: inline-block;
}
#google_translate_element .goog-te-gadget-simple {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
}
#google_translate_element .goog-te-gadget-simple span {
  color: var(--muted) !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  font-family: "Inter", sans-serif !important;
}
#google_translate_element .goog-te-gadget-simple img {
  display: none !important;
}

/* ── HEADER ── */
.main-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* LOGO — exactly like business.html: natural width, fixed height only */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.brand-logo {
  height: 44px; /* same approach as business.css */
  width: auto; /* let image keep its natural ratio — no cropping */
  object-fit: contain;
  display: block;
  border-radius: 8px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-name {
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.brand-sub {
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.2px;
}

.header-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 22px;
  transition: 0.2s;
  white-space: nowrap;
}
.header-nav a:hover {
  color: var(--accent);
  background: #f0f2ff;
}
.nav-outline {
  border: 1.5px solid #e0e4ee !important;
  color: var(--navy) !important;
}
.nav-outline:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}
.nav-solid {
  background: linear-gradient(135deg, var(--accent), var(--accent2)) !important;
  color: white !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(75, 56, 245, 0.3);
}
.nav-solid:hover {
  transform: translateY(-1px);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none; /* hidden on desktop */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
  z-index: 10;
}
.hamburger span {
  width: 25px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 3px;
  display: block;
  transition: 0.3s;
  pointer-events: none;
}

/* ── MOBILE DRAWER ── */
.drawer-overlay {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 300;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}
.drawer-overlay.open {
  visibility: visible;
  opacity: 1;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: var(--white);
  padding: 20px;
  overflow-y: auto;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 301;
}
.drawer-overlay.open .drawer {
  transform: translateX(0);
}
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f2f5;
}
.drawer-header .d-logo {
  height: 38px;
  width: auto;
  border-radius: 6px;
}
.drawer-header button {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  padding: 0 4px;
}
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.drawer-links a {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: 0.2s;
  display: block;
}
.drawer-links a:hover {
  background: #f0f2ff;
  color: var(--accent);
}
.drawer-divider {
  height: 1px;
  background: #f0f2f5;
  margin: 8px 0;
}
.drawer-btn-outline {
  border: 1.5px solid #e0e4ee;
  text-align: center;
  border-radius: 22px;
  padding: 12px 16px;
  margin-top: 8px;
}
.drawer-btn-solid {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white !important;
  text-align: center;
  border-radius: 22px;
  padding: 12px 16px;
  margin-top: 6px;
  font-weight: 700;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2d5e 100%);
  min-height: calc(100vh - 112px);
  display: flex;
  align-items: center;
  padding: 60px 24px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  gap: 48px;
  align-items: center;
}

/* ── LOGIN PANEL ── */
.login-panel {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  width: 340px;
  min-width: 300px;
  flex-shrink: 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.login-panel h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.login-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.login-panel label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #555;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.login-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e4ee;
  border-radius: 12px;
  font-size: 0.92rem;
  font-family: "Inter", sans-serif;
  color: var(--navy);
  background: #fafbfc;
  margin-bottom: 18px;
  outline: none;
  transition: 0.2s;
  display: block;
}
.login-input:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(75, 56, 245, 0.1);
}
.login-input::placeholder {
  color: #bbb;
}
.login-check-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 8px;
  flex-wrap: wrap;
}
.check-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: #666;
  cursor: pointer;
  font-weight: normal;
}
.check-label input {
  accent-color: var(--accent);
  cursor: pointer;
  width: 15px;
  height: 15px;
}
.forgot-link {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
}
.login-error {
  display: none;
  font-size: 0.82rem;
  color: #e53935;
  background: #ffebee;
  border: 1px solid #ffcdd2;
  border-radius: 8px;
  padding: 9px 13px;
  margin-bottom: 14px;
}
.login-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--white);
  border: none;
  border-radius: 22px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: "Sora", sans-serif;
  transition: 0.3s;
  margin-bottom: 16px;
}
.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(75, 56, 245, 0.38);
}
.login-divider {
  text-align: center;
  position: relative;
  margin-bottom: 16px;
}
.login-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #e8eaf0;
}
.login-divider span {
  position: relative;
  background: var(--white);
  padding: 0 10px;
  font-size: 0.75rem;
  color: #aaa;
}
.enroll-btn {
  width: 100%;
  padding: 12px;
  border: 1.5px solid #e0e4ee;
  border-radius: 22px;
  background: transparent;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: 0.3s;
  margin-bottom: 12px;
}
.enroll-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #f0f2ff;
}
.enroll-note {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}
.enroll-note a {
  color: var(--accent);
  font-weight: 600;
}

/* ── HERO RIGHT — CARD OFFERS ── */
.hero-right {
  flex: 1;
  min-width: 0;
  color: var(--white);
}
.hero-right h1 {
  font-family: "Sora", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.gold {
  color: var(--gold);
}
.hero-sub {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 24px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card-tile {
  background: rgba(255, 255, 255, 0.12);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(5px);
  transition: 0.3s;
  cursor: pointer;
  color: white;
}
.card-tile:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.18);
}
.card-tile-top {
  margin-bottom: 0;
}
.tile-amt {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  display: block;
  margin-bottom: 5px;
}
.tile-label {
  font-size: 0.9rem;
  opacity: 0.9;
  display: block;
  color: rgba(255, 255, 255, 0.85);
}
.card-tile img {
  width: 100%;
  margin: 15px 0;
  border-radius: 8px;
  display: block;
  height: auto;
}
.tile-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  display: block;
}

/* ── FEATURES ── */
.features-section {
  padding: 80px 0;
  background: var(--light);
}
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-tag {
  display: inline-block;
  background: #f0f2ff;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: "Sora", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-head p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  border-bottom: 3px solid transparent;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--accent);
}
.f-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.feature-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
}
.f-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

/* ── INFO ROWS ── */
.info-section {
  padding: 80px 0;
  background: var(--white);
}
.info-section.grey {
  background: var(--light);
}
.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.info-row.reverse {
  direction: rtl;
}
.info-row.reverse > * {
  direction: ltr;
}
.info-text .section-tag {
  display: inline-block;
  margin-bottom: 14px;
}
.info-text h2 {
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}
.info-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.info-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  border-radius: 22px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: "Inter", sans-serif;
  transition: 0.3s;
  text-decoration: none;
}
.info-btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--white);
}
.info-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(75, 56, 245, 0.35);
}
.info-btn.dark {
  background: var(--navy);
  color: var(--white);
}
.info-btn.dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 22, 51, 0.3);
}
.info-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.info-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.app-img {
  cursor: pointer;
  position: relative;
}
.img-hover-tag {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transition: 0.3s;
}
.app-img:hover .img-hover-tag {
  opacity: 1;
}

/* ── STATS ── */
.stats-strip {
  background: linear-gradient(135deg, var(--navy), #0d2d5e);
  padding: 60px 0;
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-family: "Sora", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-lbl {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ── SERVICES ── */
.services-section {
  padding: 80px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.service-card {
  background: var(--light);
  border-radius: 20px;
  padding: 28px 22px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  background: var(--white);
}
.svc-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.service-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
}
.service-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.svc-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
}

/* ── FOOTER ── */
.main-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand h3 {
  font-family: "Sora", sans-serif;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: 0.2s;
  text-decoration: none;
}
.footer-social a:hover {
  background: rgba(75, 56, 245, 0.3);
}
.footer-col h4 {
  font-family: "Sora", sans-serif;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  transition: 0.2s;
}
.footer-col ul li a:hover {
  color: var(--white);
}
.footer-contact {
  margin-top: 18px;
}
.footer-contact p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}
.footer-contact strong {
  color: rgba(255, 255, 255, 0.65);
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.35);
}
.fdic-badge {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── MODALS ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}
.modal-overlay.open {
  display: flex;
}

/* Credit score modal — simple card */
.modal-box {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 36px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
}
.modal-box h2 {
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.modal-box p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.modal-btn {
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: 22px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: "Inter", sans-serif;
  transition: 0.2s;
  margin-bottom: 10px;
}
.modal-btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--white);
}
.modal-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(75, 56, 245, 0.35);
}
.modal-btn.ghost {
  background: #f5f5f5;
  color: #555;
}
.modal-btn.ghost:hover {
  background: #eee;
}

/* App modal — full image design */
.app-modal-inner {
  max-width: 440px;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  animation: modalIn 0.35s ease;
  position: relative;
}
.app-modal-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.app-modal-body {
  background: var(--white);
  padding: 32px 28px 28px;
  text-align: center;
}
.app-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff3e0;
  color: #e65100;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.app-modal-body h2 {
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.app-modal-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 22px;
}
.app-modal-continue {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  border: none;
  border-radius: 22px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: 0.3s;
  margin-bottom: 10px;
}
.app-modal-continue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(75, 56, 245, 0.38);
}
.app-modal-close-link {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  cursor: pointer;
  margin-top: 4px;
}
.app-modal-close-link:hover {
  color: var(--navy);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hamburger {
    display: flex !important;
  } /* force visible on tablet/phone */
  .header-nav {
    display: none;
  }
  .hero-inner {
    flex-direction: column;
    gap: 36px;
  }
  .login-panel {
    width: 100%;
    max-width: 500px;
    min-width: unset;
  }
  .hero-right {
    width: 100%;
  }
  .hero-right h1 {
    font-size: 1.9rem;
  }
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .info-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .info-row.reverse {
    direction: ltr;
  }
  .info-img img {
    height: 240px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 36px 16px;
    min-height: auto;
  }
  .hero-right h1 {
    font-size: 1.5rem;
  }
  .login-panel {
    padding: 26px 18px;
  }
  .login-panel h3 {
    font-size: 1.3rem;
  }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-num {
    font-size: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .section-head h2 {
    font-size: 1.7rem;
  }
  .info-text h2 {
    font-size: 1.5rem;
  }
  .cat-links {
    display: none;
  }
  .cat-nav-inner {
    justify-content: flex-end;
  }
  .modal-box {
    padding: 32px 20px;
  }
  .brand-sub {
    display: none;
  }
  .header-inner {
    padding: 0 14px;
  }
}
