/* ============================================================
   NTENT GROUP — Modern Bold Agency Style
   Palette: Navy #0F172A · Coral #F43F5E · White #FAFAFA
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy:    #0F172A;
  --navy-90: #1E293B;
  --coral:   #F43F5E;
  --coral-80:#F8718A;
  --white:   #FAFAFA;
  --surface: #FFFFFF;
  --muted:   #64748B;
  --muted-60:#94A3B8;
  --section: #F8FAFC;
  --border:  #E2E8F0;

  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --radius:   6px;
  --radius-lg:12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);

  --max-width: 1200px;
  --header-h:  72px;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── Grid dot background pattern ─────────────────────────── */
.bg-dots {
  position: relative;
}
.bg-dots::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--muted-60) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: var(--coral);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--navy); }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
  color: var(--navy);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 48px;
}

/* ── Accent bar ───────────────────────────────────────────── */
.accent-bar {
  display: block;
  width: 64px;
  height: 4px;
  background: var(--coral);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ── Header / Navigation ──────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: var(--navy);
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo svg { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-60);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  display: inline-block;
  padding: 10px 24px;
  background: var(--coral);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 0.8125rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: #E11D48;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  color: var(--white);
  margin-bottom: 8px;
}

.hero .accent-bar {
  width: 80px;
  height: 5px;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--muted-60);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
}
.btn-primary:hover {
  background: #E11D48;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--muted);
}
.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--section);
  color: var(--navy);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  border-color: var(--white);
  color: var(--white);
}

/* Hero metric badges */
.hero-badges {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

.metric-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  backdrop-filter: blur(8px);
  max-width: 260px;
}

.metric-badge .metric-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 6px;
}

.metric-badge .metric-label {
  font-size: 0.8125rem;
  color: var(--muted-60);
  font-weight: 500;
}

.metric-badge:nth-child(2) {
  margin-right: 40px;
}

/* ── About ────────────────────────────────────────────────── */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-left .accent-bar {
  margin-bottom: 16px;
}

.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.stat-item .stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
}

.diff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.diff-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.diff-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--section);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--coral);
}

.diff-text h4 {
  margin-bottom: 4px;
  color: var(--navy);
}
.diff-text p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* ── Services ─────────────────────────────────────────────── */
.services {
  background: var(--section);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--coral);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--section);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--coral);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* ── Process ──────────────────────────────────────────────── */
.process {
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--coral) 0 6px, transparent 6px 16px);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.process-step h4 {
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9375rem;
  color: var(--muted);
}

/* ── Impact / Results ─────────────────────────────────────── */
.impact {
  background: var(--navy);
  color: var(--white);
}

.impact .section-label {
  color: var(--coral-80);
}

.impact .section-title {
  color: var(--white);
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.impact-metric {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
}

.impact-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 8px;
}

.impact-suffix {
  font-size: 1.5rem;
  font-weight: 600;
}

.impact-label {
  font-size: 0.9375rem;
  color: var(--muted-60);
  font-weight: 500;
  margin-bottom: 12px;
}

.impact-desc {
  font-size: 0.8125rem;
  color: var(--muted);
  max-width: 260px;
  margin: 0 auto;
}

/* ── Industries ───────────────────────────────────────────── */
.industries {
  background: var(--section);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-tag {
  background: var(--surface);
  border-left: 4px solid var(--coral);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.industry-tag:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.industry-tag h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--navy);
}

.industry-tag p {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* ── CTA ──────────────────────────────────────────────────── */
.cta-band {
  background: var(--coral);
  padding: 80px 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-band p {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  max-width: 580px;
  margin: 0 auto 32px;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.contact-info-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--section);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--coral);
}

.contact-detail h4 {
  margin-bottom: 2px;
  font-size: 0.9375rem;
}

.contact-detail span {
  color: var(--muted);
  font-size: 0.9375rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #0A0F1D;
  color: var(--muted-60);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--coral-80);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
}

.footer-bottom a {
  color: var(--coral-80);
}

/* ── Legal Pages ──────────────────────────────────────────── */
.legal-page {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 80px;
  background: var(--white);
}

.legal-page .container {
  max-width: 820px;
}

.legal-page h1 {
  margin-bottom: 8px;
}

.legal-page .accent-bar {
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--navy);
}

.legal-page h3 {
  font-size: 1.125rem;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--navy);
}

.legal-page p,
.legal-page li {
  color: #334155;
  font-size: 1rem;
  line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-page .last-updated {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.legal-page a {
  color: var(--coral);
  text-decoration: underline;
}
.legal-page a:hover {
  color: var(--navy);
}

/* ── Animations ───────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  /* Navigation */
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 999;
  }
  .nav-links.mobile-open {
    opacity: 1;
    pointer-events: all;
  }
  .hamburger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-badges {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
  }
  .metric-badge:nth-child(2) {
    margin-right: 0;
  }
  .metric-badge {
    flex: 1;
    max-width: none;
    padding: 20px 16px;
  }
  .metric-badge .metric-number {
    font-size: 1.75rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .impact-metrics {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-badges {
    flex-direction: column;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .stats-row {
    flex-direction: column;
    gap: 20px;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Print ────────────────────────────────────────────────── */
@media print {
  .site-header,
  .hamburger,
  .btn {
    display: none !important;
  }
  .hero {
    min-height: auto;
    padding: 40px 0;
  }
}
