@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Manrope:wght@400;500;600;700;800&display=swap");


:root{
  --bg:#dcecf8;
  --navy:#071946;
  --orange:#ff9817;
  --green:#31c968;
  --muted:#40506f;
  --line:#d5e2ef;
  --shadow:0 18px 42px rgba(18,44,77,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}

@media (min-width: 1280px){
  html{ zoom:0.8; }
}

body{
  margin:0;
  background:var(--bg);
  color:var(--navy);
  font-family:Manrope,Inter,Arial,Helvetica,sans-serif;
  font-weight:700;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}

.site{
  width:min(1520px, calc(100vw - 48px));
  margin:0 auto;
  padding:24px 0 42px;
  overflow:visible;
}

/* HEADER */
.header{
  min-height:96px;
  border-radius:24px;
  background:#fff;
  display:grid;
  grid-template-columns:320px 1fr auto;
  align-items:center;
  column-gap:34px;
  padding:0 34px 0 40px;
  box-shadow:0 18px 42px rgba(17,47,85,.13);
  overflow:visible;
}
.logo{
  display:flex;
  align-items:center;
  height:92px;
  overflow:visible;
}
.logo img{
  width:282px;
  height:auto;
  max-height:78px;
  object-fit:contain;
  overflow:visible;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:54px;
  min-width:0;
}
.nav a{
  position:relative;
  padding:37px 0 31px;
  font-size:18px;
  font-weight:800;
  letter-spacing:-.015em;
  color:var(--navy);
  white-space:nowrap;
}
.nav a.active{color:var(--orange)}
.nav a.active:after{
  content:"";
  position:absolute;
  left:50%;
  bottom:24px;
  transform:translateX(-50%);
  width:46px;
  height:3px;
  border-radius:5px;
  background:var(--orange);
}
.right{
  display:flex;
  align-items:center;
  gap:24px;
}
.lang{
  font-size:16px;
  font-weight:700;
  color:#68738c;
  white-space:nowrap;
}
.lang b{color:var(--navy)}
.order{
  min-width:128px;
  height:64px;
  padding:0 32px;
  border-radius:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:var(--orange);
  font-size:18px;
  font-weight:800;
  box-shadow:0 16px 28px rgba(255,151,15,.30);
}

/* HERO */
.hero{
  position:relative;
  min-height:690px;
  margin-top:42px;
  display:grid;
  grid-template-columns:minmax(460px, 40%) minmax(680px, 60%);
  grid-template-rows:auto auto;
  align-items:start;
  overflow:visible;
}
.hero-copy{
  position:relative;
  z-index:5;
  padding-left:38px;
  max-width:590px;
}
.hero h1{
  font-family:'Cormorant Garamond',Georgia,'Times New Roman',serif;
  font-weight:700;
  font-size:clamp(64px, 4.9vw, 86px);
  line-height:.88;
  letter-spacing:-.03em;
  margin:0 0 30px;
  color:var(--navy);
  max-width:590px;
}
.hero p{
  width:min(100%, 480px);
  margin:0 0 32px;
  color:var(--navy);
  font-size:clamp(17px, 1.15vw, 20px);
  line-height:1.54;
  font-weight:700;
}
.actions{
  display:flex;
  gap:16px;
  margin-bottom:36px;
  flex-wrap:wrap;
}
.btn{
  height:58px;
  border-radius:31px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 30px;
  font-size:18px;
  line-height:1;
  font-weight:800;
  white-space:nowrap;
}
.btn.green{
  min-width:220px;
  background:var(--green);
  color:#fff;
  box-shadow:0 16px 24px rgba(32,201,101,.22);
}
.btn.light{
  min-width:212px;
  background:#fff;
  border:2px solid #7e899f;
  color:var(--navy);
}
.trust{
  display:grid;
  grid-template-columns:repeat(3, minmax(120px, 1fr));
  gap:22px;
  max-width:535px;
}
.trust div{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.trust i{
  font-style:normal;
  font-size:21px;
  line-height:1;
  flex:0 0 auto;
}
.trust span{
  font-size:15px;
  line-height:1.18;
  font-weight:700;
  letter-spacing:-.02em;
  color:#061641;
}

.hero-image{
  position:relative;
  z-index:2;
  grid-column:2;
  grid-row:1;
  width:100%;
  min-height:560px;
  overflow:visible;
  display:flex;
  align-items:flex-start;
  justify-content:flex-start;
  padding-left:6px;
  padding-right:0;
  padding-top:18px;
}
.hero-image img{
  width:min(980px, 100%);
  max-width:100%;
  height:auto;
  object-fit:contain;
  transform:translateX(0);
  filter:drop-shadow(0 22px 36px rgba(30,70,115,.12));
}
.delivery-card{
  position:relative;
  z-index:6;
  grid-column:2;
  grid-row:2;
  justify-self:end;
  align-self:start;
  right:auto;
  bottom:auto;
  margin-top:-24px;
  margin-right:56px;
  width:min(440px, 34vw);
  min-height:94px;
  border-radius:24px;
  background:rgba(255,255,255,.97);
  display:flex;
  align-items:center;
  gap:20px;
  padding:18px 26px;
  box-shadow:0 18px 36px rgba(13,42,78,.15);
}
.delivery-card b{
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  flex:0 0 58px;
  background:#39c46d;
  color:#fff;
  font-size:44px;
  line-height:1;
}
.delivery-card strong{
  display:block;
  font-size:22px;
  line-height:1.08;
  font-weight:950;
  letter-spacing:-.025em;
}
.delivery-card small{
  display:block;
  margin-top:6px;
  font-size:14px;
  line-height:1.28;
  color:#394a67;
  font-weight:800;
}

/* CATALOG */
.catalog{
  margin-top:0;
  padding:0 36px 28px;
}
.section-title{
  text-align:center;
  margin-bottom:30px;
}
.section-title span{
  display:inline-block;
  background:#fff0cc;
  color:#ff8b00;
  border-radius:20px;
  padding:11px 20px;
  margin-bottom:16px;
  font-size:15px;
  font-weight:950;
  letter-spacing:.02em;
}
.section-title h2{
  font-family:'Cormorant Garamond',Georgia,'Times New Roman',serif;
  font-weight:700;
  font-size:clamp(46px, 3.4vw, 58px);
  line-height:1;
  margin:0 0 14px;
  letter-spacing:-.025em;
}
.section-title p{
  max-width:690px;
  margin:0 auto;
  color:#14254d;
  font-size:18px;
  line-height:1.42;
  font-weight:850;
}
.cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:28px;
}
.card{
  background:#fff;
  border:1px solid rgba(185,203,225,.78);
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:14px 14px 22px;
  overflow:hidden;
}
.pic{
  position:relative;
  overflow:hidden;
  border-radius:18px;
}
.pic img{
  width:100%;
  height:clamp(230px, 17.8vw, 285px);
  object-fit:cover;
  border-radius:18px;
}
.pic em{
  position:absolute;
  top:14px;
  left:14px;
  background:#ffae16;
  border-radius:17px;
  padding:10px 15px;
  font-style:normal;
  font-size:14px;
  font-weight:950;
  color:#071946;
}
.body{
  padding:20px 8px 0;
}
.body h3{
  font-family:'Cormorant Garamond',Georgia,'Times New Roman',serif;
  font-weight:700;
  font-size:clamp(30px, 2.1vw, 36px);
  line-height:1;
  margin:0 0 14px;
  letter-spacing:-.02em;
}
.tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:16px;
}
.tags span{
  font-size:13px;
  color:#727d90;
  background:#f5efe4;
  border-radius:14px;
  padding:7px 10px;
  font-weight:950;
}
.body p{
  min-height:96px;
  margin:0 0 20px;
  color:#4e5b74;
  font-size:16px;
  line-height:1.48;
  font-weight:800;
}
.price{
  font-size:15px;
  margin-bottom:16px;
}
.price b{
  font-size:26px;
  color:#ff8b00;
}
.card-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.card-actions a,.card-actions button{
  height:46px;
  border-radius:24px;
  font-size:15px;
  font-weight:950;
}
.card-actions a{
  border:2px solid #707c98;
  display:grid;
  place-items:center;
}
.card-actions button{
  border:0;
  background:var(--orange);
  color:#fff;
}
.all-catalog{
  width:min(430px, 100%);
  height:54px;
  border-radius:28px;
  background:#06194b;
  color:#fff;
  margin:28px auto 0;
  display:grid;
  place-items:center;
  font-size:17px;
  font-weight:950;
  box-shadow:0 12px 20px rgba(6,25,75,.20);
}

