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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: #12396f;
  line-height: 1.5;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 190, 38, 0.12) 0 7%, transparent 18%),
    radial-gradient(circle at 90% 18%, rgba(68, 162, 255, 0.1) 0 12%, transparent 24%),
    linear-gradient(rgba(226, 247, 255, 0.38), rgba(226, 247, 255, 0.38)),
    url("images/clouds-bg.png");
  background-size: auto, auto, cover, cover;
  background-attachment: fixed;
  background-position: center;
  animation: shineCloudDrift 38s ease-in-out infinite;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 12% 34%, rgba(255, 255, 255, 0.32) 0 8%, transparent 18%),
    radial-gradient(ellipse at 88% 42%, rgba(255, 255, 255, 0.28) 0 8%, transparent 18%),
    radial-gradient(ellipse at 48% 96%, rgba(255, 255, 255, 0.24) 0 12%, transparent 24%);
  opacity: 0.45;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 38%, rgba(255, 183, 27, 0.32) 0 7%, transparent 21%),
    radial-gradient(circle at 4% 6%, rgba(255, 255, 255, 0.94) 0 14%, transparent 32%),
    linear-gradient(rgba(220, 244, 255, 0.62), rgba(220, 244, 255, 0.62)),
    url("images/clouds-header.jpg");
  background-size: auto, auto, cover, cover;
  background-position: center;
  border-bottom: 1px solid rgba(16, 76, 158, 0.13);
  box-shadow:
    0 10px 26px rgba(14, 80, 150, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.78);
  animation: headerCloudDrift 32s ease-in-out infinite;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 42%, rgba(255, 255, 255, 0.68) 0 10%, transparent 28%),
    radial-gradient(ellipse at 88% 38%, rgba(255, 255, 255, 0.38) 0 9%, transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.08));
  opacity: 0.92;
}

.site-header::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -70px;
  width: 320px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  filter: blur(5px);
  pointer-events: none;
}

.header-inner {
  position: relative;
  z-index: 2;
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 16px 0;
}

.logo-link {
  width: 455px;
  height: 112px;
  max-width: 44vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  border-radius: 26px;
  background: transparent;
}

.logo-link img,
.site-logo {
  width: 455px;
  height: 112px;
  object-fit: contain;
  object-position: center;
  display: block;
  transform: scale(3.2);
  transform-origin: center;
  animation: logoSoftGlow 3.8s ease-in-out infinite;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow:
    0 10px 22px rgba(15, 75, 166, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

.main-nav a {
  text-decoration: none;
  color: #0b469c;
  font-weight: 900;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: #ffffff;
  color: #ff8a00;
  box-shadow: 0 8px 18px rgba(15, 75, 166, 0.1);
}

/* HERO / HOME */

.hero,
.home-hero,
.hero-section {
  width: 100%;
  padding: 28px 20px 36px;
}

.hero-banner {
  width: 100%;
  padding: 28px 20px 34px;
}

.hero-banner .container {
  width: min(1420px, 96vw);
  max-width: none;
}

.hero-banner-card,
.hero-banner-wrap,
.hero-image-wrap,
.hero-poster-wrap {
  display: block;
  width: min(1420px, 96vw);
  max-width: none;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(18, 57, 111, 0.18);
}

.hero-banner-image,
.hero-banner-wrap img,
.hero-image-wrap img,
.hero-poster-wrap img,
.home-hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  border-radius: 30px;
  animation: heroSoftEntrance 0.85s ease both;
}

/* COMMON SECTIONS */

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 24px;
  animation: sectionSoftEntrance 0.75s ease both;
}

.section-heading p,
.eyebrow {
  color: #ff8a00;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.section-heading h1,
.section-heading h2 {
  color: #0b469c;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  font-weight: 900;
}

/* PRODUCTS PAGE */

.products-hero {
  padding: 30px 0 20px;
}

.products-hero-box {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 202, 72, 0.2), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(142, 215, 255, 0.34), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(232, 248, 255, 0.94));
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 36px;
  padding: 42px 30px 32px;
  box-shadow:
    0 20px 46px rgba(18, 57, 111, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.products-hero-box::before {
  content: "☀️";
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2.2rem;
  opacity: 0.7;
  filter: drop-shadow(0 8px 10px rgba(255, 153, 0, 0.18));
}

.products-hero-box h1 {
  max-width: 980px;
  margin: 0 auto 14px;
  color: #0b469c;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  line-height: 0.98;
  font-weight: 900;
}

.products-hero-box p {
  max-width: 790px;
  margin: 0 auto;
  color: #375d8d;
  font-size: 1.08rem;
}

.price-note {
  margin-top: 22px !important;
  padding: 13px 18px;
  max-width: 860px !important;
  border-radius: 999px;
  background: rgba(255, 240, 207, 0.88);
  border: 2px solid rgba(255, 176, 43, 0.4);
  color: #7b5516 !important;
  font-size: 0.94rem !important;
  font-weight: 900;
}

.filter-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.filter-pills a {
  text-decoration: none;
  color: #0b469c;
  background: #ffffff;
  border: 2px solid rgba(15, 75, 166, 0.12);
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(15, 75, 166, 0.08);
  transition: 0.2s ease;
}

.filter-pills a:hover {
  color: #ffffff;
  background: #0b469c;
  transform: translateY(-2px);
}

.products-page-section,
.best-sellers {
  padding: 34px 0 42px;
}

.catalogue-grid,
.product-grid,
.trust-grid,
.category-grid {
  display: grid;
  gap: 24px;
}

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

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

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.category-card,
.product-card,
.catalogue-card,
.trust-card,
.custom-panel {
  animation: softCardPop 0.7s ease both;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease,
    border-color 0.25s ease;
}

.category-card:hover,
.product-card:hover,
.catalogue-card:hover,
.trust-card:hover,
.custom-panel:hover {
  transform: translateY(-5px) scale(1.012);
  box-shadow: 0 18px 36px rgba(18, 57, 111, 0.17);
}

.category-card,
.product-card,
.catalogue-card,
.trust-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 251, 255, 0.88));
  border: 4px solid rgba(255, 255, 255, 0.94);
  border-radius: 26px;
  overflow: hidden;
  box-shadow:
    0 14px 30px rgba(18, 57, 111, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.category-card {
  display: block;
  border-width: 5px;
}

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

.product-card,
.catalogue-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card img,
.catalogue-card > img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  object-position: center;
  display: block;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 1), rgba(230, 247, 255, 0.72));
  padding: 12px;
}

