/* ══════════════════════════════════════
   HYBRID Labs — politicas.css
   Clean legal document style
══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --blue: #0066CC;
  --blue-soft: rgba(0,102,204,0.1);
  --white: #ffffff;
  --off-white: #F5F5F7;
  --text: #1d1d1f;
  --text-secondary: #4a4a4f;
  --text-tertiary: #6e6e73;
  --border: rgba(0,0,0,0.08);
  --border-mid: rgba(0,0,0,0.12);
  --font: 'Outfit', sans-serif;
  --nav-height: 56px;
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav-logo img {
  height: 60px;
  transform: scale(1.4);
  transform-origin: left center;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 7px 14px; border-radius: 8px; font-size: 0.85rem;
  font-weight: 500; color: var(--text-tertiary);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link:focus { color: var(--text); background: var(--off-white); text-decoration: none; }
.nav-link-highlight { color: var(--blue); background: var(--blue-soft); }
.btn-menu {
  display: none; flex-direction: column; gap: 5px;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  border-radius: 50%; background: var(--off-white); border: none; cursor: pointer;
}
.btn-menu span { display: block; width: 18px; height: 1.5px; background: var(--text); border-radius: 2px; }

/* ── PAGE HERO ── */
.pol-hero {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: calc(var(--nav-height) + 60px) 24px 48px;
  text-align: center;
}
.pol-hero-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.pol-hero-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  letter-spacing: -1px; color: var(--text);
}
.pol-hero-sub {
  margin-top: 12px; font-size: 0.95rem; color: var(--text-tertiary); max-width: 560px; margin-inline: auto;
}

/* ── TABS ── */
.pol-tabs {
  position: sticky; top: var(--nav-height); z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.pol-tabs-inner {
  max-width: 860px; margin: 0 auto; padding: 0 24px;
  display: flex; gap: 0;
}
.pol-tab {
  padding: 14px 24px; font-family: var(--font); font-size: 0.88rem;
  font-weight: 600; color: var(--text-tertiary); background: none;
  border: none; border-bottom: 2px solid transparent;
  cursor: pointer; transition: color var(--transition), border-color var(--transition);
}
.pol-tab:hover { color: var(--text); }
.pol-tab.active { color: var(--blue); border-bottom-color: var(--blue); }

/* ── CONTENT WRAPPER ── */
.pol-content {
  max-width: 860px; margin: 0 auto; padding: 64px 24px 100px;
}

/* ── SECTION BLOCKS ── */
.pol-block { display: none; }
.pol-block.active { display: block; }

/* ── SECTION HEADER ── */
.pol-block-header {
  padding-bottom: 28px;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--text);
}
.pol-block-header h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 900;
  letter-spacing: -0.5px;
}
.pol-block-header p {
  margin-top: 6px; font-size: 0.88rem;
  color: var(--text-tertiary); font-weight: 500; text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── SHIPPING TABLE ── */
.ship-intro { font-size: 1rem; color: var(--text-secondary); margin-bottom: 32px; }
.ship-intro strong { color: var(--text); }

.ship-table {
  width: 100%; border-collapse: collapse;
  margin-bottom: 40px;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 1px 0 var(--border), 0 0 0 1px var(--border);
}
.ship-table th {
  background: var(--text);
  color: #fff;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: 14px 20px; text-align: left;
}
.ship-table td { padding: 16px 20px; font-size: 0.95rem; vertical-align: middle; }
.ship-table tr:nth-child(even) td { background: var(--off-white); }
.ship-table tr:first-of-type td { border-top: none; }
.ship-table td strong { font-weight: 700; }
.badge-free {
  display: inline-block;
  background: #00a550; color: #fff;
  font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  letter-spacing: 0.5px;
}
.badge-cost {
  display: inline-block;
  background: rgba(0,102,204,0.1); color: var(--blue);
  font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
}

.ship-delivery {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 28px;
  display: flex; gap: 20px; align-items: flex-start;
}
.ship-delivery-icon {
  font-size: 1.6rem; flex-shrink: 0; margin-top: 2px;
}
.ship-delivery h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.ship-delivery p { font-size: 0.92rem; color: var(--text-secondary); }
.ship-delivery p + p { margin-top: 6px; }

/* ── POLICY SECTIONS ── */
.pol-section + .pol-section { margin-top: 52px; }
.pol-section-title {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 1.1rem; font-weight: 800;
  color: var(--text); margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.pol-section-title .pol-icon { font-size: 1.2rem; }
.pol-text { font-size: 0.94rem; color: var(--text-secondary); line-height: 1.8; }
.pol-text + .pol-text { margin-top: 10px; }
.pol-text strong { color: var(--text); font-weight: 600; }
.pol-list {
  list-style: none; margin-top: 14px;
  display: flex; flex-direction: column; gap: 9px;
}
.pol-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.94rem; color: var(--text-secondary); line-height: 1.65;
}
.pol-list li::before {
  content: '—'; color: var(--blue); font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}
.pol-alert {
  background: rgba(0,102,204,0.06);
  border: 1px solid rgba(0,102,204,0.15);
  border-left: 3px solid var(--blue);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.92rem; color: var(--text-secondary);
  margin-top: 16px; line-height: 1.65;
}
.pol-alert-warn {
  background: rgba(180, 100, 0, 0.05);
  border-color: rgba(180, 100, 0, 0.2);
  border-left-color: #b46400;
}
.pol-alert strong { color: var(--text); }

/* ── CONTACT BLOCK ── */
.pol-contact {
  background: #0a0a0a; border-radius: 16px;
  padding: 40px 36px; margin-top: 52px;
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
}
.pol-contact-text h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.pol-contact-text p { font-size: 0.9rem; color: #888; line-height: 1.7; }
.pol-contact-text p + p { margin-top: 4px; }
.pol-contact-btn {
  margin-left: auto; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: var(--blue); color: #fff;
  font-family: var(--font); font-size: 0.88rem; font-weight: 700;
  border-radius: 30px; border: none; cursor: pointer;
  text-decoration: none; transition: all var(--transition);
}
.pol-contact-btn:hover { background: #147CE5; text-decoration: none; transform: translateY(-1px); }

/* ── FOOTER ── */
.footer {
  padding: 60px 0 0; background: #0a0a0a; font-family: var(--font);
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-logo-img { height: 52px; filter: brightness(0) invert(1); }
.footer-desc { color: #888; font-size: 0.84rem; margin: 16px 0 22px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: #aaa; transition: all var(--transition); text-decoration: none;
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { color: var(--blue); border-color: var(--blue); background: rgba(0,102,204,0.15); text-decoration: none; }
.footer-heading { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #555; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.84rem; color: #888; transition: color var(--transition); text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: #555;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pol-contact { flex-direction: column; }
  .pol-contact-btn { margin-left: 0; }
  .pol-tabs-inner { gap: 0; overflow-x: auto; }
  .pol-tab { white-space: nowrap; padding: 14px 16px; font-size: 0.82rem; }
}
@media (max-width: 500px) {
  .nav-links { display: none; }
  .btn-menu { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: #fff; padding: 16px;
    border-bottom: 1px solid var(--border); z-index: 999; gap: 4px;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .ship-delivery { flex-direction: column; }
}
