

.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    #06001F 0%,
    #0A0039 30%,
    #160B52 55%,
    #241F66 80%,
    #0A0039 100%
  );
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 300px;
  opacity: 0.15;
  mix-blend-mode: overlay;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(189, 155, 78, 0.18) 0%, transparent 65%);
}

.hero-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-geo::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(10, 0, 57, 0.3) 50%, transparent 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-image-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  transition: transform 8s ease;
  display: block;
}

.hero-image-panel img::after,
.hero-image-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 50%, rgba(30, 22, 14, 0.6));
  pointer-events: none;
}

.hero-image-panel .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #241F66 0%, #0A0039 40%, #2E2480 80%, #160B52 100%);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-image-panel .img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 50%, rgba(30, 22, 14, 0.6));
}

.hero-image-label {
  position: absolute;
  bottom: 60px;
  right: 40px;
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(120px, 18vh, 200px) clamp(20px, 5vw, 80px) clamp(40px, 6vh, 80px);
  max-width: 58%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.9s var(--ease-smooth) 0.3s forwards;
}

.hero-eyebrow .label {
  color: var(--gold-light);
}

.hero-eyebrow .gold-line {
  background: var(--gold-light);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(54px, 8.5vw, 124px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 32px;
  padding-bottom: 0.16em;
  overflow: hidden;
}

.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: slideUp 0.9s var(--ease-smooth) forwards;
}

.hero-title .line:nth-child(1) { animation-delay: 0.5s; }
.hero-title .line:nth-child(2) { animation-delay: 0.65s; }
.hero-title .line:nth-child(3) { animation-delay: 0.8s; }

.hero-title .italic {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeSlideUp 0.9s var(--ease-smooth) 1s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.9s var(--ease-smooth) 1.15s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.hero-scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollPulse 2s ease infinite;
}

.marquee-section {
  padding: 0;
  overflow: hidden;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

.marquee-item .dot {
  width: 4px;
  height: 4px;
  margin-right: 24px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.intro-section {
  background: var(--white);
  overflow: hidden;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.intro-text .display-lg {
  margin-bottom: 28px;
}

.intro-text p {
  margin-bottom: 20px;
}

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--divider);
}

.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--indigo);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-item .stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-top: 6px;
}

.intro-visual {
  position: relative;
}

.intro-visual-main {
  width: 100%;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.intro-visual-accent {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 55%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy), var(--indigo));
  z-index: -1;
}

.intro-visual-tag {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--white);
  padding: 20px;
  border: 1px solid var(--divider);
}

.intro-visual-tag p {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--indigo);
  margin: 0;
}

.intro-visual-tag span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.services-teaser {
  background: var(--mist);
}

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

.service-card-mini {
  background: var(--white);
  padding: clamp(28px, 3vw, 48px);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-smooth);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card-mini::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease-smooth);
  z-index: 0;
}

.service-card-mini:hover::before {
  transform: scaleY(1);
}

.service-card-mini > * {
  position: relative;
  z-index: 1;
  transition: color 0.4s var(--ease-smooth);
}

.service-card-mini:hover .service-mini-num,
.service-card-mini:hover .service-mini-title,
.service-card-mini:hover .service-mini-desc,
.service-card-mini:hover .btn-arrow {
  color: var(--white) !important;
}

.service-card-mini:hover .btn-arrow::after {
  background: var(--white);
}

.service-mini-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold);
  font-style: italic;
}

.service-mini-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: border-color 0.4s;
}

.service-card-mini:hover .service-mini-icon {
  border-color: rgba(255, 255, 255,0.2);
}

.service-mini-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}

.service-mini-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.7;
  flex: 1;
}

.process-section {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.process-section .label {
  color: var(--gold-light);
}

.process-section .display-lg {
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  margin-top: 64px;
}

.process-step {
  background: var(--navy);
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
}

.process-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.6s var(--ease-smooth);
}

.process-step:hover::after {
  width: 100%;
}

.step-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  margin-bottom: 24px;
  display: block;
}

.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.reviews-teaser {
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.reviews-marquee {
  overflow: hidden;
  margin: 0 calc(-1 * clamp(20px, 5vw, 80px));
}

.reviews-track {
  display: flex;
  gap: 24px;
  animation: marquee 40s linear infinite;
  width: max-content;
  padding: 0 12px;
}

.review-card-mini {
  background: var(--mist);
  border: 1px solid var(--divider);
  padding: 32px;
  width: 380px;
  flex-shrink: 0;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-stars span {
  color: var(--gold);
  font-size: 14px;
}

.review-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 20px;
}

.review-author {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--indigo) 50%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 80px);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.12;
}

.cta-banner .display-lg {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 40px;
}

.footer {
  background: var(--navy-deep);
  padding: clamp(60px, 8vw, 100px) 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: 60px;
}

.footer-brand .footer-logo-img {
  height: 38px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s;
  position: relative;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-col .contact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 12px;
}

.footer-col .contact-item span:first-child {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.footer-col .contact-item span:last-child {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.05em;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.4; }
}

@media (max-width: 1100px) {
  .services-teaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 860px) {
  .hero-content {
    max-width: 100%;
  }

  .hero-image-panel {
    display: none;
  }

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

  .intro-visual {
    display: none;
  }

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

@media (max-width: 600px) {
  .services-teaser-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    max-width: 100%;
    padding-top: 120px;
  }

  .marquee-track {
    animation-duration: 25s;
  }

  .intro-section {
    padding: clamp(60px, 8vw, 100px) clamp(16px, 4vw, 40px);
  }

  .intro-label {
    font-size: 10px;
  }

  .services-teaser-section,
  .process-section,
  .reviews-teaser-section,
  .cta-banner-section {
    padding: clamp(60px, 8vw, 100px) clamp(16px, 4vw, 40px);
  }

  .service-teaser-card {
    padding: 32px 24px;
  }

  .process-step {
    padding: 32px 24px;
  }

  .footer-inner {
    padding: clamp(60px, 8vw, 100px) clamp(16px, 4vw, 40px) 32px;
  }

  .cta-banner .display-lg {
    font-size: clamp(32px, 7vw, 60px);
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: clamp(44px, 13vw, 70px);
    line-height: 0.95;
  }

  .hero-subtitle {
    font-size: 14px;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-scroll-hint {
    display: none;
  }

  .marquee-item {
    font-size: clamp(24px, 7vw, 40px);
    padding: 0 clamp(16px, 4vw, 40px);
  }

  .services-teaser-grid {
    gap: 12px;
  }

  .service-teaser-card {
    padding: 24px 20px;
  }

  .process-grid {
    gap: 12px;
  }

  .footer-grid {
    gap: 40px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .reviews-teaser-section .review-teaser-text {
    font-size: clamp(20px, 5vw, 28px);
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 38px;
  }
}