.catalogue-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  color: #ffffff;
  background: linear-gradient(135deg, #0b469c, #3278d8);
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(15, 75, 166, 0.18);
}

.product-content,
.catalogue-content {
  padding: 18px 17px 17px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-content h3,
.catalogue-content h3 {
  color: #0b469c;
  font-size: 1.2rem;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 8px;
}

.product-content p,
.catalogue-content p {
  color: #3c5f8e;
  font-size: 0.96rem;
  margin-bottom: 14px;
}

.catalogue-content ul {
  margin: 0 0 16px 18px;
  color: #375d8d;
  font-size: 0.91rem;
}

.catalogue-content li {
  margin-bottom: 5px;
}

.product-bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-bottom span {
  color: #ff8a00;
  font-size: 1.03rem;
  font-weight: 900;
}

.small-btn,
.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(to bottom, #ffba25, #ff9200);
  border: 2px solid #ed8500;
  border-radius: 999px;
  font-weight: 900;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.45),
    0 8px 16px rgba(238, 132, 0, 0.28);
  transition: 0.2s ease;
}

.small-btn {
  padding: 8px 12px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.main-btn {
  padding: 14px 24px;
  font-size: 1rem;
}

.small-btn:hover,
.main-btn:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.05);
}

/* TRUST / ABOUT / CUSTOM */

.compact-section {
  padding: 22px 0 28px;
}

.trust-section {
  padding: 28px 0 38px;
}

.trust-card {
  padding: 22px 17px;
  text-align: center;
}

.trust-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 30%, #ffffff, #fff0cf);
  border: 2px solid rgba(255, 191, 63, 0.36);
  font-size: 1.6rem;
  box-shadow: 0 8px 18px rgba(18, 57, 111, 0.08);
}

.trust-card h3 {
  color: #0b469c;
  font-size: 1.03rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.trust-card p {
  color: #446996;
  font-size: 0.93rem;
}

.about-section {
  padding: 12px 0 48px;
}

.about-box {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 248, 255, 0.88));
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  padding: 32px 26px;
  box-shadow: 0 14px 32px rgba(18, 57, 111, 0.1);
}

.about-box h2,
.custom-copy h2 {
  color: #0b469c;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  font-weight: 900;
  margin-bottom: 14px;
}

.about-box p,
.custom-copy p {
  color: #375d8d;
  font-size: 1.05rem;
}


.soft-note {
  width: min(980px, 100%);
  margin: 18px auto 0;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 2px solid rgba(255, 191, 63, 0.36);
  box-shadow: 0 10px 22px rgba(18, 57, 111, 0.08);
  text-align: center;
}

.soft-note p {
  color: #375d8d;
  font-weight: 700;
  line-height: 1.6;
}

/* HOME PAGE FIX: about/contact sections from latest index.html */
.about-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 248, 255, 0.88));
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 18px 42px rgba(18, 57, 111, 0.14);
}

.about-copy h2,
.contact-panel h2 {
  color: #0b469c;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  font-weight: 900;
  margin-bottom: 14px;
}

.about-copy p,
.contact-panel p {
  color: #375d8d;
  font-size: 1.05rem;
  line-height: 1.65;
}

.about-image-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  box-shadow: 0 12px 26px rgba(18, 57, 111, 0.12);
}

.contact-section {
  padding: 28px 0 58px;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 220, 0.9));
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 32px;
  padding: 30px;
  box-shadow: 0 18px 42px rgba(18, 57, 111, 0.14);
}

@media (max-width: 820px) {
  .about-panel,
  .contact-panel {
    grid-template-columns: 1fr;
    display: grid;
  }

  .about-image-wrap img {
    height: 260px;
  }

  .contact-panel {
    text-align: center;
  }
}

.custom-section {
  padding: 30px 0;
}

.custom-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(230, 247, 255, 0.92));
  border: 5px solid rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 18px 42px rgba(18, 57, 111, 0.14);
}

.custom-image-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  box-shadow: 0 12px 26px rgba(18, 57, 111, 0.12);
}



/* READY-MADE BUNDLE SHOWCASE */

.bundle-products-section .section-heading,
.ready-made-bundles-section .section-heading {
  max-width: 860px;
}

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

.bundle-catalogue-card > img {
  height: 250px;
  object-fit: contain;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 1), rgba(226, 247, 255, 0.76));
  padding: 10px;
}

.ready-made-bundles-section {
  padding: 30px 20px 55px;
}

.ready-bundle-grid {
  width: min(1120px, 100%);
  margin: 30px auto 0;
  display: grid;
  gap: 24px;
}

