/* ===================================
   THE U ZONE - Main Stylesheet
   Universal Cost Control, Inc. 2026
=================================== */

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

:root {
  --gold: #F5A623;
  --gold-dark: #D4891A;
  --navy: #0D1B2A;
  --navy-mid: #1A2E45;
  --navy-light: #243B55;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --gray-100: #EEF0F2;
  --gray-400: #9AA5B4;
  --gray-600: #627282;
  --text: #1A2E45;
  --text-light: #627282;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --transition: all 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-cta {
  background: var(--gold);
  color: var(--navy);
  width: 100%;
  justify-content: center;
  padding: 12px;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}
.btn-cta:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.35); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }

/* SECTION HEADERS */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* FTC BAR */
.ftc-bar {
  background: var(--navy);
  color: var(--gray-400);
  text-align: center;
  padding: 8px 24px;
  font-size: 0.8rem;
  line-height: 1.4;
}
.ftc-bar a { color: var(--gold); }
.ftc-bar a:hover { text-decoration: underline; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-mid);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  color: var(--gold);
  font-size: 1.4rem;
}
.logo-text {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
}
.main-nav {
  display: flex;
  gap: 4px;
}
.main-nav a {
  color: var(--gray-400);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.main-nav a:hover { color: var(--white); background: var(--navy-mid); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-btn {
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 6px;
  transition: var(--transition);
}
.search-btn:hover { color: var(--gold); }
