/* ===== HERO — full-bleed image, text bottom-left ===== */
.hero {
  position: relative;
  height: 92vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 40, 0.60);
}

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0 96px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

.hero-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--orange-light);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.04em;
  max-width: 840px;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease both;
}

.hero h1 .accent {
  color: var(--orange-light);
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s 0.15s ease both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.7s 0.3s ease both;
}

/* Rotating badge (Luminar-inspired) */
.hero-rotating-badge {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 110px;
  height: 110px;
  z-index: 2;
  animation: rotateBadge 12s linear infinite;
}

.hero-rotating-badge .badge-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-rotating-badge .badge-arrow svg {
  color: var(--navy);
  width: 18px;
  height: 18px;
}

.hero-rotating-badge text {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  fill: rgba(255,255,255,0.75);
  text-transform: uppercase;
}

@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== BENTO SECTION ===== */
.bento-section { padding: 96px 0; }

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 16px;
  min-height: 580px;
}

.bento-photo {
  grid-row: 1 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.bento-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
}

.bento-dark {
  background-color: var(--navy-dark);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-dark-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.bento-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bento-stat-card {
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}

.bento-stat-card.orange {
  background-color: var(--orange);
}

.bento-stat-card.light {
  background-color: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
}

.bento-stat-number {
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.bento-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== SERVICES SECTION ===== */
.services-section { background-color: var(--off-white); }

.services-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.services-section-header .section-header {
  margin-bottom: 0;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background-color: var(--bg-light);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background-color var(--transition);
}

.service-card-icon svg { color: var(--orange); }

.service-card:hover .service-card-icon {
  background-color: var(--orange);
}

.service-card:hover .service-card-icon svg {
  color: var(--white);
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
  transition: gap var(--transition), color var(--transition);
}

.service-card-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.service-card:hover .service-card-link {
  color: var(--orange);
  gap: 10px;
}

.service-card:hover .service-card-link svg {
  transform: translateX(3px);
}

/* ===== STATEMENT SECTION ===== */
.statement-section {
  padding: 96px 0;
  background-color: var(--navy-dark);
}

.statement-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.statement-quote-mark {
  font-size: 120px;
  line-height: 0.6;
  color: var(--orange);
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 32px;
  opacity: 0.6;
}

.statement-text {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.statement-text em {
  font-style: normal;
  color: var(--orange-light);
}

.statement-from {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 96px 0;
  background-color: var(--off-white);
}

.stats-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 48px;
  text-align: center;
}

.stats-big-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat-big-item {
  padding: 0 48px;
  position: relative;
}

.stat-big-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.stat-big-item:first-child { padding-left: 0; }
.stat-big-item:last-child { padding-right: 0; }

.stat-big-number {
  font-size: clamp(56px, 8vw, 88px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-big-number span {
  color: var(--orange);
}

.stat-big-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.stat-big-sub {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 96px 0;
  background-color: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230,64,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-banner-text h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.cta-banner-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
}

.cta-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE HOME ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-big-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
  }

  .bento-photo {
    grid-row: auto;
    height: 320px;
  }

  .bento-photo img {
    min-height: 0;
  }

  .hero-rotating-badge {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
  }

  .hero h1 {
    font-size: clamp(40px, 11vw, 60px);
  }

  .services-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .stats-big-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stat-big-item {
    padding: 0 0 32px;
    border-bottom: 1px solid var(--border);
  }

  .stat-big-item::after { display: none !important; }
  .stat-big-item:last-child { border-bottom: none; padding-bottom: 0; }
  .stat-big-item:first-child { padding-left: 0; }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-actions {
    justify-content: center;
  }

  .bento-stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .statement-quote-mark {
    font-size: 80px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .bento-stats-row {
    grid-template-columns: 1fr;
  }
}