.ready-bundle-card {
  scroll-margin-top: 165px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 202, 72, 0.14), transparent 32%),
    radial-gradient(circle at 88% 16%, rgba(159, 231, 255, 0.26), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(232, 248, 255, 0.91));
  border: 4px solid rgba(255, 255, 255, 0.95);
  border-radius: 34px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(18, 57, 111, 0.14);
}

.ready-bundle-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 28px rgba(18, 57, 111, 0.12);
}

.ready-bundle-content {
  color: #24517f;
}

.bundle-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff8d8;
  border: 2px solid #ffbf3f;
  color: #12396f;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ready-bundle-content h3 {
  color: #0b469c;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: 8px;
}

.ready-bundle-price {
  color: #ff8a00;
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.ready-bundle-content p {
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.ready-bundle-content ul {
  margin: 0 0 18px 20px;
  color: #375d8d;
  font-weight: 750;
}

.ready-bundle-content li {
  margin-bottom: 6px;
}

.ready-bundle-note {
  width: min(960px, 100%);
  margin: 24px auto 0;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255, 248, 216, 0.94);
  border: 3px solid #ffbf3f;
  color: #12396f;
  font-weight: 850;
  text-align: center;
  box-shadow: 0 12px 26px rgba(18, 57, 111, 0.11);
}

@media (max-width: 1100px) {
  .bundle-catalogue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 850px) {
  .ready-bundle-card {
    grid-template-columns: 1fr;
    scroll-margin-top: 24px;
  }

  .ready-bundle-content {
    text-align: center;
  }

  .ready-bundle-content ul {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .bundle-catalogue-grid {
    grid-template-columns: 1fr;
  }

  .bundle-catalogue-card > img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .ready-made-bundles-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .ready-bundle-card {
    padding: 16px;
    border-radius: 26px;
  }
}

/* PECS BUILDER PAGE */

.pec-builder-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 190, 38, 0.14) 0 7%, transparent 18%),
    radial-gradient(circle at 90% 18%, rgba(68, 162, 255, 0.12) 0 12%, transparent 24%),
    linear-gradient(rgba(226, 247, 255, 0.42), rgba(226, 247, 255, 0.42)),
    url("images/clouds-section.jpg");
  background-size: auto, auto, auto, cover;
  background-position: center;
  background-attachment: fixed;
}

.pec-builder-page .btn,
.pec-builder-page .primary-btn,
.pec-builder-page .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  border: 3px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.pec-builder-page .btn:hover,
.pec-builder-page .primary-btn:hover,
.pec-builder-page .secondary-btn:hover {
  transform: translateY(-3px);
}

.pec-builder-page .primary-btn {
  background: linear-gradient(135deg, #ffbf3f, #ff8fb3);
  color: #12396f;
  border-color: #ffffff;
  box-shadow: 0 12px 24px rgba(18, 57, 111, 0.18);
}

.pec-builder-page .secondary-btn {
  background: #ffffff;
  color: #12396f;
  border-color: #ffbf3f;
  box-shadow: 0 10px 20px rgba(18, 57, 111, 0.12);
}

.pec-builder-page .secondary-btn:hover {
  background: #fff8d8;
}

.pec-builder-page .btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.pec-builder-hero {
  padding: 90px 20px 45px;
}

.pec-builder-hero-inner {
  width: min(1050px, 100%);
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.86);
  border: 3px solid rgba(255, 255, 255, 0.95);
  border-radius: 38px;
  padding: 48px 24px;
  box-shadow: 0 20px 45px rgba(18, 57, 111, 0.16);
}

.pec-builder-hero h1 {
  margin: 8px 0 14px;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 0.95;
  color: #12396f;
}

.pec-builder-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #24517f;
}

