:root {
  --ink:#10243a;
  --muted:#637384;
  --blue:#1677ff;
  --blue-dark:#075cc4;
  --orange:#f4a51c;
  --surface:#f5f8fb;
  --line:#e0e7ef;
  --white:#ffffff;
  --max:1180px;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
}

body {
  margin:0;
  color:var(--ink);
  background:#fff;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing:antialiased;
}

a {
  color:inherit;
}

img {
  max-width:100%;
}

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

.site-header {
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.93);
  border-bottom:1px solid rgba(16,36,58,.08);
  backdrop-filter:blur(16px);
}

.nav-wrap {
  width:min(var(--max), calc(100% - 40px));
  margin:auto;
  min-height:74px;
  display:flex;
  align-items:center;
  gap:28px;
}

.brand {
  display:flex;
  align-items:center;
  gap:11px;
  text-decoration:none;
  margin-right:auto;
}

.brand-mark {
  width:42px;
  height:42px;
  border-radius:13px;
  display:grid;
  place-items:center;
  font-weight:900;
  color:white;
  background:linear-gradient(135deg,var(--blue),#55a8ff);
}

.brand strong {
  display:block;
  font-size:17px;
  letter-spacing:-.02em;
}

.brand span {
  display:block;
  margin-top:1px;
  font-size:10px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.13em;
}

.site-nav {
  display:flex;
  align-items:center;
  gap:27px;
}

.site-nav a {
  text-decoration:none;
  color:#42566a;
  font-size:14px;
  font-weight:650;
}

.site-nav a:hover {
  color:var(--blue);
}

.nav-cta {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 19px;
  border-radius:999px;
  text-decoration:none;
  color:#fff;
  background:var(--ink);
  font-size:14px;
  font-weight:750;
}

.menu-button {
  display:none;
  border:0;
  background:transparent;
  padding:6px;
}

.menu-button span {
  width:24px;
  height:2px;
  background:var(--ink);
  display:block;
  margin:5px;
}

.hero {
  min-height:690px;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at 85% 20%, rgba(22,119,255,.12), transparent 36%),
    linear-gradient(180deg,#fff,#f7faff);
}

.hero-bg {
  position:absolute;
  right:-8%;
  bottom:-36%;
  width:58%;
  height:90%;
  background:linear-gradient(135deg,rgba(22,119,255,.08),rgba(244,165,28,.08));
  transform:rotate(-8deg);
  border-radius:60px;
}

.hero-grid {
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:80px;
  align-items:center;
  padding:80px 0 95px;
}

.eyebrow {
  color:var(--blue);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:12px;
  font-weight:850;
  margin-bottom:18px;
}

.hero h1,
.page-hero h1 {
  margin:0;
  max-width:720px;
  font-size:clamp(45px,6vw,78px);
  line-height:.98;
  letter-spacing:-.055em;
  font-weight:820;
}

.hero h1 span {
  color:var(--blue);
}

.hero-lead,
.page-hero p {
  max-width:650px;
  margin:28px 0 0;
  color:var(--muted);
  font-size:19px;
  line-height:1.65;
}

.hero-actions {
  margin-top:34px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:15px 22px;
  border-radius:13px;
  text-decoration:none;
  font-size:15px;
  font-weight:780;
  transition:.18s ease;
}

.button:hover {
  transform:translateY(-1px);
}

.button.primary {
  background:var(--blue);
  color:white;
  box-shadow:0 12px 30px rgba(22,119,255,.18);
}

.button.primary:hover {
  background:var(--blue-dark);
}

.button.secondary {
  border:1px solid var(--line);
  color:var(--ink);
  background:#fff;
}

.button.light {
  background:white;
  color:var(--ink);
}

.button.large {
  padding:18px 28px;
}

.hero-note {
  margin-top:15px;
  color:#84919d;
  font-size:13px;
}

.journey-card {
  background:rgba(255,255,255,.94);
  border:1px solid rgba(16,36,58,.09);
  border-radius:26px;
  padding:28px;
  box-shadow:0 30px 90px rgba(20,50,85,.13);
}

.journey-card-head {
  padding-bottom:21px;
  border-bottom:1px solid var(--line);
  margin-bottom:8px;
}

.journey-card-head span {
  display:block;
  color:var(--muted);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.journey-card-head strong {
  display:block;
  margin-top:8px;
  font-size:20px;
}

.journey-step {
  display:grid;
  grid-template-columns:45px 1fr;
  gap:14px;
  align-items:start;
  padding:18px 0;
  border-bottom:1px solid #edf1f5;
}

.journey-step:last-child {
  border-bottom:0;
}

.step-number {
  width:37px;
  height:37px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:var(--blue);
  background:#edf5ff;
  font-size:11px;
  font-weight:850;
}

.journey-step strong {
  display:block;
  font-size:15px;
}

.journey-step span {
  display:block;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
  margin-top:4px;
}

.value-strip {
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#fff;
}

.value-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.value-grid > div {
  padding:25px 24px;
  border-right:1px solid var(--line);
}

.value-grid > div:last-child {
  border-right:0;
}

.value-grid strong {
  display:block;
  font-size:15px;
}

.value-grid span {
  display:block;
  margin-top:5px;
  color:var(--muted);
  font-size:13px;
}

.section {
  padding:105px 0;
}

.section-heading {
  max-width:760px;
  margin-bottom:55px;
}

.section-heading.narrow {
  max-width:790px;
}

.section-heading h2,
.app-section h2,
.legacy-section h2,
.final-cta h2,
.photo-copy h2 {
  margin:0;
  font-size:clamp(34px,4vw,54px);
  line-height:1.08;
  letter-spacing:-.04em;
}

.section-heading p,
.app-section p,
.legacy-section p {
  color:var(--muted);
  font-size:17px;
  line-height:1.72;
}

.feature-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.feature-card {
  min-height:280px;
  padding:28px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
}

.feature-index {
  color:var(--blue);
  font-size:12px;
  font-weight:850;
}

.feature-card h3 {
  font-size:21px;
  margin:54px 0 10px;
}

.feature-card p {
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
}

.photo-break {
  min-height:510px;
  position:relative;
  display:flex;
  align-items:center;
  background:
    url("../images/projects/experience.jpg")
    center / cover no-repeat,
    #17324f;
  color:white;
}

.photo-overlay {
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(8,25,42,.86),rgba(8,25,42,.35)),
    linear-gradient(0deg,rgba(8,25,42,.35),transparent);
}

.photo-copy {
  position:relative;
  z-index:2;
}

.photo-copy > span {
  display:block;
  margin-bottom:20px;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:12px;
  font-weight:800;
  color:#c9e2ff;
}

.photo-copy h2 {
  max-width:850px;
  margin-bottom:30px;
}

.audience-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.audience-card {
  border-top:3px solid var(--ink);
  padding:25px 2px;
}

.audience-card > span {
  color:var(--blue);
  font-size:12px;
  font-weight:800;
}

.audience-card h3 {
  font-size:23px;
  margin:35px 0 12px;
}

.audience-card p {
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
}

.app-section {
  background:var(--surface);
}

.app-grid {
  display:grid;
  grid-template-columns:1fr .85fr;
  gap:100px;
  align-items:center;
}

.check-list {
  list-style:none;
  margin:30px 0;
  padding:0;
}

.check-list li {
  border-bottom:1px solid #dfe7ef;
  padding:13px 0;
  font-weight:620;
  font-size:14px;
}

.check-list li::before {
  content:"\2713";
  color:var(--blue);
  margin-right:12px;
}

.text-link {
  color:var(--blue);
  font-weight:800;
  text-decoration:none;
}

.app-window {
  border-radius:24px;
  background:#fff;
  box-shadow:0 25px 70px rgba(21,45,72,.13);
  overflow:hidden;
  border:1px solid #e2e9ef;
}

.window-top {
  height:42px;
  display:flex;
  gap:6px;
  align-items:center;
  padding:0 16px;
  border-bottom:1px solid #e8edf2;
}

.window-top span {
  width:8px;
  height:8px;
  border-radius:50%;
  background:#d2dbe4;
}

.window-body {
  padding:29px;
}

.window-label {
  font-size:10px;
  letter-spacing:.16em;
  font-weight:900;
  color:var(--blue);
}

.window-body h3 {
  font-size:27px;
  margin:10px 0 22px;
}

.mock-progress {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:6px;
  margin-bottom:25px;
}

.mock-progress span {
  height:5px;
  border-radius:3px;
  background:#dfe6ed;
}

.mock-progress span.active {
  background:var(--blue);
}

.mock-card {
  background:#f4f8fd;
  padding:20px;
  border-radius:14px;
  margin-bottom:16px;
}

.mock-card small {
  color:var(--muted);
}

.mock-card strong {
  display:block;
  margin:6px 0;
}

.mock-card p {
  font-size:13px;
  margin:0;
}

.mock-row {
  display:flex;
  justify-content:space-between;
  padding:13px 3px;
  border-bottom:1px solid #edf1f5;
  font-size:13px;
}

.mock-row strong {
  color:var(--blue);
}

.legacy-section {
  padding:100px 0;
}

.legacy-grid {
  display:grid;
  grid-template-columns:220px 1fr;
  gap:70px;
  align-items:start;
}

.legacy-year span {
  display:block;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:11px;
}

.legacy-year strong {
  font-size:65px;
  letter-spacing:-.06em;
}

.final-cta {
  padding:75px 0;
  background:#0f253b;
  color:white;
}

.final-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
}

