.home-page{
  --pink:#F35588;
  --teal:#20B2AA;
  --navy:#294F6D;

  --bg:#ffffff;
  --text:#10283a;
  --muted:#4e6b80;
  --border:#e6eef5;
  --card:#ffffff;
  --soft:#f6f9fc;
  --soft2:#eef5fb;

  --shadow: 0 18px 60px rgba(16,40,58,.10);
  --shadow2: 0 10px 24px rgba(16,40,58,.08);

  position: relative;
  color: var(--text);
}

.home-page *{
  box-sizing: border-box;
}

.home-page a{
  color: inherit;
}



@keyframes homeFloat{
  0%,100%{ transform: translate(-50%,-50%) rotate(0deg) scale(1); }
  50%{ transform: translate(-50%,-54%) rotate(7deg) scale(1.04); }
}

.home-page .container{
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 24px 0 90px;
  position: relative;
  z-index: 1;
}

.home-page .card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.home-page .badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(32,178,170,.10);
  border: 1px solid rgba(32,178,170,.22);
  color: var(--navy);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .2px;
}

.home-page .badge .dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 6px rgba(243,85,136,.14);
}

.home-page .grad{
  color: var(--pink);
}

.home-page .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  font-weight: 950;
  letter-spacing: .2px;
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(32,178,170,.18), 0 14px 28px rgba(243,85,136,.16);
  text-decoration: none;
  transition: transform .12s ease;
  user-select: none;
}

.home-page .btn:hover{
  transform: translateY(-1px);
}

.home-page .btn.ghost{
  background: rgba(255,255,255,.90);
  color: var(--navy);
  border: 1px solid var(--border);
  box-shadow: var(--shadow2);
}

.home-page .btn.secondary{
  background: var(--pink);
}

.home-page .hero{
  padding: 30px;
}

.home-page .hero-inner{
  padding: 44px 30px;
  text-align: center;
}

.home-page h1{
  margin: 14px 0 12px;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -.6px;
  color: var(--navy);
}

.home-page .lead{
  margin: 0 auto;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.75;
}

