:root{
  --bg:#f4f1e8;
  --surface:#ffffff;
  --surface2:#f8f5ef;
  --text:#18212a;
  --muted:#617182;
  --line:rgba(22,33,42,.10);
  --green:#97c21f;
  --green2:#6a920d;
  --dark:#121516;
  --navy:#132f57;
  --blue:#2598ff;
  --shadow:0 16px 38px rgba(12,18,26,.08);
  --radius:24px;
  --container:min(1180px,92vw);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter, Segoe UI, Arial, sans-serif;
  color:var(--text);
  line-height:1.6;
  background:linear-gradient(180deg, var(--bg) 0%, #f1ede3 100%);
}

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

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

.container{
  width:var(--container);
  margin:0 auto;
}

header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(244,241,232,.90);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}

.nav{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand img{
  height:56px;
  width:auto;
}

.brand .txt strong{
  display:block;
  font-size:1.05rem;
}

.brand .txt span{
  display:block;
  font-size:.72rem;
  letter-spacing:.13em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:800;
}

.menu{
  display:flex;
  gap:24px;
  align-items:center;
}

.menu a{
  font-weight:700;
  color:var(--muted);
}

.menu a.active,
.menu a:hover{
  color:var(--text);
}

.mobile-call{
  display:none;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 22px;
  border-radius:999px;
  font-weight:900;
  border:1px solid transparent;
  transition:.2s ease;
}

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

.btn-primary{
  background:linear-gradient(135deg, var(--green), var(--green2));
  color:#111;
  box-shadow:var(--shadow);
}

.btn-dark{
  background:var(--dark);
  color:#fff;
  box-shadow:var(--shadow);
}

.btn-outline{
  background:#fff;
  border-color:var(--line);
  color:var(--navy);
}

.btn-blue{
  background:linear-gradient(135deg, #1d78ff, #34b1ff);
  color:#fff;
  box-shadow:var(--shadow);
}

.hero{
  padding:54px 0 28px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.06fr .94fr;
  gap:24px;
  align-items:stretch;
}

.panel,
.service-card,
.faq-item,
.contact-card,
.service-feature,
.service-top-card,
.cta{
  background:rgba(255,255,255,.78);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:var(--radius);
}

.hero-copy{
  padding:42px;
  background:
    radial-gradient(circle at top right, rgba(151,194,31,.13), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f7f3eb 100%);
}

.eyebrow{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(151,194,31,.14);
  color:#587b07;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:16px;
}

h1,h2,h3{
  line-height:1.08;
  margin:0 0 16px;
}

h1{
  font-size:clamp(2.45rem, 5vw, 4.9rem);
  max-width:760px;
}

h2{
  font-size:clamp(1.9rem, 3vw, 3rem);
}

h3{
  font-size:1.25rem;
}

.lead{
  font-size:1.08rem;
  color:#344252;
  max-width:690px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:24px;
}

.hero-visual{
  overflow:hidden;
  min-height:100%;
  border-radius:var(--radius);
  position:relative;
  background:
    linear-gradient(180deg, rgba(18,21,22,.72), rgba(18,21,22,.92)),
    url('images/hero.jpg') center/cover no-repeat;
}

.hero-visual .overlay{
  padding:30px;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.hero-visual .badge{
  display:inline-flex;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(151,194,31,.18);
  color:#d7ee9f;
  font-weight:800;
}

.hero-visual h3{
  color:#fff;
  font-size:1.85rem;
  max-width:460px;
}

.hero-visual p{
  color:rgba(255,255,255,.82);
  max-width:470px;
  margin:0;
}

.gridbox{
  height:230px;
  border-radius:22px;
  overflow:hidden;
  position:relative;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.08), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.08);
}

.gridbox::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(151,194,31,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size:28px 28px, 28px 28px;
  opacity:.32;
}

section{
  padding:82px 0;
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px;
  margin-bottom:26px;
  flex-wrap:wrap;
}

.section-head > div{
  max-width:700px;
}

.section-head p{
  max-width:420px;
  color:var(--muted);
  margin:0;
}

@media (max-width: 768px){
  .section-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .section-head p{
    max-width:100%;
  }
}
}

