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

:root {
  --orange: #25a8e0;
  --orange-light: #ebfeff;
  /* --orange: #e8420a;
  --orange-light: #fff0eb; */
  --yellow: #ffd740;
  --yellow-light: #fffde7;
  --blue: #1565c0;
  --blue-light: #e3f2fd;
  --green: #2e7d32;
  --green-light: #e8f5e9;
  --ink: #12110f;
  --text: #2a2520;
  --text-muted: #6b6460;
  --border: #e8e3de;
  --bg: #ffffff;
  --bg-warm: #faf8f5;
  --bg-light: #f5f2ee;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  height: 88px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  /* mix-blend-mode: multiply; */
}
.logo-poly { color: var(--ink); font-family: 'Unbounded', sans-serif; font-size: 26px; font-weight: 800; }
.logo-colors { color: var(--orange); font-family: 'Unbounded', sans-serif; font-size: 26px; font-weight: 800; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--ink); background: var(--bg-light); }
.nav-links a.active { color: var(--orange); font-weight: 600; }

.nav-cta {
  flex-shrink: 0;
  background: var(--orange);
  color: #fff !important;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: #c83208; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s;
}

.mobile-menu {
  position: fixed;
  inset: 88px 0 0 0;
  background: #fff;
  z-index: 999;
  padding: 32px 24px;
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu ul a {
  display: block;
  text-decoration: none;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu ul a:hover { background: var(--bg-light); }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 160px 40px 80px;
  background: linear-gradient(160deg, var(--bg-warm) 0%, #fff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-header::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,66,10,0.06) 0%, transparent 70%);
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,168,0,0.06) 0%, transparent 70%);
}
.page-header .eyebrow { margin: 0 auto 20px; }
.page-header h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -2px;
  line-height: 1.0;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.page-header h1 .orange { color: var(--orange); }
.page-header p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
  position: relative; z-index: 1;
}

/* ===== UTILITY ===== */
.max-w { max-width: 1280px; margin: 0 auto; }

/* ===== EYEBROW ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange-light);
  color: var(--orange);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  width: fit-content;
}
.eyebrow-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(232,66,10,0.25);
  display: inline-block;
}
.btn-primary:hover { background: #c83208; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,66,10,0.35); }

.btn-outline {
  border: 2px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--ink); color: #fff; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  padding: 80px 40px 0;
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  margin-bottom: 16px;
  display: block;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(1.15) contrast(1.05);
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.footer-socials a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  transition: all 0.2s;
}
.footer-socials a:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.footer-nav-group h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-nav-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-group ul a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-nav-group ul a:hover { color: #fff; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-inner { padding: 0 20px; }
  .nav-logo-img { height: 36px; }
}

/* ===== LOGO IMAGE ===== */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  /* mix-blend-mode: multiply; */
}
.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(1.15);
}
@media (max-width: 600px) {
  .nav-logo-img { height: 36px; }
}