.builder-hero-buttons {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.pec-pricing-section {
  padding: 25px 20px 45px;
}

.pec-pricing-grid {
  width: min(1050px, 100%);
  margin: 28px auto 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pec-price-card {
  background: rgba(255, 255, 255, 0.92);
  border: 3px solid #dff4ff;
  border-radius: 30px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(18, 57, 111, 0.13);
}

.pec-price-card.featured {
  border-color: #ffbf3f;
  background: #fff8d8;
  transform: translateY(-6px);
}

.pec-price-card h3 {
  color: #12396f;
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.pec-price-card .price {
  color: #ff6f9f;
  font-size: 1.65rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.pec-price-card p {
  color: #24517f;
  line-height: 1.6;
}

.bundle-price-strip {
  width: min(1050px, 100%);
  margin: 20px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.bundle-price-strip span {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: #12396f;
  border: 2px solid #ffbf3f;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(18, 57, 111, 0.1);
}

.pec-builder-section {
  padding: 35px 20px 70px;
}

.pec-builder-section .builder-summary {
  width: min(1050px, 100%);
  margin: 26px auto 48px;
  background: rgba(255, 255, 255, 0.92);
  border: 3px solid #dff4ff;
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 16px 34px rgba(18, 57, 111, 0.13);
  display: grid;
  gap: 14px;
  text-align: center;
  color: #12396f;
}

.basket-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.basket-estimate {
  background: #fff5c7;
  border: 2px solid #ffbf3f;
  color: #12396f;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 900;
}

.bundle-helper {
  background: linear-gradient(135deg, #e9f8ff, #fff5fb);
  border: 2px dashed #ff8fb3;
  color: #12396f;
  border-radius: 22px;
  padding: 14px 16px;
  font-weight: 900;
  line-height: 1.45;
}

.selected-list {
  min-height: 44px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #24517f;
  padding: 4px;
}

.selected-list span {
  display: inline-flex;
  align-items: center;
  background: #fff5c7;
  color: #12396f;
  border: 2px solid #ffbf3f;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 800;
  font-size: 0.9rem;
}

.builder-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.clear-selection-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 900;
  border: 3px solid #ffbf3f;
  cursor: pointer;
  background: #ffffff;
  color: #12396f;
  box-shadow: 0 10px 20px rgba(18, 57, 111, 0.12);
  transition: 0.2s ease;
}

.clear-selection-btn:hover {
  transform: translateY(-3px);
  background: #fff8d8;
}

.basket-note {
  color: #24517f;
  font-size: 0.92rem;
}

.pec-search-box,
.pec-jump-box {
  width: min(1050px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: 22px 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border: 3px solid rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  box-shadow: 0 14px 30px rgba(18, 57, 111, 0.12);
}

.pec-search-box {
  margin-bottom: 24px;
}

.pec-jump-box {
  margin-bottom: 38px;
}

.pec-search-box label,
.pec-jump-box p {
  display: block;
  margin-bottom: 10px;
  color: #12396f;
  font-weight: 900;
  font-size: 1.05rem;
}

.pec-search-box input {
  width: min(620px, 100%);
  border: 3px solid #dff4ff;
  border-radius: 999px;
  padding: 14px 18px;
  font: inherit;
  font-weight: 800;
  color: #12396f;
  background: #ffffff;
  outline: none;
}

.pec-search-box input:focus {
  border-color: #ffbf3f;
  box-shadow: 0 0 0 5px rgba(255, 191, 63, 0.18);
}

.search-helper {
  margin-top: 10px;
  color: #24517f;
  font-weight: 800;
  font-size: 0.92rem;
}

.pec-jump-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pec-jump-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #12396f;
  border: 2px solid #ffbf3f;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(18, 57, 111, 0.1);
  transition: 0.2s ease;
}

.pec-jump-links a:hover {
  transform: translateY(-3px);
  background: #fff8d8;
}

#cardSections {
  display: grid;
  gap: 46px;
}

.pec-generated-section {
  scroll-margin-top: 165px;
}

#cardSections .section-heading {
  width: min(1050px, 100%);
  max-width: 1050px;
  margin-top: 18px;
  margin-bottom: 22px;
  padding: 26px 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 30px;
  box-shadow: 0 14px 30px rgba(18, 57, 111, 0.11);
}

#cardSections .section-heading h2 {
  color: #12396f;
}

#cardSections .section-heading p:last-child {
  max-width: 760px;
  margin: 8px auto 0;
  color: #24517f;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  font-weight: 700;
}

.pec-card-grid {
  width: min(1280px, 100%);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 18px;
}

.pec-choice-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 3px solid #dff4ff;
  border-radius: 28px;
  padding: 12px 12px 14px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(18, 57, 111, 0.13);
  transition: 0.2s ease;
}

.pec-choice-card:hover {
  transform: translateY(-5px);
  border-color: #ffbf3f;
  box-shadow: 0 18px 38px rgba(18, 57, 111, 0.2);
}

.pec-choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pec-choice-card img {
  width: 100%;
  max-width: 175px;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px;
  background: #ffffff;
  border-radius: 20px;
  padding: 6px;
  filter: drop-shadow(0 8px 12px rgba(18, 57, 111, 0.12));
}

.pec-choice-card span {
  min-height: 42px;
  display: grid;
  place-items: center;
  color: #12396f;
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.15;
}

.pec-choice-card:has(input:checked) {
  border-color: #ff8fb3;
  background: #fff6fb;
  box-shadow:
    0 18px 38px rgba(18, 57, 111, 0.2),
    0 0 0 5px rgba(255, 143, 179, 0.18);
}

.pec-choice-card:has(input:checked)::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: #ffbf3f;
  color: #12396f;
  border: 3px solid #ffffff;
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 8px 16px rgba(18, 57, 111, 0.2);
}

.pec-choice-card.hidden-by-search,
.pec-generated-section.hidden-by-search {
  display: none;
}

.no-search-results {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 24px 18px;
  text-align: center;
  background: #fff8d8;
  border: 3px solid #ffbf3f;
  border-radius: 26px;
  color: #12396f;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(18, 57, 111, 0.12);
  display: none;
}

.no-search-results.show {
  display: block;
}

.pec-info-strip {
  padding: 10px 20px 80px;
}

.pec-info-card {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border: 3px solid #dff4ff;
  border-radius: 34px;
  padding: 32px 22px;
  box-shadow: 0 16px 34px rgba(18, 57, 111, 0.13);
}

.pec-info-card h2 {
  color: #12396f;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}

.pec-info-card p {
  color: #24517f;
  max-width: 650px;
  margin: 0 auto 22px;
  line-height: 1.7;
}

/* FLOATING PECS BASKET */

.floating-pec-basket {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: min(330px, calc(100% - 36px));
  background: rgba(255, 255, 255, 0.96);
  border: 3px solid #ffbf3f;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 18px 38px rgba(18, 57, 111, 0.22);
  color: #12396f;
  display: none;
}

.floating-pec-basket.show {
  display: block;
}

.floating-basket-top,
.floating-basket-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.floating-basket-top strong {
  font-size: 1rem;
  font-weight: 900;
}

#floatingSelectedCount {
  background: #fff5c7;
  border: 2px solid #ffbf3f;
  border-radius: 999px;
  padding: 5px 10px;
  font-weight: 900;
  font-size: 0.86rem;
}

#floatingBundleHelper {
  margin: 10px 0;
  color: #24517f;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

#floatingBasketEstimate {
  color: #ff6f9f;
  font-weight: 900;
  font-size: 0.95rem;
}

