:root {
  --navy: #10357e;
  --blue: #1a63ea;
  --teal: #19c6bc;
  --cyan: #0da9ee;
  --dark: #10203e;
  --muted: #60708e;
  --line: #dbe6ff;
  --bg: #f5f9ff;
  --white: #ffffff;
  --shadow: 0 22px 50px rgba(16, 53, 126, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background: linear-gradient(180deg, #f9fbff 0%, #f3f8ff 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 10%, rgba(25,198,188,0.08), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(26,99,234,0.08), transparent 20%),
    radial-gradient(circle at 85% 82%, rgba(13,169,238,0.08), transparent 22%);
  z-index: -1;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.86);
  border-bottom: 1px solid rgba(219, 230, 255, 0.8);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 22px;
}

.brand img { width: 240px; height: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  color: #26406e;
}
.nav a { position: relative; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transition: width .25s ease;
}
.nav a:hover::after { width: 100%; }

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.mobile-toggle span {
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 99px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy));
  box-shadow: 0 12px 26px rgba(26, 99, 234, 0.25);
}
.btn-secondary {
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--line);
  color: var(--navy);
}
.btn-nav { min-width: 148px; }
.full { width: 100%; }

.hero {
  padding: 52px 0 24px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 36px;
  align-items: center;
}
.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: var(--navy);
}
.hero-copy h1 span {
  display: block;
  background: linear-gradient(90deg, #18bfc3, #11a8f0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text {
  max-width: 620px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(25,198,188,0.12);
  color: #128b84;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.trust-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}
.trust-pill {
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 24px rgba(17, 59, 131, 0.05);
}
.trust-pill strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 0.96rem;
}
.trust-pill span,
.hero-note,
.section-heading p,
.section-side-note,
.loan-card p,
.spec span,
.calc-note-box p,
.step-card p,
.point span,
.faq-section p,
.apply-banner p,
.footer-brand p,
.site-footer p,
.summary-note,
.security-card p,
.phone-menu,
.loan-term,
.welcome {
  color: var(--muted);
  line-height: 1.7;
}
.hero-note {
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}
.orb-a {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(26,99,234,0.18), rgba(26,99,234,0));
  top: 30px;
  left: 10px;
}
.orb-b {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(25,198,188,0.18), rgba(25,198,188,0));
  bottom: 20px;
  right: 10px;
}
.phone-mockup {
  position: relative;
  width: 320px;
  background: #0c162c;
  border-radius: 42px;
  padding: 18px;
  box-shadow: 0 30px 60px rgba(13, 28, 72, 0.28);
  z-index: 2;
}
.phone-notch {
  width: 120px;
  height: 22px;
  background: #111;
  border-radius: 999px;
  margin: 0 auto 12px;
}
.phone-screen {
  background: linear-gradient(180deg, #fbfdff 0%, #eef5ff 100%);
  border-radius: 30px;
  padding: 18px;
  min-height: 560px;
  position: relative;
  overflow: hidden;
}
.phone-screen::before {
  content: "";
  position: absolute;
  right: -50px;
  top: 120px;
  width: 180px;
  height: 180px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(25,198,188,0.18), rgba(26,99,234,0.04));
  transform: rotate(24deg);
}
.phone-logo { width: 138px; margin-bottom: 16px; }
.welcome { font-size: 0.98rem; margin-bottom: 16px; }
.welcome strong { color: var(--navy); font-size: 1.35rem; line-height: 1.2; }
.phone-loan-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(16, 53, 126, 0.08);
  border-radius: 22px;
  padding: 18px;
  margin-top: 10px;
  z-index: 2;
}
.mini-title {
  color: #6f7fa0;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.loan-name {
  color: var(--navy);
  margin-top: 10px;
  font-weight: 700;
}
.loan-amount {
  margin-top: 8px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}
.loan-term { margin: 6px 0 16px; }
.phone-menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 12px;
  padding-top: 18px;
  margin-top: 20px;
  border-top: 1px dashed #d6e1fb;
  font-size: 0.86rem;
}
.summary-card,
.security-card {
  position: absolute;
  width: 260px;
  border-radius: 24px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(219, 230, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  z-index: 3;
}
.top-card {
  top: 24px;
  right: 6px;
  padding: 20px;
}
.summary-row,
.repay-row,
.spec,
.slider-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}
.summary-row {
  margin-top: 13px;
  color: var(--muted);
}
.summary-row strong,
.spec strong,
.repay-row strong,
.slider-top strong,
.section-heading h2,
.apply-banner h2,
.faq-section h2,
.compliance-highlight h2,
.step-card h3,
.loan-card h3,
.strip-item h3 {
  color: var(--navy);
}
.summary-note {
  margin-top: 14px;
  font-size: 0.9rem;
  padding-top: 14px;
  border-top: 1px solid #e2ebff;
}
.bottom-card {
  left: -10px;
  bottom: 36px;
  width: 300px;
  background: linear-gradient(135deg, #0c44be, #0da9ee 70%, #1ac9b8);
  color: white;
  padding: 22px;
  display: flex;
  gap: 14px;
}
.bottom-card strong,
.bottom-card p { color: white; margin: 0; }
.shield-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 18px;
  background: rgba(255,255,255,0.16);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 800;
}

