:root {
  --ip-navy: #071d3d;
  --ip-navy-2: #0d315b;
  --ip-green: #176b35;
  --ip-green-dark: #0f5128;
  --ip-green-soft: #eaf5ed;
  --ip-gold: #8a5b12;
  --ip-ink: #10233f;
  --ip-muted: #46576b;
  --ip-line: #d5e1d9;
  --ip-surface: #f5f8f6;
  --ip-white: #fff;
  --ip-focus: #ffbf47;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ip-ink);
  background: var(--ip-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
body.nav-open { overflow: hidden; }
a { color: var(--ip-green-dark); }
a:hover { color: var(--ip-navy); }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ip-navy);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--ip-focus); outline-offset: 3px; }

.ip-container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.ip-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(7, 29, 61, .1);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(14px);
}
.ip-header-inner { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 24px; }
.ip-brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ip-navy); text-decoration: none; font-weight: 800; }
.ip-brand img { width: 58px; height: 58px; object-fit: contain; }
.ip-brand span { line-height: 1.15; }
.ip-brand small { display: block; margin-top: 4px; color: var(--ip-muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.ip-nav-toggle { display: none; padding: 9px 12px; border: 1px solid var(--ip-line); border-radius: 9px; color: var(--ip-navy); background: #fff; }
.ip-nav { display: flex; align-items: center; gap: 6px; }
.ip-nav > a, .ip-nav summary { padding: 11px 12px; border-radius: 8px; color: var(--ip-navy); text-decoration: none; font-size: 13px; font-weight: 750; cursor: pointer; list-style: none; }
.ip-nav > a:hover, .ip-nav summary:hover, .ip-nav details[open] summary { color: var(--ip-green-dark); background: var(--ip-green-soft); }
.ip-nav summary::-webkit-details-marker { display: none; }
.ip-nav details { position: relative; }
.ip-nav summary::after { content: "\2304"; margin-left: 6px; font-size: 12px; }
.ip-nav-menu { position: absolute; top: calc(100% + 10px); right: 0; width: 280px; padding: 10px; border: 1px solid var(--ip-line); border-radius: 13px; background: #fff; box-shadow: 0 20px 50px rgba(7, 29, 61, .16); }
.ip-nav-menu a { display: block; padding: 9px 10px; border-radius: 7px; color: var(--ip-ink); text-decoration: none; font-size: 13px; font-weight: 650; }
.ip-nav-menu a:hover { background: var(--ip-green-soft); color: var(--ip-green-dark); }

.ip-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  border-bottom: 1px solid var(--ip-line);
  background: radial-gradient(circle at 86% 10%, rgba(23, 107, 53, .16), transparent 27%), linear-gradient(135deg, #f9fbfa 0%, #edf5f0 55%, #f8fafc 100%);
}
.ip-hero::before { content: ""; position: absolute; inset: 0; opacity: .45; background-image: linear-gradient(rgba(7,29,61,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(7,29,61,.035) 1px, transparent 1px); background-size: 44px 44px; pointer-events: none; }
.ip-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr); gap: 58px; align-items: center; }
.ip-eyebrow { display: inline-flex; gap: 8px; align-items: center; margin-bottom: 16px; color: var(--ip-green-dark); font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.ip-eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--ip-gold); }
.ip-hero h1 { max-width: 760px; margin: 0 0 20px; color: var(--ip-navy); font-size: clamp(40px, 5.3vw, 68px); line-height: 1.02; letter-spacing: -.045em; }
.ip-lead { max-width: 720px; margin: 0 0 26px; color: var(--ip-muted); font-size: 18px; line-height: 1.75; }
.ip-trust { display: flex; flex-wrap: wrap; gap: 9px; }
.ip-trust span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border: 1px solid #c9d9ce; border-radius: 999px; color: #27465f; background: rgba(255,255,255,.8); font-size: 12px; font-weight: 700; }
.ip-trust i { color: var(--ip-green); }

.ip-form-card { padding: 26px; border: 1px solid rgba(7,29,61,.1); border-radius: 20px; background: #fff; box-shadow: 0 24px 64px rgba(7,29,61,.13); }
.ip-form-card h2 { margin: 0 0 6px; color: var(--ip-navy); font-size: 24px; line-height: 1.2; }
.ip-form-card > p { margin: 0 0 20px; color: var(--ip-muted); font-size: 13px; }
.ip-field { margin-bottom: 14px; }
.ip-field label { display: block; margin-bottom: 6px; color: var(--ip-ink); font-size: 13px; font-weight: 750; }
.ip-field input, .ip-field select, .ip-field textarea { width: 100%; min-height: 46px; padding: 11px 12px; border: 1px solid #bdcbc2; border-radius: 9px; color: var(--ip-ink); background: #fff; }
.ip-field textarea { min-height: 90px; resize: vertical; }
.ip-consent { display: grid; grid-template-columns: 20px 1fr; gap: 8px; align-items: start; margin: 4px 0 16px; color: var(--ip-muted); font-size: 12px; }
.ip-consent input { width: 18px; height: 18px; margin-top: 2px; }
.ip-submit, .ip-primary-button, .ip-package-button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; gap: 8px; padding: 12px 18px; border: 0; border-radius: 9px; color: #fff; background: var(--ip-green); text-decoration: none; font-weight: 800; cursor: pointer; }
.ip-submit { width: 100%; }
.ip-submit:hover, .ip-primary-button:hover, .ip-package-button:hover { color: #fff; background: var(--ip-green-dark); }
.ip-form-status { min-height: 22px; margin: 10px 0 0; color: var(--ip-green-dark); font-size: 13px; font-weight: 700; }
.ip-privacy-note { margin: 10px 0 0; color: var(--ip-muted); font-size: 11px; text-align: center; }

.ip-section { padding: 76px 0; }
.ip-section-alt { border-block: 1px solid var(--ip-line); background: var(--ip-surface); }
.ip-section-head { max-width: 780px; margin-bottom: 34px; }
.ip-section-head h2 { margin: 0 0 12px; color: var(--ip-navy); font-size: clamp(30px, 4vw, 44px); line-height: 1.15; letter-spacing: -.035em; }
.ip-section-head p { margin: 0; color: var(--ip-muted); }
.ip-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.ip-info-card { padding: 24px; border: 1px solid var(--ip-line); border-radius: 16px; background: #fff; box-shadow: 0 10px 28px rgba(7,29,61,.055); }
.ip-info-card i { display: inline-grid; width: 42px; height: 42px; place-items: center; margin-bottom: 15px; border-radius: 11px; color: var(--ip-green-dark); background: var(--ip-green-soft); font-size: 20px; }
.ip-info-card h3 { margin: 0 0 8px; color: var(--ip-navy); font-size: 18px; }
.ip-info-card p { margin: 0; color: var(--ip-muted); font-size: 14px; }
.ip-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px 24px; margin: 0; padding: 0; list-style: none; }
.ip-list li { position: relative; padding: 13px 14px 13px 42px; border: 1px solid var(--ip-line); border-radius: 11px; background: #fff; color: var(--ip-muted); }
.ip-list li::before { content: "\2713"; position: absolute; top: 12px; left: 15px; color: var(--ip-green); font-weight: 900; }
.ip-source-note { margin-top: 26px; padding: 16px 18px; border-left: 4px solid var(--ip-green); border-radius: 8px; color: var(--ip-muted); background: var(--ip-green-soft); font-size: 13px; }

.ip-price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.ip-price-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--ip-line); border-radius: 18px; background: #fff; box-shadow: 0 16px 40px rgba(7,29,61,.08); }
.ip-price-head { padding: 24px; color: #fff; background: linear-gradient(135deg, var(--ip-navy), var(--ip-navy-2)); }
.ip-price-head span { color: #a6e5b2; font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.ip-price-head strong { display: block; margin-top: 8px; font-size: 34px; line-height: 1.1; }
.ip-price-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.ip-price-body p { flex: 1; color: var(--ip-muted); font-size: 14px; }
.ip-package-button { width: 100%; }
.ip-price-note { margin-top: 20px; color: var(--ip-muted); font-size: 12px; text-align: center; }

.ip-faq { display: grid; gap: 12px; }
.ip-faq details { padding: 16px 18px; border: 1px solid var(--ip-line); border-radius: 12px; background: #fff; }
.ip-faq summary { color: var(--ip-navy); font-weight: 800; cursor: pointer; }
.ip-faq p { margin: 12px 0 0; color: var(--ip-muted); }
.ip-end-cta { padding: 54px 0; color: #fff; background: linear-gradient(120deg, var(--ip-navy), var(--ip-navy-2)); }
.ip-end-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.ip-end-inner h2 { margin: 0 0 8px; font-size: clamp(28px, 4vw, 40px); }
.ip-end-inner p { margin: 0; color: rgba(255,255,255,.78); }
.ip-end-inner .ip-primary-button { color: var(--ip-navy); background: #fff; white-space: nowrap; }

.ip-footer { padding: 54px 0 22px; color: rgba(255,255,255,.8); background: #061a37; }
.ip-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; }
.ip-footer h2, .ip-footer h3 { color: #fff; }
.ip-footer h2 { margin: 0 0 10px; font-size: 21px; }
.ip-footer h3 { margin: 0 0 12px; font-size: 15px; }
.ip-footer p { margin: 0 0 8px; font-size: 13px; }
.ip-footer a { color: rgba(255,255,255,.88); }
.ip-footer a:hover { color: #fff; }
.ip-footer ul { margin: 0; padding: 0; list-style: none; }
.ip-footer li { margin-bottom: 8px; font-size: 13px; }
.ip-footer-bottom { margin-top: 38px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); font-size: 12px; }
.ip-whatsapp { position: fixed; z-index: 900; right: 20px; bottom: 20px; display: inline-flex; min-width: 54px; min-height: 54px; align-items: center; justify-content: center; gap: 8px; padding: 12px 17px; border-radius: 999px; color: #fff; background: #12652f; box-shadow: 0 12px 30px rgba(7,29,61,.25); text-decoration: none; font-weight: 800; }
.ip-whatsapp:hover { color: #fff; background: #0d4f25; }

.ip-policy { max-width: 860px; padding: 68px 0; }
.ip-policy h1 { color: var(--ip-navy); font-size: clamp(36px, 5vw, 56px); letter-spacing: -.04em; }
.ip-policy h2 { margin-top: 34px; color: var(--ip-navy); }
.ip-policy p, .ip-policy li { color: var(--ip-muted); }

@media (max-width: 900px) {
  .ip-nav-toggle { display: inline-flex; }
  .ip-nav { position: fixed; inset: 76px 0 auto; display: none; max-height: calc(100vh - 76px); padding: 18px 20px 28px; overflow-y: auto; flex-direction: column; align-items: stretch; border-top: 1px solid var(--ip-line); background: #fff; }
  .ip-nav.is-open { display: flex; }
  .ip-nav-menu { position: static; width: auto; margin-top: 5px; box-shadow: none; }
  .ip-hero-grid { grid-template-columns: 1fr; }
  .ip-card-grid, .ip-price-grid { grid-template-columns: 1fr 1fr; }
  .ip-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .ip-container { width: min(100% - 28px, 1160px); }
  .ip-brand span { display: none; }
  .ip-hero { padding: 48px 0; }
  .ip-hero-grid { gap: 34px; }
  .ip-hero h1 { font-size: 42px; }
  .ip-lead { font-size: 16px; }
  .ip-form-card { padding: 20px; }
  .ip-section { padding: 56px 0; }
  .ip-card-grid, .ip-price-grid, .ip-list, .ip-footer-grid { grid-template-columns: 1fr; }
  .ip-end-inner { align-items: flex-start; flex-direction: column; }
  .ip-whatsapp { right: 12px; bottom: 12px; width: 54px; padding: 0; }
  .ip-whatsapp span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
