:root {
  --navy: #0a1e3a;
  --navy-2: #13305e;
  --navy-3: #1d4480;
  --copper: #c77b3c;
  --copper-bright: #e89352;
  --copper-soft: #faeadb;
  --ink: #0f172a;
  --muted: #5b6677;
  --line: rgba(10, 30, 58, 0.12);
  --page: #f7f9fc;
  --paper: #ffffff;
  --ok: #157f3c;
  --warn: #b25000;
  --shadow-sm: 0 2px 6px rgba(10, 30, 58, 0.06);
  --shadow: 0 18px 45px rgba(10, 30, 58, 0.14);
  --shadow-lg: 0 30px 70px rgba(10, 30, 58, 0.2);
  --radius: 18px;
  --radius-lg: 26px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(199, 123, 60, 0.12), transparent 60%),
    radial-gradient(800px 600px at -10% 20%, rgba(10, 30, 58, 0.08), transparent 65%),
    var(--page);
}

a { color: var(--navy-2); text-decoration: none; }
a:hover { color: var(--copper); }
p, li { line-height: 1.7; color: #27334a; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 0.6em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
img { max-width: 100%; height: auto; display: block; }

.site-header, .site-footer, main { width: min(calc(100% - 2rem), var(--max)); margin-left: auto; margin-right: auto; }

/* ========== HEADER / NAV ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.brand { display: flex; align-items: center; gap: 0.7rem; font-weight: 800; color: var(--navy); }
.brand-logo {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--copper-bright);
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.2);
}
.brand-logo svg { width: 24px; height: 24px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 1.05rem; letter-spacing: -0.01em; }
.brand-text small { font-size: 0.72rem; color: var(--muted); font-weight: 500; letter-spacing: 0.02em; }

.site-nav { display: flex; gap: 0.15rem; align-items: center; flex-wrap: wrap; }
.site-nav a {
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #2a3650;
  transition: background 0.15s, color 0.15s;
}
.site-nav a:hover { background: var(--copper-soft); color: var(--navy); }
.site-nav a.active { background: var(--navy); color: #fff; }
.site-nav a.active:hover { background: var(--navy-2); color: #fff; }

.nav-toggle {
  display: none;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}

/* ========== BUTTONS ========== */
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s, color 0.15s;
  white-space: nowrap;
}
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--copper); color: #fff; box-shadow: 0 10px 22px rgba(199, 123, 60, 0.35); }
.button.primary:hover { background: var(--copper-bright); color: #fff; }
.button.secondary { background: var(--navy); color: #fff; }
.button.secondary:hover { background: var(--navy-2); color: #fff; }
.button.ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.button.ghost:hover { background: var(--paper); border-color: var(--copper); color: var(--navy); }
.button.whatsapp { background: #25D366; color: #fff; }
.button.whatsapp:hover { background: #1ebe5b; color: #fff; }

.actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.3rem; }

/* ========== HERO ========== */
.page-hero {
  position: relative;
  margin: 1.6rem 0 2rem;
  padding: clamp(2rem, 5vw, 3.6rem) clamp(1.3rem, 4vw, 3rem);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%);
  color: #f1f5ff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 85% 0%, rgba(232, 147, 82, 0.35), transparent 60%),
    radial-gradient(500px 400px at 0% 100%, rgba(29, 68, 128, 0.8), transparent 60%);
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; max-width: 22ch; }
.page-hero p.lead { font-size: 1.12rem; max-width: 56ch; color: #dbe4f5; }
.eyebrow {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  margin: 0 0 1rem;
  background: rgba(232, 147, 82, 0.18);
  color: var(--copper-bright);
  border: 1px solid rgba(232, 147, 82, 0.35);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero.light { background: linear-gradient(135deg, #ffffff 0%, #eef3fb 100%); color: var(--ink); border: 1px solid var(--line); }
.page-hero.light h1 { color: var(--navy); }
.page-hero.light p.lead { color: var(--muted); }
.page-hero.light .eyebrow { background: var(--copper-soft); color: var(--copper); border-color: rgba(199, 123, 60, 0.3); }

/* ========== SECTIONS ========== */
main { padding-bottom: 3rem; }
section { margin: 3rem 0; }
.section-head { text-align: center; max-width: 62ch; margin: 0 auto 2.2rem; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.6rem;
  margin: 1.8rem 0;
  padding: 1rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.92rem;
}
.trust-bar span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--copper);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

/* ========== CARD GRIDS ========== */
.card-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(199, 123, 60, 0.4); }
.card h3 { margin-top: 0.3rem; color: var(--navy); }
.card p { color: var(--muted); margin: 0.35rem 0 0.9rem; font-size: 0.95rem; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--copper); font-weight: 700; font-size: 0.92rem;
}
.card .card-link::after { content: "→"; transition: transform 0.15s; }
.card:hover .card-link::after { transform: translateX(3px); }
.card-icon {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--copper-soft);
  color: var(--copper);
  margin-bottom: 0.3rem;
}
.card-icon svg { width: 26px; height: 26px; }

/* Feature boxes */
.feature-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.feature {
  display: flex; gap: 0.9rem;
  padding: 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.feature-icon {
  flex: 0 0 42px;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--navy);
  color: var(--copper-bright);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.02rem; margin: 0 0 0.3rem; color: var(--navy); }
.feature p { margin: 0; color: var(--muted); font-size: 0.93rem; }

/* Stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  padding: 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.stat { text-align: center; }
.stat .num { font-size: 1.9rem; font-weight: 900; color: var(--copper); line-height: 1; }
.stat .label { font-size: 0.82rem; color: var(--muted); font-weight: 600; margin-top: 0.3rem; }

/* ========== PRICING ========== */
.pricing-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 900px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  position: relative;
}
.price-card.featured {
  border: 2px solid var(--copper);
  box-shadow: 0 18px 45px rgba(199, 123, 60, 0.2);
}
.price-badge {
  position: absolute;
  top: -14px; left: 1.8rem;
  padding: 0.25rem 0.75rem;
  background: var(--copper);
  color: #fff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price { font-size: 2.6rem; font-weight: 900; color: var(--navy); line-height: 1; margin: 0.4rem 0 0.2rem; }
.price sup { font-size: 1.2rem; font-weight: 700; color: var(--muted); vertical-align: super; }
.price-sub { font-size: 0.9rem; color: var(--muted); }
.price-list { list-style: none; padding: 0; margin: 1.2rem 0; }
.price-list li { padding: 0.35rem 0 0.35rem 1.5rem; position: relative; font-size: 0.95rem; }
.price-list li::before { content: "✓"; position: absolute; left: 0; color: var(--copper); font-weight: 900; }

/* ========== CALLOUT / BANNER ========== */
.callout {
  padding: 2rem clamp(1.2rem, 3vw, 2.4rem);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  border-radius: var(--radius-lg);
  display: flex;
  gap: 1.4rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.callout h2 { color: #fff; margin: 0 0 0.35rem; }
.callout p { color: #dbe4f5; margin: 0; }
.callout .actions { margin-top: 0; }

.article-callout {
  margin: 2rem 0 0;
  padding: 1.5rem;
  border-left: 4px solid var(--copper);
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.article-callout h2 { margin: 0 0 0.35rem; color: var(--navy); font-size: 1.25rem; }
.article-callout p { margin: 0 0 0.8rem; color: var(--muted); }

/* ========== HOW-TO / ARTICLE ========== */
.how-to-article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.4rem); max-width: 780px; margin: 0 auto; }
.how-to-article h2 { color: var(--navy); margin-top: 1.8em; }
.how-to-article h2:first-of-type { margin-top: 0.5em; }
.how-to-article ul, .how-to-article ol { padding-left: 1.2rem; }
.how-to-article li { margin-bottom: 0.4rem; }
.video-embed { position: relative; aspect-ratio: 16/9; margin: 0 0 1rem; border-radius: 14px; overflow: hidden; background: #000; box-shadow: var(--shadow); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-credit { background: #fff8f1; border: 1px solid rgba(199, 123, 60, 0.25); padding: 1rem 1.1rem; border-radius: 12px; font-size: 0.95rem; color: #3c2a15; }
.safety-box { background: #fff8e6; border: 1px solid #f2ce74; color: #6b4a00; padding: 1rem 1.2rem; border-radius: 12px; margin: 1.4rem 0; }
.safety-box strong { color: #4a3200; }

.related-grid { display: grid; gap: 0.8rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.related-grid a {
  display: block;
  padding: 0.9rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 700;
  color: var(--navy);
  transition: border-color 0.15s, background 0.15s;
}
.related-grid a:hover { border-color: var(--copper); background: var(--copper-soft); }

/* ========== CONTACT FORM ========== */
.contact-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 820px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.contact-form { display: grid; gap: 0.9rem; }
.contact-form label { font-weight: 600; font-size: 0.9rem; color: var(--navy); display: block; margin-bottom: 0.3rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(199, 123, 60, 0.2);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.honey { position: absolute; left: -9999px; visibility: hidden; }
.form-alert { padding: 0.9rem 1.1rem; border-radius: 10px; font-weight: 600; margin-bottom: 1rem; }
.form-alert.error { background: #fdecec; color: #8a1a1a; border: 1px solid #f4c2c2; }
.form-alert.info { background: var(--copper-soft); color: var(--warn); border: 1px solid rgba(199, 123, 60, 0.3); }

/* ========== GALLERY ========== */
.gallery-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.gallery-item { border-radius: 14px; overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.gallery-item figure { margin: 0; }
.gallery-item figcaption { padding: 0.75rem 1rem; font-size: 0.9rem; color: var(--muted); }
.gallery-placeholder {
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--copper-bright);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* ========== FOOTER ========== */
.site-footer {
  margin-top: 3rem;
  padding: 2rem 1.4rem;
  background: var(--navy);
  color: #cbd5e7;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}
.site-footer a { color: #e0e7f2; }
.site-footer a:hover { color: var(--copper-bright); }
.footer-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  margin-bottom: 1.5rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 0.8rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 0.4rem; font-size: 0.92rem; }
.footer-grid .brand { color: #fff; margin-bottom: 0.8rem; }
.footer-grid .brand-text small { color: #9fb0cd; }
.footer-grid p { color: #a9b8d0; font-size: 0.9rem; margin: 0 0 0.6rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  font-size: 0.82rem;
  color: #9fb0cd;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ========== UTILITIES ========== */
.two-col { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.2rem; align-items: center; }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }
.prose { max-width: 68ch; }
.prose p { color: #2a3650; }

.breadcrumbs { font-size: 0.85rem; color: var(--muted); margin: 0 0 0.6rem; }
.breadcrumbs a { color: var(--navy-2); font-weight: 600; }
.breadcrumbs span { margin: 0 0.4rem; color: #b5c0d4; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Mobile nav */
@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .site-nav { display: none; width: 100%; flex-direction: column; align-items: stretch; padding: 0.6rem 0 0.2rem; }
  .site-nav.open { display: flex; }
  .site-header { flex-wrap: wrap; }
  .site-nav a { padding: 0.7rem 0.85rem; border-radius: 10px; }
  .brand-text small { display: none; }
}
