:root{
  --primary:#0B6E4F;
  --dark:#073B3A;
  --white:#FFFFFF;
  --soft:#F5F7FA;
  --gold:#D4AF37;

  --text:#123234;
  --muted:#5B6B6D;

  --radius:18px;
  --shadow:0 14px 40px rgba(7,59,58,.16);
  --shadow-soft:0 10px 26px rgba(7,59,58,.12);
  --shadow-hover:0 18px 54px rgba(7,59,58,.22);

  --container:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
}

h1,h2,h3,h4{
  font-family:Poppins,Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--dark);
  letter-spacing:-.02em;
  margin:0;
}

p{margin:0}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  left:12px;
  top:12px;
  padding:10px 12px;
  background:var(--white);
  color:var(--dark);
  border-radius:12px;
  box-shadow:var(--shadow-soft);
  transform:translateY(-200%);
  transition:transform .2s ease;
  z-index:10;
}
.skip-link:focus{transform:translateY(0)}

.hero{
  background:radial-gradient(1200px 600px at 50% -120px, rgba(212,175,55,.18), transparent 55%),
             radial-gradient(900px 420px at 10% 10%, rgba(11,110,79,.22), transparent 60%),
             var(--dark);
  color:var(--white);
  min-height:92vh;
  display:grid;
  place-items:center;
  padding:68px 0 32px;
  position:relative;
  overflow:hidden;
}

.hero-inner{
  width:min(920px, calc(100% - 40px));
  text-align:center;
}

.hero-badge{display:flex;justify-content:center;margin-bottom:14px}
.badge-icon{
  width:54px;height:54px;
  border-radius:16px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(212,175,55,.28);
  box-shadow:0 10px 28px rgba(0,0,0,.25);
}
.badge-icon i{color:var(--gold);font-size:22px}

.hero-title{
  color:var(--white);
  font-weight:700;
  font-size:clamp(28px, 4.2vw, 46px);
  line-height:1.12;
  margin-bottom:10px;
}

.hero-tagline{
  color:rgba(255,255,255,.88);
  font-size:clamp(15px, 2.1vw, 18px);
  margin-bottom:22px;
}

.hero-actions{display:flex;justify-content:center;gap:14px;flex-wrap:wrap}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  border-radius:999px;
  padding:12px 18px;
  font-weight:700;
  letter-spacing:.01em;
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
  border:1px solid transparent;
  user-select:none;
  -webkit-tap-highlight-color:transparent;
}

.btn:focus-visible{
  outline:3px solid rgba(212,175,55,.45);
  outline-offset:4px;
}

.btn-gold{
  background:linear-gradient(180deg, rgba(212,175,55,1), rgba(195,158,39,1));
  color:var(--dark);
  box-shadow:0 12px 30px rgba(212,175,55,.18), 0 16px 44px rgba(0,0,0,.18);
}

.btn-gold:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 40px rgba(212,175,55,.22), 0 20px 56px rgba(0,0,0,.22);
  filter:saturate(1.03);
}

.btn-large{padding:14px 22px;font-size:16px}

.scroll-indicator{
  margin-top:34px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  opacity:.9;
}

.scroll-dot{
  width:10px;height:10px;
  border-radius:999px;
  background:rgba(212,175,55,.9);
  box-shadow:0 0 0 10px rgba(212,175,55,.08);
  animation:pulse 1.8s ease-in-out infinite;
}

.scroll-chev i{
  color:rgba(255,255,255,.78);
  font-size:14px;
  animation:floatDown 1.4s ease-in-out infinite;
}

@keyframes floatDown{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(6px)}
}

@keyframes pulse{
  0%,100%{transform:scale(1); box-shadow:0 0 0 10px rgba(212,175,55,.08)}
  50%{transform:scale(1.05); box-shadow:0 0 0 14px rgba(212,175,55,.12)}
}

.feature-strip{
  background:linear-gradient(180deg, rgba(7,59,58,1), rgba(7,59,58,.96));
  padding:18px 0 28px;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}

.feature-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:14px 14px;
  display:flex;
  align-items:center;
  gap:12px;
  box-shadow:0 12px 26px rgba(0,0,0,.18);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.feature-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 44px rgba(0,0,0,.22);
  background:rgba(255,255,255,.08);
}

.feature-icon{
  width:40px;height:40px;
  border-radius:14px;
  display:grid;place-items:center;
  background:rgba(212,175,55,.12);
  border:1px solid rgba(212,175,55,.22);
}

.feature-icon i{color:var(--gold)}

