:root{
  --max:1100px;
  --radius:14px;

  --blue:#0b4ea2;
  --blueDark:#083b7a;

  --text:#102a43;
  --muted:#556;
  --border:#e7e7e7;
  --soft:#f4f6fb;

  --orange:#f39c12;
  --orange2:#e67e22;

  --shadow:0 10px 28px rgba(0,0,0,.08);
}

/* ================= RESET ================= */

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.55;
  color:var(--text);
  background:#fff;
}

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

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

svg{
  display:block;
}

.wrap{
  max-width:var(--max);
  margin:auto;
  padding:18px;
}

.muted{
  color:var(--muted);
}

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

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}

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

.brand-name{
  color:var(--blue);
  font-weight:800;
  font-size:1rem;
}

.brand-name a{
  color:inherit;
}

.nav{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.nav a{
  padding:8px 10px;
  border-radius:10px;
  font-weight:600;
}

.nav a:hover{
  background:#eef4ff;
}

/* ================= BUTTONS ================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:12px;
  font-weight:800;
  border:1px solid var(--blue);
  transition:.2s ease;
  text-align:center;
  white-space:nowrap;
  cursor:pointer;
}

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

.btn.primary{
  background:linear-gradient(135deg,var(--blue),var(--blueDark));
  color:#fff;
  border:none;
  box-shadow:0 6px 16px rgba(11,78,162,.25);
}

.btn.primary:hover{
  background:linear-gradient(135deg,var(--blueDark),var(--blue));
  box-shadow:0 8px 20px rgba(11,78,162,.35);
}

.btn.ghost{
  background:#fff;
  color:var(--blue);
  border-color:#cfe0ff;
}

.btn.ghost:hover{
  background:#eef4ff;
}

.btn.whatsapp{
  background:#2bb840;
  border-color:#2bb840;
  color:#fff;
}

.btn.whatsapp:hover{
  background:#209833;
}

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

.hero{
  position:relative;
  border-bottom:1px solid var(--border);
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.15) 0%,
      rgba(255,255,255,.65) 45%,
      rgba(255,255,255,.92) 70%,
      rgba(255,255,255,1) 100%
    ),
    url("./images/manchester.jpg");
  background-size:cover;
  background-position:left center;
  background-repeat:no-repeat;
}

.hero-content{
  position:relative;
  z-index:2;
  text-align:center;
}

.hero::after{
  content:"";
  position:absolute;
  right:6%;
  bottom:0;
  width:min(420px,38vw);
  height:420px;
  background:url("./images/dishwasher.jpg") no-repeat center;
  background-size:contain;
  pointer-events:none;
  z-index:1;
}

.hero-inner{
  padding:70px 0 50px;
}

.hero h1{
  margin:12px 0 6px;
  font-size:clamp(30px,3.3vw,46px);
  line-height:1.12;
  letter-spacing:-.02em;
}

.hero-sub{
  margin:0 0 14px;
  color:#2a4a6a;
  font-weight:600;
  max-width:780px;
  margin-inline:auto;
}

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

/* ================= FEATURES ================= */

.feature-strip{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:12px;
  margin-top:18px;
}

.feature{
  background:var(--blue);
  color:#fff;
  font-weight:900;
  border-radius:10px;
  padding:12px;
  text-align:center;
  box-shadow:var(--shadow);
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
}

.feature svg{
  width:18px;
  height:18px;
  fill:#fff;
  flex:0 0 auto;
}

/* ================= SECTIONS ================= */

.section{
  padding:30px 0;
}

.section.alt{
  background:var(--soft);
  border-top:1px solid #edf0f6;
  border-bottom:1px solid #edf0f6;
}

.section-title{
  text-align:center;
  margin:0 0 16px;
  font-size:24px;
  line-height:1.2;
}

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

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:16px;
  align-items:stretch;
}

.price-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}

.price-head{
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  color:#fff;
  padding:16px;
}

.price-amount{
  font-size:32px;
  font-weight:950;
  line-height:1.1;
}

.price-amount span{
  font-size:14px;
  font-weight:700;
}

.price-size{
  margin-top:6px;
  font-weight:800;
}

