@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

:root {
  --bg-primary: #031B3D;
  --bg-secondary: #072B5B;
  --accent: #0D84FF;
  --text: #FFFFFF;
  --text-soft: #D6DCE5;
  --panel: rgba(7, 29, 66, 0.74);
  --panel-solid: #08244b;
  --line: rgba(107, 152, 215, 0.32);
  --shadow-deep: 0 34px 80px rgba(0, 5, 18, 0.45);
  --shadow-glow: 0 0 24px rgba(13, 132, 255, 0.35);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(1100px 580px at 12% -8%, rgba(13, 132, 255, 0.22), transparent 62%),
    radial-gradient(900px 520px at 88% -12%, rgba(7, 43, 91, 0.8), transparent 64%),
    linear-gradient(180deg, #03142e 0%, #031B3D 38%, #061b3f 100%);
}

a {
  color: inherit;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 25;
  padding-top: 1rem;
}

.header-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;
  padding: 0.7rem 1rem;
  width: fit-content;
  margin-left: auto;
  transform: translateX(140px);
  border: 1px solid rgba(152, 189, 240, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  background: rgba(3, 27, 61, 0.38);
  box-shadow: 0 12px 34px rgba(0, 7, 28, 0.35);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  position: absolute;
  left: -70px;
  top: 50%;
  transform: translateY(-40%);
}

.logo-link img {
  width: auto;
  height: 320px;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 200ms ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.74rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(130deg, #0D84FF, #006be0);
  box-shadow: 0 8px 22px rgba(13, 132, 255, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 12px 26px rgba(13, 132, 255, 0.45), var(--shadow-glow);
}

.btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.18);
}

.btn-ghost:hover {
  border-color: rgba(13, 132, 255, 0.9);
  box-shadow: 0 0 18px rgba(13, 132, 255, 0.3);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  padding-bottom: 20px;
  background: url('../images/ChatGPT Image Jun 4, 2026, 05_21_19 PM.png') center top / cover no-repeat;
  background-position: center -80px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(2, 14, 36, 0.34) 16%, rgba(3, 27, 61, 0.24) 55%, rgba(3, 27, 61, 0.12) 100%),
    linear-gradient(180deg, rgba(3, 27, 61, 0.14) 0%, rgba(3, 27, 61, 0.24) 88%);
}

.hero-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  right: -120px;
  bottom: -170px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(13, 132, 255, 0.38), transparent 67%);
  filter: blur(6px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-top: calc(5rem + 140px);
  display: flex;
  flex-direction: column;
  background: rgba(0, 15, 40, 0.45);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 15px 40px 15px;
  animation: hero-panel-rise 1800ms ease-out 2s both;
}

.hero-lower {
  margin-top: auto;
  max-width: 74ch;
}

.hero-lower:has(+ .contact-form) {
  margin-bottom: 1.5rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.3rem, 6.5vw, 4.8rem);
  letter-spacing: -0.03em;
  max-width: 13ch;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .60);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
  color: var(--text-soft);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.16rem);
  max-width: 68ch;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .75);
}

.hero-content p + p {
  margin-top: 0.7rem;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ecbff;
  font-weight: 700;
  font-size: 0.78rem;
  margin-bottom: 0.9rem;
}

.hero-buttons {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.trust-bar {
  background: linear-gradient(180deg, #061f46 0%, #082b58 100%);
  border-top: 1px solid rgba(173, 214, 255, 0.22);
  border-bottom: 1px solid rgba(173, 214, 255, 0.22);
}

.trust-grid {
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.trust-item {
  border: 1px solid rgba(83, 132, 196, 0.46);
  border-radius: var(--radius-md);
  min-height: 130px;
  padding: 1rem;
  display: grid;
  place-content: center;
  gap: 0.6rem;
  text-align: center;
  background: rgba(3, 21, 48, 0.6);
}

.icon-circle {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(13, 132, 255, 0.75);
  color: #9fd1ff;
  font-size: 0.76rem;
  font-weight: 700;
  margin: 0 auto;
  box-shadow: 0 0 14px rgba(13, 132, 255, 0.28);
}

.trust-item h3 {
  font-size: 1rem;
  color: #f7fbff;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background:
    radial-gradient(850px 400px at 82% 8%, rgba(13, 132, 255, 0.13), transparent 65%),
    linear-gradient(180deg, #04172f 0%, #031B3D 100%);
}

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

.page-hero {
  min-height: calc(82svh + 100px);
}

.page-hero-content {
  margin-top: calc(6rem + 140px);
}

.contact-page .hero-content {
  animation: hero-panel-rise 1200ms ease-out 0.75s both;
}

.hero-content:has(.contact-form) {
  max-width: 1200px;
}

.products-hero {
  padding-bottom: 28px;
}

.products-hero-content {
  margin-top: calc(6rem + 240px);
}

.products-section-label {
  font-size: 1.56rem;
}

.products-cards-section {
  padding: 1rem 0;
}

.products-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-visual-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 480px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(116, 163, 228, 0.34);
  box-shadow: 0 24px 48px rgba(0, 8, 24, 0.45);
  transform: scale(1);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  background-size: cover;
  background-position: center;
}

.product-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 13, 33, 0) 0%, rgba(2, 13, 33, 0) 42%, rgba(1, 8, 21, 0.65) 100%);
  transition: background 240ms ease;
}