.floating-email-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffbf3f, #ff8fb3);
  color: #12396f;
  border: 2px solid #ffffff;
  text-decoration: none;
  font-weight: 900;
  font-size: 0.86rem;
  box-shadow: 0 8px 16px rgba(18, 57, 111, 0.14);
}

.floating-email-btn.disabled {
  opacity: 0.45;
  pointer-events: none;
}

/* OLD BUILDER SUPPORT */

.pecs-builder-section {
  padding: 24px 0 44px;
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.builder-main,
.summary-card {
  background: rgba(255, 255, 255, 0.88);
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  box-shadow: 0 14px 30px rgba(18, 57, 111, 0.12);
}

.builder-main {
  padding: 24px;
}

.builder-heading {
  margin-bottom: 18px;
}

.builder-options-panel,
.builder-custom-box {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.builder-options-panel label,
.builder-custom-box label {
  color: #0b469c;
  font-weight: 900;
  font-size: 1rem;
}

.builder-options-panel select,
.builder-custom-box textarea {
  width: 100%;
  border: 3px solid rgba(15, 75, 166, 0.16);
  border-radius: 18px;
  background: #ffffff;
  color: #12396f;
  font: inherit;
  font-weight: 700;
  padding: 13px 14px;
  outline: none;
}

.builder-category {
  margin-top: 24px;
}

.builder-category h3 {
  color: #0b469c;
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.builder-card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.builder-card {
  cursor: pointer;
  user-select: none;
  position: relative;
  min-height: 112px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, #edf9ff);
  border: 3px solid rgba(15, 75, 166, 0.12);
  padding: 12px 8px;
  text-align: center;
  color: #0b469c;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(15, 75, 166, 0.08);
  transition: 0.18s ease;
}

.builder-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.builder-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 146, 0, 0.5);
}

.builder-card:has(input:checked) {
  background: linear-gradient(135deg, #fff0cf, #ffffff);
  border-color: #ff9200;
  box-shadow: 0 12px 24px rgba(238, 132, 0, 0.18);
}

.builder-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}

.summary-card {
  padding: 22px;
}

.summary-card h2 {
  color: #0b469c;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 14px;
}

.summary-count {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #ff8a00;
  font-weight: 900;
  margin-bottom: 16px;
}

.summary-count span {
  font-size: 3rem;
  line-height: 1;
}

.summary-count small {
  color: #375d8d;
  font-size: 1rem;
}

.summary-actions {
  display: grid;
  gap: 10px;
}

.clear-btn {
  border: 2px solid rgba(15, 75, 166, 0.18);
  background: #ffffff;
  color: #0b469c;
  font-weight: 900;
  border-radius: 999px;
  padding: 12px 16px;
  cursor: pointer;
  font: inherit;
}

.clear-btn:hover {
  background: #eef8ff;
}

.summary-note {
  margin-top: 14px;
  color: #446996;
  font-size: 0.92rem;
  font-weight: 700;
}

/* FOOTER */

.site-footer,
footer,
.footer {
  width: 100%;
  min-height: 230px;
  padding: 70px 20px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
    url("images/clouds-section.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: footerCloudDrift 34s ease-in-out infinite;
}

.site-footer .footer-inner,
footer .footer-inner,
.footer .footer-inner,
.site-footer > div,
footer > div,
.footer > div {
  width: min(900px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  text-align: center;
}

.site-footer img,
footer img,
.footer img {
  width: 170px;
  max-width: 45%;
  height: auto;
  object-fit: contain;
}

.site-footer p,
footer p,
.footer p {
  margin: 0;
  color: #22549a;
  font-weight: 900;
  font-size: 1.05rem;
}

/* ANIMATIONS */

@keyframes shineCloudDrift {
  0%,
  100% {
    background-position:
      8% 12%,
      90% 18%,
      center,
      center center;
  }

  50% {
    background-position:
      10% 14%,
      88% 20%,
      center,
      center 42px;
  }
}

@keyframes headerCloudDrift {
  0%,
  100% {
    background-position:
      14% 38%,
      4% 6%,
      center,
      center center;
  }

  50% {
    background-position:
      16% 40%,
      6% 8%,
      center,
      center 28px;
  }
}

@keyframes heroSoftEntrance {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes sectionSoftEntrance {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softCardPop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logoSoftGlow {
  0%,
  100% {
    filter: drop-shadow(0 8px 12px rgba(15, 75, 166, 0.14));
  }

  50% {
    filter:
      drop-shadow(0 8px 12px rgba(15, 75, 166, 0.14))
      drop-shadow(0 0 16px rgba(255, 186, 37, 0.65));
  }
}

@keyframes footerCloudDrift {
  0%,
  100% {
    background-position:
      center,
      center center;
  }

  50% {
    background-position:
      center,
      center 36px;
  }
}

/* RESPONSIVE */

@media (min-width: 1500px) {
  .hero-banner .container,
  .hero-banner-card,
  .hero-banner-wrap,
  .hero-image-wrap,
  .hero-poster-wrap {
    width: min(1500px, 94vw);
  }
}

@media (max-width: 1180px) {
  .catalogue-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pec-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  }
}

@media (max-width: 1100px) {
  .header-inner {
    flex-direction: column;
    min-height: auto;
    padding: 16px 0 14px;
    gap: 12px;
  }

  .logo-link {
    width: 440px;
    max-width: 92vw;
    height: 108px;
  }

  .logo-link img,
  .site-logo {
    width: 440px;
    height: 108px;
  }

  .main-nav {
    justify-content: center;
    border-radius: 24px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card img {
    height: auto;
  }

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

  .custom-panel {
    grid-template-columns: 1fr;
  }

  .builder-layout {
    grid-template-columns: 1fr;
  }

  .builder-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-banner,
  .hero {
    padding: 22px 16px 30px;
  }

  .hero-banner .container,
  .hero-banner-card,
  .hero-banner-wrap,
  .hero-image-wrap,
  .hero-poster-wrap {
    width: 96vw;
  }

  .hero-banner-card,
  .hero-banner-image,
  .hero-banner-wrap,
  .hero-image-wrap,
  .hero-poster-wrap,
  .hero-banner-wrap img,
  .hero-image-wrap img,
  .hero-poster-wrap img {
    border-radius: 24px;
  }
}

@media (max-width: 850px) {
  .pec-pricing-grid {
    grid-template-columns: 1fr;
  }

  .pec-price-card.featured {
    transform: none;
  }

  #cardSections {
    gap: 34px;
  }

  #cardSections .section-heading {
    border-radius: 24px;
    padding: 22px 14px;
  }

  .pec-generated-section {
    scroll-margin-top: 24px;
  }
}

@media (max-width: 750px) {
  .pec-builder-hero {
    padding-top: 55px;
  }

  .pec-builder-hero-inner {
    padding: 34px 18px;
    border-radius: 28px;
  }

  .basket-topline {
    justify-content: center;
  }

  .pec-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .pec-choice-card {
    border-radius: 22px;
    padding: 10px;
  }

  .pec-choice-card img {
    max-width: 145px;
  }

  .builder-actions {
    display: grid;
  }

  .clear-selection-btn {
    width: 100%;
  }

  .floating-pec-basket {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    border-radius: 20px;
  }
}

/* TESTIMONIALS SECTION */

.testimonials-section {
  padding: 36px 0 42px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 251, 255, 0.88));
  border: 4px solid rgba(255, 255, 255, 0.94);
  border-radius: 26px;
  padding: 26px 22px;
  box-shadow:
    0 14px 30px rgba(18, 57, 111, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  animation: softCardPop 0.7s ease both;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px) scale(1.012);
  box-shadow: 0 18px 36px rgba(18, 57, 111, 0.17);
}

.testimonial-stars {
  color: #ff8a00;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: #3c5f8e;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.testimonial-author {
  color: #0b469c;
  font-weight: 900;
  font-size: 0.92rem;
}

/* WHY 3D SECTION */

.why-3d-section {
  padding: 34px 0 42px;
}

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

.comparison-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 251, 255, 0.88));
  border: 4px solid rgba(255, 255, 255, 0.94);
  border-radius: 26px;
  padding: 28px 22px;
  text-align: center;
  box-shadow:
    0 14px 30px rgba(18, 57, 111, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  animation: softCardPop 0.7s ease both;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.comparison-card:hover {
  transform: translateY(-5px) scale(1.012);
  box-shadow: 0 18px 36px rgba(18, 57, 111, 0.17);
}

.comparison-icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
  display: block;
}

