* { box-sizing: border-box; margin: 0; padding: 0; }

:root{
  --navy:#083b6f;
  --navy-deep:#062c53;
  --navy-soft:#0c4f91;
  --sky:#dfeaf3;
  --sky-soft:#edf4f8;
  --white:#ffffff;
  --text:#0f2135;
  --muted:#5b6b7d;
  --line:rgba(8,59,111,.12);
  --shadow:0 14px 40px rgba(9,33,60,.08);
  --shadow-strong:0 24px 60px rgba(9,33,60,.16);
  --radius:22px;
  --radius-sm:14px;
  --max:1220px;
  --section:92px;
  --transition:260ms ease;
}

html { scroll-behavior:smooth; }

body{
  font-family: Arial, Helvetica, sans-serif;
  background: var(--sky);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }

.container{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
}

section{
  padding:var(--section) 0;
  position:relative;
}

.eyebrow{
  display:inline-block;
  font-size:.84rem;
  letter-spacing:.14em;
  text-transform:none;
  margin-bottom:14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:700;
  transition:
    transform var(--transition),
    opacity var(--transition),
    background var(--transition),
    border-color var(--transition);
  cursor:pointer;
}

.btn:hover{ transform:translateY(-1px); }

.btn-primary{
  background:var(--navy);
  color:var(--white);
  border:1px solid var(--navy);
  box-shadow:0 14px 30px rgba(0,0,0,.12);
}

.btn-dark{
  background:var(--navy);
  color:var(--white);
}

.btn-outline{
  color:var(--white);
  border-color:rgba(255,255,255,.32);
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(8px);
}

.section-head{
  max-width:760px;
  margin-bottom:34px;
}

.section-head .eyebrow{
  color:var(--navy-soft);
  margin-bottom:10px;
}

.section-head h2{
  font-size:clamp(2rem, 4vw, 3.2rem);
  line-height:1.08;
  margin-bottom:12px;
  color:var(--text);
}

.section-head p{
  color:var(--muted);
  max-width:64ch;
}

.panel{
  background:linear-gradient(180deg, #f7fbfe 0%, #eef5fa 100%);
  border:1px solid var(--line);
  border-radius:28px;
  padding:34px;
  box-shadow:var(--shadow);
}

.panel h2{
  font-size:clamp(2rem, 4vw, 3.2rem);
  line-height:1.08;
  margin-bottom:16px;
}

.panel p{
  color:var(--muted);
  margin-bottom:14px;
  max-width:66ch;
}

.card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow);
  transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 44px rgba(9,33,60,.12);
  border-color:rgba(8,59,111,.18);
}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}

/* HEADER */
.site-header{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: #062c53;
  border-bottom: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  transition: all var(--transition);
}

.site-header.scrolled{
  background: #062c53;
  border-bottom: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 8px 24px rgba(0,0,0,.16);
}

.nav{
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand{
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--white);
  flex-shrink: 0;
}