.product-visual-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.25rem;
  margin: 0.95rem;
  border-radius: 18px;
  background: rgba(4, 19, 45, 0.52);
  border: 1px solid rgba(147, 190, 247, 0.24);
  backdrop-filter: blur(8px);
}

.product-visual-copy h3 {
  margin-bottom: 0.55rem;
  font-size: 1.65rem;
  color: #ffffff;
}

.product-visual-copy p {
  color: #dfe8f7;
  max-width: 34ch;
}

.product-visual-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: #ffffff;
  border: 1px solid rgba(140, 196, 255, 0.56);
  background: rgba(13, 132, 255, 0.22);
}

.product-visual-card:hover {
  transform: scale(1.02);
  border-color: rgba(13, 132, 255, 0.78);
  box-shadow: 0 28px 56px rgba(0, 10, 28, 0.55), 0 0 20px rgba(13, 132, 255, 0.24);
}

.product-visual-card:hover::before {
  background:
    linear-gradient(180deg, rgba(2, 13, 33, 0) 0%, rgba(2, 13, 33, 0) 42%, rgba(1, 8, 21, 0.55) 100%);
}

.windows-card {
  background-image: url('../images/Glamore-Windows.png');
}

.entry-doors-card {
  background-image: url('../images/Front-Door.png');
  background-position: 72% center;
}

.patio-doors-card {
  background-image: url('../images/Patio-Door.png');
  background-position: 28% center;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(10, 40, 82, 0.7), rgba(4, 21, 48, 0.78));
  padding: 1.2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 132, 255, 0.8);
  box-shadow: 0 14px 35px rgba(0, 10, 26, 0.45), 0 0 18px rgba(13, 132, 255, 0.26);
}

.card-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(13, 132, 255, 0.16);
  border: 1px solid rgba(13, 132, 255, 0.5);
  color: #9fceff;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.info-card h3 {
  margin-bottom: 0.55rem;
  color: #ffffff;
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(1.3rem, 3vw, 2.8rem);
  background:
    linear-gradient(150deg, rgba(7, 34, 76, 0.56), rgba(2, 16, 37, 0.54)),
    url('../images/ChatGPT Image Jun 4, 2026, 05_21_19 PM.png') center / cover no-repeat;
  box-shadow: var(--shadow-deep);
}

.split-copy p {
  max-width: 58ch;
}

.difference-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.difference-list li {
  position: relative;
  border: 1px solid rgba(106, 163, 235, 0.35);
  border-radius: 12px;
  padding: 0.9rem 1rem 0.9rem 2.1rem;
  color: #e6edf8;
  background: rgba(4, 27, 60, 0.72);
  transition: border-color 180ms ease, transform 180ms ease;
}

.difference-list li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0.95rem;
  top: 1.32rem;
  background: #0D84FF;
  box-shadow: 0 0 14px rgba(13, 132, 255, 0.75);
}

.difference-list li:hover {
  border-color: rgba(13, 132, 255, 0.8);
  transform: translateY(-2px);
}

.process-track {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.process-track li {
  border: 1px solid rgba(98, 145, 207, 0.42);
  border-radius: 15px;
  padding: 1.1rem;
  min-height: 195px;
  background: linear-gradient(180deg, rgba(5, 33, 74, 0.96), rgba(3, 21, 45, 0.96));
  box-shadow: inset 0 0 0 1px rgba(13, 132, 255, 0.1), 0 0 0 rgba(13, 132, 255, 0);
  transition: box-shadow 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.process-track li:hover {
  border-color: rgba(13, 132, 255, 0.82);
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px rgba(13, 132, 255, 0.35), 0 0 22px rgba(13, 132, 255, 0.25);
}

.process-track h3 {
  margin-bottom: 0.65rem;
}

.owner-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: stretch;
}

.owner-photo {
  border-radius: var(--radius-xl);
  min-height: 420px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(3, 18, 39, 0.42), rgba(7, 43, 91, 0.14)),
    url('../images/ChatGPT Image Jun 4, 2026, 05_21_19 PM.png') center / cover no-repeat;
  box-shadow: var(--shadow-deep);
}

.owner-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(1.3rem, 2.7vw, 2.4rem);
  background: linear-gradient(160deg, rgba(8, 36, 79, 0.85), rgba(4, 20, 43, 0.92));
}

.owner-copy p + p {
  margin-top: 0.85rem;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.5rem clamp(1.3rem, 3vw, 2rem) 1.5rem;
  background: linear-gradient(160deg, rgba(8, 36, 79, 0.85), rgba(4, 20, 43, 0.92));
  box-shadow: var(--shadow-deep);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 600;
}