.comparison-card h3 {
  color: #0b469c;
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.comparison-card p {
  color: #3c5f8e;
  font-size: 0.93rem;
  line-height: 1.5;
}

/* HERO BANNER CONTENT */

.hero-banner-content {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 32px;
  animation: sectionSoftEntrance 0.75s ease both;
}

.hero-banner-content h1 {
  color: #0b469c;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 14px;
}

.hero-banner-content p {
  color: #375d8d;
  font-size: 1.2rem;
  margin-bottom: 26px;
}

@media (max-width: 720px) {
  .container {
    width: min(100%, calc(100% - 24px));
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: auto;
    padding: 10px 0 12px;
  }

  .logo-link {
    width: 340px;
    max-width: 96vw;
    height: 88px;
    border-radius: 20px;
  }

  .logo-link img,
  .site-logo {
    width: 340px;
    height: 88px;
    transform: scale(3.2);
  }

  .main-nav {
    gap: 6px;
    padding: 8px;
  }

  .main-nav a {
    font-size: 0.86rem;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.55);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-banner-content h1 {
    font-size: 2rem;
  }

  .hero-banner-content p {
    font-size: 1rem;
  }

  .hero-banner,
  .hero,
  .home-hero,
  .hero-section {
    padding: 16px 12px 24px;
  }

  .hero-banner .container,
  .hero-banner-card,
  .hero-banner-wrap,
  .hero-image-wrap,
  .hero-poster-wrap {
    width: 100%;
  }

  .hero-banner-card,
  .hero-banner-image,
  .hero-banner-wrap,
  .hero-image-wrap,
  .hero-poster-wrap,
  .hero-banner-wrap img,
  .hero-image-wrap img,
  .hero-poster-wrap img {
    border-radius: 18px;
  }

  .products-hero {
    padding: 16px 0 14px;
  }

  .products-hero-box {
    padding: 30px 18px 24px;
    border-radius: 26px;
  }

  .products-hero-box::before {
    top: 12px;
    right: 14px;
    font-size: 1.7rem;
  }

  .products-hero-box h1 {
    font-size: 2.15rem;
  }

  .products-hero-box p {
    font-size: 1rem;
  }

  .price-note {
    border-radius: 18px;
    font-size: 0.88rem !important;
  }

  .filter-pills {
    gap: 8px;
  }

  .filter-pills a {
    font-size: 0.86rem;
    padding: 8px 10px;
  }

  .section-heading h1,
  .section-heading h2 {
    font-size: 2rem;
  }

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

  .catalogue-card > img,
  .product-card img {
    height: auto;
    min-height: 210px;
  }

  .custom-panel {
    padding: 18px;
    border-radius: 24px;
  }

  .custom-image-wrap img {
    height: auto;
  }

  .product-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .small-btn {
    width: 100%;
  }

  .builder-main,
  .summary-card {
    border-radius: 22px;
  }

  .builder-main {
    padding: 16px;
  }

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

  .builder-card {
    min-height: 104px;
  }

  .site-footer .footer-inner,
  footer .footer-inner,
  .footer .footer-inner,
  .site-footer > div,
  footer > div,
  .footer > div {
    flex-direction: column;
    gap: 18px;
  }

  .site-footer img,
  footer img,
  .footer img {
    width: 150px;
    max-width: 70%;
  }
}

@media (max-width: 520px) {
  #cardSections .section-heading h2 {
    font-size: 1.65rem;
  }

  #cardSections .section-heading p:last-child {
    font-size: 0.92rem;
  }

  .pec-choice-card span {
    font-size: 0.86rem;
  }

  .pec-choice-card img {
    max-width: 135px;
  }

  .products-page-section,
  .trust-section {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 420px) {
  .pec-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pec-builder-page .btn,
  .pec-builder-page .primary-btn,
  .pec-builder-page .secondary-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  body,
  .site-header,
  footer,
  .footer,
  .site-footer,
  .hero-banner-image,
  .section-heading,
  .category-card,
  .product-card,
  .catalogue-card,
  .trust-card,
  .custom-panel,
  .site-logo {
    animation: none !important;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* LAUNCH TRUST PASS: order clarity, legal pages and safer feedback cards */
.testimonial-stars {
  display: none;
}

.testimonial-kicker {
  color: #ff8a00;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.feedback-grid .testimonial-card {
  min-height: 230px;
}

.launch-category-grid .text-category-card {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(232, 248, 255, 0.92)),
    radial-gradient(circle at top right, rgba(255, 203, 80, 0.35), transparent 42%);
  border: 4px solid rgba(255, 255, 255, 0.94);
  padding: 28px;
}

.text-category-card div {
  display: grid;
  gap: 10px;
  text-align: center;
}

.text-category-card span {
  color: #ff8a00;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.text-category-card strong {
  color: #0b469c;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.15;
}

.text-category-card small {
  color: #3c5f8e;
  line-height: 1.5;
  font-weight: 700;
}

.order-form-box {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 3px dashed rgba(11, 70, 156, 0.28);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(18, 57, 111, 0.08);
}

.order-form-box h3 {
  color: #0b469c;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.order-form-box pre {
  white-space: pre-wrap;
  font-family: Arial, Helvetica, sans-serif;
  color: #264c7c;
  line-height: 1.7;
  font-weight: 700;
  margin: 0;
}

.wide-order-box {
  max-width: 760px;
  margin: 26px auto 0;
}

.launch-note-section {
  padding: 20px 0 34px;
}

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.10)),
    url("images/clouds-section.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-bottom: 70px;
}