.home-page .actions{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.home-page .actions-bottom{
  margin-top: 16px;
}

.home-page .kpis{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.home-page .kpi{
  padding: 16px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid var(--border);
}

.home-page .kpi strong{
  display: block;
  font-size: 18px;
  color: var(--navy);
}

.home-page .kpi span{
  color: var(--muted);
  font-size: 13px;
}

.home-page .section{
  margin-top: 36px;
}

.home-page .section-pad{
  padding: 28px;
}

.home-page h2{
  margin: 10px 0 8px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -.4px;
  color: #10283a;
  font-weight: 900;
}

.home-page h3{
  margin: 0;
  font-size: 18px;
  letter-spacing: -.2px;
  color: var(--navy);
}

.home-page .p{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.home-page .plans{
  padding: 28px;
}

.home-page .plans-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.home-page .plans-toggle{
  display: flex;
  gap: 10px;
  align-items: center;
}

.home-page .toggle{
  display: flex;
  padding: 6px;
  border-radius: 999px;
  background: rgba(41,79,109,.06);
  border: 1px solid var(--border);
}

.home-page .toggle button{
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 950;
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.home-page .toggle button.is-active{
  color: #ffffff;
  background: var(--teal);
}

.home-page .save{
  font-weight: 950;
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 12px 24px rgba(243,85,136,.14);
  white-space: nowrap;
}

.home-page .plans-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.home-page .plan{
  padding: 18px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow2);
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}

.home-page .plan:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(16,40,58,.12);
}

.home-page .plan-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.home-page .meta{
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.home-page .pill{
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  border: 1px solid rgba(32,178,170,.30);
  background: rgba(32,178,170,.10);
  color: var(--navy);
  white-space: nowrap;
}

.home-page .pill.popular{
  background: rgba(243,85,136,.10);
  border-color: rgba(243,85,136,.26);
}

.home-page .price{
  margin-top: 12px;
  font-weight: 1000;
  font-size: 34px;
  letter-spacing: -1px;
  color: var(--navy);
}

.home-page .price small{
  font-size: 13px;
  font-weight: 900;
  color: var(--muted);
}

.home-page .features{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.home-page .features li{
  margin: 8px 0;
  color: var(--muted);
}

.home-page .features li::before{
  content: "✓ ";
  color: var(--teal);
  font-weight: 1000;
}

.home-page .choose{
  margin-top: 14px;
  width: 100%;
}

.home-page .plan.is-selected{
  border-color: rgba(32,178,170,.55);
  box-shadow: 0 18px 48px rgba(32,178,170,.14);
}

.home-page .plan.is-highlight{
  border-color: rgba(243,85,136,.50);
  box-shadow: 0 18px 48px rgba(243,85,136,.14);
}

.home-page .plans-foot{
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid var(--border);
}

.home-page .plans-foot-title{
  font-weight: 950;
  letter-spacing: -.2px;
}

.home-page .plans-note{
  margin-top: 10px;
}

.home-page .fine{
  color: var(--muted);
  font-size: 13px;
}

.home-page .features-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.home-page .feature{
  padding: 18px;
  border-radius: 20px;
  background: var(--soft);
  border: 1px solid var(--border);
}

.home-page .icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--teal);
  box-shadow: 0 18px 40px rgba(32,178,170,.18);
  margin-bottom: 10px;
}

.home-page .feature:nth-child(2) .icon{
  background: var(--pink);
  box-shadow: 0 18px 40px rgba(243,85,136,.18);
}

.home-page .feature:nth-child(3) .icon{
  background: var(--navy);
  box-shadow: 0 18px 40px rgba(41,79,109,.18);
}

.home-page .steps{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.home-page .step{
  padding: 18px;
  border-radius: 20px;
  background: var(--soft);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.home-page .step .num{
  position: absolute;
  top: 14px;
  right: 14px;
  font-weight: 1000;
  color: rgba(41,79,109,.22);
  font-size: 34px;
  letter-spacing: -1px;
}

.home-page .quotes{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.home-page .quote{
  padding: 18px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow2);
}

.home-page .quote p{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.home-page .quote .by{
  margin-top: 10px;
  color: rgba(41,79,109,.72);
  font-size: 13px;
  font-weight: 900;
}

.home-page .home-footer{
  margin-top: 26px;
  color: rgba(41,79,109,.72);
  font-size: 13px;
  text-align: center;
  padding-top: 10px;
}

/* Why Coveroo redesign */
.home-page .why-coveroo{
  padding: 30px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(420px 220px at 16% 18%, rgba(32,178,170,.10), transparent 70%),
    radial-gradient(420px 240px at 82% 20%, rgba(243,85,136,.10), transparent 72%),
    #fff;
}

.home-page .why-coveroo::before,
.home-page .why-coveroo::after{
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
  opacity:.55;
}

.home-page .why-coveroo::before{
  width:180px;
  height:180px;
  top:-55px;
  right:-35px;
  background: radial-gradient(circle at 35% 35%, rgba(32,178,170,.16), rgba(32,178,170,0) 72%);
}

.home-page .why-coveroo::after{
  width:200px;
  height:200px;
  bottom:-80px;
  left:-40px;
  background: radial-gradient(circle at 40% 40%, rgba(243,85,136,.12), rgba(243,85,136,0) 72%);
}

.home-page .why-top{
  display:block;
}

.home-page .why-intro{
  padding: 8px 0 34px;
}

.home-page .why-title-row{
  display:flex;
  align-items:flex-start;
  gap:16px;
  margin-top: 10px;
}

.home-page .why-mark{
  width:64px;
  height:64px;
  border-radius:22px;
  position:relative;
  flex:0 0 64px;
  background: linear-gradient(180deg, rgba(255,255,255,.8), rgba(246,249,252,.9));
  border:1px solid var(--border);
  box-shadow: var(--shadow2);
}

.home-page .why-mark::before{
  content:"";
  position:absolute;
  inset:10px;
  border-radius:50%;
  border:8px solid rgba(32,178,170,.28);
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(-18deg);
}

.home-page .why-mark::after{
  content:"";
  position:absolute;
  width:22px;
  height:22px;
  border-radius:50%;
  background: var(--pink);
  left:24px;
  top:22px;
  box-shadow: 0 0 0 7px rgba(243,85,136,.12);
}

.home-page .why-title-wrap h2{
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -.4px;
  color: var(--navy);
  max-width: 30ch;
}

.home-page .why-copy{
  max-width: 86ch;
}

.home-page .why-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 18px;
}

.home-page .why-chip{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  color: var(--navy);
  background: rgba(255,255,255,.76);
  border: 1px solid var(--border);
  box-shadow: var(--shadow2);
}

.home-page .why-chip::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(32,178,170,.10);
}

.home-page .why-chip.pink::before{
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(243,85,136,.10);
}

.home-page .why-badge{
  gap:0;
  padding: 7px 14px;
  font-size: 12px;
  line-height: 1;
}

.home-page .why-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.home-page .why-card{
  position:relative;
  padding: 22px 18px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--border);
  box-shadow: var(--shadow2);
  overflow:hidden;
}

.home-page .why-card::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:100%;
  background: radial-gradient(180px 120px at 0% 0%, rgba(32,178,170,.08), transparent 70%);
  pointer-events:none;
}

.home-page .why-card.pink::before{
  background: radial-gradient(180px 120px at 0% 0%, rgba(243,85,136,.08), transparent 70%);
}

.home-page .why-card.navy::before{
  background: radial-gradient(180px 120px at 0% 0%, rgba(41,79,109,.10), transparent 70%);
}

.home-page .why-card-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 18px;
}

.home-page .why-card-icon{
  width:58px;
  height:58px;
  border-radius:20px;
  position:relative;
  flex:0 0 58px;
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(246,249,252,.96));
  border:1px solid var(--border);
  box-shadow: var(--shadow2);
}

.home-page .why-card-icon::before{
  content:"";
  position:absolute;
  inset:10px;
  border-radius:50%;
  border:7px solid rgba(32,178,170,.26);
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(-24deg);
}

.home-page .why-card-icon::after{
  content:"";
  position:absolute;
  width:18px;
  height:18px;
  border-radius:50%;
  background: var(--teal);
  left:22px;
  top:21px;
}

.home-page .why-card.pink .why-card-icon::before{
  border-color: rgba(243,85,136,.24);
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.home-page .why-card.pink .why-card-icon::after{
  background: var(--pink);
}

.home-page .why-card.navy .why-card-icon::before{
  border-color: rgba(41,79,109,.22);
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.home-page .why-card.navy .why-card-icon::after{
  background: var(--navy);
}

.home-page .why-card-tag{
  display:inline-flex;
  align-items:center;
  padding:8px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(32,178,170,.10);
  border:1px solid rgba(32,178,170,.18);
  white-space:nowrap;
}

.home-page .why-card.pink .why-card-tag{
  background: rgba(243,85,136,.10);
  border-color: rgba(243,85,136,.18);
}

.home-page .why-card.navy .why-card-tag{
  background: rgba(41,79,109,.08);
  border-color: rgba(41,79,109,.14);
}

.home-page .why-card h3{
  margin-bottom: 10px;
  font-size: 18px;
  line-height:1.15;
}

.home-page .why-card p{
  margin:0;
  color: var(--muted);
  line-height:1.72;
}

.home-page .why-points{
  margin: 16px 0 0;
  padding:0;
  list-style:none;
}

.home-page .why-points li{
  margin: 10px 0;
  color: var(--muted);
  line-height:1.5;
  position:relative;
  padding-left: 24px;
}

.home-page .why-points li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color: var(--pink);
  font-weight:1000;
}

/* How it works redesign */
.home-page .how-coveroo{
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(16,40,58,.98), rgba(24,53,85,.98));
  border-color: rgba(16,40,58,.08);
}

