
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@500;600;700;800;900&family=Open+Sans:wght@400;600&family=Roboto:wght@400;500;700;800;900&display=swap');

:root {
  --bg-white: #FFFFFF;
  --dark-navy: #00202E;
  --primary-blue: #18A8E5;
  --cyan-accent: #0086BE;
  --text-muted: #3F474B;
  --bg-ice-blue: #DFEDF9;
  --border-light: #EFEFEF;
  --accent-yellow: #FAC605;

  --primary-blue-dark: #0086BE;
  --dark-slate: #001C26;
  --text-dark: #111F29;
  --text-subtle: #777777;
  --danger-red: #FF0004;

  --font-roboto: 'Roboto', sans-serif;
  --font-montserrat: 'Montserrat', sans-serif;
  --font-inter: 'Inter', sans-serif;

  /* ─ Global horizontal spacing ─ consistent left/right gutter across every section */
  --section-px: 48px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-roboto);
  color: var(--text-dark);
  background-color: #FFFFFF;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

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

.container,
.container-std {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--section-px);
  width: 100%;
}

.container-medium {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--section-px);
  width: 100%;
}

.container-wide {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 var(--section-px);
  width: 100%;
}


/* ==========================================================================
   HEADER / NAVIGATION 
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #FFFFFF;
  border-bottom: 1px solid #EFEFEF;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-wrapper img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

/* Layered Pill Header CTA Button  */
.header-cta-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.cta-backdrop-cyan {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -8px;
  right: 0;
  background-color: #18A8E5 !important;
  border-radius: 50px;
  z-index: 1;
  transition: all 0.25s ease;
}

.btn-header-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 32px;
  background-color: #FFFFFF !important;
  color: #000000 !important;
  font-family: var(--font-roboto);
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  border-radius: 50px;
  border: 1.5px solid #18A8E5 !important;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.header-cta-wrapper:hover .btn-header-cta {
  transform: translateY(-1px);
}

.header-cta-wrapper:hover .cta-backdrop-cyan {
  left: -12px;
  box-shadow: 0 4px 15px rgba(24, 168, 229, 0.4);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 59px;
  padding: 0 32px;
  background-color: var(--primary-blue);
  color: #FFFFFF;
  font-family: var(--font-roboto);
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  border-radius: 50px;
  border: 1px solid var(--primary-blue);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: #0F86B9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(24, 168, 229, 0.35);
}

.btn-cyan {
  background-color: var(--primary-blue);
  color: #FFFFFF;
  border-color: var(--primary-blue);
}

.btn-yellow {
  background-color: var(--accent-yellow);
  color: var(--dark-navy);
  border-color: var(--accent-yellow);
}

.btn-yellow:hover {
  background-color: #E5B400;
}

/* ==========================================================================
   HERO SECTION 
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  aspect-ratio: 1920 / 923.48;
  background-color: #FFFFFF;
  overflow: hidden;
}

.hero-banner-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-media-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  z-index: 1;
}

.hero-bottom-wave-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.hero-bottom-wave-container svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-overlay-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

/* Hero Text Block Container (Flex column prevents overlapping) */
.hero-text-content {
  position: absolute;
  left: 8.177%;
  top: 18%;
  width: 32.5%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 6;
}

.hero-title {
  position: relative;
  width: 100%;
  font-family: 'Roboto', var(--font-roboto), sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: clamp(14px, 2.604vw, 50px);
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--dark-navy, #00202E);
  margin: 0 0 clamp(8px, 1.2vw, 20px) 0;
}

