/* ===== RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; }

:root {
  --grad: linear-gradient(90deg, #F7B115 0%, #E84E1B 50%, #E71D73 100%);
  --grad-diag: linear-gradient(135deg, #F7B115 0%, #E84E1B 50%, #E71D73 100%);
  --dark: #111111;
  --white: #ffffff;
  --surface: #f8f8f8;
  --surface-2: #f2f2f2;
  --border: #e4e4e4;
  --border-2: #d8d8d8;
  --orange: #E84E1B;
  --amber: #F6B015;
  --teal: #2CA4A7;
  --body-text: #222222;
  --muted: #6b6b6b;
  --light-muted: #9a9a9a;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: var(--body-text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--grad);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 26px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-dark {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 26px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-dark:hover { opacity: 0.82; transform: translateY(-1px); }

.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--body-text);
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 26px;
  border: 1.5px solid var(--border-2);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-outline-dark:hover { border-color: var(--orange); color: var(--orange); }

/* ===== HEADER ===== */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}

.header-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  color: var(--body-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.header-phone:hover { color: var(--orange); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--surface);
  padding: 9px 0;
  border-top: 1px solid var(--border);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.trust-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  flex-shrink: 0;
  transform: rotate(45deg);
}

/* ===== SECTION HELPERS ===== */
.section-eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-heading {
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.section-heading em {
  font-style: normal;
  color: var(--orange);
}

.section-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-subtext {
  font-size: 0.97rem;
  color: var(--muted);
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.75;
}

.section-cta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.grad-bar { height: 3px; background: var(--grad); }

footer {
  background: var(--dark);
  padding: 40px 0 24px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-logo img { height: 55px; width: auto; filter: brightness(0) invert(1); }

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-right { display: none; }
  .header-top { justify-content: center; }
  .trust-items {
    gap: 0;
    justify-content: center;
    overflow: hidden;
    position: relative;
    min-height: 28px;
  }
  .trust-item {
    position: absolute;
    left: 0; right: 0;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), opacity 0.6s;
    white-space: nowrap;
  }
  .trust-item[data-trust-state="active"] {
    transform: translateX(0);
    opacity: 1;
    display: flex;
  }
  .trust-item[data-trust-state="enter"] {
    transform: translateX(100%);
    opacity: 0;
    display: flex;
  }
  .trust-item[data-trust-state="exit"] {
    transform: translateX(-100%);
    opacity: 0;
    display: flex;
  }
  .trust-item[data-trust-state="hidden"] {
    display: none;
  }
}