.home-page .how-coveroo::before{
  content:"";
  position:absolute;
  inset:-10% auto auto -8%;
  width:320px;
  height:320px;
  border-radius:50%;
  background: radial-gradient(circle at 40% 40%, rgba(32,178,170,.22), rgba(32,178,170,0) 70%);
  pointer-events:none;
}

.home-page .how-coveroo::after{
  content:"";
  position:absolute;
  right:-90px;
  bottom:-90px;
  width:280px;
  height:280px;
  border-radius:50%;
  background: radial-gradient(circle at 40% 40%, rgba(243,85,136,.18), rgba(243,85,136,0) 72%);
  pointer-events:none;
}

.home-page .how-coveroo .badge{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  color: #fff;
  gap:0;
  padding: 7px 14px;
  font-size: 12px;
  line-height: 1;
}

.home-page .how-coveroo .badge .dot{
  display:none;
}

.home-page .how-coveroo h2,
.home-page .how-coveroo h3{
  color:#fff;
}

.home-page .how-coveroo .p{
  color: rgba(255,255,255,.76);
}

.home-page .how-top{
  display:block;
}

.home-page .how-copy{
  max-width: 68ch;
  margin-top: 12px;
}

.home-page .how-summary{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-page .how-mini{
  position:relative;
  padding: 16px 14px 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 16px 36px rgba(0,0,0,.16);
  backdrop-filter: blur(10px);
  overflow:hidden;
}

.home-page .how-mini::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:100%;
  background: radial-gradient(180px 120px at 0% 0%, rgba(32,178,170,.18), transparent 72%);
  pointer-events:none;
}

.home-page .how-mini:nth-child(2)::before{
  background: radial-gradient(180px 120px at 0% 0%, rgba(243,85,136,.18), transparent 72%);
}

.home-page .how-mini:nth-child(3)::before{
  background: radial-gradient(180px 120px at 0% 0%, rgba(255,255,255,.14), transparent 72%);
}

.home-page .how-mini strong,
.home-page .how-mini span{
  position:relative;
  z-index:1;
}

.home-page .how-mini strong{
  display:block;
  font-size: 22px;
  color:#fff;
  margin-bottom:4px;
  letter-spacing:-.3px;
}

.home-page .how-mini span{
  display:block;
  color: rgba(255,255,255,.74);
  font-size: 12px;
  line-height:1.45;
}

.home-page .how-steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.home-page .how-step{
  position:relative;
  padding: 24px 20px 20px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.14);
  overflow:hidden;
  min-height: 280px;
}

.home-page .how-step::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:100%;
  background: radial-gradient(200px 140px at 0% 0%, rgba(32,178,170,.14), transparent 72%);
  pointer-events:none;
}

.home-page .how-step.pink::before{
  background: radial-gradient(200px 140px at 0% 0%, rgba(243,85,136,.14), transparent 72%);
}

.home-page .how-step.navy::before{
  background: radial-gradient(200px 140px at 0% 0%, rgba(255,255,255,.10), transparent 72%);
}

.home-page .how-step-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 18px;
  position:relative;
  z-index:1;
}

.home-page .how-badge-num{
  width:54px;
  height:54px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 1000;
  font-size: 20px;
  color:#fff;
  background: var(--teal);
  box-shadow: 0 18px 40px rgba(32,178,170,.22);
  flex:0 0 54px;
}

.home-page .how-step.pink .how-badge-num{
  background: var(--pink);
  box-shadow: 0 18px 40px rgba(243,85,136,.22);
}

.home-page .how-step.navy .how-badge-num{
  background: rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:none;
}

.home-page .how-step-tag{
  display:inline-flex;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#fff;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  white-space:nowrap;
}

.home-page .how-step h3{
  margin:0 0 10px;
  font-size: 22px;
  line-height:1.08;
  position:relative;
  z-index:1;
}

.home-page .how-step p{
  margin:0;
  color: rgba(255,255,255,.78);
  line-height:1.72;
  position:relative;
  z-index:1;
}

.home-page .how-proof{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position:relative;
  z-index:1;
}

.home-page .how-proof-box{
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  min-height: 74px;
}

.home-page .how-proof-box strong{
  display:block;
  font-size: 12px;
  line-height:1.35;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.60);
  margin-bottom: 8px;
}

.home-page .how-proof-box span{
  display:block;
  color:#fff;
  line-height:1.48;
  font-weight:700;
  font-size: 14px;
}

/* Reviews redesign */
.home-page .reviews-coveroo{
  padding: 30px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(420px 220px at 14% 16%, rgba(243,85,136,.10), transparent 72%),
    radial-gradient(420px 240px at 88% 22%, rgba(32,178,170,.10), transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,249,252,.96));
}

.home-page .reviews-coveroo::before,
.home-page .reviews-coveroo::after{
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
  opacity:.55;
}

.home-page .reviews-coveroo::before{
  width:210px;
  height:210px;
  top:-72px;
  right:-32px;
  background: radial-gradient(circle at 40% 40%, rgba(243,85,136,.14), rgba(243,85,136,0) 72%);
}