.hero-title .text-cyan {
  color: var(--cyan-accent, #0086BE);
  font-weight: 800;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: 0;
  display: block;
}

.hero-description {
  position: relative;
  width: 95%;
  font-family: 'Roboto', var(--font-roboto), sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(9px, 1.146vw, 22px);
  line-height: 1.35;
  letter-spacing: 0;
  color: var(--text-muted, #3F474B);
  margin: 0 0 clamp(10px, 1.8vw, 32px) 0;
}

.hero-description strong {
  font-family: 'Roboto', var(--font-roboto), sans-serif;
  font-weight: 600;
  font-size: inherit;
  line-height: inherit;
  color: #111F29;
}

.hero-cta-box {
  position: relative;
  z-index: 6;
  width: auto;
}

.btn-hero-cyan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(100px, 14.47vw, 278px);
  height: clamp(26px, 3.28vw, 63px);
  padding: 0 clamp(8px, 1.51vw, 29px);
  background-color: var(--primary-blue, #18A8E5);
  color: #FFFFFF;
  font-family: 'Roboto', var(--font-roboto), sans-serif;
  font-weight: 700;
  font-size: clamp(8px, 0.9375vw, 18px);
  line-height: 1;
  letter-spacing: 0%;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0px 8px 20px rgba(24, 168, 229, 0.35);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-hero-cyan:hover {
  background-color: #0F86B9;
  transform: translateY(-2px);
  box-shadow: 0px 12px 25px rgba(24, 168, 229, 0.45);
}

/* Wooden Toy Blocks Image Positioning (Aligned inside bottom-left oval curve) */
.hero-toys-box {
  position: absolute;
  left: -2.5%;
  bottom: 9%;
  width: 30%;
  pointer-events: none;
  z-index: 4;
}

.hero-toys-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Fixed Pixel accuracy on 1920px width */
@media (min-width: 1920px) {
  .hero-section {
    height: 923.48px;
  }
  .hero-banner-bg {
    width: 100%;
    height: 100%;
  }
  .hero-text-content {
    left: 157px;
    top: 192px;
    width: 624px;
  }
  .hero-title {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 20px;
  }
  .hero-title .text-cyan {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0;
    display: block;
  }
  .hero-description {
    width: 569px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 32px;
  }
  .hero-description strong {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0;
  }
  .btn-hero-cyan {
    width: 278px;
    height: 63px;
    padding: 0 29px;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
  }
  .hero-toys-box {
    left: -160px;
    top: 405px;
    width: 620px;
    height: auto;
  }
}

/* (Hero mobile styles are handled in the main responsive section below) */

/* ==========================================================================
   STATISTICS & TRUST BAR ("Why owners trust us")
   ========================================================================== */
.stats-section {
  padding: 60px 0 80px 0;
  background: #FFFFFF;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-lg {
  font-family: var(--font-roboto), 'Roboto', sans-serif;
  font-weight: 800;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: 0;
  color: #00202E;
  margin-bottom: 0;
}

.vector-underline {
  display: inline-block;
  position: relative;
}

.vector-underline::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 220px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 239 10' fill='none'%3E%3Cpath d='M2 7.5C35 2.5 75 1.5 115 4C155 6.5 200 4.5 237 6C238.5 6 238.5 7.5 237 8C190 9.5 130 9 70 8C30 7.5 5 9.5 2 7.5Z' fill='%2318A8E5'/%3E%3Cpath d='M10 2.8C50 1.2 100 1.5 140 2.2' stroke='%2318A8E5' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.stats-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0px;
  gap: 30px;
}

.stat-card {
  position: relative;
  box-sizing: border-box;
  width: 277px;
  height: 112px;
  background: #FFFFFF;
  box-shadow: 0px 0px 30px 0px #F1F1F1;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(149.82deg, #E2E7EB 67.44%, var(--card-border-accent, #4A6DEC) 98.94%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.stat-card:nth-child(1) {
  --card-border-accent: #4A6DEC;
}

.stat-card:nth-child(2) {
  --card-border-accent: #10B981;
}

.stat-card:nth-child(3) {
  --card-border-accent: #1E3A8A;
}

.stat-card:nth-child(4) {
  --card-border-accent: #F97316;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 35px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-family: var(--font-roboto), 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 34px;
  line-height: 40px;
  text-align: center;
  color: #111F29;
}

.stat-label {
  font-family: var(--font-roboto), 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  color: #3F474B;
  margin-top: 4px;
}

.certifications-bar {
  margin-top: 65px;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  padding: 20px 0;
  box-shadow: none;
  overflow: hidden;
}

.certifications-bar::before,
.certifications-bar::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.certifications-bar::before {
  left: 0;
  background: linear-gradient(to right, #FFFFFF 0%, transparent 100%);
}

.certifications-bar::after {
  right: 0;
  background: linear-gradient(to left, #FFFFFF 0%, transparent 100%);
}

.cert-track {
  display: flex;
  align-items: center;
  gap: 25px;
  width: max-content;
  animation: logoMarquee 28s linear infinite;
}

.cert-track:hover {
  animation-play-state: paused;
}

.cert-logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
}

.cert-logo-item img {
  height: 88px;
  max-height: 96px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.cert-logo-item:hover img {
  transform: scale(1.08);
}

@keyframes logoMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   FRUSTRATIONS SECTION 
   ========================================================================== */
.frustrations-section {
  padding: 85px 0 210px 0;
  background-color: #FFFFFF;
}

.frustration-main-title {
  font-family: var(--font-roboto), 'Roboto', sans-serif;
  font-weight: 800;
  font-size: 44px;
  line-height: 52px;
  text-align: center;
  color: #00202E;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  max-width: 964px;
  margin-left: auto;
  margin-right: auto;
}

.frustration-main-title .vector-underline::after {
  bottom: -14px;
  width: 100%;
  min-width: 220px;
}

.frustration-main-subtitle {
  font-family: var(--font-roboto), 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #3F474B;
  max-width: 629px;
  margin: 0 auto 56px auto;
}

.frustrations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  gap: 40px 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.frustration-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.frustration-icon-box {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: inset 0px 0px 12px 0px rgba(255, 0, 4, 0.12), inset 0px 0px 3px 0px rgba(255, 0, 4, 0.24), inset 0px 0px 1px 0px #FF0004;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-inter), 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #FF0004;
}

.frustration-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.frustration-item-title {
  font-family: var(--font-roboto), 'Roboto', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 26px;
  color: #FF0004;
  margin: 0;
  text-transform: capitalize;
}

.frustration-item-desc {
  font-family: var(--font-roboto), 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  color: #3F474B;
  margin: 0;
}

/* ==========================================================================
   5. FAIL BY DESIGN SECTION 
   ========================================================================== */
.fail-by-design-section {
  position: relative;
  width: 100%;
  max-width: 1920px;
  min-height: 782px;
  margin: 0 auto;
  background: linear-gradient(180deg, #C5EEFE 0%, #EBF7FC 35%, #FFFFFF 65%, #E3F2FE 100%);
  padding: 80px 0 100px 0;
}

.fail-design-bg-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.fail-design-bg-shape svg {
  width: 100%;
  height: 100%;
  display: block;
}

.fail-design-bg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 683.37px;
  pointer-events: none;
  z-index: 1;
}

.fail-design-bg-bottom svg {
  width: 100%;
  height: 100%;
  display: block;
}

.fail-design-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 175px;
  line-height: 0;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}

.fail-design-wave-top svg {
  width: 100%;
  height: 100%;
  display: block;
}

.fail-design-wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 175px;
  line-height: 0;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}

.fail-design-wave-bottom svg {
  width: 100%;
  height: 100%;
  display: block;
}

.fail-design-container {
  position: relative;
  z-index: 5;
}

/* Header Grid: 3D Render (Left) + Title/Subtitle (Right) */
.fail-design-header-grid {
  display: grid;
  grid-template-columns: minmax(400px, 720px) 1fr;
  gap: 24px;
  align-items: center;
  margin-top: -85px;
  margin-bottom: 20px;
}

.fail-design-hero-render {
  position: relative;
  margin-left: -50px;
  margin-top: -160px;
  z-index: 20;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.render-3d-img {
  width: 100%;
  max-width: 680px;
  height: auto;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0px 25px 45px rgba(0, 32, 46, 0.16));
  transition: transform 0.3s ease;
}

.render-3d-img:hover {
  transform: translateY(-4px) scale(1.02);
}

.fail-design-title-box {
  padding-left: 10px;
  padding-top: 45px;
  max-width: 585px;
}

.fail-design-title {
  font-family: 'Roboto', var(--font-roboto), sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 44px;
  line-height: 52px;
  color: #00202E;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.fail-design-title .vector-underline::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 42%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 380px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 239 10' fill='none'%3E%3Cpath d='M2 7.5C35 2.5 75 1.5 115 4C155 6.5 200 4.5 237 6C238.5 6 238.5 7.5 237 8C190 9.5 130 9 70 8C30 7.5 5 9.5 2 7.5Z' fill='%2318A8E5'/%3E%3Cpath d='M10 2.8C50 1.2 100 1.5 140 2.2' stroke='%2318A8E5' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.fail-design-subtitle {
  font-family: 'Roboto', var(--font-roboto), sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #3F474B;
  max-width: 585px;
}

/* Content Grid: Left Arc Cards Column + Right Image Collage Column */
.fail-design-content-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 30px;
  align-items: start;
  position: relative;
}

/* Arc Cards Stack Styling */
.arc-cards-column {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 480px;
  margin-top: 10px;
}

.fail-arc-card {
  position: relative;
  width: 350px;
  height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  transition: transform 0.3s ease;
}

.fail-arc-card:hover {
  transform: translateY(-4px);
}

/* Staggered S-curve visual layout matching design mockup */
.card-stagger-1 {
  margin-left: 120px;
}

.card-stagger-2 {
  margin-left: 0px;
  margin-top: -15px;
}

.card-stagger-3 {
  margin-left: 130px;
  margin-top: -15px;
}

.arc-ring-container {
  position: absolute;
  top: -45px;
  left: 0;
  width: 350px;
  height: 330px;
  pointer-events: none;
}

.arc-ring-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.arc-badge {
  position: absolute;
  top: 85px;
  left: 54px;
  width: 40px;
  height: 40px;
  background: #18A8E5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 12px rgba(24, 168, 229, 0.3);
  z-index: 3;
  pointer-events: auto;
}

.arc-badge-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.arc-card-text {
  position: absolute;
  top: 98px;
  left: 54px;
  width: 245px;
  z-index: 2;
  text-align: left;
}

.arc-card-title {
  font-family: 'Roboto', var(--font-roboto), sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 18px;
  line-height: 24px;
  text-align: left;
  color: #00202E;
  margin-bottom: 6px;
}

.arc-card-desc {
  font-family: 'Roboto', var(--font-roboto), sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 13.5px;
  line-height: 19px;
  text-align: left;
  color: #3F474B;
}

/* Right Image Collage Column */
.image-collage-column {
  position: relative;
  display: grid;
  grid-template-columns: 298px 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 40px;
}

.dot-grid-pattern {
  position: absolute;
  background-image: radial-gradient(#18A8E5 2.5px, transparent 2.5px);
  background-size: 12px 12px;
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
}

.dot-grid-top {
  top: -20px;
  right: -10px;
  width: 113.28px;
  height: 113.27px;
}

.dot-grid-bottom {
  bottom: 60px;
  left: 210px;
  width: 136.7px;
  height: 136.7px;
}

.collage-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0px 15px 35px rgba(0, 32, 46, 0.12);
  background: #FFFFFF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 20px 45px rgba(0, 32, 46, 0.18);
}

.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Vertical Real Photo (Stairs & Green padding, 298x397) */
.card-photo-vert {
  grid-column: 1 / 2;
  width: 298px;
  height: 397px;
  border-radius: 25px;
  margin-top: 80px;
}

/* Right Column Stack for Blueprint (574x251) and Purple Play Area (437x530) */
.collage-right-stack {
  grid-column: 2 / 3;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* CAD Blueprint (Top Right, 574x251) */
.card-blueprint {
  width: 100%;
  max-width: 574px;
  height: 251px;
  border-radius: 20px;
  background: #FFFFFF;
}

.card-blueprint img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #FFFFFF;
}

/* Purple Castle Soft Play Area (Bottom Right, 437x530) */
.card-photo-purple {
  width: 100%;
  max-width: 437px;
  height: 530px;
  border-radius: 20px;
}



/* ==========================================================================
   WHAT WE BUILD CAROUSEL
   ========================================================================== */
.gallery-section {
  padding: 80px 0 90px 0;
  background-color: #FFFFFF;
  position: relative;
}

.gallery-section .vector-underline::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 380px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 239 10' fill='none'%3E%3Cpath d='M2 7.5C35 2.5 75 1.5 115 4C155 6.5 200 4.5 237 6C238.5 6 238.5 7.5 237 8C190 9.5 130 9 70 8C30 7.5 5 9.5 2 7.5Z' fill='%2318A8E5'/%3E%3Cpath d='M10 2.8C50 1.2 100 1.5 140 2.2' stroke='%2318A8E5' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.gallery-carousel-wrapper {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 48px;
}