.brand-logo{
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.brand-logo img{
  max-height: 100px;
  width: auto;
  height: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}

.site-header.scrolled .brand{
  color: var(--white);
}

.brand small{
  display:block;
  font-size:.72rem;
  letter-spacing:.22em;
  font-weight:700;
  opacity:.82;
  margin-top:2px;
}

.main-nav{
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links{
  display: flex;
  gap: 26px;
  list-style: none;
  flex-wrap: nowrap;
  align-items: center;
}

.nav-links a{
  color: rgba(255,255,255,.92);
  transition: opacity var(--transition), color var(--transition);
  font-weight: 600;
}

.site-header.scrolled .nav-links a{
  color: rgba(255,255,255,.92);
}

.nav-links a:hover{
  opacity: .78;
}

.nav-links a.active{
  opacity: 1;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.nav-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-deep);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.site-header.scrolled .nav-cta{
  background: var(--white);
  color: var(--navy-deep);
}

@media (max-width: 980px){
  .nav{
    min-height: 74px;
    gap: 16px;
  }

  .brand-logo img{
    max-height: 44px;
    max-width: 180px;
  }

  .nav-links{
    gap: 18px;
  }

  .nav-links a{
    font-size: .95rem;
  }

  .nav-cta{
    min-height: 42px;
    padding: 0 16px;
    font-size: .95rem;
  }
}

@media (max-width: 760px){
  .site-header{
    background: #062c53;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }

  .site-header.scrolled{
    background: #062c53;
  }

  .nav{
    min-height: auto;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .brand,
  .nav-links a{
    color: var(--white) !important;
  }

  .brand-logo img{
    max-height: 40px;
    max-width: 160px;
  }

  .main-nav{
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }

  .nav-links{
    gap: 14px;
    flex-wrap: wrap;
  }

  .nav-cta{
    background: var(--white);
    color: var(--navy-deep);
  }

  .home-hero-grid{
    padding-top: 140px;
    padding-bottom: 56px;
  }
}

/* HERO */
.home-hero{
  min-height:100vh;
  display:flex;
  align-items:flex-end;
  position:relative;
  color:var(--white);
  background:
    linear-gradient(180deg, rgba(5,25,47,.34) 0%, rgba(5,25,47,.46) 24%, rgba(5,25,47,.72) 100%),
    radial-gradient(circle at 78% 24%, rgba(69,164,255,.26), transparent 28%),
    url("/assets/images/bedrijfsgebouw-pallets.png") center center / cover no-repeat;
  overflow:hidden;
}

.home-hero::before{
  content:"";
  position:absolute;
  inset:auto -10% -140px auto;
  width:620px;
  height:620px;
  background:radial-gradient(circle, rgba(115,197,255,.24) 0%, rgba(115,197,255,0) 68%);
  pointer-events:none;
}

.home-hero-grid{
  width:100%;
  padding:144px 0 76px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:38px;
  align-items:end;
}

.hero-kicker{
  font-size:1rem;
  font-weight:700;
  color:#cbe7ff;
  margin-bottom:18px;
}

.home-hero h1{
  font-size:clamp(2.5rem, 6vw, 5.3rem);
  line-height:1.02;
  font-weight:800;
  max-width:920px;
  margin-bottom:18px;
  text-wrap:balance;
}

.home-hero .lead{
  max-width:700px;
  font-size:1.1rem;
  color:rgba(255,255,255,.9);
  margin-bottom:14px;
}

.home-hero .sublead{
  max-width:640px;
  font-size:1rem;
  color:#d6ebff;
  margin-bottom:30px;
  font-weight:700;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:34px;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  max-width:760px;
}

.stat{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  padding:18px 18px 16px;
  backdrop-filter: blur(10px);
}

.stat strong{
  display:block;
  font-size:1.6rem;
  line-height:1;
  margin-bottom:6px;
}

.stat span{
  color:rgba(255,255,255,.78);
  font-size:.95rem;
}

.hero-panel{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(16px);
  border-radius:26px;
  box-shadow:var(--shadow-strong);
  padding:26px;
  align-self:end;
}

.hero-panel h3{
  font-size:1.3rem;
  margin-bottom:10px;
}

.hero-panel p{
  color:rgba(255,255,255,.84);
  margin-bottom:18px;
}

.hero-panel-list{
  list-style:none;
  display:grid;
  gap:12px;
}

.hero-panel-list li{
  padding-left:24px;
  position:relative;
  color:#edf7ff;
}

.hero-panel-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  font-weight:800;
  color:#9ed3ff;
}

/* COMMON HELPERS */
.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:start;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:22px;
}

.media-cover{
  min-height:520px;
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow-strong);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.number-icon{
  width:56px;
  height:56px;
  border-radius:16px;
  background:var(--sky-soft);
  color:var(--navy);
  display:grid;
  place-items:center;
  font-size:1.25rem;
  font-weight:800;
  margin-bottom:18px;
}

.info-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:var(--shadow);
  transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.info-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 46px rgba(9,33,60,.12);
  border-color:rgba(8,59,111,.18);
}

.info-card h3{
  font-size:1.28rem;
  line-height:1.15;
  margin-bottom:10px;
}

.info-card p{ color:var(--muted); }

/* UNITS */
.units-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:22px;
  align-items:stretch;
}