.value-strip {
  padding: 26px 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(90deg, #1150d8, #0f78ea 45%, #19c6bc 100%);
  padding: 1px;
  box-shadow: var(--shadow);
}
.strip-item {
  background: linear-gradient(130deg, rgba(17, 80, 216, 0.98), rgba(11, 115, 223, 0.98) 45%, rgba(25, 198, 188, 0.98));
  color: white;
  padding: 28px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.strip-item h3,
.strip-item p { color: white; margin: 0; }
.strip-item h3 { font-size: 1rem; margin-bottom: 6px; }
.strip-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255,255,255,0.16);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 800;
}

.loan-section,
.calculator-section,
.steps-section,
.compliance-section,
.faq-section,
.apply-section {
  padding: 74px 0;
}
.section-heading {
  margin-bottom: 34px;
}
.section-heading.split {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}
.section-heading.center {
  text-align: center;
}
.section-heading h2,
.apply-banner h2,
.faq-section h2,
.compliance-highlight h2 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
}
.section-side-note {
  max-width: 380px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
}

.loan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.loan-card {
  position: relative;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 14px 32px rgba(12, 45, 108, 0.07);
}
.loan-card.featured {
  border-color: rgba(25,198,188,0.5);
  box-shadow: 0 18px 36px rgba(22, 165, 194, 0.16);
}
.badge {
  position: absolute;
  top: -12px;
  left: 24px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #17c8be, #10a2ee);
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
}
.card-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(26,99,234,0.12), rgba(25,198,188,0.14));
  color: var(--navy);
  font-size: 1.7rem;
  margin-bottom: 18px;
}
.loan-card h3 { margin: 0 0 6px; font-size: 1.36rem; }
.loan-card p { margin: 0 0 20px; }
.spec {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px dashed #d9e5ff;
}
.spec strong { text-align: right; }

.calculator-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}
.calculator-panel,
.repayment-card,
.apply-banner,
.compliance-highlight,
.faq-list details,
.step-card,
.point {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(12, 45, 108, 0.07);
}
.calculator-panel,
.repayment-card {
  border-radius: var(--radius-xl);
  padding: 30px;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 26px;
}
.text-btn {
  border: none;
  background: transparent;
  color: var(--blue);
  font-weight: 700;
  cursor: pointer;
}
.slider-block + .slider-block { margin-top: 20px; }
.slider-top { margin-bottom: 10px; }
.range-meta {
  display: flex;
  justify-content: space-between;
  color: #7c8baa;
  font-size: 0.88rem;
  margin-top: 8px;
}
input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
}
.calc-note-box {
  margin-top: 28px;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(26,99,234,0.08), rgba(25,198,188,0.1));
}
.calc-note-box strong { display: block; margin-bottom: 8px; color: var(--navy); }

