:root {
  --navy: #142F4E;
  --navy-900: #0F2942;
  --navy-800: #1B3A5B;
  --teal: #17B9CE;
  --teal-600: #0FA0B4;
  --teal-700: #0C8799;
  --ink: #0F1B2D;
  --slate: #5B6B7F;
  --slate-300: #94A3B8;
  --line: #E4EAF1;
  --bg: #FFFFFF;
  --bg-alt: #F4F8FB;
  --teal-soft: #E5F6F9;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(20, 47, 78, .08);
  --shadow-lg: 0 20px 50px rgba(20, 47, 78, .14);
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 { font-family: "Poppins", sans-serif; line-height: 1.2; color: var(--navy); font-weight: 700; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 820px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: normal;
  text-align: center;
  max-width: 100%;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: #16A34A; color: #fff; }
.btn--primary:hover { background: #15803D; }
.btn--ghost { background: #16A34A; color: #fff; border-color: #16A34A; }
.btn--ghost:hover { background: #15803D; border-color: #15803D; color: #fff; }
.btn--light { background: #16A34A; color: #fff; }
.btn--light:hover { background: #15803D; }
.btn--block { width: 100%; }

/* Icons (modern line icons) */
.ic {
  width: 1.15em; height: 1.15em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.18em;
}
.ic use { pointer-events: none; }
.btn .ic { width: 1.05em; height: 1.05em; }

/* Topbar */
.topbar {
  background: var(--navy-900);
  color: #cfe1ee;
  font-size: 13.5px;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 9px;
  padding-bottom: 9px;
}
.topbar__contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__contact a:hover { color: var(--teal); }
.topbar__social { display: flex; gap: 8px; }
.topbar__social a {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  font-size: 13px;
}
.topbar__social a:hover { background: var(--teal); color: #fff; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header.scrolled { box-shadow: var(--shadow); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand__logo { height: 52px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav__link {
  font-weight: 500;
  font-size: 15px;
  color: var(--navy);
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width .2s ease;
}
.nav__link:hover { color: var(--teal-700); }
.nav__link:hover::after { width: 100%; }
.nav__cta { color: #fff; }
.nav__cta:hover { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(23,185,206,.16);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -160px; left: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(23,185,206,.10);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.hero .eyebrow { color: #6fe0ee; }
.hero__text h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  margin-bottom: 18px;
}
.hero__text h1 .accent { color: var(--teal); }
.hero__text p {
  color: #c7d6e4;
  font-size: 1.08rem;
  max-width: 540px;
  margin-bottom: 28px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero__cta .btn--ghost { background: #16A34A; color: #fff; border-color: #16A34A; }
.hero__cta .btn--ghost:hover { background: #15803D; border-color: #15803D; color: #fff; }
.hero__badges { display: flex; gap: 30px; flex-wrap: wrap; }
.hbadge { display: flex; flex-direction: column; }
.hbadge strong { font-family: "Poppins", sans-serif; font-size: 1.6rem; color: #fff; }
.hbadge span { font-size: 13.5px; color: var(--slate-300); }

.hero__card {
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero__chip {
  display: inline-block;
  background: var(--teal-soft);
  color: var(--teal-700);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero__rows { display: grid; gap: 14px; margin-bottom: 22px; }
.hero__row { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--navy); }
.hero__row .dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--teal-soft);
  position: relative;
  flex: 0 0 auto;
}
.hero__row .dot::after {
  content: "✓";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: var(--teal-700);
}

/* Trust strip */
.trust { background: var(--teal); }
.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 26px 20px;
  text-align: center;
}
.trust__item { color: #fff; }
.trust__item strong { display: block; font-family: "Poppins", sans-serif; font-size: 1.5rem; }
.trust__item span { font-size: 14px; opacity: .92; }

/* Sections */
.section { padding: 84px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.eyebrow--center { display: block; }
.section__eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-700);
  background: var(--teal-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section__head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 14px; }
.section__head p { color: var(--slate); font-size: 1.05rem; }

/* Grid */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }

/* Service */
.service__icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: var(--teal-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.service h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service p { color: var(--slate); font-size: .97rem; }

/* About */
.about__inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.about__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.about__stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about__stat strong { display: block; font-family: "Poppins", sans-serif; font-size: 2rem; color: var(--teal-700); }
.about__stat span { color: var(--slate); font-size: 14px; }
.about__stat--main {
  grid-column: 1 / -1;
  background: var(--navy);
}
.about__stat--main strong { color: #fff; font-size: 2.4rem; }
.about__stat--main span { color: var(--slate-300); }
.about__text h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 16px; }
.about__text p { color: var(--slate); margin-bottom: 14px; }
.ticks { list-style: none; margin: 18px 0 26px; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 30px; color: var(--navy); font-weight: 500; }
.ticks li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  background: var(--teal); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}

/* Feature */
.feature__num { font-family: "Poppins", sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--teal); margin-bottom: 12px; }
.feature h4 { font-size: 1.1rem; margin-bottom: 8px; }
.feature p { color: var(--slate); font-size: .95rem; }

/* Pricing */
.pricing .price {
  display: flex; flex-direction: column; position: relative;
  padding: 34px 28px 30px;
  border-radius: 22px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pricing .price::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.pricing .price:hover { transform: translateY(-8px); box-shadow: 0 26px 50px -24px rgba(15,41,66,.4); border-color: transparent; }
.pricing .price:hover::before { transform: scaleX(1); }
.price h3 { font-size: 1.3rem; margin-bottom: 8px; }
.price__head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.price__icon {
  width: 54px; height: 54px; flex-shrink: 0;
  border-radius: 16px;
  background: var(--teal-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-700);
  transition: transform .25s ease;
}
.pricing .price:hover .price__icon { transform: scale(1.08) rotate(-4deg); }
.price__icon .ic { width: 26px; height: 26px; }
.price--featured .price__icon { background: rgba(23,185,206,.18); color: var(--teal); }
.price__amount {
  font-family: "Poppins", sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.price__amount span { font-size: .8rem; font-weight: 500; color: var(--slate); }
.price__orig {
  display: inline-block;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--slate) !important;
  text-decoration: line-through;
  margin-right: 8px;
  opacity: .8;
}
.price--featured .price__orig { color: var(--slate-300) !important; }
.price__save {
  display: inline-flex; align-items: center; gap: 6px;
  background: #DCFCE7;
  color: #15803D;
  font-family: "Poppins", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.price__save::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: #16A34A;
}
.price--featured .price__save { background: rgba(34,197,94,.18); color: #4ade80; }
.price--featured .price__save::before { background: #4ade80; }
.price ul {
  list-style: none; display: grid; gap: 12px;
  margin-bottom: 26px; flex: 1;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.price--featured ul { border-color: rgba(255,255,255,.12); }
.price li { position: relative; padding-left: 30px; color: var(--slate); font-size: .95rem; }
.price li::before {
  content: ""; position: absolute; left: 0; top: 1px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: #DCFCE7;
}
.price li::after {
  content: ""; position: absolute;
  left: 6px; top: 7px;
  width: 7px; height: 4px;
  border-left: 2px solid #16A34A;
  border-bottom: 2px solid #16A34A;
  transform: rotate(-45deg);
}
.price li.hot {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--navy);
  background: var(--teal-soft);
  border-radius: 10px;
  padding: 7px 12px 7px 34px;
  margin-left: -4px;
}
.price li.hot::before {
  background: var(--teal);
  left: 8px; top: 50%; transform: translateY(-50%);
}
.price li.hot::after {
  content: "★";
  border: none;
  width: 19px; height: 19px;
  display: flex; align-items: center; justify-content: center;
  left: 8px; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: .72rem; line-height: 1;
}
.price--featured li.hot {
  color: #fff;
  background: rgba(23,185,206,.18);
}
.price--featured li.hot::before { background: var(--teal); }
.price--featured {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -24px rgba(15,41,66,.6);
}
.price--featured::before { background: var(--teal); transform: scaleX(1); }
.price--featured h3, .price--featured .price__amount { color: #fff; }
.price--featured .price__amount span { color: var(--slate-300); }
.price--featured li { color: #c7d6e4; }
.price--featured li::before { background: rgba(23,185,206,.22); }
.price--featured li::after { border-color: var(--teal); }
.price--featured:hover { transform: translateY(-16px); }
.price__tag {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  padding: 7px 20px;
  border-radius: 0 0 14px 14px;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 6px 16px -4px rgba(23,185,206,.6);
  z-index: 2;
}
.pricing__note { text-align: center; margin-top: 30px; color: var(--slate); }
.pricing__note a { color: var(--teal-700); font-weight: 600; }

/* Portfolio */
.port {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.port:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.port__thumb { height: 190px; background: var(--navy-800); position: relative; }
.port__thumb--1 { background: #123A52; }
.port__thumb--2 { background: #16324F; }
.port__thumb--3 { background: #0C8799; }
.port__thumb--4 { background: #1B3A5B; }
.port__thumb--5 { background: #0FA0B4; }
.port__thumb--6 { background: #0F2942; }
.port__thumb::after {
  content: "BS";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: rgba(255,255,255,.18);
  letter-spacing: .1em;
}
.port__body { padding: 18px 20px; }
.port__body span { font-size: 12.5px; font-weight: 600; color: var(--teal-700); text-transform: uppercase; letter-spacing: .06em; }
.port__body h4 { font-size: 1.1rem; margin-top: 4px; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.step { text-align: center; padding: 10px; }
.step__num {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--teal);
  color: var(--teal-700);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
}
.step h4 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--slate); font-size: .92rem; }

/* Testimonials */
.quote { display: flex; flex-direction: column; }
.quote__stars { color: #F5A623; letter-spacing: 2px; margin-bottom: 14px; }
.quote blockquote { color: var(--navy); font-size: 1rem; margin-bottom: 22px; flex: 1; }
.quote figcaption { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
.quote figcaption strong { display: block; color: var(--navy); font-size: .95rem; }
.quote figcaption small { color: var(--slate); }

/* CTA */
.cta { background: var(--navy-900); padding: 60px 0; }
.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }
.cta p { color: var(--slate-300); }
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* FAQ */
.faq { display: grid; gap: 14px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px 22px;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--navy);
  padding: 16px 0;
  position: relative;
  padding-right: 30px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--teal-700);
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p { color: var(--slate); padding-bottom: 18px; }

/* Contact */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}
.contact__info h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 14px; }
.contact__info p { color: var(--slate); margin-bottom: 24px; }
.contact__list { list-style: none; display: grid; gap: 16px; }
.contact__list li { display: flex; align-items: center; gap: 12px; color: var(--navy); font-weight: 500; }
.contact__list .ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--teal-soft);
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.contact__list a:hover { color: var(--teal-700); }

.contact__form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 14px; font-weight: 600; color: var(--navy); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(23,185,206,.15);
}
.field textarea { resize: vertical; }
.form__note { color: var(--teal-700); font-weight: 600; text-align: center; }

/* Footer */
.footer { background: #0A1421; color: var(--slate-300); padding-top: 80px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__logo {
  height: 48px;
  background: transparent;
  margin-bottom: 24px;
}
.footer__brand p { font-size: .95rem; margin-bottom: 24px; max-width: 340px; line-height: 1.7; color: var(--slate-300); }
.footer__social { display: flex; gap: 16px; }
.footer__social a {
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-300);
  transition: color .3s ease;
}
.footer__social .ic { width: 22px; height: 22px; }
.footer__social a:hover { color: #fff; }
.footer__col a .ic, .footer__col span .ic { width: 18px; height: 18px; color: var(--slate-300); vertical-align: -0.25em; margin-right: 8px;}
.footer__col h5 { color: #fff; font-size: 1.05rem; margin-bottom: 24px; font-weight: 600; letter-spacing: 0.02em; }
.footer__col a, .footer__col span { display: block; color: var(--slate-300); font-size: .95rem; margin-bottom: 16px; transition: color 0.2s ease; }
.footer__col a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.05); padding: 30px 0; }
.footer__bottom__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer__bottom p { font-size: .9rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { font-size: .9rem; color: rgba(255,255,255,0.4); transition: color 0.2s ease; }
.footer__bottom-links a:hover { color: #fff; }

/* WhatsApp float */
.whatsapp {
  position: fixed;
  bottom: 24px; right: 26px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366; 
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 60;
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
  animation: pulse-wa 2.5s infinite;
}
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp .ic { width: 34px; height: 34px; stroke: none; fill: currentColor; }
.whatsapp:hover { transform: scale(1.1) rotate(-5deg); background: #20BA56; }

/* Responsive */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: 76px; right: 0;
    height: calc(100vh - 76px);
    width: min(80%, 320px);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 26px;
    gap: 18px;
    transform: translateX(100%);
    transition: transform .28s ease;
    box-shadow: var(--shadow-lg);
  }
  .nav.open { transform: translateX(0); }
  .nav__cta { width: 100%; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }

  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .about__inner,
  .contact__inner { grid-template-columns: 1fr; gap: 36px; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .price--featured { transform: none; }
  .price--featured:hover { transform: translateY(-6px); }
}

@media (max-width: 620px) {
  .topbar__contact { gap: 14px; font-size: 12.5px; }
  .topbar__social { display: none; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .trust__inner { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .steps { grid-template-columns: 1fr; gap: 16px; max-width: 360px; margin: 0 auto; }
  .about__media { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero { padding: 56px 0 64px; }
  .cta__inner { flex-direction: column; text-align: center; align-items: center; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
}

/* ===== Offer-style landing (flexonweb layout) ===== */

/* Large button + variants */
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--whats { background: #16A34A; color: #fff; }
.btn--whats:hover { background: #15803D; }

/* Centered hero / offer */
.hero__inner--center {
  display: block;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.hero__flash {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(23,185,206,.16);
  border: 1px solid rgba(23,185,206,.3);
  color: #6fe0ee;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero__inner--center h1 {
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 22px;
}
.hero__inner--center h1 .accent { color: #FFC107; }
.hero__regular { color: var(--slate-300); letter-spacing: .04em; font-size: 14px; margin-bottom: 6px; }
.hero__regular s { color: #ff8a8a; }
.hero__today { font-family: "Poppins", sans-serif; font-size: clamp(1.6rem, 4vw, 2.4rem); color: #fff; margin-bottom: 14px; }
.hero__today strong { color: var(--teal); font-size: 1.25em; }
.hero__save {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  margin-bottom: 30px;
}

.offer-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 28px 26px;
  margin-bottom: 26px;
  text-align: center;
}
.offer-card__title { display: inline-flex; align-items: center; gap: 8px; color: var(--teal); font-size: 1.15rem; margin-bottom: 12px; }
.offer-card p { color: #c7d6e4; margin-bottom: 18px; }
.offer-card__points { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; color: #fff; font-weight: 500; font-size: .95rem; }
.offer-card__points span { display: inline-flex; align-items: center; gap: 7px; }
.offer-card__points .ic { color: #4ade80; }

.pay-strip {
  background: rgba(23,185,206,.14);
  border: 1px solid rgba(23,185,206,.3);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 28px;
  color: #fff;
}
.pay-strip strong { color: var(--teal); }
.pay-strip small { display: block; color: var(--slate-300); margin-top: 4px; font-size: 13px; }

.hero__inner--center .hero__cta { justify-content: center; margin-bottom: 18px; }
.hero__assure { color: var(--slate-300); font-size: 13px; }
.hero__assure .ic { color: var(--teal); vertical-align: -0.2em; }

/* Section head left variant */
.section__head--left { text-align: left; max-width: none; margin-left: 0; }

/* Everything included grid */
.incl { 
  text-align: left; 
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(11, 18, 32, 0.02);
}
.incl::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background-color: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.incl:hover::before {
  transform: scaleX(1);
}
.incl:hover {
  transform: translateY(-6px);
  border-color: rgba(11,18,32,0.1);
  box-shadow: 0 16px 32px rgba(11, 18, 32, 0.08);
}
.incl__icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
/* Colorful icons using solid small accent colors */
.incl:nth-child(1) .incl__icon { background: #E8F5E9; color: #2E7D32; } /* Green */
.incl:nth-child(2) .incl__icon { background: #E3F2FD; color: #1565C0; } /* Blue */
.incl:nth-child(3) .incl__icon { background: #FFF3E0; color: #E65100; } /* Orange */
.incl:nth-child(4) .incl__icon { background: #FFF8E1; color: #F57F17; } /* Yellow */
.incl:nth-child(5) .incl__icon { background: #F3E5F5; color: #4527A0; } /* Purple */
.incl:nth-child(6) .incl__icon { background: #E0F7FA; color: #00838F; } /* Cyan */
.incl:nth-child(7) .incl__icon { background: #FCE4EC; color: #C2185B; } /* Pink */
.incl:nth-child(8) .incl__icon { background: #E8EAF6; color: #283593; } /* Indigo */
.incl:nth-child(9) .incl__icon { background: #FFEBEE; color: #C62828; } /* Red */
.incl:nth-child(10) .incl__icon { background: #F4F4F9; color: #424242; } /* Slate */
.incl:nth-child(11) .incl__icon { background: #E0F2F1; color: #00695C; } /* Teal */

.incl:hover .incl__icon {
  transform: scale(1.05) rotate(-3deg);
  background: var(--navy);
  color: #fff;
}
.incl__icon .ic { width: 26px; height: 26px; }
.incl h3 { 
  font-size: 1.15rem; 
  margin-bottom: 12px; 
  color: var(--navy); 
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.incl h3 .val { 
  color: var(--teal-800); 
  font-size: .7rem; 
  font-weight: 700; 
  background: var(--teal-soft);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .02em;
}
.incl p { 
  color: var(--slate); 
  font-size: .95rem; 
  line-height: 1.6;
}

/* Bonus box animations */
@keyframes floatBox {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(23, 185, 206, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(23, 185, 206, 0); }
  100% { box-shadow: 0 0 0 0 rgba(23, 185, 206, 0); }
}

/* Bonus box */
.bonus {
  margin-top: 50px;
  border: 2px solid var(--teal);
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  position: relative;
  animation: floatBox 4s ease-in-out infinite, pulseGlow 2s infinite;
}
.bonus::before {
  content: "LIMITED TIME OFFER";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(23, 185, 206, 0.3);
}
.bonus h3 { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); margin-bottom: 20px; font-size: 1.3rem; font-weight: 800; }
.bonus h3 .ic { color: var(--teal); }
.bonus ul { list-style: none; display: grid; gap: 12px; margin-bottom: 20px; justify-content: center; }
.bonus li { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-weight: 600; font-size: 1rem; }
.bonus li .ic { color: #16A34A; }
.bonus__total { font-family: "Poppins", sans-serif; font-weight: 800; color: var(--teal-700); font-size: 1.25rem; }

/* Mid CTA */
.midcta { text-align: center; margin-top: 44px; }
.midcta h3 { color: var(--teal-700); font-size: 1.4rem; margin-bottom: 8px; }
.midcta p { color: var(--slate); margin-bottom: 20px; }

/* Pricing plan label */
.price__plan { display: block; font-family: "Poppins", sans-serif; font-weight: 700; color: var(--navy); font-size: 1.25rem; margin-bottom: 2px; }
.price__plan small { font-weight: 500; color: var(--slate); font-size: .72em; }
.price--featured .price__plan { color: #fff; }
.price--featured .price__plan small { color: var(--slate-300); }
.price__head .price__best { margin-bottom: 0; }
.price__best { color: var(--slate); font-size: .88rem; margin-bottom: 18px; }
.price--featured .price__best { color: var(--slate-300); }

/* Not included section */
.price__notincluded { margin: 16px 0 20px; border-top: 1px dashed var(--line); padding-top: 14px; }
.price--featured .price__notincluded { border-color: rgba(255,255,255,.15); }
.price__notincluded-title { font-size: 13px; font-weight: 700; color: #EF4444; margin-bottom: 10px; letter-spacing: .03em; }
.price__notincluded ul { list-style: none; display: grid; gap: 8px; }
.price__notincluded li { position: relative; padding-left: 24px; color: var(--slate); font-size: .92rem; }
.price--featured .price__notincluded li { color: var(--slate-300); }
.price__notincluded li::before {
  content: "✕";
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: auto; height: auto;
  display: flex; align-items: center; justify-content: center;
  background: none; border-radius: 0;
  color: #EF4444; font-weight: 700; font-size: .85rem; line-height: 1;
}
.price__notincluded li::after { content: none; display: none; }

/* Custom box */
.custom-box {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background-color: var(--navy);
  color: #fff;
  border: none;
  padding: 40px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.custom-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 6px;
  background-color: var(--teal);
}
.custom-box .price__plan {
  color: var(--teal);
  background: rgba(23, 185, 206, 0.1);
}
.custom-box h3 { font-size: 1.5rem; margin: 12px 0 16px; color: #fff; font-weight: 700; }
.custom-box__list { list-style: none; display: grid; gap: 10px; }
.custom-box__list li { position: relative; padding-left: 28px; color: var(--slate-300); font-size: 1rem; }
.custom-box__list li::before { 
  content: "✓"; 
  position: absolute; left: 0; 
  color: var(--teal); 
  font-weight: 700; 
  background: rgba(23, 185, 206, 0.15);
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 10px;
  top: 3px;
}

/* Stats */
.stats { padding-bottom: 100px; }
.stats__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.stats__item {
  background: var(--bg-alt);
  border: none;
  border-radius: 24px;
  padding: 44px 30px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.stats__item:hover { 
  transform: translateY(-6px); 
  background: var(--navy); 
}
.stats__item:hover strong, .stats__item:hover span {
  color: #fff;
}
.stats__icon {
  width: 52px; height: 52px;
  background: #fff;
  color: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px auto;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}
.stats__item:hover .stats__icon {
  transform: scale(1.1);
  color: var(--navy);
}
.stats__icon .ic { width: 24px; height: 24px; }
.stats__item strong { 
  display: block; 
  font-family: "Poppins", sans-serif; 
  font-size: 2.3rem; 
  font-weight: 800; 
  color: var(--navy); 
  margin-bottom: 10px; 
  line-height: 1.1;
  transition: color 0.3s ease;
}
.stats__item span { 
  color: var(--slate); 
  font-size: 1.05rem; 
  font-weight: 500;
  transition: color 0.3s ease;
}
.stats__note { text-align: center; color: var(--slate-300); margin-top: 24px; font-size: 13px; }

/* FAQ cta */
.faq__cta { text-align: center; margin-top: 28px; }

/* Our Work */
.work__item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.work__item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.work__thumb { height: 170px; position: relative; }
.work__thumb--1 { background: #16324F; }
.work__thumb--2 { background: #0C8799; }
.work__thumb--3 { background: #1B3A5B; }
.work__thumb--4 { background: #0FA0B4; }
.work__thumb::after {
  content: "BS";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: "Poppins", sans-serif; font-weight: 800; font-size: 2rem;
  color: rgba(255,255,255,.18); letter-spacing: .1em;
}
.work__body { padding: 16px 18px; }
.work__body span { font-size: 12px; font-weight: 600; color: var(--teal-700); text-transform: uppercase; letter-spacing: .06em; }
.work__body h4 { font-size: 1rem; margin-top: 4px; color: var(--navy); }

/* Centered CTA */
.cta__inner--center { flex-direction: column; text-align: center; align-items: center; gap: 14px; }
.cta__inner--center small { color: var(--slate-300); font-size: 13px; }

@media (max-width: 860px) {
  .stats__row { grid-template-columns: 1fr; }
  .custom-box { flex-direction: column; align-items: flex-start; }
}