/* BENEFITS / CONTACT / FOOTER */
.benefits{
  margin:16px 36px 28px;
  background:#fff;
  border-radius:26px;
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  padding:30px 28px;
}
.benefit{
  display:grid;
  grid-template-columns:48px 1fr;
  gap:16px;
  border-right:1px solid #e3eaf4;
  padding-right:18px;
}
.benefit:last-child{border-right:0}
.benefit i{
  width:46px;
  height:46px;
  border-radius:13px;
  background:#ecf5ff;
  display:grid;
  place-items:center;
  font-style:normal;
  font-size:25px;
}
.benefit h4{
  font-size:18px;
  margin:2px 0 8px;
}
.benefit p{
  font-size:14px;
  line-height:1.45;
  color:#5a667d;
  margin:0;
  font-weight:750;
}
.contact{
  margin:0 36px 28px;
  background:#fff;
  border-radius:26px;
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:1.1fr 1fr 1.65fr;
  gap:34px;
  padding:38px 44px;
}
.contact h2{
  font-family:'Cormorant Garamond',Georgia,'Times New Roman',serif;
  font-weight:700;
  font-size:46px;
  line-height:1.05;
  margin:0 0 18px;
}
.contact p{
  font-size:16px;
  line-height:1.55;
  color:#566174;
  margin:0;
}
.contact-info{
  display:grid;
  gap:14px;
}
.contact-info b{
  display:block;
  font-size:18px;
  margin-bottom:5px;
}
.contact-info span{
  font-size:14px;
  color:#66728b;
}
.contact form{
  display:grid;
  gap:14px;
}
.contact form div{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.contact input,.contact textarea{
  height:44px;
  border:1px solid #d9e0eb;
  border-radius:14px;
  padding:0 18px;
  font-size:15px;
  font-weight:700;
}
.contact textarea{
  height:92px;
  padding-top:15px;
  resize:none;
}
.contact button{
  height:52px;
  border:0;
  border-radius:18px;
  background:var(--orange);
  color:#fff;
  font-size:16px;
  font-weight:950;
}
.footer{
  display:grid;
  grid-template-columns:1.35fr 1fr 1fr 1fr;
  gap:42px;
  padding:0 56px 10px;
}
.footer img{
  width:180px;
  margin-bottom:14px;
}
.footer h4{
  font-size:18px;
  margin:0 0 14px;
}
.footer a,.footer p{
  display:block;
  font-size:15px;
  line-height:1.65;
  color:#4b5975;
  font-weight:750;
  margin:0 0 5px;
}

/* RESPONSIVE */
@media (max-width:1280px){
  .site{width:min(1180px, calc(100vw - 40px))}
  .header{grid-template-columns:240px 1fr auto;column-gap:22px}
  .logo img{width:252px;max-height:72px}
  .nav{gap:34px}
  .hero{grid-template-columns:40% 60%;min-height:590px}
  .hero-copy{padding-left:26px;max-width:440px}
  .hero h1{font-size:clamp(50px,5vw,64px)}
  .hero p{font-size:16px}
  .hero-image{min-height:540px}
  .hero-image img{width:min(820px, 100%)}
  .delivery-card{right:42px;bottom:74px;width:410px}
}
@media (max-width:980px){
  .site{width:min(100% - 24px, 900px);padding-top:14px}
  .header{
    min-height:auto;
    grid-template-columns:1fr auto;
    row-gap:14px;
    padding:16px 18px;
  }
  .logo{height:auto}
  .logo img{width:236px;max-height:none}
  .nav{
    grid-column:1/-1;
    order:3;
    justify-content:space-between;
    gap:12px;
    width:100%;
  }
  .nav a{font-size:14px;padding:8px 0}
  .nav a.active:after{bottom:0}
  .right{gap:12px}
  .order{height:48px;min-width:104px;font-size:15px}
  .hero{
    min-height:auto;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    margin-top:34px;
  }
  .hero-copy{
    padding:0 20px;
    max-width:none;
  }
  .hero h1{
    font-size:clamp(42px, 10vw, 58px);
    max-width:720px;
  }
  .hero p{
    width:min(100%, 650px);
    font-size:16px;
  }
  .hero-image{
    min-height:auto;
    margin-top:12px;
    justify-content:center;
  }
  .hero-image img{
    width:min(100%, 760px);
  }
  .delivery-card{
    position:relative;
    right:auto;
    bottom:auto;
    width:min(100%, 520px);
    margin:-30px auto 30px;
  }
  .cards{grid-template-columns:repeat(2, minmax(0,1fr))}
  .benefits{grid-template-columns:repeat(2,1fr)}
  .benefit:nth-child(2){border-right:0}
  .contact{grid-template-columns:1fr}
  .footer{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:640px){
  .site{width:calc(100% - 16px)}
  .header{border-radius:20px}
  .logo img{width:218px;max-height:none}
  .right{width:100%;justify-content:space-between;grid-column:1/-1;order:2}
  .lang{font-size:14px}
  .order{height:42px;font-size:14px}
  .nav{order:3;overflow-x:auto;justify-content:flex-start;padding-bottom:2px}
  .nav a{font-size:13px;flex:0 0 auto}
  .hero-copy{padding:0 12px}
  .hero h1{font-size:44px;line-height:.92}
  .hero p{font-size:15px}
  .actions{gap:12px}
  .btn{height:50px;font-size:15px;padding:0 20px}
  .btn.green,.btn.light{min-width:0;flex:1 1 100%}
  .trust{grid-template-columns:1fr;gap:13px}
  .hero-image img{width:100%;max-width:100%;}
  .delivery-card{width:calc(100% - 18px);padding:14px 16px;border-radius:20px}
  .delivery-card b{width:44px;height:48px;flex-basis:48px;font-size:36px}
  .delivery-card strong{font-size:18px}
  .catalog{padding:0 10px 24px}
  .section-title h2{font-size:34px}
  .section-title p{font-size:15px}
  .cards,.benefits,.footer{grid-template-columns:1fr}
  .pic img{height:220px}
  .body p{min-height:auto}
  .benefits,.contact{margin-left:10px;margin-right:10px}
  .benefit{border-right:0;border-bottom:1px solid #e3eaf4;padding-bottom:16px}
  .benefit:last-child{border-bottom:0}
  .contact{padding:26px 22px}
  .contact h2{font-size:32px}
  .contact form div{grid-template-columns:1fr}
  .footer{padding:0 20px 20px}
}


.logo img, .footer img, .hero-image img, .pic img { image-rendering: auto; }

/* Trust block refinement — only this block was redesigned */
.trust{
  display:grid;
  grid-template-columns:repeat(3, minmax(145px, 1fr));
  gap:16px;
  max-width:640px;
  margin-top:4px;
}
.trust div{
  min-height:62px;
  display:grid;
  grid-template-columns:38px 1fr;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  border-radius:20px;
  background:rgba(255,255,255,.34);
  border:1px solid rgba(255,255,255,.42);
  box-shadow:0 12px 24px rgba(30,70,115,.045);
  backdrop-filter:blur(3px);
}
.trust i{
  width:38px;
  height:38px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-style:normal;
  font-size:0;
  line-height:1;
  flex:0 0 38px;
  background:#ffffff;
  color:#0a1a48;
  box-shadow:0 8px 18px rgba(30,70,115,.08);
}
.trust div:nth-child(1) i::before{content:"✓";font-size:21px;font-weight:900;color:#27bf62;}
.trust div:nth-child(2) i::before{content:"↗";font-size:21px;font-weight:900;color:#ff9817;}
.trust div:nth-child(3) i::before{content:"★";font-size:20px;font-weight:900;color:#2e7cf6;}
.trust span{
  font-family:Manrope,Inter,Arial,Helvetica,sans-serif;
  font-size:16.5px;
  line-height:1.16;
  font-weight:800;
  letter-spacing:-.018em;
  color:#061641;
}

@media (max-width:1280px){
  .trust{grid-template-columns:repeat(3, minmax(120px, 1fr)); gap:12px; max-width:560px;}
  .trust div{grid-template-columns:34px 1fr; padding:9px 10px; gap:10px; border-radius:18px;}
  .trust i{width:34px;height:34px;border-radius:12px;}
  .trust span{font-size:15px;}
}
@media (max-width:980px){
  .trust{grid-template-columns:repeat(3, minmax(0, 1fr)); max-width:100%;}
}
@media (max-width:640px){
  .trust{grid-template-columns:1fr; gap:10px;}
  .trust div{min-height:56px; grid-template-columns:36px 1fr;}
  .trust span{font-size:16px;}
}


/* Final trust alignment fix — only trust cards */
.trust{
  gap:14px;
  max-width:650px;
  align-items:stretch;
}
.trust div{
  min-height:74px;
  grid-template-columns:46px 1fr;
  align-items:center;
  gap:14px;
  padding:12px 14px;
  border-radius:22px;
  background:rgba(255,255,255,.38);
  border:1px solid rgba(255,255,255,.54);
  box-shadow:0 14px 26px rgba(30,70,115,.055);
}
.trust i{
  width:46px;
  height:46px;
  border-radius:15px;
  display:grid;
  place-items:center;
  align-self:center;
  justify-self:center;
  margin:0;
  padding:0;
  line-height:1;
}
.trust i::before{
  display:block;
  width:1em;
  height:1em;
  line-height:1;
  text-align:center;
  transform:translateY(-1px);
}
.trust div:nth-child(2) i::before{transform:translate(1px,-1px);}
.trust span{
  display:flex;
  align-items:center;
  min-height:46px;
  margin:0;
  padding:0;
  font-size:17px;
  line-height:1.12;
  font-weight:850;
  letter-spacing:-.02em;
  text-wrap:balance;
}

/* Product card galleries — keeps card design, adds in-card photo slider */
.pic.gallery{
  position:relative;
  overflow:hidden;
}
.gallery-track{
  display:flex;
  width:100%;
  transition:transform .28s ease;
  will-change:transform;
}
.gallery-track img{
  flex:0 0 100%;
  width:100%;
  height:clamp(230px, 17.8vw, 285px);
  object-fit:cover;
  border-radius:18px;
}
.gallery-arrow{
  position:absolute;
  top:50%;
  z-index:4;
  transform:translateY(-50%);
  width:38px;
  height:38px;
  border:0;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.88);
  color:#071946;
  box-shadow:0 8px 18px rgba(7,25,70,.16);
  font-size:28px;
  line-height:1;
  font-weight:800;
  cursor:pointer;
  opacity:.92;
}
.gallery-arrow:hover{background:#fff;opacity:1;}
.gallery-prev{left:12px;}
.gallery-next{right:12px;}
.gallery-dots{
  position:absolute;
  left:50%;
  bottom:12px;
  z-index:4;
  transform:translateX(-50%);
  display:flex;
  gap:6px;
  padding:6px 8px;
  border-radius:999px;
  background:rgba(7,25,70,.22);
  backdrop-filter:blur(4px);
}
.gallery-dots button{
  width:7px;
  height:7px;
  padding:0;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.58);
  cursor:pointer;
}
.gallery-dots button.active{background:#fff;width:18px;border-radius:999px;}
.pic.gallery em{z-index:5;}

@media (max-width:1280px){
  .trust div{grid-template-columns:42px 1fr; min-height:68px; padding:10px 12px;}
  .trust i{width:42px;height:42px;}
  .trust span{font-size:16px;min-height:42px;}
}
@media (max-width:640px){
  .trust div{grid-template-columns:44px 1fr; min-height:66px;}
  .trust i{width:44px;height:44px;}
  .trust span{font-size:16.5px;min-height:44px;}
  .gallery-track img{height:220px;}
}

/* Hero final alignment — only hero visual, trust cards and delivery card */
@media (min-width:981px){
  .hero-image{
    align-items:flex-start;
    padding-top:4px;
  }
  .hero-image img{
    width:min(1040px, 100%);
    transform:translateY(-30px);
  }
  .delivery-card{
    right:64px;
    bottom:148px;
    width:min(460px, 35vw);
    min-height:88px;
  }
}

/* Redesigned hero trust cards — nothing else changed */
.trust{
  display:flex;
  align-items:stretch;
  gap:14px;
  width:min(100%, 690px);
  max-width:690px;
  margin-top:2px;
}
.trust div{
  flex:1 1 0;
  min-height:68px;
  display:grid;
  grid-template-columns:42px minmax(0,1fr);
  align-items:center;
  gap:12px;
  padding:11px 15px 11px 12px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.36));
  border:1px solid rgba(255,255,255,.66);
  box-shadow:0 14px 26px rgba(24,61,102,.06), inset 0 1px 0 rgba(255,255,255,.75);
  backdrop-filter:blur(4px);
}
.trust div:nth-child(2){flex:1.14 1 0;}
.trust div:nth-child(3){flex:1.18 1 0;}
.trust i{
  width:42px;
  height:42px;
  border-radius:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  justify-self:center;
  align-self:center;
  margin:0;
  padding:0;
  background:#fff;
  box-shadow:0 9px 18px rgba(24,61,102,.08);
  font-size:0;
  line-height:1;
}
.trust i::before{
  display:block;
  width:42px;
  height:42px;
  line-height:42px;
  text-align:center;
  transform:none !important;
}
.trust div:nth-child(1) i::before{
  content:"✓";
  font-family:Manrope,Inter,Arial,Helvetica,sans-serif;
  font-size:25px;
  font-weight:800;
  color:#32bf6a;
}
.trust div:nth-child(2) i::before{
  content:"↗";
  font-family:Manrope,Inter,Arial,Helvetica,sans-serif;
  font-size:22px;
  font-weight:800;
  color:#ff9817;
}
.trust div:nth-child(3) i::before{
  content:"★";
  font-family:Manrope,Inter,Arial,Helvetica,sans-serif;
  font-size:22px;
  font-weight:800;
  color:#4c7df6;
}
.trust span{
  display:flex;
  align-items:center;
  min-height:42px;
  margin:0;
  padding:0;
  text-align:left;
  color:#061641;
  font-family:Manrope,Inter,Arial,Helvetica,sans-serif;
  font-size:16px;
  line-height:1.14;
  font-weight:800;
  letter-spacing:-.018em;
  text-wrap:balance;
}

@media (max-width:1280px) and (min-width:981px){
  .hero-image img{transform:translateY(-16px);width:min(820px,100%);}
  .delivery-card{right:42px;bottom:126px;width:min(420px,36vw);}
  .trust{gap:12px;max-width:610px;}
  .trust div{grid-template-columns:38px 1fr;min-height:64px;padding:10px 12px;gap:10px;}
  .trust i,.trust i::before{width:38px;height:38px;line-height:38px;}
  .trust span{font-size:15.3px;min-height:38px;}
}
@media (max-width:980px){
  .trust{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));width:100%;max-width:100%;}
  .trust div{min-height:64px;}
}
@media (max-width:640px){
  .trust{display:grid;grid-template-columns:1fr;gap:10px;}
  .trust div{min-height:62px;grid-template-columns:40px 1fr;}
  .trust i,.trust i::before{width:40px;height:40px;line-height:40px;}
  .trust span{font-size:16px;min-height:40px;}
}


/* Trust strip moved below full hero */
.hero-copy > .trust { display: none !important; }
.hero-trust-strip{
  width:100%;
  margin: -30px 0 30px;
  padding: 0 16px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:22px;
}
.hero-trust-strip .trust-card{
  min-height:92px;
  border-radius:24px;
  background:rgba(255,255,255,.38);
  border:1px solid rgba(255,255,255,.55);
  box-shadow:0 16px 38px rgba(15,48,83,.06), inset 0 1px 0 rgba(255,255,255,.35);
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:18px;
  padding:16px 18px;
}
.hero-trust-strip .trust-card i{
  width:48px;
  height:48px;
  flex:0 0 44px;
  border-radius:15px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.82);
  font-style:normal;
  font-size:24px;
  line-height:1;
  font-weight:900;
  color:#48c96b;
}
.hero-trust-strip .trust-card:nth-child(2) i{ color:#f3a12a; }
.hero-trust-strip .trust-card:nth-child(3) i{ color:#5f86ff; }
.hero-trust-strip .trust-card span{
  display:block;
  max-width:none;
  font-size:16px;
  line-height:1.1;
  letter-spacing:-.015em;
  color:#061641;
  font-weight:850;
  white-space:nowrap;
}
@media (max-width: 980px){
  .hero-trust-strip{ margin: 8px 0 34px; padding:0 20px; grid-template-columns:1fr; gap:14px; }
  .hero-trust-strip .trust-card{ min-height:78px; padding:16px 18px; }
  .hero-trust-strip .trust-card span{ max-width:none; font-size:18px; white-space:normal; }
}
@media (max-width: 640px){
  .hero-trust-strip{ padding:0 10px; }
  .hero-trust-strip .trust-card span{ font-size:16px; }
}


@media (max-width: 1100px){
  .hero{grid-template-columns:1fr; grid-template-rows:auto auto auto;}
  .hero-copy{grid-row:1; max-width:100%;}
  .hero-image{grid-column:1; grid-row:2; min-height:auto; padding-top:10px;}
  .delivery-card{grid-column:1; grid-row:3; justify-self:flex-end; margin:12px 24px 0 auto; width:min(440px, calc(100% - 48px));}
}
@media (max-width: 720px){
  .delivery-card{margin:10px 0 0 auto; width:min(100%, 420px);}
}

/* Final desktop alignment fixes */
@media (min-width: 1101px){
  .hero{
    grid-template-rows:auto !important;
    min-height:610px !important;
    align-items:start;
  }
  .hero-image{
    grid-column:2;
    grid-row:1;
    min-height:520px !important;
    padding-top:8px !important;
    align-items:flex-start;
  }
  .delivery-card{
    position:absolute !important;
    z-index:6;
    grid-column:auto !important;
    grid-row:auto !important;
    justify-self:auto !important;
    align-self:auto !important;
    right:82px !important;
    top:458px !important;
    bottom:auto !important;
    margin:0 !important;
    width:min(440px, 34vw) !important;
  }
  .hero-trust-strip{
    margin:8px 0 34px !important;
  }
}


/* Final hero image override */
.hero-image{
  overflow:visible !important;
  justify-content:center !important;
}
.hero-image img{
  width:min(980px, 100%) !important;
  max-width:100% !important;
  height:auto !important;
  object-fit:contain !important;
}
@media (max-width:1280px) and (min-width:981px){
  .hero-image img{ width:min(900px, 100%) !important; transform:none !important; }
}