.gallery-container {
  overflow: hidden;
  width: 100%;
  padding: 20px 0 35px 0;
  position: relative;
}

.gallery-container::before,
.gallery-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.gallery-container::before {
  left: 0;
  background: linear-gradient(to right, #FFFFFF 0%, transparent 100%);
}

.gallery-container::after {
  right: 0;
  background: linear-gradient(to left, #FFFFFF 0%, transparent 100%);
}

.gallery-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: galleryMarquee 38s linear infinite;
  will-change: transform;
}

.gallery-track:hover {
  animation-play-state: paused;
}

.gallery-frame-card {
  flex: 0 0 310px;
  width: 310px;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 0;
  border: 1px solid #F0F0F0;
  box-shadow: 0px 8px 24px rgba(0, 32, 46, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  overflow: hidden;
}

.gallery-frame-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 16px 36px rgba(0, 32, 46, 0.16);
}

.gallery-frame-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 14px;
}

@keyframes galleryMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #252D37;
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 10;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-btn:hover {
  background: #111827;
  transform: scale(1.08);
}

.carousel-btn:active {
  transform: scale(0.95);
}



/* ==========================================================================
   7-STEP PROCESS GRID
   ========================================================================== */
.process-section {
  padding: 100px 0;
}

.process-vector-underline {
  display: inline-block;
  position: relative;
  margin-bottom: 24px;
}

.process-vector-underline::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 0;
  max-width: 798px;
  height: 9px;
  background-image: url("images/Vector.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.process-card {
  box-sizing: border-box;
  background: #C4EDFF;
  border-radius: 30px;
  border: 1.5px solid #18A8E5;
  padding: 23.5px 20px;
  height: 248px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.process-card:hover {
  box-shadow: 0px 14px 35px rgba(24, 168, 229, 0.25);
  transform: translateY(-4px);
}

.process-card.full-width {
  grid-column: span 3;
  background: #C4EDFF;
  border-radius: 30px;
  border: 1.5px solid #18A8E5;
  height: 248px;
  padding: 23.5px 32px;
}

.process-card-media {
  width: 201px;
  height: 201px;
  flex-shrink: 0;
  border-radius: 25px;
  background-color: #FFFFFF;
  overflow: hidden;
}

.process-card.full-width .process-card-media {
  width: 548px;
  max-width: 42%;
  height: 201px;
  border-radius: 25px;
  background-color: #FFFFFF;
}

.process-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.process-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  flex: 1;
  min-width: 0;
  max-width: 240.53px;
}

.process-card.full-width .process-card-content {
  max-width: 100%;
}

.process-num-tag {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 70px;
  line-height: 70px;
  letter-spacing: 0em;
  background: linear-gradient(180deg, #C4EDFF 0%, rgba(101, 108, 111, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px #18A8E5;
  margin-bottom: 12px;
  text-align: left;
}

.process-card-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 21.5px;
  line-height: 30px;
  letter-spacing: -0.01em;
  color: #00202E;
  margin: 0 0 6px 0;
  text-align: left;
  white-space: nowrap;
}

.process-card-desc {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0em;
  color: #3F474B;
  margin: 0;
  text-align: left;
  max-width: 240px;
}

/* ==========================================================================
   UNDER ONE ROOF SECTION
   ========================================================================== */
/* ==========================================================================
   UNDER ONE ROOF SECTION
   ========================================================================== */
.roof-section {
  padding: 90px 0 110px 0;
  background-color: #FFFFFF;
}

.roof-header {
  text-align: center;
  margin-bottom: 60px;
}

.roof-vector-underline {
  display: inline-block;
  position: relative;
}

.roof-vector-underline::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 0;
  max-width: 485px;
  height: 9px;
  background-image: url("images/Vector (1).svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

.roof-grid {
  display: grid;
  grid-template-columns: 525px 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.roof-media-box {
  position: relative;
  width: 525px;
  height: 675px;
}

.roof-img-primary {
  position: absolute;
  top: 0;
  left: 0;
  width: 384px;
  height: 512px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.08);
}

.roof-img-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Experience Badge Card */
.roof-exp-badge {
  position: absolute;
  top: 105px;
  left: 355px;
  z-index: 6;
  width: 160px;
  min-width: 160px;
  height: 113px;
  background: #18A8E5;
  border-radius: 12px 12px 12px 40px;
  padding: 24px;
  box-sizing: border-box;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 3.25px;
}

.roof-exp-badge .badge-num {
  font-family: var(--font-roboto);
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  color: #FFFFFF;
  margin: 0;
}

.roof-exp-badge .badge-text {
  font-family: var(--font-roboto);
  font-weight: 700;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0;
}

/* Secondary Overlapping Image */
.roof-img-secondary {
  position: absolute;
  top: 300px;
  left: 250px;
  width: 275px;
  height: 375px;
  z-index: 4;
  background: #FFFFFF;
  border-radius: 24px;
  border: 8px solid #FFFFFF;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  overflow: hidden;
}

.roof-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.roof-feature-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.roof-feature-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.roof-feature-item .title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-roboto);
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #001C26;
  margin: 0;
}

.roof-feature-item .title .roof-title-icon {
  width: 22px;
  height: auto;
  flex-shrink: 0;
  display: block;
}

.roof-feature-item .desc {
  font-family: var(--font-roboto);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0px;
  color: #373E41;
  margin: 0;
}

/* ==========================================================================
   TESTIMONIAL SECTION
   ========================================================================== */
