:root {
  --teal: #009b8a;
  --teal-dark: #007264;
  --teal-mid: #00b49e;
  --teal-light: #e2f7f5;
  --teal-xlight: #f0fbfa;
  --purple: #7b2d8b;
  --purple-dark: #561f62;
  --purple-light: #f5eaf9;
  --white: #ffffff;
  --gray-50: #f6f8fa;
  --gray-100: #edf0f4;
  --gray-300: #c4cdd8;
  --gray-500: #7e8fa0;
  --gray-700: #3d4f5c;
  --ink: #111e28;
  --font-d: "Cormorant Garant", Georgia, serif;
  --font-b: "Outfit", "Segoe UI", sans-serif;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --sh-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --sh-md: 0 8px 28px rgba(0, 0, 0, 0.09);
  --sh-lg: 0 20px 56px rgba(0, 0, 0, 0.12);
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-b);
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}

/* UTILITIES */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 14px;
}
.section-title em {
  font-style: italic;
  color: var(--purple);
}
.section-title span {
  color: var(--teal-dark);
}
.section-desc {
  font-size: 15.5px;
  color: var(--gray-500);
  line-height: 1.72;
}

/* TICKER */
.ticker {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
  padding: 9px 0;
  overflow: hidden;
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.t-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-mid);
  flex-shrink: 0;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-100);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.04),
    0 4px 20px rgba(0, 0, 0, 0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 5%;
  max-width: 1300px;
  margin: 0 auto;
}
.nav-logo img {
  height: 50px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 7px 14px;
  border-radius: 50px;
  transition:
    color 0.2s,
    background 0.2s;
  letter-spacing: 0.15px;
}
.nav-links a:hover {
  color: var(--teal-dark);
  background: var(--teal-xlight);
}
.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)) !important;
  color: #fff !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(0, 155, 138, 0.32) !important;
  transition:
    transform 0.2s,
    box-shadow 0.2s !important;
}
.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 7px 20px rgba(0, 155, 138, 0.42) !important;
}

/* HERO */
.hero {
  min-height: 92vh;
  background: var(--teal-xlight);
  background-image:
    radial-gradient(
      ellipse 60% 70% at 80% 30%,
      rgba(123, 45, 139, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 60% at 20% 80%,
      rgba(0, 155, 138, 0.07) 0%,
      transparent 55%
    );
  display: flex;
  align-items: center;
  padding: 90px 5% 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(0, 155, 138, 0.12);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(123, 45, 139, 0.08);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* hero kicker */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1.5px solid rgba(0, 155, 138, 0.22);
  border-radius: 50px;
  padding: 7px 18px;
  margin-bottom: 24px;
  animation: fadeUp 0.55s ease both;
  box-shadow: var(--sh-sm);
}
.kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 1.8s ease infinite;
}
.hero-kicker span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--teal-dark);
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero-h1 {
  font-family: var(--font-d);
  font-size: clamp(38px, 4.2vw, 38px);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -0.3px;
  margin-bottom: 22px;
  animation: fadeUp 0.6s 0.08s ease both;
}
.hero-h1 .lt {
  color: var(--teal-dark);
  display: block;
}
.hero-h1 .lp {
  color: var(--purple);
  display: block;
  font-style: italic;
}
.hero-sub {
  font-size: 15.5px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 30px;
  animation: fadeUp 0.6s 0.16s ease both;
}
.hero-sub strong {
  color: var(--ink);
  font-weight: 600;
}

/* keyword pills */
.kpills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  animation: fadeUp 0.6s 0.22s ease both;
}
.kp {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-700);
  box-shadow: var(--sh-sm);
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  cursor: default;
}
.kp:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
  border-color: rgba(0, 155, 138, 0.3);
}

/* stats */
.hero-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  animation: fadeUp 0.6s 0.28s ease both;
}
.stat {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: 14px 20px;
  text-align: center;
  box-shadow: var(--sh-sm);
  flex: 1;
  min-width: 85px;
}
.stat strong {
  display: block;
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 4px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* cta buttons */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.34s ease both;
}
.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 600;
  box-shadow: 0 6px 22px rgba(0, 155, 138, 0.36);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  letter-spacing: 0.2px;
}
.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 155, 138, 0.44);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 600;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-ghost:hover {
  background: var(--purple);
  color: #fff;
}

