html {
  font-size: 100%;
}

.ia-page *,
.ia-page *::before,
.ia-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.ia-page {
  --green: #76af27;
  --green-dark: #4f7f21;
  --green-light: #96d537;
  --bg: #171717;
  --bg-card: #1d1d1d;
  --bg-soft: #222;
  --bg-accent: #243518;
  --text: #f3f3f3;
  --text-sub: #b8b8b8;
  --muted: #8b8b8b;
  --border: rgba(118, 175, 39, .18);
  --border-strong: #76af274d;
  --shadow: 0 20px 60px rgba(0, 0, 0, .35);
  --radius: 24px;
  --radius-sm: 18px;
  --pill: 999px;
}

.ia-page {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 300;
  font-size: 16px;
  background: #171717;
  color: var(--text);
  line-height: 1.7;
  overflow-x: clip;
  overflow-y: visible;
}

.ia-page,
.ia-page * {
  font-weight: 300 !important;
}

/* ========== CONTAINER ========== */
.ia-page .container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* ========== SECTION ========== */
.ia-page .section {
  padding: 110px 0;
  position: relative;
}

.ia-page .section-alt {
  background: var(--bg-accent);
}

/* ========== TAG ========== */
.ia-page .tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: var(--pill);
  border: 1px solid var(--green);
  background: var(--green);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
}

/* ========== SECTION HEADER ========== */
.ia-page .section-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 68px;
}

.ia-page .section-header h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.12;
  margin: 22px 0 18px;
  letter-spacing: -.03em;
}

.ia-page .section-header h2 span,
.ia-page .hero-title span,
.ia-page .cta-box h2 span {
  color: var(--green-light);
}

.ia-page .section-header p {
  color: var(--text-sub);
  font-size: 1.08rem;
}

/* ========== HERO ========== */
.ia-page .hero {
  min-height: 980px;
  display: flex;
  align-items: center;
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}

.ia-page .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 56px;
  align-items: center;
}

.ia-page .hero-copy {
  max-width: 720px;
}

.ia-page .hero-kicker {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: var(--pill);
  background: rgba(118, 175, 39, .18);
  border: 1px solid rgba(118, 175, 39, .26);
  color: var(--green-light);
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ia-page .hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -.05em;
  margin: 16px 0 28px;
}

.ia-page .hero-desc {
  color: var(--text-sub);
  font-size: 1.12rem;
  max-width: 650px;
  margin-bottom: 36px;
}

.ia-page .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

/* ========== BUTTONS ========== */
.ia-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: var(--pill);
  text-decoration: none;
  font-size: .95rem;
  border: 1px solid transparent;
  transition: .25s ease;
}

.ia-page .btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff;
  box-shadow: 0 10px 30px rgba(118, 175, 39, .22);
}

.ia-page .btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.ia-page .btn:hover {
  transform: translateY(-1px);
}

/* ========== HERO POINTS ========== */
.ia-page .hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ia-page .hero-point {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  color: var(--text-sub);
  font-size: .88rem;
}

.ia-page .hero-point strong {
  color: var(--green-light);
}

/* ========== HERO VISUAL ========== */
.ia-page .hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.ia-page .phone-cluster {
  width: min(100%, 580px);
  height: 780px;
  position: relative;
}

.ia-page .mockup {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-4deg);
  width: 260px;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, .5));
  z-index: 2;
}

.ia-page .mockup img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
}

.ia-page .floating-note {
  position: absolute;
  max-width: 230px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(118, 175, 39, .8);
  border: 1px solid var(--green);
  color: #fff;
  font-size: .84rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  z-index: 3;
}

.ia-page .floating-note strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}

.ia-page .note-one {
  left: 0;
  top: 80px;
}

.ia-page .note-two {
  right: 0;
  bottom: 100px;
}

/* ========== STATS GRID ========== */
.ia-page .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ia-page .stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
}

.ia-page .stat-card strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--green-light);
  margin-bottom: 10px;
}

.ia-page .stat-card span {
  color: var(--text-sub);
  font-size: .9rem;
}

/* ========== FEATURE LAYOUT ========== */
.ia-page .feature-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.ia-page .feature-intro,
.ia-page .benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.ia-page .feature-intro {
  padding: 38px 34px;
  position: sticky;
  top: 32px;
}

.ia-page .feature-intro h3 {
  font-size: 2rem;
  line-height: 1.15;
  margin: 18px 0 16px;
}

.ia-page .feature-intro p {
  color: var(--text-sub);
}

.ia-page .feature-stack {
  display: grid;
  gap: 18px;
}

/* ========== BENEFIT CARD ========== */
.ia-page .benefit-card {
  padding: 28px 26px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  align-items: start;
}

.ia-page .icon-box {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: rgba(118, 175, 39, .1);
  border: 1px solid rgba(118, 175, 39, .16);
  color: var(--green-light);
}

.ia-page .icon-box svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ia-page .benefit-card h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.ia-page .benefit-card p {
  color: var(--text-sub);
  font-size: .95rem;
}

/* ========== RELATED LINKS ========== */
.ia-page .related-heading {
  font-size: 1.5rem;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.ia-page .related-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.ia-page .related-list li::before {
  content: '→';
  color: var(--green-light);
  margin-right: 10px;
}

.ia-page .related-list a {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 1rem;
  transition: color .2s ease;
}

.ia-page .related-list a:hover {
  color: var(--green-light);
}

/* ========== CTA ========== */
.ia-page .cta {
  padding-bottom: 120px;
}

.ia-page .cta-box {
  padding: 54px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, .16), transparent 28%),
    linear-gradient(135deg, #76af27, #5f9422 48%, #4f7f21);
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(56, 90, 20, .28);
}

.ia-page .cta-box .tag {
  margin-bottom: 15px;
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .25);
}

.ia-page .cta-box h2,
.ia-page .cta-box p {
  color: #fff;
}

.ia-page .cta-box h2 {
  font-size: 2rem;
  line-height: 1.15;
  margin: 0 0 12px;
}

.ia-page .cta-box p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .85) !important;
}

.ia-page .cta-box .btn-secondary {
  border-color: rgba(255, 255, 255, .58);
  color: #fff;
  background: rgba(255, 255, 255, 0);
}

.ia-page .cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  white-space: nowrap;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .ia-page .hero-grid,
  .ia-page .feature-layout,
  .ia-page .cta-box {
    grid-template-columns: 1fr;
  }

  .ia-page .feature-intro {
    position: static;
  }

  .ia-page .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ia-page .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .ia-page .hero {
    min-height: auto;
    padding: 84px 0 72px;
  }

  .ia-page .hero-grid {
    gap: 36px;
  }

  .ia-page .phone-cluster {
    height: 640px;
  }

  .ia-page .mockup {
    width: 210px;
  }

  .ia-page .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .ia-page .container {
    width: min(100% - 28px, 1200px);
  }

  .ia-page .section {
    padding: 82px 0;
  }

  .ia-page .stats-grid {
    grid-template-columns: 1fr;
  }

  .ia-page .benefit-card {
    grid-template-columns: 1fr;
  }

  .ia-page .phone-cluster {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .ia-page .mockup,
  .ia-page .floating-note {
    position: relative;
    inset: auto;
    transform: none;
    filter: none;
  }

  .ia-page .mockup {
    width: min(100%, 280px);
  }

  .ia-page .floating-note {
    max-width: 100%;
    width: 100%;
  }

  .ia-page .cta-box {
    padding: 36px 28px;
  }
}