.testimonial-section {
  padding: 100px 0 80px;
  background: #FFFFFF;
  position: relative;
}

/* Title with blue curvy underline */
.testimonial-vector-underline {
  display: inline-block;
  position: relative;
}

.testimonial-vector-underline::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 200px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 235 10' fill='none'%3E%3Cpath d='M2 7.5C35 2.5 75 1.5 115 4C155 6.5 200 4.5 233 6C234.5 6 234.5 7.5 233 8C186 9.5 126 9 66 8C26 7.5 3 9.5 2 7.5Z' fill='%2318A8E5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* Slider wrapper: houses left arrow, grid, right arrow in a row */
.testimonial-slider-wrapper {
  position: relative;
  width: 100%;
  margin-top: 30px;
  display: block;
}

.testimonial-track-viewport {
  overflow: hidden;
  width: 100%;
  padding: 40px 0 95px 0;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: testimonialMarquee 42s linear infinite;
  will-change: transform;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-card-wrapper {
  flex: 0 0 365px;
  width: 365px;
  position: relative;
  min-height: 296px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card-backdrop {
  position: absolute;
  width: 364.88px;
  height: 260.63px;
  border-radius: 26px;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  z-index: 1;
}

.testimonial-card-wrapper:nth-child(3n+1) .testimonial-card-backdrop {
  background: #18A8E5;
  transform: translateX(-50%) rotate(-3.68deg);
}

.testimonial-card-wrapper:nth-child(3n+2) .testimonial-card-backdrop {
  background: #FAC605;
  transform: translateX(-50%) rotate(-3.93deg);
}

.testimonial-card-wrapper:nth-child(3n) .testimonial-card-backdrop {
  background: #18A8E5;
  transform: translateX(-50%) rotate(3.5deg);
}

@keyframes testimonialMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card-content {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  box-shadow: 0px 12px 32px 0px rgba(0, 32, 46, 0.14), 0px 4px 10px 0px rgba(0, 32, 46, 0.06);
  border-radius: 26px;
  width: 352px;
  height: 266px;
  padding: 64px 32px 32px 32px;
  opacity: 1;
  transform: rotate(0deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  margin-top: 15px;
}

.testimonial-card-content .client-title {
  font-family: 'Roboto', var(--font-roboto), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: center;
  color: #001C26;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card-content .client-city {
  font-family: 'Roboto', var(--font-roboto), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: center;
  color: #777777;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card-content .client-quote {
  font-family: 'Roboto', var(--font-roboto), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 19.6px;
  letter-spacing: 0px;
  text-align: center;
  color: #373E41;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slider dots */
.slider-control-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #EFEFEF;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}

.slider-dot.active {
  background: #00AEEF;
  width: 28px;
  border-radius: 12px;
}

/* ==========================================================================
   PRODUCTS WE SERVE SECTION
   ========================================================================== */
/* ==========================================================================
   PRODUCTS WE SERVE
   ========================================================================== */

.products-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #E3F2FE;
  min-height: 820px;
  display: flex;
  flex-direction: column;
}

/* ── Wave background ── */
.products-wave-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* ── Inline SVG Background Shapes ── */
.pws-bg-shape-svg {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;
  display: block;
}

.pws-bg-shape-top-svg {
  top: 0;
  height: auto;
  aspect-ratio: 1919 / 148;
  max-height: 180px;
}

.pws-bg-shape-bottom-svg {
  bottom: 0;
  height: auto;
  aspect-ratio: 1919 / 148;
  max-height: 180px;
}

/* Base wave image shared styles — overlay above background fill */
.pws-wave {
  position: absolute;
  display: block;
  z-index: 1;
}

/* TOP: Yellow wave — left */
.pws-wave-top-yellow {
  top: 0;
  left: 0;
  width: 67.17%;
  aspect-ratio: 1289 / 146;
  z-index: 2;
}

/* TOP: Blue wave — right */
.pws-wave-top-blue {
  top: calc(100vw * 64 / 1919);
  right: 0;
  width: 32.83%;
  aspect-ratio: 624 / 105;
}

/* BOTTOM: Blue wave — left (flipped matching bottom bg shape) */
.pws-wave-bottom-blue {
  bottom: calc(100vw * 64 / 1919);
  left: 0;
  width: 32.83%;
  aspect-ratio: 624 / 105;
  transform: scale(-1, -1);
}

/* BOTTOM: Yellow wave — right (flipped matching bottom bg shape) */
.pws-wave-bottom-yellow {
  bottom: 0;
  right: 0;
  width: 67.17%;
  aspect-ratio: 1289 / 146;
  z-index: 2;
  transform: scale(-1, -1);
}

/* ── Inner content wrapper ── */
.products-section-inner {
  position: relative;
  z-index: 1;
  padding: 100px 0 80px;
  flex: 1;
}

/* ── Section heading ── */
.pws-heading {
  color: #00202E;
  font-size: 50px;
  font-weight: 800;
  font-family: var(--font-roboto);
  margin-bottom: 8px;
}

.pws-underline {
  display: inline-block;
}

/* SVG hand-drawn underline image below heading */
.pws-heading-underline {
  display: block;
  margin: -4px auto 0;
  width: 235px;
  height: auto;
}

/* ── Carousel shell ── */
.pws-carousel-wrapper {
  display: block;
  width: 100%;
  margin-top: 48px;
  padding: 0;
  position: relative;
}

.pws-track-viewport {
  overflow: hidden;
  width: 100%;
  padding: 28px 0 45px 0;
  position: relative;
}

.pws-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: pwsMarquee 38s linear infinite;
  will-change: transform;
}

.pws-track:hover {
  animation-play-state: paused;
}

/* ── Individual card ── */
.pws-card {
  flex: 0 0 320px;
  width: 320px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@keyframes pwsMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Small dot pill above top right of card */
.pws-card-dot-btn {
  width: 39px;
  height: 39px;
  margin-bottom: -19.5px;
  margin-right: 16px;
  z-index: 2;
  align-self: flex-end;
  display: block;
  border-radius: 50%;
  box-shadow: 0px 4px 14px rgba(24, 168, 229, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pws-card:hover .pws-card-dot-btn {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0px 6px 20px rgba(24, 168, 229, 0.65);
}

.pws-card-img-wrap {
  position: relative;
  width: 100%;
  height: 412px;
  aspect-ratio: 619 / 412;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pws-card:hover .pws-card-img-wrap {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.22);
}

.pws-card-img-wrap img {
  width: 619px;
  max-width: 100%;
  height: 412px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.pws-card:hover .pws-card-img-wrap img {
  transform: scale(1.06);
}

/* Dark-to-transparent gradient from top */
.pws-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0) 55%);
  border-radius: 20px;
  pointer-events: none;
}

/* White bold label top-left */
.pws-card-label {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ── Arrow buttons ── */
.pws-arrow {
  flex-shrink: 0;
  width: 28.68px;
  height: 28.68px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.2s ease;
  padding: 0;
  background: #EFEFEF;
}

.pws-arrow svg path {
  stroke: #203232;
  transition: stroke 0.25s ease;
}

.pws-arrow:hover {
  transform: scale(1.1);
}

.pws-arrow.arrow-active {
  background: #00AEEF;
}

.pws-arrow.arrow-active svg path {
  stroke: #FFFFFF;
}

/* ── Dot indicators ── */
.pws-dots {
  display: none !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.pws-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 32, 46, 0.18);
  transition: background 0.25s, transform 0.25s;
}

.pws-dot.active {
  background: #18A8E5;
  transform: scale(1.3);
}

/* ==========================================================================
   11. FREQUENTLY ASKED QUESTIONS
   ========================================================================== */
.faq-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.faq-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}

/* --------------------------------------------------------------------------
   A) LEFT MEDIA BOX (IMAGE CONTAINER)
   -------------------------------------------------------------------------- */
.faq-media-box {
  flex: 0 0 54%;
  width: 54%;
  max-width: 820px;
  height: 760px;
  border-radius: 0 28px 28px 0;
  overflow: hidden;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
}

.faq-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 28px 28px 0;
  display: block;
}

/* --------------------------------------------------------------------------
   B) RIGHT CONTENT BOX (SKY BLUE FAQ CONTAINER)
   -------------------------------------------------------------------------- */
.faq-box-container {
  flex: 0 0 660px;
  width: 660px;
  max-width: 660px;
  height: 640px;
  margin-left: -180px;
  margin-top: 50px;
  z-index: 2;
  position: relative;
  background: #CCF0FF;
  border-radius: 28px;
  padding: 36px 36px;
  box-sizing: border-box;
  box-shadow: 0px 10px 30px rgba(12, 43, 54, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-title {
  width: 100%;
  font-family: 'Roboto', var(--font-roboto), sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  text-align: left;
  color: #0C2B36;
  margin: 0 0 20px 0;
  letter-spacing: 0%;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.faq-item {
  width: 100%;
  background: #FFFFFF;
  border-radius: 14px;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  margin: 0;
}

.faq-question {
  width: 100%;
  padding: 14px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 14px;
}

.faq-question-text {
  font-family: 'Roboto', var(--font-roboto), sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #00202E;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 4px;
  transition: transform 0.3s ease;
}

.faq-icon path {
  stroke: #00202E;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
}

.faq-answer p {
  font-family: 'Roboto', var(--font-roboto), sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #373E41;
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 20px 16px 20px;
}

/* ==========================================================================
   12. FINAL CTA BANNER 
   ========================================================================== */
.final-cta-section {
  position: relative;
  padding: 170px 0 90px 0;
  background-color: #001219;
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}

.final-cta-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 370;
  line-height: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.final-cta-wave-top svg {
  width: 100%;
  height: 100%;
  display: block;
}

.final-cta-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.cta-tag {
  font-family: var(--font-roboto), 'Roboto', sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FAC605;
  margin-bottom: 16px;
}

.cta-title {
  font-family: var(--font-roboto), 'Roboto', sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.cta-subtitle {
  font-family: var(--font-roboto), 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #D9D9D9;
  margin-bottom: 36px;
  max-width: 709px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-btn-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.cta-backdrop-white {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -10px;
  right: 0;
  background-color: #FFFFFF;
  border-radius: 50px;
  z-index: 1;
  transition: all 0.25s ease;
}

.btn-final-cta-pill {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 32px;
  background-color: #18A8E5;
  color: #FFFFFF;
  font-family: var(--font-roboto), 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  border-radius: 50px;
  border: 2px solid #FFFFFF;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.final-cta-btn-wrapper:hover .btn-final-cta-pill {
  transform: translateY(-2px);
  background-color: #0F86B9;
}

.final-cta-btn-wrapper:hover .cta-backdrop-white {
  left: -14px;
}

.cta-note {
  font-family: var(--font-roboto), 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #F1F1F1;
  margin-top: 14px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #FFFFFF;
  color: #373E41;
  padding: 24px 0;
  text-align: center;
  border-top: 1px solid #E2E8F0;
}

.site-footer p {
  margin: 0;
  font-family: 'Open Sans', var(--font-roboto), sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0%;
  color: #373E41;
}

/* ==========================================================================
   CONSULTATION MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 32, 46, 0.8);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  border-radius: 24px;
  max-width: 560px;
  width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: 0px 18px 45px rgba(0, 0, 0, 0.18);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #F5F5F5;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.modal-title {
  font-family: var(--font-roboto);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--dark-navy);
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: #FFFFFF;
}

.form-success-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 12px;
  animation: modalFadeIn 0.3s ease;
}

.success-icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #E6F7ED;
  color: #10B981;
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0px 4px 14px rgba(16, 185, 129, 0.2);
}

.success-title {
  font-family: var(--font-roboto);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark-navy);
  margin-bottom: 8px;
}

.success-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 400px;
}

/* ==========================================================================
   FLUID RESPONSIVE SYSTEM — All Breakpoints (320px to 2560px+)
   ========================================================================== */

/* ─────────────────────────────────────────────────────────────────────────
   1. LARGE LAPTOP / DESKTOP (max-width: 1440px)
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 1440px) {
  :root { --section-px: 40px; }

  .container-wide {
    max-width: 1360px;
  }
  .fail-design-header-grid {
    grid-template-columns: minmax(360px, 580px) 1fr;
    gap: 20px;
  }
  .roof-grid {
    grid-template-columns: 480px 1fr;
    gap: 48px;
  }
  .roof-media-box {
    width: 480px;
    height: 610px;
  }
  .roof-img-primary {
    width: 350px;
    height: 460px;
  }
  .roof-img-secondary {
    left: 210px;
    top: 270px;
    width: 250px;
    height: 340px;
  }
  .roof-exp-badge {
    left: 310px;
    top: 90px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   2. MEDIUM LAPTOP (max-width: 1200px)
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  :root { --section-px: 36px; }

  .stats-grid {
    gap: 20px;
  }

  .stat-card {
    width: calc(25% - 15px);
    height: 106px;
    padding: 10px;
  }

  .stat-number {
    font-size: 28px;
    line-height: 34px;
  }

  .stat-label {
    font-size: 18px;
    line-height: 22px;
  }

  .gallery-frame-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
  }

  .testimonial-card-backdrop {
    width: 100%;
    max-width: 340px;
  }

  .testimonial-card-content {
    width: 100%;
    max-width: 330px;
    padding: 48px 20px 24px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   3. TABLET LANDSCAPE / SMALL LAPTOP (max-width: 1024px)
   ───────────────────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────────
   3. TABLET LANDSCAPE / SMALL LAPTOP (max-width: 1024px)
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-px: 32px; }

  .container,
  .container-std,
  .container-medium,
  .container-wide {
    max-width: 100%;
  }

  .site-header { height: 84px; }



  /* Stats grid 2x2 */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-card {
    width: 100%;
    height: 104px;
  }

  /* Fail By Design Section (Tablet 2-Column S-Curve Layout Scaling for 768px - 1199px) */
  @media (min-width: 768px) and (max-width: 1199px) {
    .fail-design-header-grid {
      grid-template-columns: minmax(280px, 440px) 1fr;
      gap: 16px;
      align-items: center;
      margin-top: -40px;
      margin-bottom: 20px;
    }
    .fail-design-hero-render {
      margin-left: 0;
      margin-top: 0;
      justify-content: flex-start;
    }
    .render-3d-img {
      width: 100%;
      max-width: 440px;
      height: auto;
    }
    .fail-design-title-box {
      padding-left: 0;
      padding-top: 10px;
      max-width: 100%;
      text-align: left;
    }
    .fail-design-title {
      font-size: clamp(24px, 3vw, 36px);
      line-height: 1.22;
      text-align: left;
      margin-bottom: 12px;
    }
    .fail-design-title .vector-underline::after {
      left: 42%;
      transform: translateX(-50%);
      max-width: 320px;
    }
    .fail-design-subtitle {
      font-size: 15px;
      line-height: 22px;
      text-align: left;
    }

    .fail-design-content-grid {
      grid-template-columns: 350px 1fr;
      gap: 16px;
      align-items: start;
    }

    .arc-cards-column {
      width: 350px;
      margin-top: 0;
    }
    .fail-arc-card {
      position: relative;
      width: 290px;
      height: 260px;
      min-height: unset;
      padding: 0;
      background: transparent;
      border: none;
      box-shadow: none;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .card-stagger-1 { margin-left: 60px !important; margin-top: 0 !important; }
    .card-stagger-2 { margin-left: 0 !important; margin-top: -20px !important; }
    .card-stagger-3 { margin-left: 70px !important; margin-top: -20px !important; }

    .arc-ring-container {
      display: block;
      position: absolute;
      top: -35px;
      left: 0;
      width: 290px;
      height: 260px;
      pointer-events: none;
    }
    .arc-ring-img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .arc-badge {
      position: absolute;
      top: 68px;
      left: 44px;
      width: 34px;
      height: 34px;
      min-width: 34px;
      background: #18A8E5;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0px 4px 10px rgba(24, 168, 229, 0.3);
      z-index: 3;
    }
    .arc-badge-icon {
      width: 17px;
      height: 17px;
    }
    .arc-card-text {
      position: absolute;
      top: 78px;
      left: 44px;
      width: 200px;
      z-index: 2;
      text-align: left;
    }
    .arc-card-title {
      font-size: 15px;
      line-height: 20px;
      margin-bottom: 4px;
    }
    .arc-card-desc {
      font-size: 11.5px;
      line-height: 16px;
    }

    .image-collage-column {
      display: grid;
      grid-template-columns: 210px 1fr;
      gap: 16px;
      margin-top: 20px;
    }
    .dot-grid-pattern {
      display: block;
    }
    .dot-grid-top {
      top: -15px;
      right: -5px;
      width: 80px;
      height: 80px;
    }
    .dot-grid-bottom {
      bottom: 40px;
      left: 140px;
      width: 90px;
      height: 90px;
    }
    .card-photo-vert {
      grid-column: 1 / 2;
      width: 210px;
      height: 310px;
      margin-top: 50px;
      border-radius: 20px;
    }
    .collage-right-stack {
      grid-column: 2 / 3;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .card-blueprint {
      width: 100%;
      height: 180px;
      border-radius: 16px;
    }
    .card-photo-purple {
      width: 100%;
      height: 360px;
      border-radius: 20px;
    }
  }

  /* Process Grid 2-col */
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .process-card.full-width { grid-column: span 2; }

  /* Roof */
  .roof-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
  .roof-media-box {
    margin: 0 auto;
    width: 100%;
    max-width: 480px;
    height: 540px;
  }
  .roof-img-primary { width: 320px; height: 420px; }
  .roof-img-secondary { left: 180px; top: 220px; width: 230px; height: 310px; }
  .roof-exp-badge { left: 260px; top: 60px; }

  /* FAQ */
  .faq-grid {
    flex-direction: column;
    width: 100%;
  }
  .faq-media-box {
    width: 100%;
    max-width: 100%;
    height: 400px;
    border-radius: 24px 24px 0 0;
    flex: none;
  }
  .faq-media-box img { border-radius: 24px 24px 0 0; }
  .faq-box-container {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-top: -30px;
    height: auto;
    min-height: auto;
    border-radius: 24px;
    padding: 36px var(--section-px);
    flex: none;
  }

  /* Gallery & Products Marquee Tracks */
  .gallery-frame-card {
    flex: 0 0 260px;
    width: 260px;
  }
  .gallery-container::before,
  .gallery-container::after {
    width: 40px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   4. TABLET PORTRAIT / MID (max-width: 860px)
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  :root { --section-px: 24px; }

  .gallery-frame-card {
    flex: 0 0 230px;
    width: 230px;
  }

  .frustrations-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    gap: 28px;
  }

  .frustration-main-title {
    font-size: 34px;
    line-height: 42px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   5. TABLET PORTRAIT (max-width: 768px)
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-px: 20px; }

  /* Header */
  .site-header { height: 76px; }
  .logo-wrapper img { height: 44px; }
  .btn-header-cta {
    height: 40px;
    padding: 0 16px;
    font-size: 13.5px;
  }
  .cta-backdrop-cyan {
    left: -4px;
  }



  /* Globals */
  .stats-section { padding: 48px 0 60px; }
  .section-header-centered { margin-bottom: 36px; }
  .section-title-lg {
    font-size: 32px;
    line-height: 38px;
  }
  .vector-underline::after,
  .process-vector-underline::after,
  .roof-vector-underline::after,
  .testimonial-vector-underline::after {
    max-width: 100% !important;
    min-width: 0 !important;
    background-size: contain !important;
  }

  /* Stats */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
  }
  .stat-card {
    width: 100%;
    height: 100px;
  }

  /* Frustrations */
  .frustrations-section { padding: 60px 0 100px; }
  .frustrations-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-auto-flow: row;
    gap: 24px;
  }
  .frustration-main-title {
    font-size: 28px;
    line-height: 36px;
  }
  .frustration-main-subtitle {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 36px;
  }
  .frustration-item-title { font-size: 19px; line-height: 24px; }
  .frustration-item-desc { font-size: 16px; line-height: 22px; }

  /* Fail By Design (Tablet padding adjust) */
  .fail-by-design-section { padding: 50px 0 60px; }
  .fail-design-wave-top,
  .fail-design-wave-bottom { height: 80px; }


  /* Process 1-col */
  .process-section { padding: 60px 0; }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .process-card,
  .process-card.full-width {
    grid-column: span 1;
    height: auto;
    padding: 20px;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .process-card-media,
  .process-card.full-width .process-card-media {
    width: 140px;
    height: 140px;
    max-width: 140px;
    flex-shrink: 0;
  }
  .process-card-content { max-width: 100%; flex: 1; }
  .process-num-tag { font-size: 48px; line-height: 48px; margin-bottom: 6px; }
  .process-card-title { font-size: 18px; line-height: 24px; white-space: normal; }
  .process-card-desc { font-size: 14.5px; line-height: 20px; max-width: 100%; }

  /* Roof */
  .roof-section { padding: 60px 0 80px; }
  .roof-grid { grid-template-columns: 1fr; gap: 40px; }
  .roof-media-box {
    width: 100%;
    max-width: 440px;
    height: 460px;
    margin: 0 auto;
  }
  .roof-img-primary { width: 300px; height: 380px; }
  .roof-img-secondary { left: 150px; top: 180px; width: 220px; height: 270px; }
  .roof-exp-badge {
    left: 220px; top: 50px;
    width: 140px; height: 100px;
    padding: 16px;
  }
  .roof-exp-badge .badge-num { font-size: 26px; }

  /* Testimonials */
  .testimonial-section { padding: 60px 0; }
  .testimonial-slider-wrapper {
    margin-top: 30px;
  }
  .testimonial-track-viewport {
    padding: 30px 0 70px 0;
  }
  .testimonial-card-wrapper {
    flex: 0 0 310px;
    width: 310px;
    min-height: auto;
  }
  .testimonial-card-backdrop {
    width: 300px;
    height: 240px;
    top: 10px;
  }
  .testimonial-card-content {
    width: 290px;
    height: auto;
    min-height: 240px;
    padding: 36px 18px 20px;
    margin-top: 10px;
  }

  /* Gallery & Products */
  .gallery-section { padding: 60px 0 70px; }
  .products-section { min-height: unset; }
  .products-section-inner { padding: 70px 0 60px; }
  .pws-heading { font-size: 32px; }
  .pws-carousel-wrapper { margin-top: 36px; }
  .pws-card-img-wrap { height: 320px; }
}

/* ─────────────────────────────────────────────────────────────────────────
   6. MOBILE LANDSCAPE / COMPACT (max-width: 767px)
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  :root { --section-px: 18px; }

  .gallery-frame-card {
    flex: 0 0 260px;
    width: 260px;
  }
  .pws-card {
    flex: 0 0 260px;
    width: 260px;
  }

  /* Fail By Design Mobile Responsive Stack */
  .fail-design-header-grid {
    grid-template-columns: 1fr;
    text-align: center;
    margin-top: 0;
    margin-bottom: 24px;
    gap: 16px;
  }
  .fail-design-hero-render {
    margin: 0 auto;
    justify-content: center;
    display: flex;
    width: 100%;
  }
  .render-3d-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto;
  }
  .fail-design-title-box {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    text-align: center;
  }
  .fail-design-title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
    text-align: center;
  }
  .fail-design-title .vector-underline::after {
    left: 50%;
    transform: translateX(-50%);
    max-width: 260px;
  }
  .fail-design-subtitle {
    font-size: 13.5px;
    line-height: 20px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .fail-design-content-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 16px;
  }

  .arc-cards-column {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .card-stagger-1,
  .card-stagger-2,
  .card-stagger-3 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .fail-arc-card {
    position: relative;
    width: 100%;
    height: auto;
    min-height: unset;
    max-width: 100%;
    padding: 16px 14px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0px 6px 20px rgba(24, 168, 229, 0.12);
    border: 1.5px solid rgba(24, 168, 229, 0.22);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
  }
  .arc-ring-container {
    display: none;
  }
  .arc-badge {
    position: relative;
    top: auto;
    left: auto;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #18A8E5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(24, 168, 229, 0.3);
    flex-shrink: 0;
  }
  .arc-badge-icon {
    width: 18px;
    height: 18px;
  }
  .arc-card-text {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    z-index: 2;
  }
  .arc-card-title {
    font-size: 16.5px;
    font-weight: 800;
    line-height: 22px;
    color: #00202E;
    margin-bottom: 4px;
  }
  .arc-card-desc {
    font-size: 13px;
    line-height: 18.5px;
    color: #3F474B;
  }

  .image-collage-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
  }
  .dot-grid-pattern {
    display: none;
  }
  .card-photo-vert {
    width: 100%;
    height: 240px;
    margin-top: 0;
    border-radius: 16px;
    object-fit: cover;
  }
  .collage-right-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  .card-blueprint {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
  }
  .card-photo-purple {
    width: 100%;
    height: 240px;
    margin-top: 0;
    border-radius: 16px;
    object-fit: cover;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   7. STACKED HERO LAYOUT FOR MOBILE (max-width: 515px)
   Image on TOP, Text Section on BOTTOM
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 515px) {
  .hero-section {
    aspect-ratio: auto;
    height: auto;
    background-color: #FFFFFF;
    overflow: visible;
  }

  .hero-banner-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: auto;
  }

  /* Top Media Banner Container */
  .hero-media-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 923.48;
    background-color: #FFFFFF;
    overflow: hidden;
    z-index: 1;
  }

  .hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    z-index: 1;
  }

  .hero-toys-box {
    display: block;
    position: absolute;
    left: -2.5%;
    bottom: 9%;
    width: 30%;
    pointer-events: none;
    z-index: 4;
  }

  .hero-toys-img {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero-bottom-wave-container {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
  }

  .hero-bottom-wave-container svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  /* Text section on BOTTOM */
  .hero-overlay-layer {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    margin-top: -1px;
    padding: 16px 20px 32px 20px;
    background: #FFFFFF;
    z-index: 6;
    display: block;
  }

  .hero-text-content {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }

  .hero-title {
    font-size: 24px;
    line-height: 31px;
    font-weight: 800;
    color: #00202E;
    margin: 0 0 12px 0;
    text-align: left;
  }

  .hero-title br {
    display: inline;
  }

  .hero-title .text-cyan {
    font-size: 24px;
    line-height: 31px;
    font-weight: 800;
    color: #0086BE;
    display: inline;
  }

  .hero-description {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #3F474B;
    margin: 0 0 22px 0;
    width: 100%;
    text-align: left;
  }

  .hero-description strong {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #111F29;
  }

  .hero-cta-box {
    width: 100%;
    position: relative;
  }

  .btn-hero-cyan {
    width: 100%;
    height: 48px;
    padding: 0 24px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    border-radius: 50px;
    background-color: #18A8E5;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(24, 168, 229, 0.35);
  }
}

@media (max-width: 480px) {
  :root { --section-px: 16px; }

  /* Header */
  .site-header { height: 74px; }
  .logo-wrapper img { height: 42px; }
  .btn-header-cta { height: 38px; padding: 0 14px; font-size: 13px; }
  .cta-backdrop-cyan { left: -4px; }

  /* Globals */
  .section-title-lg { font-size: 28px; line-height: 34px; }

  /* Stats */
  .stat-number { font-size: 28px; line-height: 34px; }
  .stat-label { font-size: 18px; line-height: 22px; }

  /* Fail By Design */
  .fail-design-title { font-size: 24px; line-height: 30px; }
  .fail-design-subtitle { font-size: 14px; line-height: 21px; }

  .fail-arc-card {
    padding: 16px 14px;
    gap: 12px;
  }
  .arc-badge {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }
  .arc-badge-icon {
    width: 18px;
    height: 18px;
  }
  .arc-card-title { font-size: 16.5px; line-height: 22px; }
  .arc-card-desc { font-size: 13px; line-height: 18.5px; }

  /* Collage */
  .card-photo-vert { height: 240px; border-radius: 18px; }
  .card-photo-purple { height: 240px; border-radius: 18px; }

  /* Process */
  .process-card,
  .process-card.full-width {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 18px;
  }
  .process-card-media,
  .process-card.full-width .process-card-media {
    width: 100%;
    max-width: 100%;
    height: 160px;
    border-radius: 16px;
  }
  .process-card-media img { border-radius: 16px; }

  /* Roof */
  .roof-media-box { width: 100%; max-width: 360px; height: 380px; }
  .roof-img-primary { width: 240px; height: 300px; border-radius: 18px; }
  .roof-img-secondary { left: 110px; top: 140px; width: 180px; height: 220px; border-width: 5px; border-radius: 18px; }
  .roof-exp-badge { left: 170px; top: 40px; width: 120px; height: 85px; padding: 12px; border-radius: 10px 10px 10px 30px; }
  .roof-exp-badge .badge-num { font-size: 22px; }
  .roof-exp-badge .badge-text { font-size: 8.5px; }
  .roof-feature-list { gap: 24px; }
  .roof-feature-item .title { font-size: 18px; line-height: 22px; gap: 8px; }
  .roof-feature-item .desc { font-size: 14.5px; line-height: 20px; }

  /* Testimonials */
  .testimonial-card-wrapper { flex: 0 0 280px; width: 280px; }
  .testimonial-card-backdrop { width: 275px; height: 230px; top: 8px; }
  .testimonial-card-content { width: 265px; height: auto; padding: 36px 16px 20px; margin-top: 10px; }
  .testimonial-card-content .client-title { font-size: 20px; line-height: 26px; }
  .testimonial-card-content .client-city { font-size: 13px; line-height: 18px; }
  .testimonial-card-content .client-quote { font-size: 13px; line-height: 18px; }

  /* Products */
  .pws-card { flex: 0 0 230px; width: 230px; }
  .pws-card-img-wrap { height: 280px; aspect-ratio: auto; }
  .pws-heading { font-size: 28px; }
  .pws-heading-underline { width: 160px; }
  .pws-carousel-wrapper { gap: 8px; }

  /* Gallery */
  .gallery-frame-card { flex: 0 0 220px; width: 220px; }

  /* FAQ */
  .faq-title { font-size: 28px; line-height: 36px; }
  .faq-question-text { font-size: 16px; line-height: 22px; }

  /* Final CTA */
  .final-cta-section { padding: 90px 0 60px 0; }
  .cta-tag { font-size: 28px; line-height: 34px; }
  .cta-title { font-size: 28px; line-height: 34px; }
  .cta-subtitle { font-size: 14.5px; line-height: 21px; margin-bottom: 24px; }

  /* Modal */
  .modal-card { padding: 28px 20px; border-radius: 18px; }
  .modal-title { font-size: 1.4rem; }
}

/* ─────────────────────────────────────────────────────────────────────────
   8. MOBILE MEDIUM (max-width: 375px)
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 375px) {
  :root { --section-px: 14px; }

  .site-header { height: 70px; }
  .header-container { gap: 10px; }
  .logo-wrapper img { height: 38px; }
  .btn-header-cta { height: 36px; padding: 0 12px; font-size: 12px; border-width: 1px !important; }
  .cta-backdrop-cyan { left: -4px; }

  .stats-grid { grid-template-columns: 1fr; gap: 12px; }
  .stat-card { width: 100%; height: 94px; }
  .stat-number { font-size: 28px; line-height: 34px; }
  .stat-label { font-size: 18px; line-height: 22px; }

  .frustration-icon-box { width: 52px; height: 52px; min-width: 52px; font-size: 20px; border-radius: 12px; }
  .frustration-card { gap: 16px; }
  .frustration-item-title { font-size: 17px; line-height: 22px; }
  .frustration-item-desc { font-size: 14px; line-height: 19px; }

  .fail-arc-card { padding: 14px 12px; gap: 10px; }
  .arc-badge { width: 34px; height: 34px; min-width: 34px; }
  .arc-badge-icon { width: 16px; height: 16px; }
  .arc-card-title { font-size: 15.5px; line-height: 20px; }
  .arc-card-desc { font-size: 12.5px; line-height: 17px; }

  .roof-media-box { max-width: 320px; height: 340px; }
  .roof-img-primary { width: 210px; height: 260px; }
  .roof-img-secondary { left: 95px; top: 130px; width: 160px; height: 190px; }
  .roof-exp-badge { left: 145px; top: 35px; width: 110px; height: 75px; padding: 10px; }

  .testimonial-card-wrapper { flex: 0 0 250px; width: 250px; }
  .testimonial-card-backdrop { width: 245px; height: 210px; top: 6px; }
  .testimonial-card-content { width: 238px; padding: 28px 12px 16px; margin-top: 8px; min-height: 210px; }
  .testimonial-card-content .client-title { font-size: 18px; line-height: 24px; }
  .testimonial-card-content .client-city { font-size: 12px; line-height: 16px; }
  .testimonial-card-content .client-quote { font-size: 12px; line-height: 17px; }

  .pws-card-img-wrap { height: 250px; }
  .gallery-frame-card { flex: 0 0 190px; width: 190px; }
  .modal-card { padding: 24px 14px; }
}

/* ─────────────────────────────────────────────────────────────────────────
   9. MOBILE SMALL (max-width: 320px)
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 320px) {
  :root { --section-px: 12px; }

  .site-header { height: 64px; }
  .header-container { gap: 6px; }
  .logo-wrapper img { height: 32px; }
  .btn-header-cta { height: 34px; padding: 0 10px; font-size: 11px; letter-spacing: -0.2px; }

  .section-title-lg { font-size: 22px; line-height: 28px; }

  .stat-card { height: 86px; padding: 8px; }
  .stat-number { font-size: 24px; line-height: 28px; }
  .stat-label { font-size: 15px; line-height: 19px; margin-top: 2px; }

  .frustration-main-title { font-size: 22px; line-height: 28px; }
  .frustration-icon-box { width: 44px; height: 44px; min-width: 44px; font-size: 18px; border-radius: 10px; }
  .frustration-item-title { font-size: 15.5px; line-height: 20px; }
  .frustration-item-desc { font-size: 13px; line-height: 18px; }

  .fail-design-title { font-size: 21px; line-height: 27px; }
  .arc-badge { width: 30px; height: 30px; min-width: 30px; }
  .arc-badge-icon { width: 14px; height: 14px; }
  .arc-card-title { font-size: 14px; line-height: 18px; margin-bottom: 3px; }
  .arc-card-desc { font-size: 11.5px; line-height: 16px; }

  .card-photo-vert { height: 210px; }
  .card-photo-purple { height: 190px; }

  .process-card-media,
  .process-card.full-width .process-card-media { height: 130px; }
  .process-num-tag { font-size: 38px; line-height: 38px; }
  .process-card-title { font-size: 16px; line-height: 21px; }
  .process-card-desc { font-size: 13px; line-height: 18px; }

  .roof-media-box { max-width: 280px; height: 300px; }
  .roof-img-primary { width: 180px; height: 230px; }
  .roof-img-secondary { left: 80px; top: 110px; width: 140px; height: 165px; }
  .roof-exp-badge { left: 120px; top: 25px; width: 100px; height: 65px; padding: 8px; }
  .roof-exp-badge .badge-num { font-size: 19px; }
  .roof-exp-badge .badge-text { font-size: 7.5px; }
  .roof-feature-item .title { font-size: 16px; line-height: 20px; }
  .roof-feature-item .desc { font-size: 13px; line-height: 18px; }

  .testimonial-card-wrapper { flex: 0 0 220px; width: 220px; }
  .testimonial-card-backdrop { max-width: 215px; height: 190px; }
  .testimonial-card-content { max-width: 210px; padding: 20px 8px 12px; margin-top: 4px; min-height: 190px; }
  .testimonial-card-content .client-title { font-size: 15px; line-height: 20px; }
  .testimonial-card-content .client-city { font-size: 11px; line-height: 14px; }
  .testimonial-card-content .client-quote { font-size: 11px; line-height: 15px; }

  .gallery-frame-card { flex: 0 0 160px; width: 160px; }
  .pws-card { flex: 0 0 190px; width: 190px; }
  .pws-card-img-wrap { height: 210px; }
  .pws-card-label { font-size: 15px; top: 12px; left: 12px; }

  .cta-title { font-size: 22px; line-height: 28px; }
  .cta-subtitle { font-size: 13.5px; line-height: 19px; }
  .modal-card { padding: 20px 12px; }
  .modal-title { font-size: 1.25rem; }
}