.final-inner > div {
  max-width:730px;
}

.final-inner > div > span {
  color:#a8c4df;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:11px;
  font-weight:800;
}

.final-inner h2 {
  margin-top:12px;
}

.site-footer {
  background:#081728;
  color:#d7e2ec;
  padding:65px 0 28px;
}

.footer-grid {
  display:grid;
  grid-template-columns:1.5fr repeat(3,1fr);
  gap:55px;
}

.footer-brand {
  color:white;
  font-size:20px;
  font-weight:850;
}

.footer-grid p {
  color:#8ea4b9;
  max-width:300px;
  line-height:1.6;
}

.footer-grid strong {
  color:white;
  display:block;
  margin-bottom:13px;
  font-size:13px;
}

.footer-grid a,
.footer-grid span {
  display:block;
  text-decoration:none;
  color:#98adbf;
  margin:9px 0;
  font-size:13px;
}

.footer-bottom {
  margin-top:55px;
  padding-top:23px;
  border-top:1px solid rgba(255,255,255,.09);
  display:flex;
  justify-content:space-between;
  color:#738ba0;
  font-size:12px;
}

.page-hero {
  padding:110px 0;
  min-height:480px;
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at 80% 10%,rgba(22,119,255,.12),transparent 32%),
    #f7faff;
}

