:root {
  --bg: #06070b;
  --bg-soft: #0f1118;
  --surface: #12151d;
  --surface-2: #181c26;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f6f7fb;
  --muted: #b3b9c8;
  --brand: #ff3b30;
  --brand-2: #a30000;
  --brand-soft: rgba(255, 59, 48, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 59, 48, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 59, 48, 0.08), transparent 25%),
    linear-gradient(180deg, #050608 0%, #090b10 100%);
  color: var(--text);
  font-family: "Outfit", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 40%, rgba(255, 59, 48, 0.04) 55%, transparent 70%),
    radial-gradient(circle at 50% 20%, rgba(255, 59, 48, 0.08), transparent 35%);
  z-index: -1;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(8, 10, 14, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 24px rgba(255, 59, 48, 0.34);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-size: 1.1rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.footer-block a:hover {
  color: #fff;
}

.nav-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-btn,
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 14px 32px rgba(255, 59, 48, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

.nav-btn:hover,
.btn:hover,
.feature-card:hover,
.plan-card:hover,
.info-card:hover,
.showroom-card:hover,
.badge-link:hover {
  transform: translateY(-3px);
}

.hero,
.section {
  padding: 92px 0;
}

.hero-grid,
.split-block,
.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 59, 48, 0.08);
  border: 1px solid rgba(255, 59, 48, 0.18);
  color: #ff8a82;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-head h2,
.split-panel h2,
.download-copy h2 {
  margin: 18px 0 16px;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(1.7rem, 6vw, 3.8rem);
}

.hero-copy h1 span {
  display: block;
  color: #ffffff;
  opacity: 0.82;
}

.hero-text,
.section-head p,
.split-panel p,
.download-copy p,
.footer-brand p,
.feature-card p,
.plan-card li,
.info-card span,
.showroom-card p,
.qr-copy li,
.mini-card small,
.footer-block a,
.footer-block span {
  color: var(--muted);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.hero-stats article,
.feature-card,
.plan-card,
.info-card,
.showroom-card,
.mini-card,
.footer-block {
  background: linear-gradient(180deg, rgba(22, 25, 33, 0.96), rgba(14, 16, 22, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.hero-stats article {
  padding: 18px;
}

.hero-stats strong {
  display: block;
  font-size: 1.5rem;
  color: #fff;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  min-width: 0;
}

.visual-shell {
  position: relative;
  padding: 26px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(26, 29, 37, 0.98), rgba(10, 11, 16, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.visual-shell::before {
  content: "";
  position: absolute;
  inset: auto -60px -100px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 59, 48, 0.28), transparent 65%);
}

.visual-top,
.visual-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.visual-top {
  margin-bottom: 18px;
}

.visual-chip,
.mini-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f7c4bf;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qr-stage {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.qr-frame {
  padding: 14px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.qr-svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.qr-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.06;
}

.use-list {
  margin: 0;
  padding-left: 18px;
}

.visual-bottom {
  margin-top: 20px;
}

.mini-card {
  flex: 1 1 220px;
  padding: 18px;
}

.mini-card strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 1.05rem;
}

.strip {
  padding-bottom: 18px;
}

.strip-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.strip-items span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d5d9e3;
  font-size: 0.92rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
}

@media (min-width: 821px) {
  .section-head h2,
  .download-copy h2 {
    font-size: clamp(1.8rem, 3vw, 2.75rem);
  }

  .split-panel h2 {
    font-size: clamp(1.85rem, 3.1vw, 2.8rem);
  }

  .qr-copy h2 {
    font-size: clamp(1.35rem, 2vw, 1.95rem);
  }

  .page-card h2 {
    font-size: 1.5rem;
  }

  .cta-strip h2 {
    font-size: 1.4rem;
  }

  .section-title-compact {
    font-size: clamp(1.75rem, 2.8vw, 2.55rem);
  }
}

.section-head-tight {
  margin-bottom: 28px;
}

.section-head-left {
  margin-bottom: 28px;
}

.feature-grid,
.showroom-grid,
.process-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature-card,
.showroom-card,
.plan-card,
.info-card,
.process-card,
.faq-card,
.policy-card {
  padding: 24px;
}

.policy-card {
  display: block;
}

.card-no,
.plan-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: #ff8a82;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card h3,
.showroom-card h3,
.footer-block h3,
.plan-card h3,
.info-card strong,
.process-card h3,
.faq-card h3,
.policy-card h3 {
  margin: 16px 0 10px;
}

.feature-card h3,
.showroom-card h3,
.process-card h3,
.faq-card h3,
.policy-card h3 {
  font-size: 1.35rem;
  line-height: 1.14;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.01);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.plan-card {
  min-width: 0;
}

.plan-card h3 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.plan-card h3 span {
  font-size: 1rem;
  color: var(--muted);
}

.plan-card ul {
  margin: 0;
  padding-left: 18px;
}

.plan-card-primary {
  background:
    linear-gradient(180deg, rgba(255, 59, 48, 0.18), rgba(20, 18, 21, 0.98));
  border-color: rgba(255, 59, 48, 0.25);
}

.split-panel {
  min-width: 0;
}

.split-panel h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.info-stack {
  display: grid;
  gap: 18px;
}

.info-card strong {
  display: block;
  font-size: 1.14rem;
  color: #fff;
}

.process-card,
.faq-card,
.policy-card,
.contact-panel {
  background: linear-gradient(180deg, rgba(22, 25, 33, 0.96), rgba(14, 16, 22, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.policy-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 59, 48, 0.28);
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 59, 48, 0.12);
  color: #ff8a82;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

.showroom-panel {
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.download-layout {
  align-items: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: start;
}

.contact-panel {
  padding: 28px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.contact-list a,
.contact-list span {
  color: var(--muted);
  line-height: 1.6;
}

.policy-stack {
  display: grid;
  gap: 18px;
}

.policy-card p,
.faq-card p,
.process-card p {
  color: var(--muted);
  line-height: 1.7;
}

.process-note {
  max-width: 860px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.download-badges {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.badge-link {
  display: inline-block;
  padding: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  max-width: 100%;
}

.badge-link img {
  width: min(320px, 100%);
  height: auto;
}

.site-footer {
  padding: 70px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #07080d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 20px;
}

.footer-brand strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.footer-block {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-bottom-line {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-line p {
  margin: 0;
  color: #8d95a8;
  font-size: 0.92rem;
}

/* --- MATCHED STYLING FOR USER FEATURES SECTION --- */

.section-light-bg {
    /* Isse dark rakha hai taaki main background se match kare par thoda contrast rahe */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.feature-grid {
    /* Aapki existing grid settings ko use karte hue */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-card-alt {
    /* Aapke existing card style (glass-morphism) se matched */
    background: linear-gradient(180deg, rgba(22, 25, 33, 0.96), rgba(14, 16, 22, 0.96));
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

/* Hover effect like other cards but with a brand glow */
.feature-card-alt:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 59, 48, 0.4);
    box-shadow: 0 20px 40px rgba(255, 59, 48, 0.1);
}

.icon-box {
    font-size: 2.2rem;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 10px rgba(255, 59, 48, 0.3));
    display: inline-grid;
    place-items: center;
    min-width: 48px;
    line-height: 1;
}

.feature-card-alt h3 {
    font-size: 1.4rem;
    color: #fff;
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.feature-card-alt p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Chota sa decorative element card ke corner mein */
.feature-card-alt::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at top right, rgba(255, 59, 48, 0.1), transparent 70%);
    pointer-events: none;
}

.contact-form-section {
  padding-bottom: 100px;
}

.form-container-glass {
  background: linear-gradient(135deg, rgba(22, 25, 33, 0.9), rgba(10, 11, 16, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 50px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

/* Red glow effect in corner */
.form-container-glass::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 59, 48, 0.1), transparent 70%);
  z-index: 0;
}

.smart-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.smart-form input, 
.smart-form select, 
.smart-form textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.smart-form input::placeholder,
.smart-form textarea::placeholder {
  color: var(--muted);
}

.smart-form input:focus, 
.smart-form select:focus, 
.smart-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: rgba(255, 59, 48, 0.03);
  box-shadow: 0 0 15px rgba(255, 59, 48, 0.1);
}

.smart-form button {
  align-self: flex-start;
  min-width: 180px;
  cursor: pointer;
  border: none;
}

/* Responsive Form */
@media (max-width: 768px) {
  .input-group {
    grid-template-columns: 1fr;
  }
  .form-container-glass {
    padding: 25px;
  }
  .smart-form button {
    width: 100%;
  }
}


/* Responsive adjustment */
@media (max-width: 820px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card-alt {
        padding: 24px;
    }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-block,
  .download-layout,
  .qr-stage,
  .footer-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
  }

  .nav {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .feature-grid,
  .showroom-grid,
  .plan-grid,
  .hero-stats,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .showroom-panel {
    padding: 24px;
  }

  .hero,
  .section {
    padding: 72px 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .hero-copy h1 {
    font-size: 2.55rem;
  }

  .hero-actions,
  .visual-top,
  .visual-bottom {
    flex-direction: column;
  }

  .btn,
  .nav-btn,
  .badge-link {
    width: 100%;
  }

  .visual-shell,
  .feature-card,
  .plan-card,
  .showroom-card,
  .info-card,
  .footer-block,
  .process-card,
  .faq-card,
  .policy-card,
  .contact-panel {
    padding-left: 18px;
    padding-right: 18px;
  }

  .qr-stage {
    gap: 16px;
  }

  .qr-copy h2,
  .download-copy h2,
  .split-panel h2,
  .section-head h2 {
    font-size: 1.9rem;
  }
}

.page-main {
  padding: 42px 0 100px;
}

.page-hero-card,
.page-card,
.cta-strip {
  background: linear-gradient(180deg, rgba(22, 25, 33, 0.96), rgba(14, 16, 22, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-hero-card {
  padding: 42px;
  position: relative;
  overflow: hidden;
}

.page-hero-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 59, 48, 0.18), transparent 70%);
  pointer-events: none;
}

.page-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.page-breadcrumbs a:hover {
  color: #fff;
}

.page-hero-card h1 {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.page-hero-card p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.72;
  margin: 0;
}

.page-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.page-highlights article {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.page-highlights strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.page-highlights span {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 26px;
  margin-top: 30px;
}

.page-stack {
  display: grid;
  gap: 22px;
}

.page-card {
  padding: 30px;
}

.page-card h2,
.page-card h3 {
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.page-card h2 {
  font-size: 1.65rem;
}

.page-card h3 {
  font-size: 1.05rem;
}

.prose-flow p,
.prose-flow li {
  color: var(--muted);
  line-height: 1.75;
}

.prose-flow p {
  margin: 0 0 14px;
}

.prose-flow p:last-child {
  margin-bottom: 0;
}

.prose-flow ul,
.prose-flow ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.prose-flow + .prose-flow {
  margin-top: 22px;
}

.mini-stack {
  display: grid;
  gap: 18px;
}

.detail-list {
  display: grid;
  gap: 16px;
}

.detail-list article {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.detail-list strong {
  display: block;
  margin-bottom: 6px;
}

.detail-list span,
.detail-list a {
  color: var(--muted);
  line-height: 1.65;
}

.detail-list a:hover {
  color: #fff;
}

.cta-strip {
  margin-top: 30px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-strip h2 {
  margin: 0 0 8px;
  font-size: 1.55rem;
}

.cta-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
  margin-top: 30px;
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

@media (max-width: 1080px) {
  .page-grid,
  .contact-split,
  .page-highlights {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .page-main {
    padding-top: 28px;
  }

  .page-hero-card,
  .page-card {
    padding: 24px;
  }
}
