/* =========================
   PRISTINE POOL PROS
   HYBRID FROSTED GLASS THEME
========================= */

:root{
  --navy:#043863;
  --blue:#09A5DE;
  --blue-hover:#078EC0;

  --glass-light: rgba(255,255,255,.72);
  --glass-smoke: rgba(255,255,255,.12);

  --border-light: rgba(4,56,99,.15);
  --border-dark: rgba(255,255,255,.18);

  --text-dark:#0F2233;
  --text-light:#FFFFFF;
}

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

body{
  font-family: 'Inter', sans-serif;
  background:#F4FBFF;
  color:var(--text-dark);
  line-height:1.6;
}

/* ===== GLOBAL TITLE CENTERING ===== */

section{
  text-align: center;
}

.section-title,
.section-title h2,
.section-title h1,
.section-title p{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

h1, h2, h3{
  text-align: center;
}
/* Limit width of section description text */
.section-title p{
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* ================= HEADER ================= */

header{
  background:#0b2d4a;  /* deep navy */
  color:#ffffff;
  border:0;
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
}

header a{
  color: #ffffff;
}

header a:hover{
  color: #38bdf8;   /* your light blue accent */
}

.nav-container{
  width:90%;
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.nav-links a{
  margin-left:25px;
  text-decoration:none;
  color:#ffffff;
  font-weight:600;
}

.phone-btn{
  background:var(--blue);
  color:#fff;
  padding:10px 18px;
  border-radius:999px;
  font-weight:600;
  text-decoration:none;
  transition:.3s ease;
}

.phone-btn:hover{
  background:var(--blue-hover);
}

/* ================= HERO ================= */

.hero{
 min-height: 480px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  position:relative;
  padding:60px 5%;
  color:#fff;
  background:url('assets/pool-hero.png') center/cover no-repeat;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(3,27,48,0.65),
    rgba(3,27,48,0.45),
    rgba(3,27,48,0.75)
  );
}

.hero > *{
  position:relative;
  z-index:2;
}

.hero h1{
  font-size:48px;
  font-weight:800;
  margin: 0 auto 16px auto;
  max-width: 900px;
  text-shadow: 0 10px 30px rgba(0,0,0,.45);
}

.hero p{
  font-size:20px;
  opacity:.9;
  max-width: 780px;
  margin: 0 auto;
  text-shadow: 0 8px 22px rgba(0,0,0,.35);
}

/* ================= PRICING SECTION ================= */

.pricing-section{
  margin-top:-100px;
  padding:80px 0;
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(9,165,222,.12), transparent 60%),
    radial-gradient(700px 420px at 80% 30%, rgba(9,165,222,.08), transparent 55%),
    linear-gradient(180deg, #F6FAFF 0%, #EDF4FB 100%);
}

.pricing-grid{
  width:90%;
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

/* Frosted Light Glass Cards */

.price-card{
  background:var(--glass-light);
  backdrop-filter: blur(14px);
  border:1px solid var(--border-light);
  border-radius:20px;
  padding:40px 30px;
  box-shadow:0 20px 60px rgba(4,56,99,.08);
  transition:.3s ease;
}

.price-card:hover{
  transform:translateY(-6px);
}

.price-card h3{
  color:var(--navy);
  font-size:24px;
  margin-bottom:10px;
}

.price{
  font-size:42px;
  font-weight:800;
  color:var(--blue);
  margin:20px 0;
}

.price-card ul{
  list-style:none;
  margin-bottom:25px;
}

.price-card ul li{
  margin-bottom:8px;
}

/* ================= GLASS BUTTON ================= */

.btn{
  display:inline-block;
  padding:10px 20px;
  border-radius:999px;
  background:var(--blue);
  color:#fff;
  font-weight:600;
  font-size:15px;
  text-decoration:none;
  transition:.3s ease;
}

.btn:hover{
  background:var(--blue-hover);
}

/* ================= FEATURES / FAQ (SMOKEY GLASS) ================= */

.dark-section{
  padding:100px 0;
  background:linear-gradient(180deg,#042E52 0%, #021E35 100%);
  color:#fff;
}

.glass-smoke{
  background:var(--glass-smoke);
  backdrop-filter: blur(14px);
  border:1px solid var(--border-dark);
  border-radius:18px;
  padding:30px;
  margin-bottom:25px;
}

.glass-smoke h4{
  color:#fff;
  margin-bottom:8px;
}

.cta-block{
  text-align:center;
  padding:60px 20px;
  margin-top:60px;
  background:var(--glass-smoke);
  backdrop-filter: blur(12px);
  border:1px solid var(--border-dark);
  border-radius:20px;
}

/* ================= FOOTER ================= */

footer{
  background:var(--navy);
  color:#fff;
  padding:40px 0;
  text-align:center;
  font-size:14px;
}
/* ===== FINAL HERO LOCK (paste at very bottom) ===== */
.hero{
  min-height: 520px !important;
  height: 520px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  position: relative !important;
  padding: 70px 5% !important;
  color: #fff !important;
  background: url("assets/pool-hero.png") center/cover no-repeat !important;
  overflow: hidden !important;
}

.hero::before{
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    to bottom,
    rgba(3,27,48,.70),
    rgba(3,27,48,.45),
    rgba(3,27,48,.80)
  ) !important;
}

.hero > *{
  position: relative !important;
  z-index: 2 !important;
}

.hero h1{
  max-width: 900px !important;
  margin: 0 auto 14px auto !important;
  line-height: 1.05 !important;
  letter-spacing: -0.5px !important;
  text-shadow: 0 10px 30px rgba(0,0,0,.45) !important;
  font-size: clamp(34px, 4vw, 54px) !important;
}

.hero p{
  max-width: 760px !important;
  margin: 0 auto 22px auto !important;
  font-size: 18px !important;
  opacity: .95 !important;
  text-shadow: 0 8px 22px rgba(0,0,0,.35) !important;
}

@media (max-width: 768px){
  .hero{
    min-height: 460px !important;
    height: 460px !important;
    padding: 56px 6% !important;
  }
}


/* ===================== 10 STEP PROCESS ===================== */
.steps-section{
  padding: 70px 0;
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
}
.steps-wrap{
  margin-top: 60px;
}

.steps-head{
  margin-bottom: 20px;
}

.steps-head h2{
  margin: 0 0 10px 0;
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
}

.steps-head .muted{
  color: rgba(27,48,70,.75);
  line-height: 1.5;
}

.steps-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.step{
 background: rgba(255,255,255,.82);
backdrop-filter: blur(6px);
  border: 1px solid rgba(12,24,40,.10);
  border-radius: 16px;
  padding: 16px 14px;
  box-shadow: 0 14px 35px rgba(0,0,0,.06);
}

.step-icon{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: var(--blue);
  margin-bottom: 10px;
}

.step h4{
  margin: 0 0 6px 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
}

.step p{
  margin: 0;
  font-size: 13px;
  color: rgba(27,48,70,.80);
  line-height: 1.45;
}

.step small{
  display: block;
  margin-top: 8px;
  color: rgba(27,48,70,.55);
}

/* Responsive */
@media (max-width: 1100px){
  .steps-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px){
  .steps-grid{ grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .steps-head h2{ font-size: 26px; }
}
/* ===== SERVICE AREA GLASS SECTION ===== */

.service-area-section{
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.service-area-head{
  text-align: center;
  margin-bottom: 40px;
}

.service-area-head h2{
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-area-head p{
  color: rgba(27,48,70,.75);
}

.service-area-grid{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.map-card{
  background: rgba(255,255,255,.85);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.map-card iframe{
  width: 100%;
  height: 400px;
  border: 0;
}

.contact-card{
  background: rgba(255,255,255,.85);
  border-radius: 18px;
  padding: 30px;
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.contact-pill strong{
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy);
}

.contact-pill span{
  color: rgba(27,48,70,.75);
}

.contact-pill a{
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 900px){
  .service-area-grid{
    grid-template-columns: 1fr;
  }

  .map-card iframe{
    height: 300px;
  }
}
/* Hero button spacing */
.hero .btn{
    margin: 8px 10px;
}
/* ===== HOW IT WORKS (Pristine theme) ===== */

.how{
  padding: 90px 0;
  background: linear-gradient(180deg, #F4FBFF 0%, #FFFFFF 70%);
}

.how-wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.how-head{
  text-align: center;
  margin-bottom: 40px;
}

.how-head h2{
  color: #0b2d4a;   /* deep navy */
  font-size: 34px;
  margin: 0 0 10px 0;
  letter-spacing: .5px;
}

.how-head p{
  color: rgba(11,45,74,.75);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.how-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 28px;
  align-items: start;
}

.how-card{
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(4,56,99,.10);
  border-radius: 18px;
  padding: 26px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.how-icon{
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(59,189,248,.14); /* light blue glow */
  border: 1px solid rgba(59,189,248,.35);
  color: #0b2d4a; /* icon navy */
}

.how-icon svg{
  width: 28px !important;
  height: 28px !important;
}

.how-card h3{
  margin: 6px 0 10px 0;
  color: #0b2d4a;
  font-size: 16px;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.how-card p{
  margin: 0 auto;
  max-width: 420px;
  color: rgba(11,45,74,.70);
  line-height: 1.65;
}

/* responsive */
@media (max-width: 900px){
  .how-grid{ grid-template-columns: 1fr; }
  .how{ padding: 70px 0; }
}
/* ===== NAVY CONTRAST SECTION (Home 10-Step) ===== */

.navy-section{
  background: linear-gradient(180deg, #0b2d4a 0%, #08243a 100%);
  padding: 100px 0;
  color: #ffffff;
}

/* Title inside navy section */
.navy-section h2{
  color: #ffffff;
}

/* Subtitle paragraph */
.navy-section > p,
.navy-section .section-title p{
  color: rgba(255,255,255,.75);
}

/* Step cards inside navy */
.navy-section .card,
.navy-section .step-card{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
}

/* Step card titles */
.navy-section h3{
  color: #ffffff;
}

/* Step descriptions */
.navy-section .card p,
.navy-section .step-card p{
  color: rgba(255,255,255,.75);
}
/* Ten Steps description color override */
.navy-section .muted{
    color: rgba(255,255,255,0.85);
}
/* ===== Feature Accordion (Navy + Frosted Glass) ===== */
.feature-accordion{
  padding: 90px 0;
  background: linear-gradient(180deg, #0b2d4a 0%, #07263e 55%, #f4fbff 100%);
}

.fa-wrap{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 46px;
  align-items: center;
}

.fa-head h2{
  color: #ffffff;
  margin: 0 0 10px 0;
  text-align: left;
}
.fa-head .muted{
  color: rgba(255,255,255,.78);
  margin: 0 0 18px 0;
  text-align: left;
  max-width: 60ch;
}

.glass{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
}

.fa-media{
  padding: 18px;
}
.fa-img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.fa-acc{
  display: grid;
  gap: 14px;
}

.fa-item{
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.fa-item summary{
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 38px 1fr 22px;
  align-items: center;
  gap: 12px;
  padding: 18px 18px;
  color: #fff;
  font-weight: 700;
}
.fa-item summary::-webkit-details-marker{ display:none; }

.fa-icon{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(56,189,248,.18);
  border: 1px solid rgba(56,189,248,.35);
  font-size: 16px;
}

.fa-title{
  font-size: 18px;
}

.fa-chevron{
  text-align: right;
  opacity: .9;
  transform: rotate(0deg);
  transition: transform .2s ease;
}

.fa-item[open] .fa-chevron{
  transform: rotate(180deg);
}

.fa-body{
  padding: 0 18px 18px 68px;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
}

.fa-cta{
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.btn-outline{
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
}

/* Responsive */
@media (max-width: 980px){
  .fa-wrap{ grid-template-columns: 1fr; }
  .fa-head h2, .fa-head .muted{ text-align: center; margin-left:auto; margin-right:auto; }
  .fa-cta{ justify-content: center; flex-wrap: wrap; }
  .fa-body{ padding-left: 18px; }
}
/* ===== ABOUT PAGE ENHANCEMENTS ===== */

.about-card p{
  margin-top:14px;
  line-height:1.7;
  color:#334155;
}

/* ============================
   ABOUT + BADGES + REFERRAL
   ============================ */
:root{
  --ppp-navy: #083A5A;
  --ppp-navy2:#062C45;
  --ppp-aqua: #1FA7D6;
  --ppp-ice:  rgba(255,255,255,.78);
  --ppp-ice2: rgba(255,255,255,.60);
  --ppp-shadow: 0 18px 45px rgba(0,0,0,.18);
  --ppp-radius: 22px;
  --ppp-gold: #E6B24A;
}

.about-stack{
  padding: 44px 0 60px;
}

.wrap-1100{
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Big About card */
.about-glass{
  background: linear-gradient(180deg, var(--ppp-ice), rgba(255,255,255,.66));
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--ppp-radius);
  box-shadow: var(--ppp-shadow);
  padding: 28px 26px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-title{
  text-align: center;
  color: var(--ppp-navy);
  font-size: clamp(26px, 3.2vw, 40px);
  margin: 0 0 14px 0;
  font-weight: 800;
}

.about-glass p{
  text-align: center;
  color: rgba(0,0,0,.72);
  line-height: 1.65;
  margin: 10px auto;
  max-width: 900px;
  font-size: 16px;
}

/* Badge row */
.badge-row{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.badge-card{
  background: linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.62));
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  padding: 14px 12px 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.badge-card img {
  width: 170px;
  height: auto;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.badge-card img:hover {
  transform: scale(1.08);
}

.badge-text{
  font-weight: 900;
  color: #0B1E2E;
  font-size: 22px;
  line-height: 1.05;
}

/* Referral banner */
.referral-banner{
  margin-top: 18px;
  border-radius: 26px;
  padding: 18px 18px 16px;
  background:
    radial-gradient(1200px 500px at 20% 30%, rgba(31,167,214,.32), transparent 55%),
    radial-gradient(900px 500px at 80% 25%, rgba(8,58,90,.45), transparent 55%),
    linear-gradient(180deg, var(--ppp-navy), var(--ppp-navy2));
  box-shadow: 0 18px 60px rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.10);
  position: relative;
  overflow: hidden;
}

.referral-banner::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), transparent 40%),
    radial-gradient(500px 200px at 15% 80%, rgba(255,255,255,.10), transparent 60%);
  pointer-events:none;
}

.referral-topline{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  margin-bottom: 10px;
}

.ref-title{
  color: var(--ppp-gold);
  font-weight: 900;
  letter-spacing: .5px;
  font-size: 18px;
}

.ref-line{
  height: 2px;
  width: 140px;
  background: linear-gradient(90deg, transparent, rgba(230,178,74,.9), transparent);
  border-radius: 99px;
  opacity: .95;
}

.referral-main{
  position: relative;
  display:grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  align-items:center;
  padding: 6px 6px 10px;
}

/* Left coupon */
.coupon-left{
  position: relative;
  height: 150px;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px dashed rgba(255,255,255,.35);
  display:flex;
  align-items:center;
  justify-content:center;
}

.coupon-burst{
  width: 108px;
  height: 108px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #7BE6FF, #1FA7D6 55%, #0B6C98);
  box-shadow: 0 16px 35px rgba(0,0,0,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  border: 8px solid rgba(255,255,255,.12);
}

.coupon-big{
  color: white;
  font-weight: 1000;
  text-align:center;
  line-height: .9;
  font-size: 26px;
  text-shadow: 0 10px 20px rgba(0,0,0,.35);
}

.coupon-tag{
  position:absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(230,178,74,.95);
  color: #0B1E2E;
  font-weight: 900;
  text-align:center;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
  letter-spacing: .6px;
}

/* Main copy */
.referral-copy h3{
  margin: 0;
  color: white;
  font-weight: 1000;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.15;
}

.accent-pill{
  background: rgba(31,167,214,.25);
  border: 1px solid rgba(31,167,214,.55);
  padding: 4px 12px;
  border-radius: 999px;
  color: #7BE6FF;
  font-weight: 1000;
  white-space: nowrap;
}

.referral-copy p{
  margin: 10px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 15px;
}

/* Steps row */
.ref-steps{
  position: relative;
  margin-top: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.60));
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 18px;
  padding: 14px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ref-step{
  display:flex;
  align-items:center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.step-num{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(31,167,214,.18);
  border: 1px solid rgba(31,167,214,.45);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 1000;
  color: var(--ppp-navy);
}

.step-head{
  font-weight: 1000;
  color: #0B1E2E;
  font-size: 16px;
}

.step-sub{
  color: rgba(0,0,0,.62);
  font-size: 13px;
  margin-top: 2px;
}

.step-arrow{
  color: rgba(0,0,0,.45);
  font-weight: 900;
  font-size: 18px;
  padding: 0 6px;
}

.step-accent{
  color: #0B6C98;
  font-weight: 1000;
}

/* Responsive */
@media (max-width: 980px){
  .badge-row{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .referral-main{ grid-template-columns: 1fr; }
  .coupon-left{ height: 140px; }
  .ref-steps{ flex-direction: column; align-items: stretch; }
  .step-arrow{ display:none; }
}
/* === Badge Card Fix === */
/* === BADGES (keep ONE copy of this whole block) === */

.badges-row{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.badge-card{
  background: #f5f7f9;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.badge-card:hover{
  transform: translateY(-6px);
}

.badge-card .badge-img-wrapper{
  width: 230px;      /* controls visual size */
  height: 230px;     /* forces same box for all */
  margin: 0 auto 18px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-card img{
  width: 100%;
  height: 100%;
  object-fit: contain;  /* keeps proportions */
  display: block;
}

.badge-card h3{
  font-size: 20px;
  font-weight: 700;
  color: #1c2b36;
  line-height: 1.3;
}

/* Mobile */
@media (max-width: 980px){
  .badges-row{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px){
  .badges-row{
    grid-template-columns: 1fr;
  }
}