.repayment-card {
  background: linear-gradient(180deg, #10357e, #102965 72%, #133778);
  color: white;
}
.repayment-card .mini-title,
.repayment-card .repay-footnote,
.repayment-card .repay-row span { color: rgba(255,255,255,0.75); }
.total-number {
  margin: 18px 0 22px;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
}
.repay-row { padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.repay-footnote {
  padding: 16px;
  margin: 18px 0 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  line-height: 1.7;
  font-size: 0.92rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-lg);
}
.step-index {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.step-card h3 { margin: 0 0 10px; font-size: 1.2rem; }
.step-card::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(16,53,126,0.35);
  font-size: 2rem;
  font-weight: 800;
}
.step-card:last-child::after { display: none; }

.compliance-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}
.compliance-highlight {
  border-radius: var(--radius-xl);
  padding: 34px;
  background: linear-gradient(135deg, #0e3c98, #124fb8 52%, #13a9eb 85%, #19c6bc);
}
.compliance-highlight,
.compliance-highlight h2,
.compliance-highlight p { color: white; }
.compliance-highlight .btn-secondary { border-color: rgba(255,255,255,0.38); }
.compliance-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.point {
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.point strong { color: var(--navy); font-size: 1.05rem; }

.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-list details {
  border-radius: 20px;
  padding: 0 22px;
  overflow: hidden;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 700;
  color: var(--navy);
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: var(--blue);
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p {
  margin: 0;
  padding: 0 0 20px;
}

.apply-banner {
  border-radius: 28px;
  padding: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.apply-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 40px 0 120px;
  background: linear-gradient(180deg, #09245b, #081d49);
  color: rgba(255,255,255,0.9);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img { width: 220px; margin-bottom: 18px; }
.site-footer h4 {
  margin: 0 0 16px;
  color: white;
  font-size: 1rem;
}
.site-footer a,
.site-footer p {
  display: block;
  margin: 10px 0;
  color: rgba(255,255,255,0.76);
  line-height: 1.7;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
}

.mobile-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(219, 230, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(10, 35, 88, 0.18);
  z-index: 60;
}
.mobile-cta strong { display: block; color: var(--navy); font-size: 0.95rem; }
.mobile-cta span { display: block; color: var(--muted); font-size: 0.8rem; }
.mobile-cta .btn { height: 48px; padding: 0 18px; white-space: nowrap; }

@media (max-width: 1080px) {
  .hero-grid,
  .calculator-grid,
  .compliance-grid,
  .faq-grid,
  .footer-grid,
  .section-heading.split,
  .apply-banner {
    grid-template-columns: 1fr;
    display: grid;
  }
  .section-heading.split,
  .apply-banner { align-items: start; }
  .hero-visual { min-height: 540px; }
  .trust-pills,
  .loan-cards,
  .steps-grid,
  .strip-grid,
  .compliance-points { grid-template-columns: repeat(2, 1fr); }
  .step-card::after { display: none; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 820px) {
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 22px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .nav.open { display: flex; }
  .mobile-toggle { display: inline-flex; }
  .btn-nav { display: none; }
  .nav-wrap { min-height: 76px; }
  .brand img { width: 190px; }
  .hero { padding-top: 28px; }
  .trust-pills,
  .loan-cards,
  .steps-grid,
  .strip-grid,
  .compliance-points { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 2.5rem; }
  .hero-visual {
    min-height: auto;
    padding: 40px 0 0;
    display: block;
  }
  .phone-mockup { margin: 0 auto; width: min(100%, 320px); }
  .summary-card,
  .security-card {
    position: static;
    width: 100%;
    margin: 0 auto 16px;
  }
  .bottom-card {
    display: flex;
    width: 100%;
    margin-top: 16px;
  }
  .container { width: min(100% - 28px, 1200px); }
  .loan-section,
  .calculator-section,
  .steps-section,
  .compliance-section,
  .faq-section,
  .apply-section { padding: 58px 0; }
  .mobile-cta { display: flex; }
  .site-footer { padding-bottom: 110px; }
}

@media (max-width: 560px) {
  .hero-copy h1 { font-size: 2.2rem; }
  .hero-actions .btn,
  .apply-actions .btn { width: 100%; }
  .panel-head,
  .apply-banner { display: block; }
  .apply-actions { margin-top: 18px; }
  .calculator-panel,
  .repayment-card,
  .loan-card,
  .step-card,
  .point,
  .apply-banner,
  .compliance-highlight { padding: 22px; }
  .section-heading h2,
  .apply-banner h2,
  .faq-section h2,
  .compliance-highlight h2 { font-size: 1.85rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Independent content pages */
.content-page {
  padding: 56px 0 86px;
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 54px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(16, 53, 126, 0.98), rgba(26, 99, 234, 0.92) 48%, rgba(25, 198, 188, 0.88));
  color: #fff;
  box-shadow: var(--shadow);
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
}
.page-hero .eyebrow {
  background: rgba(255,255,255,0.16);
  color: #e9ffff;
}
.page-hero h1 {
  margin: 18px 0 12px;
  max-width: 760px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  line-height: 1.8;
}
.content-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  margin-top: 34px;
}
.content-sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 12px 28px rgba(12, 45, 108, 0.06);
}
.content-sidebar a {
  display: block;
  padding: 12px 0;
  color: var(--navy);
  font-weight: 700;
  border-bottom: 1px solid #edf2ff;
}
.content-sidebar a:last-child { border-bottom: none; }
.content-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 16px 36px rgba(12, 45, 108, 0.07);
  margin-bottom: 22px;
}
.content-card h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}
.content-card h3 {
  color: var(--navy);
  margin: 24px 0 10px;
}
.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.85;
}
.content-card ul,
.content-card ol {
  padding-left: 22px;
  margin: 12px 0 0;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.info-tile {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(26,99,234,0.08), rgba(25,198,188,0.1));
  border: 1px solid var(--line);
}
.info-tile strong {
  color: var(--navy);
  display: block;
  margin-bottom: 8px;
}
.phone-status {
  margin-top: 16px;
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(25,198,188,0.12);
  color: #0b817b;
  font-size: .9rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 900px) {
  .content-shell { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .page-hero { padding: 34px 24px; }
  .info-grid { grid-template-columns: 1fr; }
}