.feature-label{
  color:rgba(255,255,255,.92);
  font-weight:600;
  letter-spacing:.01em;
  font-size:14px;
}

.section{padding:64px 0}
.section-white{background:var(--white)}
.section-grey{background:var(--soft)}

.section-header{text-align:center;margin-bottom:26px}
.section-title-row{
  display:inline-flex;
  align-items:center;
  gap:12px;
  justify-content:center;
  max-width:100%;
}

.section-icon{
  width:40px;height:40px;
  border-radius:14px;
  display:grid;place-items:center;
  background:rgba(212,175,55,.14);
  border:1px solid rgba(212,175,55,.26);
  box-shadow:0 10px 24px rgba(7,59,58,.08);
  flex:0 0 auto;
}
.section-icon i{color:var(--gold)}

.section-title{
  font-weight:700;
  font-size:clamp(20px, 2.5vw, 28px);
}

.section-divider{
  width:92px;
  height:3px;
  background:linear-gradient(90deg, rgba(212,175,55,0), rgba(212,175,55,1), rgba(212,175,55,0));
  margin:12px auto 0;
  border-radius:999px;
}

.section-note{
  margin-top:10px;
  color:var(--muted);
  font-size:14px;
}

.cards-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
  align-items:stretch;
}

.service-card{
  background:var(--white);
  border-radius:var(--radius);
  padding:18px 18px;
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(7,59,58,.08);
  position:relative;
  overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.section-grey .service-card{background:rgba(255,255,255,.92)}

.service-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-hover);
  border-color:rgba(11,110,79,.22);
}

.service-card::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width:3px;
  background:rgba(212,175,55,.9);
}

.service-card.accent-primary::before{background:rgba(11,110,79,.92)}
.service-card.accent-gold::before{background:rgba(212,175,55,.92)}

.service-name{
  font-size:16px;
  font-weight:600;
  color:var(--dark);
  margin-bottom:8px;
}

.service-price{
  font-weight:800;
  color:var(--gold);
  font-size:16px;
  margin:0;
}

.price-note{font-weight:700;color:rgba(212,175,55,.9)}

.service-meta{
  margin-top:8px;
  color:var(--muted);
  font-size:13px;
}

.subitems{
  list-style:none;
  padding:0;
  margin:10px 0 0;
  display:grid;
  gap:10px;
}

.subitems li{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(7,59,58,.10);
  background:linear-gradient(180deg, rgba(245,247,250,.88), rgba(245,247,250,.58));
}

.subitem-name{font-weight:600;color:var(--dark);font-size:14px}
.subitem-price{font-weight:800;color:var(--gold);font-size:14px;white-space:nowrap}

.subsection{margin-top:18px}
.subsection-title{
  font-size:16px;
  font-weight:700;
  color:var(--dark);
  margin:12px 0 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-align:center;
}

.subsection-note{
  margin-top:14px;
  color:var(--muted);
  text-align:center;
  font-size:14px;
}

.cta-banner{
  background:radial-gradient(900px 420px at 50% -120px, rgba(212,175,55,.18), transparent 60%),
             radial-gradient(800px 380px at 20% 10%, rgba(11,110,79,.22), transparent 60%),
             var(--dark);
  padding:54px 0;
  color:var(--white);
}

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

.cta-title{
  color:var(--white);
  font-size:clamp(20px, 2.8vw, 30px);
  font-weight:700;
  margin:0;
}

.cta-subtext{
  margin-top:10px;
  color:rgba(255,255,255,.86);
  max-width:62ch;
}

.footer{
  background:var(--dark);
  color:rgba(255,255,255,.90);
  padding:28px 0;
}

.footer-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  border-bottom:1px solid rgba(255,255,255,.12);
  padding-bottom:16px;
}

.footer-name{
  font-family:Poppins,Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-weight:700;
  color:var(--white);
}

.footer-tagline{margin-top:6px;color:rgba(255,255,255,.78)}

.footer-bottom{padding-top:14px}
.footer-copy{font-size:13px;color:rgba(255,255,255,.72)}

@media (max-width: 900px){
  .feature-grid{grid-template-columns:repeat(2, 1fr)}
  .cards-grid{grid-template-columns:1fr}
  .cta-inner{justify-content:flex-start}
}

@media (max-width: 520px){
  .feature-grid{grid-template-columns:1fr}
  .feature-card{padding:14px 14px}
  .service-card{padding:16px 16px}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .scroll-dot,.scroll-chev i{animation:none}
  .btn,.feature-card,.service-card{transition:none}
}