.narrow-page {
  max-width:900px;
}

.process-list {
  max-width:930px;
}

.process-row {
  display:grid;
  grid-template-columns:90px 1fr;
  gap:30px;
  padding:40px 0;
  border-bottom:1px solid var(--line);
}

.process-row > span {
  color:var(--blue);
  font-weight:850;
}

.process-row h2 {
  margin:0;
  font-size:30px;
  letter-spacing:-.03em;
}

.process-row p {
  color:var(--muted);
  line-height:1.7;
  max-width:680px;
}

.contact-layout {
  display:grid;
  grid-template-columns:1fr .65fr;
  gap:100px;
  align-items:center;
}

.contact-card {
  background:white;
  padding:35px;
  border-radius:22px;
  box-shadow:0 24px 70px rgba(18,49,82,.1);
}

.contact-card small {
  color:var(--muted);
  display:block;
  margin-bottom:7px;
}

.contact-card a,
.contact-card strong {
  font-size:18px;
  text-decoration:none;
}

.contact-card hr {
  margin:24px 0;
  border:0;
  border-top:1px solid var(--line);
}

@media (max-width:900px) {

  .site-nav,
  .nav-cta {
    display:none;
  }

  .menu-button {
    display:block;
  }

  .site-nav.open {
    display:flex;
    position:absolute;
    top:74px;
    left:0;
    right:0;
    padding:20px;
    background:white;
    flex-direction:column;
    align-items:flex-start;
    border-bottom:1px solid var(--line);
  }

  .hero {
    min-height:auto;
  }

  .hero-grid,
  .app-grid,
  .contact-layout {
    grid-template-columns:1fr;
    gap:45px;
  }

  .hero-grid {
    padding:65px 0;
  }

  .hero h1 {
    font-size:52px;
  }

  .value-grid,
  .feature-grid,
  .audience-grid {
    grid-template-columns:repeat(2,1fr);
  }

  .value-grid > div:nth-child(2) {
    border-right:0;
  }

  .legacy-grid {
    grid-template-columns:1fr;
    gap:20px;
  }

  .final-inner {
    align-items:flex-start;
    flex-direction:column;
  }

  .footer-grid {
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:620px) {

  .container,
  .nav-wrap {
    width:min(100% - 28px,var(--max));
  }

  .nav-wrap {
    min-height:66px;
  }

  .hero-grid {
    padding:48px 0 55px;
  }

  .hero h1,
  .page-hero h1 {
    font-size:42px;
  }

  .hero-lead,
  .page-hero p {
    font-size:16px;
  }

  .hero-actions {
    flex-direction:column;
  }

  .hero-actions .button {
    width:100%;
  }

  .journey-card {
    padding:20px;
  }

  .value-grid,
  .feature-grid,
  .audience-grid,
  .footer-grid {
    grid-template-columns:1fr;
  }

  .value-grid > div {
    border-right:0;
    border-bottom:1px solid var(--line);
  }

  .section {
    padding:75px 0;
  }

  .feature-card {
    min-height:auto;
  }

  .feature-card h3 {
    margin-top:30px;
  }

  .photo-break {
    min-height:500px;
  }

  .app-grid {
    gap:50px;
  }

  .legacy-year strong {
    font-size:55px;
  }

  .final-cta {
    padding:60px 0;
  }

  .footer-bottom {
    flex-direction:column;
    gap:9px;
  }

  .process-row {
    grid-template-columns:45px 1fr;
    gap:15px;
  }

  .process-row h2 {
    font-size:24px;
  }

  .page-hero {
    padding:80px 0;
  }
}
/* ==========================================================
   Rooftop Urja Website V2
   ========================================================== */

.brand-logo-img {
  display:block;
  width:auto;
  height:48px;
  max-width:210px;
  object-fit:contain;
}

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

.product-card {
  position:relative;
  min-height:320px;
  padding:34px;
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
}

.product-card.hybrid-card {
  background:linear-gradient(145deg,#f7faff,#eef5fb);
}

.product-state {
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  background:#eaf4ff;
  color:var(--blue);
  font-size:10px;
  font-weight:900;
  letter-spacing:.1em;
}

.product-state.coming {
  background:#fff4df;
  color:#ad7000;
}

.product-card h3 {
  margin:36px 0 10px;
  font-size:28px;
  letter-spacing:-.03em;
}

.product-capacity {
  color:var(--blue);
  font-size:18px;
  font-weight:850;
  margin-bottom:22px;
}

.product-card p {
  color:var(--muted);
  line-height:1.65;
  max-width:520px;
}

.subsidy-note {
  display:flex;
  gap:22px;
  align-items:center;
  margin-top:24px;
  padding:20px 24px;
  border-radius:16px;
  background:#f5f9fd;
  border:1px solid var(--line);
}

.subsidy-note strong {
  white-space:nowrap;
}

.subsidy-note span {
  color:var(--muted);
  line-height:1.55;
  font-size:14px;
}

.partner-section {
  background:#0f253b;
  color:#fff;
}

.partner-intro {
  display:grid;
  grid-template-columns:1fr .85fr;
  gap:80px;
  align-items:end;
  margin-bottom:55px;
}

.partner-intro h2 {
  margin:0;
  font-size:clamp(36px,4vw,54px);
  line-height:1.08;
  letter-spacing:-.04em;
}

.partner-intro p {
  color:#a9bed1;
  line-height:1.7;
  font-size:16px;
  margin:0;
}

.partner-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid rgba(255,255,255,.13);
  border-bottom:1px solid rgba(255,255,255,.13);
}

.partner-card {
  padding:32px 25px 36px;
  border-right:1px solid rgba(255,255,255,.13);
}

.partner-card:last-child {
  border-right:0;
}

.partner-card > span {
  color:#75b8ff;
  font-size:11px;
  font-weight:850;
}

.partner-card h3 {
  margin:35px 0 12px;
  font-size:20px;
}

.partner-card p {
  margin:0;
  color:#9fb4c7;
  font-size:13px;
  line-height:1.65;
}

.partner-action {
  margin-top:34px;
}

.partner-button {
  background:#fff;
  color:#10243a;
}

.partner-button:hover {
  background:#eef5fb;
}

@media (max-width:900px) {
  .product-grid,
  .partner-intro {
    grid-template-columns:1fr;
  }

  .partner-intro {
    gap:20px;
  }

  .partner-grid {
    grid-template-columns:repeat(2,1fr);
  }

  .partner-card:nth-child(2) {
    border-right:0;
  }
}

@media (max-width:620px) {
  .brand-logo-img {
    height:42px;
    max-width:175px;
  }

  .product-grid,
  .partner-grid {
    grid-template-columns:1fr;
  }

  .product-card {
    min-height:auto;
  }

  .partner-card {
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.13);
  }

  .partner-card:last-child {
    border-bottom:0;
  }

  .subsidy-note {
    align-items:flex-start;
    flex-direction:column;
    gap:7px;
  }
}