.home-page .reviews-coveroo::after{
  width:230px;
  height:230px;
  bottom:-90px;
  left:-40px;
  background: radial-gradient(circle at 40% 40%, rgba(32,178,170,.14), rgba(32,178,170,0) 72%);
}

.home-page .reviews-top{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 18px;
  align-items: end;
}

.home-page .reviews-title-row{
  display:flex;
  align-items:flex-start;
  gap:16px;
  margin-top: 10px;
}

.home-page .reviews-badge{
  gap:0;
  padding: 7px 14px;
  font-size: 12px;
  line-height: 1;
}

.home-page .reviews-copy{
  max-width: 64ch;
}

.home-page .reviews-scoreboard{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 12px;
}

.home-page .reviews-score,
.home-page .reviews-metric{
  position:relative;
  padding: 18px 16px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow2);
  overflow:hidden;
}

.home-page .reviews-score::before,
.home-page .reviews-metric::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:100%;
  background: radial-gradient(200px 130px at 0% 0%, rgba(243,85,136,.08), transparent 72%);
  pointer-events:none;
}

.home-page .reviews-metric::before{
  background: radial-gradient(200px 130px at 0% 0%, rgba(32,178,170,.08), transparent 72%);
}

.home-page .reviews-score-row,
.home-page .reviews-stars,
.home-page .reviews-score-label,
.home-page .reviews-metric strong,
.home-page .reviews-metric span{
  position:relative;
  z-index:1;
}

.home-page .reviews-score-row{
  display:flex;
  align-items:flex-end;
  gap:4px;
  line-height:1;
}

.home-page .reviews-score-big{
  font-size: 48px;
  font-weight: 1000;
  letter-spacing: -1px;
  color: var(--navy);
}

.home-page .reviews-score-small{
  font-size: 14px;
  font-weight: 900;
  color: var(--muted);
  margin-bottom: 6px;
}

.home-page .reviews-stars{
  margin-top:10px;
  font-size:16px;
  letter-spacing:.22em;
  font-weight:900;
  background: linear-gradient(90deg,var(--pink),var(--teal));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  text-shadow:0 4px 10px rgba(243,85,136,.18);
}

.home-page .reviews-score-label{
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 13px;
}

.home-page .reviews-metric strong{
  display:block;
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--navy);
}

.home-page .reviews-metric span{
  display:block;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.home-page .reviews-viewport{
  position:relative;
  margin-top: 22px;
  min-height: 360px;
}

.home-page .reviews-grid{
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  opacity:0;
  visibility:hidden;
  transform: translateY(10px);
  transition: opacity 1.1s ease, transform 1.1s ease, visibility 1.1s ease;
  pointer-events:none;
}

.home-page .reviews-grid.is-active{
  opacity:1;
  visibility:visible;
  transform: translateY(0);
  pointer-events:auto;
}

.home-page .review-card{
  position:relative;
  padding: 22px 18px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.90);
  border: 1px solid var(--border);
  box-shadow: var(--shadow2);
  overflow:hidden;
}

.home-page .review-card::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:100%;
  background: radial-gradient(180px 120px at 0% 0%, rgba(243,85,136,.08), transparent 72%);
  pointer-events:none;
}

.home-page .review-card.pink::before{
  background: radial-gradient(180px 120px at 0% 0%, rgba(32,178,170,.08), transparent 72%);
}

.home-page .review-card.navy::before{
  background: radial-gradient(180px 120px at 0% 0%, rgba(41,79,109,.10), transparent 72%);
}

.home-page .review-top,
.home-page .review-quote,
.home-page .review-person{
  position:relative;
  z-index:1;
}

.home-page .review-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 18px;
}

.home-page .review-avatar{
  width:54px;
  height:54px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 20px;
  font-weight: 1000;
  color:#fff;
  background: var(--pink);
  box-shadow: 0 18px 40px rgba(243,85,136,.18);
  flex:0 0 54px;
}

.home-page .review-card.pink .review-avatar{
  background: var(--teal);
  box-shadow: 0 18px 40px rgba(32,178,170,.18);
}

.home-page .review-card.navy .review-avatar{
  background: var(--navy);
  box-shadow: 0 18px 40px rgba(41,79,109,.18);
}

.home-page .review-rating{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  font-size:14px;
  font-weight:900;
  letter-spacing:.25em;
  background: linear-gradient(90deg,var(--pink),var(--teal));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  border:1px solid rgba(243,85,136,.18);
  background-color:#fff;
}

.home-page .review-quote{
  margin:0;
  color: var(--navy);
  line-height: 1.78;
  font-size: 15px;
  min-height: 146px;
}

.home-page .review-person{
  margin-top: 18px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
}

.home-page .review-person strong{
  display:block;
  color: var(--navy);
  margin-bottom: 4px;
}

.home-page .review-person-meta{
  color: var(--muted);
  font-size: 13px;
}

.home-page .review-accent{
  width:46px;
  height:6px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--pink),var(--teal));
  margin-top:10px;
  opacity:.85;
}

.home-page .review-card.pink .review-accent{
  background:linear-gradient(90deg,var(--teal),var(--pink));
}

.home-page .review-card.navy .review-accent{
  background:linear-gradient(90deg,var(--navy),var(--teal));
}

.home-page .reviews-nav{
  margin-top: 14px;
  display:flex;
  justify-content:center;
  gap:8px;
}

.home-page .reviews-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background: rgba(41,79,109,.18);
  transition: transform .25s ease, background .25s ease;
}

.home-page .reviews-dot.is-active{
  background: var(--pink);
  transform: scale(1.15);
}