.services-top{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

.service-top-card{
  text-align:center;
  padding:26px 18px;
  background:linear-gradient(180deg, #fff 0%, #f4efe7 100%);
}

.icon-ring{
  width:120px;
  height:120px;
  margin:0 auto 18px;
  border-radius:50%;
  display:grid;
  place-items:center;
  position:relative;
}

.icon-ring img{
  width:120px;
  height:120px;
  object-fit:contain;
  filter:drop-shadow(0 14px 20px rgba(0,0,0,.18));
}

.service-top-card h3{
  font-size:1rem;
  margin:0;
  text-transform:uppercase;
  line-height:1.08;
  letter-spacing:.01em;
}

.service-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
}

.service-section.reverse .service-media{
  order:1;
}

.service-section.reverse .service-copy{
  order:2;
}

.service-copy .sub{
  font-size:1.02rem;
  color:var(--muted);
  margin-bottom:18px;
}

.service-boxes{
  display:grid;
  gap:16px;
  margin:20px 0 22px;
}

.service-feature{
  padding:18px 20px;
  display:grid;
  grid-template-columns:72px 1fr;
  gap:16px;
  align-items:center;
}

.mini-icon{
  width:52px;
  height:52px;
  border-radius:18px;
  border:2px solid rgba(37,152,255,.18);
  display:grid;
  place-items:center;
  background:#f0f4fb;
}

.mini-icon svg{
  width:28px;
  height:28px;
  stroke:#27466d;
  fill:none;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.service-feature h3{
  margin:0 0 6px;
  font-size:1.05rem;
}

.service-feature p{
  margin:0;
  color:var(--muted);
}

.service-media{
  overflow:hidden;
  border-radius:28px;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
}

.service-media img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
}

.faq{
  display:grid;
  gap:14px;
}

.faq-item{
  overflow:hidden;
}

.faq-q{
  width:100%;
  padding:18px 20px;
  background:transparent;
  border:0;
  text-align:left;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-size:1rem;
  font-weight:900;
}

.faq-a{
  display:none;
  padding:0 20px 18px;
  color:var(--muted);
}

.faq-item.active .faq-a{
  display:block;
}

.plus{
  transition:.2s ease;
}

.faq-item.active .plus{
  transform:rotate(45deg);
}

.cta{
  padding:32px;
  background:
    radial-gradient(circle at top right, rgba(151,194,31,.12), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f6f2ea 100%);
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.contact-card{
  padding:24px;
}

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

footer{
  padding:28px 0 42px;
  border-top:1px solid var(--line);
  color:var(--muted);
}

.footer-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.float-actions{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:1200;
  display:grid;
  gap:12px;
}

.float-actions a{
  min-width:176px;
  padding:14px 18px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:900;
  box-shadow:var(--shadow);
}

.float-actions .wa{
  background:#25D366;
  color:#07170d;
}

.float-actions .call{
  background:var(--dark);
  color:#fff;
}

.small{
  font-size:.95rem;
  color:var(--muted);
}

@media (max-width:1050px){
  .services-top{
    grid-template-columns:repeat(3,1fr);
  }
}

@media (max-width:980px){
  .nav{
    min-height:auto;
    flex-direction:column;
    align-items:stretch;
    padding:14px 0;
    gap:14px;
  }

  .brand{
    width:100%;
    justify-content:flex-start;
  }

  .menu{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    width:100%;
  }

  .menu a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:10px 12px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:14px;
    font-weight:800;
    text-align:center;
    box-shadow:var(--shadow);
  }

  .menu a.active{
    background:linear-gradient(135deg,var(--green),var(--green2));
    color:#111;
    border-color:transparent;
  }

  .mobile-call{
    display:none;
  }

  .hero-grid,
  .service-section,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .services-top{
    grid-template-columns:1fr 1fr;
  }

  .service-section.reverse .service-media,
  .service-section.reverse .service-copy{
    order:initial;
  }

  .section-head{
    display:block;
  }
}

@media (max-width:640px){
  header{
    position:static;
  }

  .nav{
    padding:12px 0;
  }

  .brand{
    gap:10px;
  }

  .brand img{
    height:42px;
  }

  .brand .txt strong{
    font-size:.92rem;
  }

  .brand .txt span{
    font-size:.60rem;
    letter-spacing:.10em;
  }

  h1{
    font-size:2rem;
  }

  h2{
    font-size:1.6rem;
  }

  section{
    padding:56px 0;
  }

  .hero-copy{
    padding:22px;
  }

  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .btn{
    width:100%;
  }

  .menu{
    grid-template-columns:1fr 1fr;
  }

  .menu a{
    min-height:44px;
    font-size:.95rem;
    padding:10px;
  }

  .services-top{
    grid-template-columns:1fr;
  }

  .service-media img{
    min-height:260px;
  }

  .float-actions{
    left:12px;
    right:12px;
    bottom:12px;
    grid-template-columns:1fr 1fr;
  }

  .float-actions a{
    min-width:0;
    padding:14px 8px;
    font-size:.92rem;
  }
  .premium-reasons{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.reason-card{
  background:rgba(255,255,255,0.82);
  border:1px solid rgba(19,47,87,0.08);
  border-radius:24px;
  padding:28px 24px;
  box-shadow:0 18px 40px rgba(15,23,42,0.08);
  backdrop-filter:blur(8px);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.reason-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 50px rgba(15,23,42,0.12);
  border-color:rgba(151,194,31,0.28);
}

.reason-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}

.num{
  font-size:13px;
  font-weight:700;
  letter-spacing:.18em;
  color:#97c21f;
  min-width:max-content;
}

.reason-line{
  flex:1;
  height:1px;
  background:linear-gradient(90deg, rgba(151,194,31,.55), rgba(19,47,87,.08));
}

.reason-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.25;
  color:#132f57;
}

.reason-card p{
  margin:0;
  font-size:15px;
  line-height:1.7;
  color:#617182;
  max-width:32ch;
}

@media (max-width: 900px){
  .premium-reasons{
    grid-template-columns:1fr;
  }

  .reason-card{
    padding:24px 20px;
  }

  .reason-card h3{
    font-size:20px;
  }
}