.experience-benefits{margin:32px 0 28px;border-top:1px solid #dfe7ef;}
.experience-benefit{padding:18px 0;border-bottom:1px solid #dfe7ef;}
.experience-benefit strong{display:block;font-size:15px;color:var(--ink);margin-bottom:5px;}
.experience-benefit span{display:block;color:var(--muted);font-size:14px;line-height:1.55;max-width:620px;}

/* PUBLIC LEGAL + CORPORATE FOOTER V1 */

.footer-support-note {
  margin:10px 0 0;
  max-width:260px;
  color:#8ea4b9;
  font-size:12px;
  line-height:1.55;
}

.corporate-info {
  margin-top:42px;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.09);
  display:grid;
  gap:7px;
  color:#98adbf;
  font-size:12px;
  line-height:1.55;
}

.corporate-info strong {
  color:#fff;
  font-size:13px;
}

.corporate-info a {
  color:#c9def0;
  text-decoration:none;
}

.footer-bottom-center {
  justify-content:center;
  text-align:center;
}

.legal-page {
  background:#fff;
  padding:72px 0 100px;
}

.legal-shell {
  max-width:900px;
}

.legal-heading {
  padding-bottom:34px;
  border-bottom:1px solid var(--line);
}

.legal-heading h1 {
  margin:0;
  font-size:clamp(42px,6vw,68px);
  line-height:1;
  letter-spacing:-.045em;
}

.legal-heading > p {
  margin:22px 0 0;
  max-width:780px;
  color:var(--muted);
  font-size:17px;
  line-height:1.7;
}

.legal-meta {
  display:inline-block;
  margin-top:18px;
  padding:8px 11px;
  border-radius:8px;
  background:#f2f7fc;
  color:#54708c;
  font-size:12px;
  font-weight:700;
}

.legal-content {
  padding-top:18px;
}

.legal-content h2 {
  margin:42px 0 13px;
  font-size:23px;
  line-height:1.25;
  letter-spacing:-.025em;
}

.legal-content p,
.legal-content li {
  color:#526577;
  font-size:15px;
  line-height:1.78;
}

.legal-content ul {
  margin:14px 0 0;
  padding-left:22px;
}

.legal-content li {
  margin:8px 0;
}

.legal-contact-box {
  margin:20px 0;
  padding:20px 22px;
  border:1px solid var(--line);
  border-radius:15px;
  background:#f8fbfe;
}

.legal-contact-box strong {
  display:block;
  color:var(--ink);
}

.legal-contact-box p {
  margin:7px 0 0;
}

.legal-contact-box a {
  color:var(--blue);
  font-weight:700;
  text-decoration:none;
}

.contact-routing-card {
  display:block;
}

.contact-option {
  padding:20px 0;
  border-bottom:1px solid var(--line);
}

.contact-option:first-child {
  padding-top:0;
}

.contact-option:last-child {
  padding-bottom:0;
  border-bottom:0;
}

.contact-option small {
  display:block;
  margin-bottom:7px;
}

.contact-option strong {
  display:block;
  margin-bottom:8px;
}

.contact-option p {
  margin:7px 0 10px;
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}

.contact-option a {
  display:block;
  margin-top:6px;
}

.contact-phone-line {
  display:block;
  margin-top:8px;
  color:var(--muted);
  font-size:13px;
}

.contact-phone-line a {
  display:inline;
}

@media(max-width:760px) {

  .legal-page {
    padding:50px 0 70px;
  }

  .legal-heading h1 {
    font-size:42px;
  }

  .legal-content h2 {
    margin-top:34px;
    font-size:21px;
  }

  .corporate-info {
    margin-top:34px;
  }

  .footer-bottom-center {
    align-items:center;
  }

}
/* SECONDARY FOOTER + CONTACT MOBILE V1 */

.site-footer-compact {
  padding:38px 0 22px;
}

.compact-footer-row {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:40px;
}

.compact-footer-note {
  margin-top:8px;
  max-width:330px;
  color:#8ea4b9;
  font-size:13px;
  line-height:1.55;
}

.compact-footer-links {
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:12px 24px;
  max-width:620px;
}

.compact-footer-links a {
  color:#a9c0d5;
  text-decoration:none;
  font-size:13px;
  line-height:1.4;
}

.compact-footer-links a:hover {
  color:#ffffff;
}

.site-footer-compact .footer-bottom {
  margin-top:28px;
}


/* Contact page desktop refinement */

.contact-page {
  padding:88px 0;
}

.contact-page .contact-layout {
  align-items:start;
}

.contact-page .contact-card {
  width:100%;
}

.contact-page .contact-option a {
  line-height:1.45;
}


/* Contact page mobile */

@media(max-width:760px) {

  .contact-page {
    padding:48px 0 58px;
    min-height:0;
  }

  .contact-page .contact-layout {
    display:grid;
    grid-template-columns:1fr;
    gap:30px;
    align-items:stretch;
  }

  .contact-page .contact-layout > div {
    min-width:0;
  }

  .contact-page .eyebrow {
    margin-bottom:12px;
  }

  .contact-page h1 {
    max-width:none;
    font-size:clamp(38px,11vw,48px);
    line-height:1.01;
    letter-spacing:-.045em;
  }

  .contact-page .contact-layout > div:first-child > p {
    margin-top:18px;
    font-size:16px;
    line-height:1.58;
  }

  .contact-page .contact-layout > div:first-child > .button {
    width:100%;
    margin-top:24px;
  }

  .contact-page .contact-card {
    width:100%;
    padding:22px 20px;
    border-radius:18px;
  }

  .contact-page .contact-option {
    padding:18px 0;
  }

  .contact-page .contact-option:first-child {
    padding-top:0;
  }

  .contact-page .contact-option:last-child {
    padding-bottom:0;
  }

  .contact-page .contact-option strong {
    font-size:17px;
    line-height:1.4;
  }

  .contact-page .contact-option a {
    max-width:100%;
    font-size:16px;
    line-height:1.45;
    overflow-wrap:anywhere;
  }

  .contact-page .contact-option p {
    font-size:14px;
    line-height:1.55;
  }

  .contact-page .contact-phone-line {
    font-size:14px;
    line-height:1.55;
  }

  .compact-footer-row {
    flex-direction:column;
    gap:24px;
  }

  .compact-footer-links {
    justify-content:flex-start;
    gap:12px 20px;
  }

  .site-footer-compact {
    padding:34px 0 20px;
  }

  .site-footer-compact .footer-bottom {
    margin-top:24px;
    align-items:flex-start;
    text-align:left;
  }

}

/* COMPACT HOMEPAGE STATUTORY INFO V1 */

.statutory-info {
  display:block;
  margin-top:34px;
  padding-top:18px;
  color:#829bb1;
  font-size:11px;
  line-height:1.55;
}

.statutory-title {
  margin-bottom:9px;
  color:#718ba2;
  font-size:10px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.statutory-row {
  display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  gap:3px 8px;
}

.statutory-row strong {
  display:inline;
  margin:0;
  color:#d7e4ef;
  font-size:12px;
}

.statutory-separator {
  color:#536f88;
}

.statutory-address {
  margin-top:5px;
  max-width:1100px;
}

.statutory-contact {
  margin-top:5px;
}

.statutory-support-note {
  margin:9px 0 0;
  max-width:900px;
  color:#718ba2;
  font-size:11px;
  line-height:1.5;
}

@media(max-width:760px) {

  .statutory-info {
    margin-top:28px;
    padding-top:16px;
    font-size:11px;
    line-height:1.55;
  }

  .statutory-title {
    margin-bottom:10px;
  }

  .statutory-row {
    display:block;
  }

  .statutory-row > span,
  .statutory-row > strong {
    display:block;
    margin-top:4px;
  }

  .statutory-row > strong {
    margin-top:0;
  }

  .statutory-separator {
    display:none !important;
  }

  .statutory-address {
    margin-top:7px;
  }

  .statutory-contact {
    margin-top:7px;
  }

  .statutory-support-note {
    margin-top:11px;
  }

}