.home-page .reviews-actions{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap:wrap;
}

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

@media (max-width: 980px){
  .home-page .hero{
    padding: 20px;
  }

  .home-page .hero-inner{
    padding: 30px 20px;
  }

  .home-page .plans{
    padding: 20px;
  }

  .home-page .section-pad{
    padding: 20px;
  }

  .home-page .plans-head{
    flex-direction: column;
    align-items: flex-start;
  }

  .home-page .plans-toggle{
    width: 100%;
    justify-content: space-between;
  }

  .home-page .plans-grid,
  .home-page .kpis,
  .home-page .features-grid,
  .home-page .steps,
  .home-page .quotes{
    grid-template-columns: 1fr;
  }
  
  .home-page .why-title-wrap h2{
    max-width: none;
  }

  .home-page .why-grid{
    grid-template-columns: 1fr;
  }
  
  .home-page .how-top{
    grid-template-columns: 1fr;
  }

  .home-page .how-summary{
    grid-template-columns: 1fr;
  }

  .home-page .how-steps{
    grid-template-columns: 1fr;
  }
  
  .home-page .reviews-top{
    grid-template-columns: 1fr;
  }

  .home-page .reviews-scoreboard{
    grid-template-columns: 1fr;
  }

  .home-page .reviews-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .home-page .reviews-viewport{
    min-height: auto;
  }

  .home-page .reviews-grid{
    position:relative;
    inset:auto;
    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
  }

  .home-page .reviews-grid.is-active{
    display:grid;
  }

  .home-page .review-person{
    align-items:flex-start;
    flex-direction:column;
  }

  .home-page .review-quote{
    min-height: auto;
  }
}


@media (max-width: 640px){
  .home-page .why-title-row{
    gap:12px;
  }

  .home-page .why-mark{
    width:54px;
    height:54px;
    flex-basis:54px;
    border-radius:18px;
  }

  .home-page .why-mark::before{
    inset:9px;
    border-width:6px;
  }

  .home-page .why-mark::after{
    width:18px;
    height:18px;
    left:19px;
    top:18px;
  }
}

@media (max-width: 640px){
  .home-page{
    font-size: 15px;
  }

  .home-page h1{
    font-size: clamp(28px, 8vw, 40px);
  }

  .home-page h2{
    font-size: clamp(22px, 6vw, 28px);
  }

  .home-page .container{
    padding: 16px 0 60px;
  }

  .home-page .card{
    border-radius: 18px;
  }

  .home-page .hero{
    padding: 16px;
  }

  .home-page .hero-inner{
    padding: 24px 16px;
  }

  .home-page .actions{
    flex-direction: column;
  }

  .home-page .btn{
    width: 100%;
  }

  .home-page .plans-head h2{
    margin-bottom: 6px;
  }

  .home-page .plan{
    padding: 16px;
  }

  .home-page .price{
    font-size: 28px;
  }

  .home-page .plans-foot{
    flex-direction: column;
    align-items: flex-start;
  }

  .home-page .plans-foot .btn{
    width: 100%;
  }

  .home-page .blob{
    display: none;
  }
}

.coveroo-hero-card {
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(251,253,255,.98));
    border: 1px solid #e6eef5;
    border-radius: 26px;
    box-shadow: 0 18px 60px rgba(16,40,58,.10);
    overflow: hidden;
    padding: 18px;
}

.coveroo-hero-grid {
    display: grid;
    grid-template-columns: minmax(0,1.02fr) minmax(340px,.98fr);
    align-items: center;
    gap: 28px;
}

.coveroo-hero-copy {
    padding: 24px 18px 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.coveroo-hero-copy h1 {
    margin: 0;
    max-width: 14ch;
    color: #294F6D;
    font-size: clamp(38px, 4.9vw, 60px);
    line-height: .97;
    font-weight: 950;
}

.coveroo-hero-accent {
    color: #F35588;
}

.coveroo-hero-lead {
    margin: 16px 0 0;
    max-width: 48ch;
    color: #4e6b80;
    line-height: 1.58;
    font-size: 18px;
}

.coveroo-hero-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.coveroo-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 16px;
    border: 0;
    cursor: pointer;
    font-weight: 950;
    letter-spacing: .2px;
    background: #20B2AA;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(32,178,170,.18), 0 14px 28px rgba(243,85,136,.16);
    transition: transform .12s ease;
}

.coveroo-hero-btn:hover {
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.coveroo-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 20px;
    color: #294F6D;
    font-size: 13px;
    font-weight: 800;
}

.coveroo-hero-proof span {
    position: relative;
    padding-left: 16px;
}

.coveroo-hero-proof span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: #20B2AA;
    box-shadow: 0 0 0 5px rgba(32,178,170,.10);
}

.coveroo-hero-proof span:nth-child(2)::before {
    background: #F35588;
    box-shadow: 0 0 0 5px rgba(243,85,136,.10);
}

.coveroo-hero-proof span:nth-child(3)::before {
    background: #294F6D;
    box-shadow: 0 0 0 5px rgba(41,79,109,.08);
}

.coveroo-hero-media {
    position: relative;
    min-height: 430px;
    border-radius: 0;
    border: 0;
    background: none;
    overflow: visible;
}

.coveroo-hero-art {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.coveroo-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: .7;
}

.coveroo-hero-orb--teal {
    width: 230px;
    height: 230px;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(32,178,170,.28), rgba(32,178,170,0));
}

.coveroo-hero-orb--pink {
    width: 190px;
    height: 190px;
    left: 18px;
    top: 50%;
    transform: translateY(-42%);
    background: radial-gradient(circle, rgba(243,85,136,.24), rgba(243,85,136,0));
}

