/* BASE RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0e0e0e;
  --bg2: #161614;
  --surface: #1e1e1c;
  --accent: #e8870f;
  --accent-dim: rgba(232, 135, 15, 0.12);
  --fg: #f5f2ed;
  --fg-dim: #9a9590;
  --border: rgba(245, 242, 237, 0.08);
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
.section-eyebrow {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--fg-dim);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 480px;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--fg);
}

.logo-5 { color: var(--accent); }

.nav-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 500;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg-line {
  position: absolute;
  top: 0;
  right: -10%;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(232, 135, 15, 0.03) 60%, rgba(232, 135, 15, 0.07) 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin-bottom: 1.75rem;
  max-width: 780px;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--fg-dim);
  max-width: 560px;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.stat { display: flex; flex-direction: column; gap: 0.25rem; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 500;
}

.stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* TRUSTBAR */
.trustbar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}

.trustbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trustbar-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 500;
  white-space: nowrap;
}

.trustbar-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pill {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--fg-dim);
  border: 1px solid var(--border);
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
}

/* SERVICES */
.services {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}

.service-card:hover { background: var(--surface); }

.service-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--fg-dim);
  line-height: 1.65;
  font-weight: 300;
}

/* DIFFERENCE */
.difference {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2rem;
}

.difference-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.difference-text h2 { margin-bottom: 1.25rem; }

.difference-text p {
  color: var(--fg-dim);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1rem;
}

.difference-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.diff-item {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  margin: -0.5px 0 0 -0.5px;
}

.diff-val {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.diff-desc {
  font-size: 0.78rem;
  color: var(--fg-dim);
  line-height: 1.55;
}

/* REVIEWS */
.reviews {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-header { margin-bottom: 3rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
}

.review-stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.review-card blockquote {
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.65;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.review-card cite {
  font-size: 0.75rem;
  color: var(--fg-dim);
  letter-spacing: 0.06em;
  font-style: normal;
}

/* CLOSING */
.closing {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 7rem 2rem;
  text-align: center;
}

.closing-inner { max-width: 700px; margin: 0 auto; }

.closing h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--fg);
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

.closing p {
  color: var(--fg-dim);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.closing-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-btn {
  display: inline-block;
  background: var(--accent);
  color: #0e0e0e;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  padding: 0.85rem 2.5rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}

.contact-btn:hover { background: #d0790d; }

.contact-link {
  color: var(--fg-dim);
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.contact-link:hover { color: var(--fg); }

/* FOOTER */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--fg);
}

.footer-loc {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  color: var(--fg-dim);
  letter-spacing: 0.06em;
}

.footer-sep { color: var(--border); }

.footer-copy {
  font-size: 0.7rem;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding-top: 6rem; }
  
  .hero-stats { gap: 1.25rem; flex-wrap: wrap; }
  
  .stat-num { font-size: 1.4rem; }
  
  .services-grid { grid-template-columns: 1fr; }
  
  .difference-inner { grid-template-columns: 1fr; gap: 3rem; }
  
  .difference-grid { grid-template-columns: 1fr; }
  
  .reviews-grid { grid-template-columns: 1fr; }
  
  .trustbar-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  
  .footer-info { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  
  .footer-sep { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 3.2rem; }
  .section-title { font-size: 2rem; }
}