.contact-form span {
  font-size: 0.92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(107, 152, 215, 0.45);
  border-radius: 14px;
  background: rgba(3, 21, 48, 0.82);
  color: #ffffff;
  padding: 0.9rem 1rem;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(214, 220, 229, 0.65);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(13, 132, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(13, 132, 255, 0.16);
}

.form-full {
  grid-column: 1 / -1;
}

.final-cta {
  position: relative;
  padding: 6rem 0;
  margin-top: 4.5rem;
  background: url('../images/ChatGPT Image Jun 4, 2026, 05_21_19 PM.png') center 30% / cover no-repeat;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 27, 61, 0.74), rgba(2, 15, 34, 0.92)),
    linear-gradient(90deg, rgba(5, 24, 52, 0.7), rgba(3, 27, 61, 0.8));
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.cta-content h2 {
  max-width: 18ch;
}

.cta-content p {
  max-width: 62ch;
}

.site-footer {
  background: #020f25;
  border-top: 1px solid rgba(72, 119, 182, 0.35);
}

.site-footer p {
  margin: 0;
  padding: 1.45rem 0;
  color: #a9bedb;
  font-size: 0.92rem;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-panel-rise {
  from {
    opacity: 0;
    transform: translateY(55vh);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Product Detail Pages */

.product-detail-page {
  background: #f8f9fb;
}

.product-detail-page .site-header {
  position: relative;
  background: #ffffff;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5eaf1;
}

.product-detail-page .logo-link {
  top: 50%;
  transform: translateY(-45%);
}

.product-detail-page .nav-shell {
  background: rgba(5, 25, 60, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.product-detail-page .site-nav a {
  color: rgba(255, 255, 255, 0.92);
}

.product-detail-page .site-nav a:hover {
  color: #ffffff;
}

.product-detail-main {
  padding-top: 0;
}

.product-intro-section {
  background: linear-gradient(135deg, #031B3D 0%, #04172e 48%, #020f25 100%);
  padding: 4rem 0;
  border-bottom: 3px solid #0D84FF;
  position: relative;
}

.product-intro-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(13, 132, 255, 0.28), transparent 68%);
  filter: blur(60px);
  pointer-events: none;
}

.product-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.product-intro-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0, 8, 24, 0.65), 0 0 80px rgba(13, 132, 255, 0.35);
}

.product-intro-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-intro-copy h1 {
  color: #ffffff;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.product-intro-copy p {
  color: #d6e4f7;
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 1.8rem;
  max-width: 54ch;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.product-section {
  padding: 4rem 0;
  background: #f8f9fb;
}

.product-section-alt {
  background: #ffffff;
}

.product-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.product-section-header h2 {
  color: #031B3D;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.8rem;
}

.product-section-header p {
  color: #4d5d7a;
  font-size: 1.05rem;
}

.product-styles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-style-card {
  background: #ffffff;
  border: 1px solid #dde3eb;
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: 0 4px 12px rgba(3, 27, 61, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.product-style-card:hover {
  transform: translateY(-4px);
  border-color: #0D84FF;
  box-shadow: 0 12px 24px rgba(13, 132, 255, 0.15);
}

.product-style-image {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #f0f3f7;
}

.product-style-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.product-style-card h3 {
  color: #031B3D;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.product-style-card p {
  color: #556785;
  font-size: 0.95rem;
  line-height: 1.5;
}

.product-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.product-feature-item {
  padding: 1.5rem;
  background: #f8f9fb;
  border-left: 4px solid #0D84FF;
  border-radius: 8px;
}

.product-feature-item h3 {
  color: #031B3D;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.product-feature-item p {
  color: #556785;
  font-size: 0.96rem;
  line-height: 1.6;
}

.installation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.installation-item {
  background: #ffffff;
  border: 2px solid #e5eaf1;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.installation-item h3 {
  color: #031B3D;
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #0D84FF;
}

.installation-item p {
  color: #556785;
  font-size: 0.98rem;
  line-height: 1.6;
}

.product-cta-section {
  background: linear-gradient(135deg, #031B3D 0%, #072B5B 100%);
  padding: 4.5rem 0;
  margin-top: 2rem;
}

.product-cta-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.product-cta-content h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.product-cta-content p {
  color: #d6e4f7;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

@media (max-width: 1120px) {
  .nav-shell {
    transform: translateX(0);
  }

  .site-nav {
    gap: 0.85rem;
  }

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

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

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

  .process-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-styles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 860px) {
  .header-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-shell {
    border-radius: 18px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.8rem;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 12.5rem 0 4rem;
  }

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

  .split-panel,
  .owner-grid {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .three-up,
  .products-visual-grid {
    grid-template-columns: 1fr;
  }

  .product-visual-card {
    min-height: 420px;
  }

  .product-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .owner-photo {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1200px, calc(100% - 1.5rem));
  }

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

  .hero-content {
    min-height: auto;
  }

  .hero-buttons .btn,
  .nav-cta {
    width: 100%;
  }

  .four-up,
  .process-track,
  .trust-grid,
  .product-styles-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }

}