.coveroo-hero-boiler {
    position: relative;
    width: 292px;
    height: 374px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transform: translateY(-36px) scale(1.1);
    transform-origin: center center;
}

.coveroo-hero-steam {
    position: absolute;
    top: 34px;
    width: 22px;
    height: 64px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.78));
    filter: blur(1px);
    opacity: .8;
    z-index: 0;
}

.coveroo-hero-steam::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 2px solid rgba(41,79,109,.10);
    border-bottom: none;
    border-left-color: transparent;
    border-right-color: transparent;
    transform: rotate(12deg);
}

.coveroo-hero-steam--one {
    left: 96px;
    transform: rotate(-8deg);
}

.coveroo-hero-steam--two {
    left: 134px;
    height: 72px;
    top: 24px;
}

.coveroo-hero-steam--three {
    right: 96px;
    transform: rotate(8deg);
}

.coveroo-hero-cape {
    position: absolute;
    left: 68px;
    top: 104px;
    width: 174px;
    height: 210px;
    border-radius: 80px 80px 120px 120px;
    background: linear-gradient(180deg, #2f5f88, #294F6D);
    transform: rotate(-10deg);
    box-shadow: 0 18px 34px rgba(41,79,109,.16);
}

.coveroo-hero-body {
    position: relative;
    width: 212px;
    height: 246px;
    border-radius: 34px;
    background: linear-gradient(180deg, #ffffff, #edf7fb);
    border: 3px solid #294F6D;
    box-shadow: 0 18px 34px rgba(16,40,58,.10);
    z-index: 2;
    overflow: hidden;
}

.coveroo-hero-topbar {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 18px;
}

.coveroo-hero-topbar span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #20B2AA;
    box-shadow: 0 0 0 5px rgba(32,178,170,.12);
}

.coveroo-hero-topbar span:last-child {
    background: #F35588;
    box-shadow: 0 0 0 5px rgba(243,85,136,.12);
}

.coveroo-hero-face {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
}

.coveroo-hero-face span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #294F6D;
}

.coveroo-hero-smile {
    width: 66px;
    height: 34px;
    margin: 16px auto 0;
    border: 4px solid #294F6D;
    border-top: 0;
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.coveroo-hero-gauge {
    position: absolute;
    left: 26px;
    bottom: 30px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: conic-gradient(
        from 210deg,
        #20B2AA 0deg,
        #20B2AA 105deg,
        rgba(41,79,109,.10) 105deg,
        rgba(41,79,109,.10) 240deg,
        transparent 240deg
    );
    box-shadow: inset 0 0 0 6px #fff, 0 6px 14px rgba(16,40,58,.08);
}

.coveroo-hero-gauge::before {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(41,79,109,.12);
}

.coveroo-hero-gauge::after {
    content: "";
    position: absolute;
    left: 28px;
    top: 14px;
    width: 3px;
    height: 18px;
    border-radius: 999px;
    background: #F35588;
    transform-origin: bottom center;
    transform: rotate(34deg);
    box-shadow: 0 0 0 3px #fff;
}

.coveroo-hero-gauge-dot {
    position: absolute;
    left: 22px;
    top: 22px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #294F6D;
    border: 3px solid #fff;
    z-index: 1;
}

.coveroo-hero-panel {
    position: absolute;
    right: 22px;
    bottom: 30px;
    width: 84px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #eef6fb);
    border: 2px solid rgba(41,79,109,.14);
    box-shadow: 0 8px 18px rgba(16,40,58,.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #294F6D;
}

.coveroo-hero-panel-label {
    font-size: 9px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(41,79,109,.56);
}

.coveroo-hero-panel-value {
    font-size: 22px;
    line-height: 1;
    font-weight: 1000;
    letter-spacing: -.04em;
}

.coveroo-hero-panel-value small {
    font-size: 11px;
    vertical-align: top;
    margin-left: 1px;
    text-transform: uppercase;
}

.coveroo-hero-arm {
    position: absolute;
    top: 168px;
    width: 56px;
    height: 16px;
    border-radius: 999px;
    background: #294F6D;
    z-index: 1;
}

.coveroo-hero-arm--left {
    left: 30px;
    transform: rotate(20deg);
}

.coveroo-hero-arm--right {
    right: 42px;
    transform: rotate(-18deg);
}

.coveroo-hero-leg {
    position: absolute;
    bottom: 8px;
    width: 18px;
    height: 72px;
    border-radius: 999px;
    background: #294F6D;
    z-index: 1;
}

.coveroo-hero-leg--left {
    left: 128px;
}

.coveroo-hero-leg--right {
    right: 128px;
}

.coveroo-hero-foot {
    position: absolute;
    bottom: 0;
    width: 44px;
    height: 14px;
    border-radius: 999px;
    background: #294F6D;
    z-index: 1;
}

.coveroo-hero-foot--left {
    left: 108px;
}

.coveroo-hero-foot--right {
    right: 108px;
}

.coveroo-hero-shadow {
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 186px;
    height: 30px;
    border-radius: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(41,79,109,.18), rgba(41,79,109,0) 70%);
    z-index: 0;
}

.coveroo-hero-spark {
    position: absolute;
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
    background: #F35588;
    border-radius: 4px;
    opacity: .8;
}

.coveroo-hero-spark--one {
    left: 62px;
    top: 154px;
}

.coveroo-hero-spark--two {
    right: 96px;
    bottom: 126px;
    background: #20B2AA;
}

@media (max-width: 1100px) {
    .coveroo-hero-card {
        padding: 18px;
    }

    .coveroo-hero-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .coveroo-hero-copy {
        padding: 14px 10px 0 10px;
    }

    .coveroo-hero-media {
        min-height: 360px;
    }

    .coveroo-hero-lead {
        font-size: 17px;
    }

    .coveroo-hero-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .coveroo-hero-copy {
        padding: 6px 0 0;
    }

    .coveroo-hero-copy h1 {
        max-width: 10ch;
        font-size: clamp(34px,10vw,50px);
    }

    .coveroo-hero-lead {
        max-width: none;
        font-size: 16px;
    }

    .coveroo-hero-proof {
        gap: 8px 14px;
    }

    .coveroo-hero-media {
        min-height: 280px;
    }

    .coveroo-hero-boiler {
        transform: scale(.72);
        transform-origin: center center;
    }

    .coveroo-hero-panel {
        width: 76px;
        height: 54px;
        right: 20px;
        bottom: 28px;
    }

    .coveroo-hero-panel-value {
        font-size: 20px;
    }

    .coveroo-hero-gauge {
        left: 22px;
        bottom: 28px;
    }
}

@media (max-width: 640px) {
    .coveroo-hero-section {
        padding-top: 16px;
    }

    .coveroo-hero-card {
        padding: 16px;
        border-radius: 18px;
    }

    .coveroo-hero-copy h1 {
        font-size: clamp(28px,8vw,40px);
    }

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

    .coveroo-hero-btn {
        width: 100%;
    }
}

.coveroo-how-section {
    margin-top: 36px;
}

.coveroo-how-card {
    position: relative;
    overflow: hidden;
    padding: 36px;
    border: 1px solid rgba(16,40,58,.08);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(16,40,58,.98), rgba(24,53,85,.98));
    box-shadow: 0 18px 60px rgba(16,40,58,.10);
}