.legal-hero {
  padding: 44px 0 20px;
}

.legal-panel,
.legal-content {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.94);
  border: 4px solid rgba(255, 255, 255, 0.98);
  border-radius: 30px;
  box-shadow: 0 22px 48px rgba(18, 57, 111, 0.16);
}

.legal-panel {
  padding: clamp(28px, 5vw, 48px);
  text-align: center;
}

.legal-panel h1 {
  color: #0b469c;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
  margin: 8px 0 14px;
}

.legal-panel p {
  color: #315b8d;
  line-height: 1.7;
  font-weight: 700;
}

.legal-content-section {
  padding: 18px 0 50px;
}

.legal-content {
  padding: clamp(24px, 4vw, 42px);
}

.legal-content h2 {
  color: #0b469c;
  margin: 26px 0 8px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: #315b8d;
  line-height: 1.75;
  font-weight: 700;
  margin-bottom: 12px;
}

.legal-content a {
  color: #0b469c;
  font-weight: 900;
}

@media (max-width: 760px) {
  .legal-page {
    background-attachment: scroll;
  }

  .order-form-box {
    padding: 15px;
  }
}

.focused-product-grid {
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .focused-product-grid {
    max-width: 100%;
  }
}


/* FINAL REVIEW PASS: real feedback and testimonial context */
.section-subtext {
  max-width: 760px;
  margin: 10px auto 0;
  color: #24517f;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.testimonial-product {
  margin-top: 8px;
  color: #24517f;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.4;
}

.feedback-permission-note {
  max-width: 840px;
  margin: 22px auto 0;
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  color: #24517f;
  text-align: center;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(18, 57, 111, 0.08);
}

.testimonial-mini-section {
  padding: 30px 0 14px;
}

.testimonial-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-mini-grid blockquote {
  margin: 0;
  padding: 22px 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 251, 255, 0.9));
  border: 3px solid rgba(255, 255, 255, 0.95);
  color: #3c5f8e;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.55;
  box-shadow: 0 12px 26px rgba(18, 57, 111, 0.1);
}

.testimonial-mini-grid blockquote span {
  display: block;
  margin-top: 12px;
  color: #0b469c;
  font-size: 0.86rem;
  font-weight: 900;
}

@media (max-width: 850px) {
  .testimonial-mini-grid {
    grid-template-columns: 1fr;
  }
}

