/* Hero section - exact spec implementation */
:root{
  --red-primary:#FF0000;
  --red-dark:#CC0000;
  --blue-primary:#1075CD;
  --blue-dark:#0B4678;
  --white:#ffffff;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --overlay-glass: rgba(255,255,255,0.1);
  --border-glass: rgba(255,255,255,0.2);
}
*{box-sizing:border-box}
html,body{height:100%}
body{font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; background:linear-gradient(135deg,#171717,#262626,#171717); color:var(--white); margin:0}
.container{max-width:1400px;margin:0 auto;padding:0 1rem}

/* hero heights */
.hero-plain{position:relative;height:650px;overflow:hidden}
@media (min-width:1024px){.hero-plain{height:700px}}

.hero-slides{position:absolute;inset:0}
.hero-slide{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity 1s ease, transform 1s ease;transform:scale(1.02)}
.hero-slide.active{opacity:1;transform:scale(1)}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,0.6),rgba(0,0,0,0.35));z-index:1}

/* decorative accents */
.accent-circle{position:absolute;border-radius:50%;filter:blur(40px);opacity:0.45;z-index:2;pointer-events:none}
.accent-circle--red{width:240px;height:240px;right:8%;top:18%;background:radial-gradient(circle at 30% 30%, rgba(255,0,0,0.18), rgba(255,0,0,0.02));animation:float 6s ease-in-out infinite}
.accent-circle--blue{width:320px;height:320px;left:60%;bottom:8%;background:radial-gradient(circle at 30% 30%, rgba(16,117,205,0.12), rgba(16,117,205,0.02));animation:float 8s ease-in-out infinite}
@keyframes float{0%{transform:translateY(0)}50%{transform:translateY(-12px)}100%{transform:translateY(0)}}

/* layout grid */
.hero-content{position:relative;z-index:5;display:grid;grid-template-columns:1fr;gap:2rem;align-items:flex-start;padding:4rem 1rem 0 1rem}
@media (min-width:640px){.container{padding:0 1.5rem}.hero-content{gap:2rem}}
@media (min-width:1024px){.container{padding:0 2rem}.hero-content{grid-template-columns:1fr 1fr;gap:3rem;align-items:flex-end}}

/* content column spacing */
.hero-left{display:flex;flex-direction:column;gap:1.25rem;padding-left:0;align-items:flex-start}
.hero-right{display:flex;align-items:flex-end;justify-content:flex-end;width:100%}
@media (min-width:1024px){.hero-right{justify-content:flex-end}}

/* Brand badge */
.badge{display:inline-flex;align-items:center;gap:0.5rem;background:var(--overlay-glass);backdrop-filter:blur(12px);border:1px solid var(--border-glass);border-radius:9999px;padding:0.5rem 0.9rem;color:var(--white);font-size:.75rem;font-weight:700;letter-spacing:0.05em;text-transform:uppercase;align-self:flex-start;max-width:360px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;margin-top:2rem}
.badge-icon{width:1rem;height:1rem;display:inline-block}
.badge-icon svg{width:1rem;height:1rem;fill:var(--red-primary)}