/* FORM CARD */
.form-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 42px 38px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.7s 0.18s ease both;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
}
.form-ttl {
  font-family: var(--font-d);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.form-sub {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 26px;
  line-height: 1.55;
}
.fg {
  margin-bottom: 14px;
}
.fg label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 5px;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-sm);
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--ink);
  background: var(--gray-50);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3.5px rgba(0, 155, 138, 0.11);
  background: #fff;
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7'%3E%3Cpath d='.5.5l5 5 5-5' stroke='%237E8FA0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.btn-sub {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 20px rgba(123, 45, 139, 0.34);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  margin-top: 5px;
}
.btn-sub:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(123, 45, 139, 0.44);
}
.form-note {
  text-align: center;
  font-size: 11.5px;
  color: var(--gray-500);
  margin-top: 10px;
}
.form-note span {
  color: var(--teal);
}
.suc {
  display: none;
  background: var(--teal-light);
  border: 1.5px solid var(--teal);
  border-radius: var(--r-md);
  padding: 18px 20px;
  text-align: center;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--teal-dark);
  margin-top: 14px;
}

/* TRUST STRIP */
.trust {
  background: var(--ink);
  padding: 20px 5%;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.ti {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
}
.ti:last-child {
  border-right: none;
}
.ti-ic {
  width: 32px;
  height: 32px;
  background: rgba(0, 180, 158, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

/* KEYWORD CLOUD SECTION */
.kw-sec {
  background: var(--gray-50);
  padding: 48px 5%;
  border-bottom: 1px solid var(--gray-100);
}
.kw-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}
.kw-lbl {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
  white-space: nowrap;
  flex-shrink: 0;
}
.kw-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.kw {
  background: #fff;
  border: 1px solid var(--gray-300);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gray-700);
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
  cursor: default;
}
.kw:hover {
  background: var(--teal-light);
  border-color: var(--teal);
  color: var(--teal-dark);
}
.kw.h {
  background: var(--teal-light);
  border-color: var(--teal);
  color: var(--teal-dark);
  font-weight: 600;
}

/* WHY US */
.why-sec {
  padding: 90px 5%;
  background: #fff;
}
.why-head {
  max-width: 580px;
  margin-bottom: 52px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.why-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.28s,
    box-shadow 0.28s;
}
.why-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}
.why-card:hover::after {
  transform: scaleX(1);
}
.wy-ic {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.why-card h3 {
  font-family: var(--font-d);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
}
.why-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.68;
}