/* HOMEPAGE LAUNCH FAVOURITES: fuller 4-card desktop layout */
.launch-favourites-grid {
  max-width: 1120px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.launch-favourites-grid .product-card img {
  height: 170px;
}

.launch-favourites-grid .product-content h3 {
  font-size: 1.05rem;
}

.launch-favourites-grid .product-content p {
  font-size: 0.9rem;
}

.launch-favourites-grid .product-bottom {
  gap: 8px;
}

.launch-favourites-grid .small-btn {
  white-space: nowrap;
  font-size: 0.75rem;
  padding: 9px 11px;
}

@media (max-width: 1050px) {
  .launch-favourites-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }

  .launch-favourites-grid .product-card img {
    height: 220px;
  }
}

@media (max-width: 640px) {
  .launch-favourites-grid {
    grid-template-columns: 1fr;
  }

  .launch-favourites-grid .product-card img {
    height: 230px;
  }
}



/* Launch polish: keep the custom products section balanced on desktop */
.custom-options-grid {
  align-items: stretch;
}

.custom-options-grid .catalogue-card {
  height: 100%;
}


/* HOMEPAGE ENGAGEMENT UPGRADE - May 2026 */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px !important;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 216, 0.95);
  border: 2px solid rgba(255, 191, 63, 0.65);
  color: #12396f !important;
  font-size: 0.86rem !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 18px rgba(18, 57, 111, 0.08);
}

.home-hero-upgrade {
  max-width: 1040px;
  margin-bottom: 24px;
}

.home-hero-upgrade h1 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.home-hero-upgrade > p:not(.hero-eyebrow) {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.hero-action-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 18px;
}

.secondary-main-btn {
  color: #12396f;
  background: linear-gradient(135deg, #ffffff, #fff8d8);
  border-color: #ffbf3f;
}

.soft-small-btn {
  color: #0b469c;
  background: #ffffff;
  border-color: rgba(11, 70, 156, 0.16);
  box-shadow: 0 8px 18px rgba(18, 57, 111, 0.09);
}

.hero-trust-strip {
  width: min(960px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 2px solid rgba(255, 255, 255, 0.92);
  color: #24517f;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(18, 57, 111, 0.08);
}

.quick-help-section {
  padding: 18px 0 42px;
}

.section-subtext {
  max-width: 780px;
  margin: 10px auto 0 !important;
  color: #375d8d !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  line-height: 1.65;
}

.quick-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.quick-help-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px 22px;
  text-align: center;
  border-radius: 30px;
  background:
    radial-gradient(circle at 15% 14%, rgba(255, 203, 80, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(242, 251, 255, 0.91));
  border: 4px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 34px rgba(18, 57, 111, 0.13);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quick-help-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 40px rgba(18, 57, 111, 0.17);
}

.featured-help-card {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 191, 63, 0.26), transparent 34%),
    radial-gradient(circle at 92% 4%, rgba(255, 143, 179, 0.2), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 248, 216, 0.92));
  border-color: rgba(255, 191, 63, 0.72);
}

.quick-help-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(255, 191, 63, 0.48);
  font-size: 1.9rem;
  box-shadow: 0 10px 22px rgba(18, 57, 111, 0.09);
}

.quick-help-card h3 {
  color: #0b469c;
  font-size: 1.24rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.quick-help-card p {
  color: #375d8d;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.quick-help-card .small-btn {
  align-self: center;
}

.engagement-strip-section {
  padding: 0 0 34px;
}

.engagement-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 203, 80, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(232, 248, 255, 0.91));
  border: 4px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(18, 57, 111, 0.12);
}

.engagement-strip strong,
.engagement-strip span {
  display: block;
}

.engagement-strip strong {
  color: #0b469c;
  font-size: 1.18rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.engagement-strip span {
  color: #375d8d;
  font-weight: 750;
}

.card-style-section {
  padding: 24px 0 42px;
}

.style-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 143, 179, 0.16), transparent 34%),
    radial-gradient(circle at 90% 12%, rgba(159, 231, 255, 0.26), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(232, 248, 255, 0.91));
  border: 5px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(18, 57, 111, 0.14);
}

.style-copy h2 {
  color: #0b469c;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  font-weight: 900;
  margin-bottom: 12px;
}

.style-copy p:not(.eyebrow) {
  color: #375d8d;
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 700;
}

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

.style-choice-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 20px;
  border-radius: 28px;
  border: 4px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 30px rgba(18, 57, 111, 0.12);
}

.pastel-style-card {
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 191, 63, 0.35), transparent 25%),
    radial-gradient(circle at 80% 25%, rgba(255, 143, 179, 0.28), transparent 30%),
    linear-gradient(145deg, #eaf9ff, #fff8d8);
}

.classic-style-card {
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.7), transparent 28%),
    linear-gradient(145deg, #ffffff, #eaf6ff);
}

.style-choice-card span {
  color: #ff8a00;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.style-choice-card h3 {
  color: #0b469c;
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.style-choice-card p {
  color: #375d8d;
  font-weight: 750;
  line-height: 1.55;
}

.bundle-purpose-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.bundle-purpose-list p {
  margin: 0;
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid rgba(255, 191, 63, 0.34);
}

.bundle-purpose-list strong {
  color: #0b469c;
}

@media (max-width: 900px) {
  .quick-help-grid,
  .style-panel,
  .style-choice-grid {
    grid-template-columns: 1fr;
  }

  .engagement-strip {
    display: grid;
    text-align: center;
  }

  .engagement-strip .small-btn {
    width: auto;
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .hero-action-row .main-btn,
  .hero-action-row .small-btn,
  .quick-help-card .small-btn {
    width: 100%;
  }

  .quick-help-card,
  .style-panel,
  .style-choice-card,
  .engagement-strip {
    border-radius: 24px;
  }

  .quick-help-section,
  .card-style-section {
    padding-top: 10px;
    padding-bottom: 30px;
  }
}