/* Headline */
.hero-title{margin:0;line-height:1.05;font-weight:700;color:var(--white);letter-spacing:-0.025em;text-align:left}
.hero-title{font-size:2.25rem} /* 36px mobile */
@media (min-width:640px){.hero-title{font-size:3rem}} /* 48px sm */
@media (min-width:1024px){.hero-title{font-size:3.75rem}} /* 60px lg */
@media (min-width:1280px){.hero-title{font-size:4.5rem}} /* 72px xl */
.accent-red{background:linear-gradient(to right,#FF0000,#FF0000,#CC0000);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
.accent-blue{background:linear-gradient(to right,#1075CD,#1075CD,#0B4678);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}

/* Tagline */
.hero-sub{margin:0;color:var(--white-90);font-weight:300;letter-spacing:0.025em;font-size:1.25rem} /* 20px */
@media (min-width:640px){.hero-sub{font-size:1.5rem}} /* 24px */
@media (min-width:1024px){.hero-sub{font-size:1.875rem}} /* 30px */

/* Feature pills */
.hero-pills{display:flex;flex-wrap:wrap;gap:0.5rem}
.pill{background:rgba(255,255,255,0.1);backdrop-filter:blur(4px);border:1px solid rgba(255,255,255,0.2);border-radius:9999px;padding:0.375rem 1rem;display:flex;align-items:center;gap:0.5rem;color:var(--white);font-size:.75rem;font-weight:500}
.pill .dot{width:0.375rem;height:0.375rem;border-radius:9999px}
.pill .dot.red{background:var(--red-primary)}
.pill .dot.blue{background:var(--blue-primary)}

/* CTA buttons container */
.hero-ctas{display:flex;flex-wrap:wrap;gap:1rem;padding-top:0.5rem}
.btn{display:inline-flex;align-items:center;gap:0.5rem;padding:0.875rem 2rem;border-radius:0.75rem;text-decoration:none;font-weight:700;font-size:1rem;transition:all 300ms}
.btn.primary{background:var(--red-primary);color:var(--white);box-shadow:0 25px 50px -12px rgba(0,0,0,0.25)}
.btn.primary:hover{background:var(--red-dark);transform:scale(1.05);box-shadow:0 25px 50px -12px rgba(255,0,0,0.5)}
.btn.primary .arrow{width:1rem;height:1rem}
.btn.outline{background:transparent;border:2px solid var(--white);color:var(--white)}
.btn.outline:hover{background:var(--white);color:var(--red-primary);transform:scale(1.05)}

/* Trust indicators */
.trust{display:flex;flex-wrap:wrap;align-items:flex-end;gap:1.5rem;padding-top:1rem;border-top:1px solid rgba(255,255,255,0.2);margin-top:auto}
.trust-item{display:flex;align-items:center;gap:0.5rem;white-space:nowrap}
.trust-icon{width:2.5rem;height:2.5rem;background:rgba(255,255,255,0.1);backdrop-filter:blur(4px);border-radius:9999px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.trust-icon svg{width:1.25rem;height:1.25rem}
.trust-item > div{display:flex;flex-direction:column}
.trust-item > div strong{color:var(--white);font-weight:700;font-size:0.875rem}
.trust-item > div .muted{color:var(--white-70);font-size:0.75rem}

/* Carousel indicators sizes per spec */
.hero-indicators{position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);display:flex;gap:0.5rem;z-index:30}
.hero-indicators .indicator{width:0.5rem;height:0.5rem;border-radius:9999px;background:rgba(255,255,255,0.5);border:none;transition:all .25s}
.hero-indicators .indicator.active{width:2rem;height:0.5rem;border-radius:9999px;background:var(--red-primary)}
.hero-indicators .indicator:hover{background:rgba(255,255,255,0.8)}

/* product spot (keep subtle) */
.product-spot{position:relative;height:280px;display:flex;align-items:center;justify-content:center;padding-top:1rem}
.ring{border-radius:50%;border:2px solid rgba(255,255,255,0.08);position:absolute}
.ring-1{width:280px;height:280px;animation:spin 24s linear infinite}
.ring-2{width:200px;height:200px;animation:spin 36s linear reverse infinite}
.product-card{position:relative;background:linear-gradient(180deg,rgba(255,255,255,0.04),rgba(255,255,255,0.02));padding:16px;border-radius:20px;backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,0.06);text-align:center;box-shadow:0 10px 40px rgba(0,0,0,0.35)}
.product-icon{width:32px;height:32px;display:inline-block;margin-bottom:6px}
.product-icon svg{width:32px;height:32px}
.product-title{font-size:1rem;font-weight:700;color:var(--white);margin:4px 0;letter-spacing:0.05em}
.product-sub{font-size:0.9rem;color:var(--white-70);margin:0;font-weight:500}

@keyframes spin{from{transform:rotate(0)}to{transform:rotate(360deg)}}

/* Floating offers button & modal removed (markup stripped from template) */

/* 'Why' and 'Featured/Products' sections removed from template; related CSS stripped */

/* Responsive tweaks */
@media (min-width:640px){
  .container{padding:0 1.5rem}
}
@media (min-width:1024px){
  .container{padding:0 2rem}
}
@media (max-width:1100px){
  .hero-right{width:100%}
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .products-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:480px){
  .hero-title{font-size:2.25rem}
  .grid-4{grid-template-columns:1fr}
  .products-grid{grid-template-columns:1fr}
}

@media (min-width:1024px){
  /* larger gap on desktop to match reference */
  .badge{margin-top:3rem}
}