.coveroo-how-card::before {
    content: "";
    position: absolute;
    inset: -10% auto auto -8%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(32,178,170,.18), rgba(32,178,170,0) 70%);
    pointer-events: none;
}

.coveroo-how-card::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -90px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(243,85,136,.14), rgba(243,85,136,0) 72%);
    pointer-events: none;
}

.coveroo-how-top {
    position: relative;
    z-index: 1;
    display: block;
}

.coveroo-how-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .02em;
}

.coveroo-how-card h2 {
    margin: 10px 0 8px;
    color: #fff;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.1;
    letter-spacing: -.4px;
    font-weight: 900;
}

.coveroo-how-copy {
    max-width: 68ch;
    margin: 12px 0 0;
    color: rgba(255,255,255,.76);
    line-height: 1.7;
}

.coveroo-how-steps {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.coveroo-how-step {
    position: relative;
    overflow: hidden;
    min-height: 0;
    padding: 28px 24px 26px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.10);
    background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
    box-shadow: 0 18px 50px rgba(0,0,0,.14);
}

.coveroo-how-step::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 0;
    width: 68px;
    height: 4px;
    border-radius: 999px;
    background: #20B2AA;
    opacity: .95;
}

.coveroo-how-step::after {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(200px 140px at 0% 0%, rgba(32,178,170,.10), transparent 72%);
    pointer-events: none;
}

.coveroo-how-step--pink::before {
    background: #F35588;
}

.coveroo-how-step--pink::after {
    background: radial-gradient(200px 140px at 0% 0%, rgba(243,85,136,.10), transparent 72%);
}

.coveroo-how-step--navy::before {
    background: rgba(255,255,255,.72);
}

.coveroo-how-step--navy::after {
    background: radial-gradient(200px 140px at 0% 0%, rgba(255,255,255,.08), transparent 72%);
}

.coveroo-how-step-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
}

.coveroo-how-badge-num {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 1000;
    color: #fff;
    background: rgba(32,178,170,.18);
    border: 1px solid rgba(32,178,170,.24);
}

.coveroo-how-step--pink .coveroo-how-badge-num {
    background: rgba(243,85,136,.18);
    border-color: rgba(243,85,136,.24);
}

.coveroo-how-step--navy .coveroo-how-badge-num {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.12);
}

.coveroo-how-step-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    white-space: nowrap;
}

.coveroo-how-step h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    max-width: 13ch;
    color: #fff;
    font-size: 23px;
    line-height: 1.14;
}

.coveroo-how-step p {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 30ch;
    color: rgba(255,255,255,.78);
    font-size: 15px;
    line-height: 1.82;
}

@media (max-width: 1100px) {
    .coveroo-how-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .coveroo-how-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .coveroo-how-card h2 {
        font-size: clamp(22px, 6vw, 28px);
    }

    .coveroo-how-steps {
        margin-top: 40px;
        gap: 16px;
    }

    .coveroo-how-step {
        padding: 24px 20px 22px;
        border-radius: 22px;
    }

    .coveroo-how-step h3 {
        max-width: none;
        font-size: 20px;
    }

    .coveroo-how-step p {
        max-width: none;
    }
}

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

.coveroo-hero-section {
    margin-bottom: 36px;
}

.coveroo-hero-card {
    position: relative;
    padding: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 253, 255, 0.98));
    border: 1px solid #e6eef5;
    border-radius: 26px;
    box-shadow: 0 18px 60px rgba(16, 40, 58, 0.10);
}

.coveroo-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
    align-items: center;
    gap: 28px;
}