.unit-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.unit-card:hover{
  transform:translateY(-5px);
  box-shadow:0 22px 48px rgba(9,33,60,.12);
  border-color:rgba(8,59,111,.2);
}

.unit-image{
  aspect-ratio: 16 / 10;
  position:relative;
  overflow:hidden;
}

.unit-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: center;
  transition:transform 600ms ease;
}

.unit-card:hover .unit-image img{
  transform:scale(1.04);
}

.unit-body{
  padding:24px 22px 22px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.unit-title{
  font-size:1.6rem;
  line-height:1.05;
  margin-bottom:10px;
  color:var(--navy-deep);
}

.seo-line{
  font-size:.88rem;
  line-height:1.45;
  color:var(--navy-soft);
  margin-bottom:14px;
  font-weight:700;
}

.unit-desc{
  color:var(--muted);
  margin-bottom:16px;
}

.feature-list{
  list-style:none;
  display:grid;
  gap:10px;
  margin-bottom:20px;
  padding:0;
}

.feature-list li{
  display:grid;
  grid-template-columns:16px 1fr;
  column-gap:10px;
  align-items:start;
  color:var(--text);
  font-size:.96rem;
  line-height:1.5;
  padding-left:0;
}

.feature-list li::before{
  content:"•";
  position:static;
  color:var(--navy);
  font-weight:800;
}

.unit-body{
  padding:24px 22px 22px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.price-block{
  margin-top:auto;
  border-top:1px solid var(--line);
  padding-top:18px;
  margin-bottom:18px;
  text-align:center;
}

.price{
  font-size:2rem;
  line-height:1;
  font-weight:800;
  color:var(--navy-deep);
  margin-bottom:8px;
  text-align:center;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  max-width:1100px;
  margin:0 auto;
  align-items:stretch;
}

.pricing-card{
  background:#fff;
  border:1.5px solid var(--border, #e2e8f0);
  border-radius:20px;
  padding:34px 30px;
  position:relative;
  overflow: visible;
  transition:all .3s;
  display:flex;
  flex-direction:column;
  height:100%;
}

.pricing-card.featured{
  border-color:#16a34a;
  box-shadow:0 10px 28px rgba(22,163,74,.18);
}

.pricing-name,
.pricing-desc,
.pricing-price{
  text-align:center;
}

.pricing-price{
  font-size:44px;
  line-height:1;
  margin-bottom:8px;
}

.pricing-price span{
  font-size:15px;
}

.pricing-desc{
  margin-bottom:24px;
}

.pricing-features{
  list-style:none;
  margin-bottom:28px;
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:0;
}

.pricing-features li{
  display:grid;
  grid-template-columns:18px 1fr;
  align-items:start;
  column-gap:10px;
  font-size:14px;
  line-height:1.5;
  color:var(--text, #0f2135);
}

.pricing-features li::before{
  content:"✓";
  color:#16a34a;
  font-weight:700;
  display:block;
  line-height:1.5;
}

.pricing-btn{
  margin-top:auto;
  display:block;
  width:100%;
  text-align:center;
  padding:12px;
  border-radius:14px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
}

.pricing-badge{
  position:absolute;
  top:-18px;
  left:50%;
  transform:translateX(-50%);
  background:#eab308; /* geel */
  color:#0f172a;
  font-size:12px;
  font-weight:800;
  padding:6px 16px;
  border-radius:999px;
  white-space:nowrap;
  box-shadow:0 8px 20px rgba(234,179,8,.28);
}

.solar{
  color:var(--muted);
  font-weight:700;
  text-align:center;
}

/* CTA */
.cta-section{
  background:
    radial-gradient(circle at center, rgba(112, 191, 255, 0.179), transparent 36%),
    linear-gradient(180deg, var(--navy) 0%, var(--white) 100%);
  color:var(--white);
  text-align:center;
}

.cta-box{
  max-width:860px;
  margin:0 auto;
}

.cta-box h2{
  font-size:clamp(2.2rem, 5vw, 4.2rem);
  line-height:1.05;
  margin-bottom:14px;
}

.cta-box p{
  color:rgba(255,255,255,.84);
  max-width:720px;
  margin:0 auto 24px;
  font-size:1.05rem;
}

/* FOOTER */
.footer{
  background:var(--navy-deep);
  color:var(--white);
  padding:58px 0 28px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:28px;
  margin-bottom:28px;
}

.footer h3{ font-size:1.4rem; margin-bottom:10px; }
.footer h4{ margin-bottom:12px; }
.footer p, .footer a{ color:rgba(255,255,255,.8); }
.footer a{ display:block; margin-bottom:10px; }

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.14);
  padding-top:16px;
  color:rgba(255,255,255,.7);
  font-size:.95rem;
}

@media (max-width: 1080px){
  .home-hero-grid{
    grid-template-columns:1fr;
  }

  .hero-panel{
    max-width:760px;
  }

  .units-grid,
  .grid-3{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 980px){
  .grid-2,
  .grid-3,
  .footer-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 760px){
  :root{ --section:72px; }

  .site-header{
    background:rgba(255,255,255,.94);
    border-bottom:1px solid var(--line);
  }

  .brand,
  .nav-links a{
    color:var(--navy-deep) !important;
  }

  .nav{
    min-height:auto;
    padding:16px 0;
    flex-direction:column;
    align-items:flex-start;
  }

  .nav-links{ gap:14px; }
  .nav-cta{
    background:var(--navy);
    color:var(--white);
  }

  .home-hero-grid{
    padding-top:140px;
    padding-bottom:56px;
  }

  .hero-stats,
  .units-grid,
  .grid-3,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .panel,
  .card{
    padding:24px;
  }

  .media-cover{
    min-height:280px;
  }

  .home-hero h1{
    font-size:clamp(2.2rem, 10vw, 3.8rem);
  }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{
    transition:none !important;
    animation:none !important;
  }
  .reveal{
    opacity:1;
    transform:none;
  }
}

/* ===== HOMEPAGE HERO FINAL FIX ===== */

.home-hero-grid{
  display: block !important;
  padding-top: 180px !important;
  padding-bottom: 76px !important;
}

.hero-content-centered{
  max-width: 1180px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.hero-content-centered .eyebrow,
.hero-content-centered .hero-kicker,
.hero-content-centered h1,
.hero-content-centered .lead,
.hero-content-centered .sublead{
  text-align: center !important;
}

.hero-content-centered h1{
  max-width: 980px !important;
  margin: 0 auto 18px !important;
}

.hero-content-centered .lead{
  max-width: 860px !important;
  margin: 0 auto 14px !important;
}

.hero-content-centered .sublead{
  max-width: 760px !important;
  margin: 0 auto 30px !important;
}

.hero-cards-row{
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 24px !important;
  align-items: stretch !important;
  margin: 0 auto 28px !important;
}

.hero-stats-card{
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  backdrop-filter: blur(16px) !important;
  border-radius: 26px !important;
  box-shadow: var(--shadow-strong) !important;
  padding: 26px !important;
  height: 100% !important;
}

.hero-stats-grid{
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 14px !important;
  height: 100% !important;
}

.stat-box{
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  text-align: left !important;
}

.stat-box strong{
  display: block !important;
  font-size: 1.6rem !important;
  line-height: 1 !important;
  margin-bottom: 6px !important;
  color: #fff !important;
}

.stat-box span{
  color: rgba(255,255,255,.82) !important;
  font-size: .95rem !important;
}

.hero-panel{
  margin: 0 !important;
  height: 100% !important;
  text-align: left !important;
}

.hero-actions-centered{
  display: flex !important;
  justify-content: center !important;
  gap: 14px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

@media (max-width: 1080px){
  .hero-cards-row{
    grid-template-columns: 1fr !important;
  }

  .hero-stats-grid{
    grid-template-columns: 1fr !important;
  }
}

.hero-stats-card{
  padding: 26px !important;
}

.hero-stats-grid{
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
}

.stat-box{
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 0 14px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.16) !important;
  text-align: left !important;
  min-height: auto !important;
}

.stat-box:last-child{
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.stat-box strong{
  display: block !important;
  margin-bottom: 4px !important;
  font-size: 1.2rem !important;
  color: #fff !important;
}

.stat-box span{
  display: block !important;
  color: rgba(255,255,255,.82) !important;
  font-size: .95rem !important;
  line-height: 1.5 !important;
}

.hero-actions-centered{
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 24px !important;
  width: 100% !important;
  max-width: 1180px !important;
  margin: 28px auto 0 !important;
  align-items: center !important;
}

.hero-actions-centered .btn{
  min-width: 190px !important;
}

.hero-actions-centered .btn:first-child{
  justify-self: end !important;
}

.hero-actions-centered .btn:last-child{
  justify-self: start !important;
}

.unit-card-wrap{
  position: relative;
  padding-top: 18px;
}

.unit-card-wrap .unit-card{
  height: 100%;
}

/* FEATURED UNIT CARD — DEFINITIVO */
.featured-unit{
  position: relative;
  overflow: visible !important;
  border-radius: 28px;
  border: 0 !important;
  background: var(--white);
  box-shadow:
    inset 0 0 0 2px #22c55e,
    0 10px 28px rgba(34,197,94,.18);
}

.featured-unit::before{
  content: "Most popular";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #22c55e;
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 20;
  box-shadow: 0 8px 20px rgba(34,197,94,.28);
}

.featured-unit .unit-image{
  overflow: hidden;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}

.featured-unit .unit-image img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}
.product-stack{
  display:grid;
  gap:24px;
}

.product-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:0;
  transition:transform var(--transition), box-shadow var(--transition);
}

.product-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 48px rgba(9,33,60,.12);
}

.product-media{
  min-height:340px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.product-body{
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.product-body h3{
  font-size:clamp(1.7rem, 3.2vw, 2.4rem);
  line-height:1.08;
  margin-bottom:14px;
  color:var(--navy-deep);
}

.product-body p{
  color:var(--muted);
  margin-bottom:14px;
  max-width:62ch;
  line-height:1.7;
}

@media (max-width: 1080px){
  .product-card{
    grid-template-columns:1fr;
  }

  .product-media{
    min-height:280px;
  }
}

.page-hero .hero-inner{
  width:100%;
  padding:50px 0 70px;
  max-width:920px;
  margin:0 auto;
  text-align:center;
}

.page-hero h1{
  font-size: 72px;
  line-height:1.03;
  margin-bottom:18px;
  font-weight:600;
  color: #ffffff;
}

.home-hero-grid{
  padding-top: 140px !important;
}

@media (max-width: 760px){
  .home-hero-grid{
    padding-top: 120px !important;
  }
}

.featured-unit{
  border-radius: 28px !important;
}

.featured-unit::after{
  content: "";
  position: absolute;
  inset: 0 !important;
  border: 4px solid #22c55e;
  border-radius: inherit !important;
  box-sizing: border-box !important;
  pointer-events: none;
}

.featured-unit .unit-image{
  border-top-left-radius: 28px !important;
  border-top-right-radius: 28px !important;
}

.form-success{
  background:#ecfdf3;
  color:#166534;
  border:1px solid #bbf7d0;
  padding:14px 16px;
  border-radius:14px;
  margin:18px 0;
  font-weight:600;
}

.form-error{
  background:#fef2f2;
  color:#991b1b;
  border:1px solid #fecaca;
  padding:14px 16px;
  border-radius:14px;
  margin:18px 0;
  font-weight:600;
  display:grid;
  gap:6px;
}

.hero-actions .btn-primary,
.hero-actions-centered .btn-primary {
  background: var(--navy) !important;
  color: #ffffff !important;
  border: 1px solid var(--navy) !important;
}

.hero-actions-centered .btn-outline {
  color: #ffffff !important;
  border-color: rgba(255,255,255,.42) !important;
  background: rgba(255,255,255,.10) !important;
}