/* PRODUCTS */
.prod-sec {
  padding: 90px 5%;
  background: var(--gray-50);
}
.prod-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 52px;
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.prod-card {
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  transition:
    transform 0.28s,
    box-shadow 0.28s;
  cursor: default;
}
.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.prod-card .pi {
  font-size: 38px;
  display: block;
  margin-bottom: 14px;
}
.prod-card h4 {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.25;
}
.prod-card p {
  font-size: 12.5px;
  color: var(--gray-700);
  line-height: 1.55;
}
.pc1 {
  background: linear-gradient(145deg, #ddf5f2, #c3ede8);
}
.pc2 {
  background: linear-gradient(145deg, #f2e8f8, #e4d1f0);
}
.pc3 {
  background: linear-gradient(145deg, #e6f5e2, #ceebc7);
}
.pc4 {
  background: linear-gradient(145deg, #fef3e2, #fde1b4);
}
.pc5 {
  background: linear-gradient(145deg, #fde8ee, #fbc5d5);
}
.pc6 {
  background: linear-gradient(145deg, #e8ebfa, #cdd2f4);
}
.pc7 {
  background: linear-gradient(145deg, #ddf8fc, #b8eef5);
}
.pc8 {
  background: linear-gradient(145deg, #f8fadf, #eff4b8);
}

/* PROCESS */
.proc-sec {
  padding: 90px 5%;
  background: #fff;
}
.proc-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}
.steps::before {
  content: "";
  position: absolute;
  top: 34px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-n {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  color: #fff;
  font-family: var(--font-d);
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 155, 138, 0.28);
}
.step h4 {
  font-family: var(--font-d);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.step p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.58;
}

/* CERTIFICATIONS */
.cert-sec {
  padding: 90px 5%;
  background: var(--gray-50);
}
.cert-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
}
.cert-hl {
  margin-top: 26px;
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 18px 22px;
}
.cert-hl strong {
  display: block;
  font-size: 13px;
  color: var(--teal-dark);
  font-weight: 700;
}
.cert-hl p {
  margin-top: 5px;
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.6;
}
.cert-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cert-badge {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: box-shadow 0.2s;
}
.cert-badge:hover {
  box-shadow: var(--sh-md);
}
.cert-badge .ci {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}
.cert-badge strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.cert-badge span {
  font-size: 11px;
  color: var(--gray-500);
}

/* CTA */
.cta-sec {
  background: linear-gradient(
    135deg,
    var(--teal-dark) 0%,
    #00524a 40%,
    var(--purple-dark) 100%
  );
  padding: 88px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-sec::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.cta-sec::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.cta-sec .section-label {
  color: rgba(255, 255, 255, 0.6);
}
.cta-sec .section-title {
  color: #fff;
  position: relative;
  z-index: 1;
}
.cta-sec .section-title em {
  color: #9df0e6;
}
.cta-desc {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin: 14px auto 36px;
  line-height: 1.72;
  position: relative;
  z-index: 1;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn-wht {
  background: #fff;
  color: var(--teal-dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 700;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}
.btn-wht:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.btn-owht {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 600;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.btn-owht:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

/* CONTACT */
.contact-sec {
  padding: 90px 5%;
  background: #fff;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info .section-desc {
  margin-top: 10px;
  margin-bottom: 28px;
}
.c-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.c-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: 16px 18px;
  transition: box-shadow 0.2s;
}
.c-item:hover {
  box-shadow: var(--sh-sm);
}
.c-ic {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}
.c-ic.p {
  background: var(--purple-light);
}
.c-body strong {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 3px;
}
.c-body a,
.c-body span {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  display: block;
  line-height: 1.55;
}
.c-body a:hover {
  color: var(--teal);
}
.c-wa {
  font-size: 12px !important;
  color: var(--teal) !important;
}
.gst-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  border: 1px solid rgba(0, 155, 138, 0.25);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.cfc {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: var(--sh-md);
  position: relative;
  overflow: hidden;
}
.cfc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
}

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
  padding: 52px 5% 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.fb img {
  height: 46px;
  filter: brightness(0) invert(1);
  opacity: 0.88;
  margin-bottom: 14px;
}
.fb p {
  font-size: 13px;
  line-height: 1.68;
  max-width: 280px;
}
.fb .gf {
  margin-top: 14px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.3px;
}
.fc h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.fc a,
.fc p {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 9px;
  transition: color 0.2s;
}
.fc a:hover {
  color: var(--teal-mid);
}
.footer-bottom {
  max-width: 1100px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom a {
  color: var(--teal-mid);
}

/* WA FLOAT */
.wa-f {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.42);
  transition: transform 0.2s;
  animation: wap 2.2s ease infinite;
}
.wa-f:hover {
  transform: scale(1.1);
}
@keyframes wap {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.42);
  }
  50% {
    box-shadow: 0 6px 36px rgba(37, 211, 102, 0.72);
  }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cert-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links li:not(:last-child) {
    display: none;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .steps::before {
    display: none;
  }
  .ti {
    padding: 8px 16px;
    font-size: 12px;
  }
}
@media (max-width: 540px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .fg-row {
    grid-template-columns: 1fr;
  }
  .cert-badges {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
  }
}
a {
    text-decoration: none !important;
}
  @media (max-width: 768px) {
      .desktop{
          display:none;
      }
      section#home {
    padding: 20px !important;
    /* font-size: 12px; */
}
h1.hero-h1 {
    font-size: 29px !important;
}h2.section-title {
    text-align: center !important;
    font-size: 21px !important;
}
    #mobileCTA {
      display: block !important;
    }

  }