.coveroo-hero-copy {
    padding: 24px 18px 24px 28px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coveroo-hero-copy h1 {
    margin: 0;
    max-width: 14ch;
    color: #294F6D;
    font-size: clamp(38px, 4.9vw, 60px);
    line-height: .97;
    font-weight: 950;
    letter-spacing: -0.2rem;
}

.coveroo-hero-accent {
    color: #F35588;
}

.coveroo-hero-lead {
    margin: 16px 0 0;
    max-width: 48ch;
    color: #4e6b80;
    line-height: 1.58;
    font-size: 18px;
}

.coveroo-hero-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.coveroo-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 16px;
    background: #20B2AA;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 950;
    letter-spacing: .2px;
    box-shadow:
        0 14px 28px rgba(32, 178, 170, .18),
        0 14px 28px rgba(243, 85, 136, .16);
    transition: transform .12s ease;
}

.coveroo-hero-btn:hover {
    transform: translateY(-1px);
}

.coveroo-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 20px;
    color: #294F6D;
    font-size: 13px;
    font-weight: 800;
}

.coveroo-hero-proof span {
    position: relative;
    padding-left: 16px;
}

.coveroo-hero-proof span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: translateY(-50%);
}

.coveroo-hero-proof span:nth-child(1)::before {
    background: #20B2AA;
    box-shadow: 0 0 0 5px rgba(32, 178, 170, .10);
}

.coveroo-hero-proof span:nth-child(2)::before {
    background: #F35588;
    box-shadow: 0 0 0 5px rgba(243, 85, 136, .10);
}

.coveroo-hero-proof span:nth-child(3)::before {
    background: #294F6D;
    box-shadow: 0 0 0 5px rgba(41, 79, 109, .08);
}

.coveroo-hero-media {
    position: relative;
    min-height: 430px;
    overflow: visible;
}

.coveroo-hero-art {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.coveroo-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: .7;
}

.coveroo-hero-orb--teal {
    width: 230px;
    height: 230px;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(32, 178, 170, .28), rgba(32, 178, 170, 0));
}

.coveroo-hero-orb--pink {
    width: 190px;
    height: 190px;
    left: 18px;
    top: 50%;
    transform: translateY(-42%);
    background: radial-gradient(circle, rgba(243, 85, 136, .24), rgba(243, 85, 136, 0));
}

.coveroo-hero-boiler {
    position: relative;
    width: min(100%, 720px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-12px);
    transform-origin: center center;
}

.coveroo-hero-boiler::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 24px;
    width: 74%;
    height: 26px;
    border-radius: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(41, 79, 109, .14), rgba(41, 79, 109, 0) 72%);
    z-index: -1;
}

.coveroo-hero-boiler-image {
    display: block;
    width: 100%;
    max-width: 620px;
    height: auto;
    user-select: none;
    pointer-events: none;
}

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

@media (max-width: 1100px) {
    .coveroo-hero-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .coveroo-hero-copy {
        padding: 14px 10px 0 10px;
    }

    .coveroo-hero-media {
        min-height: 360px;
    }

    .coveroo-hero-lead {
        font-size: 17px;
    }

    .coveroo-hero-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .coveroo-hero-copy {
        padding: 6px 0 0;
    }

    .coveroo-hero-copy h1 {
        max-width: 10ch;
        font-size: clamp(34px, 10vw, 50px);
    }

    .coveroo-hero-lead {
        max-width: none;
        font-size: 16px;
    }

    .coveroo-hero-proof {
        gap: 8px 14px;
    }

    .coveroo-hero-media {
        min-height: 280px;
    }

    .coveroo-hero-boiler {
        width: min(100%, 300px);
        transform: none;
    }
}

@media (max-width: 640px) {
    .coveroo-hero-card {
        padding: 16px;
        border-radius: 18px;
    }

    .coveroo-hero-copy h1 {
        font-size: clamp(28px, 8vw, 40px);
    }

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

    .coveroo-hero-btn {
        width: 100%;
    }
}



.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition:
        background-color .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: rgba(230, 238, 245, 0.95);
    box-shadow: 0 12px 30px rgba(16, 40, 58, 0.08);
}

.shell-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 104px;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex: 0 0 auto;
}

.logo img {
    width: 200px;
    display: block;
}

.shell-nav {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 26px;
    flex: 1 1 auto;
}

.shell-nav a {
    text-decoration: none;
    color: #294F6D;
    font-size: 14px;
    font-weight: 850;
    letter-spacing: .01em;
    transition: color .16s ease, opacity .16s ease;
    white-space: nowrap;
}

.shell-nav a:hover {
    color: #F35588;
}

.btn.shell-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 16px;
    border-radius: 14px;
    border: 0;
    cursor: pointer;
    font-weight: 950;
    letter-spacing: .2px;
    background: #20B2AA;
    color: #fff;
    text-decoration: none;
    box-shadow:
        0 14px 28px rgba(32, 178, 170, .18),
        0 14px 28px rgba(243, 85, 136, .16);
    transition: transform .12s ease;
    user-select: none;
    flex: 0 0 auto;
}

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

/* push homepage content below fixed header */
.home-page {
    padding-top: 104px;
}

/* anchor offset for fixed header */
#why,
#how,
#plans,
#reviews,
#contact {
    scroll-margin-top: 120px;
}

@media (max-width: 900px) {
    .shell-container {
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;
        min-height: 104px;
        padding: 16px 0;
    }

    .shell-nav {
        order: 3;
        flex: 0 0 100%;
        gap: 18px;
        flex-wrap: wrap;
        padding-top: 4px;
    }

    .logo {
        margin-right: auto;
    }

    .btn.shell-cta {
        margin-left: auto;
    }
}

@media (max-width: 640px) {
    .shell-container {
        flex-wrap: wrap;
        gap: 12px;
        padding: 14px 0;
    }

    .shell-nav {
        gap: 14px;
        justify-content: flex-start;
    }

    .shell-nav a {
        font-size: 13px;
    }

    .btn.shell-cta {
        width: 100%;
        margin-left: 0;
    }
}