.price-body{
  padding:16px;
}

.price-body ul{
  margin:0;
  padding-left:18px;
}

.price-body li + li{
  margin-top:8px;
}

/* ================= START CARD ================= */

.start-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
}

.start-title{
  font-weight:900;
}

.start-amount{
  margin-top:6px;
  font-size:30px;
  font-weight:950;
  line-height:1.1;
}

.start-amount span{
  font-size:.55em;
  font-weight:800;
}

.start-sub{
  margin-top:4px;
  color:var(--muted);
  font-weight:700;
}

.start-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.start-note{
  margin:16px 0 0;
  color:var(--muted);
}

/* ================= HOW / CARDS ================= */

.how-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:16px;
  align-items:stretch;
}

.how-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
  height:100%;
}

.how-card h3{
  margin:0 0 10px;
  font-size:1.1rem;
  line-height:1.25;
}

.how-card p{
  margin:0;
  color:var(--muted);
}

#how .section-title{
  text-align:center;
}

.section-cta{
  display:flex;
  justify-content:center;
  margin-top:36px;
}

.section-cta .btn{
  font-size:16px;
  padding:16px 26px;
  border-radius:14px;
}

/* ================= CONTENT BOXES ================= */

.why-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
}

.why-box p{
  margin:0 0 16px;
  color:var(--muted);
}

.why-box p:last-child{
  margin-bottom:0;
}

.why-box strong{
  color:var(--text);
}

.cta-text{
  font-size:1.03rem;
}

/* ================= AREAS ================= */

.areas-line{
  margin:0;
  text-align:center;
  font-weight:700;
  color:#26435f;
  line-height:1.8;
}

/* ================= LEGAL PAGES ================= */

main .why-box a{
  color:var(--blue);
  text-decoration:underline;
  font-weight:700;
}

main .why-box a:hover{
  color:var(--blueDark);
}

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

.footer{
  background:#0b4ea2;
  color:#ffffff;
  padding:40px 0;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.25),
    inset 0 12px 30px rgba(255,255,255,.08);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:24px;
}

.footer strong{
  font-size:18px;
  display:block;
  margin-bottom:6px;
}

.footer .muted{
  color:rgba(255,255,255,.85);
}

.footer a{
  color:#ffffff;
  font-weight:600;
}

.footer a:hover{
  text-decoration:underline;
}

.footer .muted a{
  color:#fff;
  font-weight:700;
}

.footer-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.footer .btn.primary{
  background:#ffffff;
  color:#0b4ea2;
  border:none;
  font-weight:900;
  padding:14px 22px;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
}

.footer .btn.primary:hover{
  background:#f2f6ff;
}

.wide-actions{
  align-items:center;
}

.wide-btn{
  min-width:160px;
}

/* ================= COOKIE BANNER SUPPORT ================= */

#cookie-banner{
  font-family:inherit;
}

#cookie-banner p{
  font-size:15px;
}

#cookie-banner button{
  font:inherit;
  font-weight:800;
  transition:.2s ease;
}

#cookie-banner button:hover{
  transform:translateY(-1px);
}

#accept-cookies{
  background:#fff;
  color:var(--blue);
}

#reject-cookies{
  background:transparent;
  color:#fff;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .nav{
    display:none;
  }

  .hero{
    background-position:center;
  }

  .hero-content{
    text-align:left;
  }

  .hero-sub{
    margin-inline:0;
  }

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

  .feature-strip{
    grid-template-columns:1fr;
  }

  .section-title{
    text-align:left;
  }

  #how .section-title{
    text-align:center;
  }

  .section-cta .btn{
    width:100%;
    max-width:320px;
  }

  .start-actions .btn{
    width:100%;
  }

  .hero::after{
    display:none;
  }

  .why-box{
    padding:18px;
  }

  .areas-line{
    text-align:left;
  }

  .footer-inner{
    align-items:flex-start;
  }

  .footer-actions{
    width:100%;
  }

  .wide-btn{
    width:100%;
    min-width:0;
  }

  #cookie-banner{
    left:12px !important;
    right:12px !important;
    bottom:12px !important;
    padding:14px !important;
  }
}