:root {
  --bg: #ffffff;
  --bg-soft: #f8f9fa;
  --surface: rgba(255, 255, 255, 0.95);
  --surface-strong: rgba(248, 249, 250, 1);
  --text: #000000;
  --muted: #4a4a4a;
  --primary: #FF843A;
  --primary-dark: #e67429;
  --primary-soft: #fff3eb;
  --secondary: #000000;
  --secondary-soft: #2a2a2a;
  --stroke: rgba(0, 0, 0, 0.1);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --container: 1180px;
}

*{
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #ffffff;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.page-shell::before {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  background: rgba(255, 132, 58, 0.15);
  animation: floatAura 12s ease-in-out infinite;
}

.page-shell::after {
  width: 350px;
  height: 350px;
  left: -80px;
  bottom: 100px;
  background: rgba(255, 132, 58, 0.1);
  animation: floatAura 15s ease-in-out infinite reverse;
}

.hero,
.section {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero {
  padding: 24px 0 48px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  gap: 32px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  position: sticky;
  top: 18px;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.08rem;
  color: #000000;
}

.brand img {
  height: 44px;
  width: auto;
}

.brand-separator {
  color: #FF843A;
  font-weight: 700;
  margin: 0 4px;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-links a {
  color: #4a4a4a;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: #FF843A;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a:hover {
  color: #FF843A;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.btn-primary {
  background: #FF843A;
  color: white;
  box-shadow: 0 4px 16px rgba(255, 132, 58, 0.25);
}

.nav-cta:hover {
  background: #e67429;
  box-shadow: 0 6px 20px rgba(255, 132, 58, 0.35);
}

.btn-primary:hover {
  background: #e67429;
  box-shadow: 0 6px 20px rgba(255, 132, 58, 0.35);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #FF843A;
  color: #FF843A;
}

.btn-secondary:hover {
  background: #FF843A;
  color: white;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.hero-copy > * {
  animation: fadeLift 0.8s ease both;
}

.hero-copy h1 {
  animation-delay: 0.08s;
}

.hero-copy p {
  animation-delay: 0.16s;
}

.hero-actions {
  animation-delay: 0.22s;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
  padding: 72px 0 24px;
}

.eyebrow,
.section-label {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 132, 58, 0.1);
  border: 1px solid rgba(255, 132, 58, 0.2);
  color: #FF843A;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #FF843A;
}

.hero-copy p,
.section-heading p,
.split-copy p,
.showcase-copy p,
.contact-box p,
.glass-card p,
.process-card li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-trust span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 132, 58, 0.08);
  border: 1px solid rgba(255, 132, 58, 0.15);
  color: #4a4a4a;
  font-size: 0.9rem;
  animation: fadeLift 0.8s ease both;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.metric-card,
.glass-card,
.process-card {
  background: #ffffff;
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.metric-card {
  border-radius: var(--radius-md);
  padding: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.metric-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 132, 58, 0.4);
  box-shadow: 0 8px 24px rgba(255, 132, 58, 0.15);
}

.metric-card strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: #FF843A;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card {
  padding: 24px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  animation: floatCard 8s ease-in-out infinite;
}

.hero-card img {
  width: 100%;
  border-radius: 20px;
}

.section {
  padding: 48px 0 88px;
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.showcase-copy h2,
.contact-box h2 {
  margin: 16px 0;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #FF843A;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.process-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.glass-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 132, 58, 0.4);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(255, 132, 58, 0.15);
}

.challenge-card h3 {
  color: #000000;
}

.challenge-card:hover {
  border-color: rgba(255, 132, 58, 0.3);
}

.glass-card h3,
.process-card h3 {
  margin: 0 0 14px;
  font-size: 1.3rem;
  color: #FF843A;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.split-section.reverse .split-copy {
  order: 2;
}

.split-section.reverse .split-visual {
  order: 1;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.7;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FF843A;
  box-shadow: 0 0 0 5px rgba(255, 132, 58, 0.15);
}

.story-band {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--stroke);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.story-copy h3 {
  margin: 16px 0 12px;
  font-size: 1.75rem;
  color: #FF843A;
}

.story-copy p,
.story-point span,
.mosaic-card p,
.timeline-item p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.75;
}

.story-points {
  display: grid;
  gap: 14px;
}

.story-point {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 132, 58, 0.05);
  border: 1px solid rgba(255, 132, 58, 0.15);
}

.story-point strong,
.mosaic-card h3,
.timeline-item h3,
.testimonial-card strong {
  display: block;
  margin-bottom: 8px;
  color: #FF843A;
}

.image-panel {
  min-height: 520px;
  border-radius: 30px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  background: #ffffff;
}

.image-panel.warm {
  background: linear-gradient(180deg, rgba(255, 132, 58, 0.08), rgba(255, 255, 255, 1));
}

.image-panel.cool {
  background: linear-gradient(180deg, rgba(248, 249, 250, 1), rgba(255, 255, 255, 1));
}

.image-panel img {
  max-height: 420px;
  width: auto;
}

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

.process-card {
  border-radius: var(--radius-xl);
  padding: 30px;
}

.process-card.accent {
  background: linear-gradient(180deg, rgba(255, 132, 58, 0.08), rgba(255, 255, 255, 1));
}

.process-card ol {
  margin: 20px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 14px;
}

.features-section {
  padding-top: 24px;
}

.feature-mosaic {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.9fr;
  gap: 22px;
}

.benefits-mosaic {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefits-mosaic .mosaic-card:nth-child(4),
.benefits-mosaic .mosaic-card:nth-child(5) {
  grid-column: span 1;
}

.mosaic-card {
  min-height: 240px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.mosaic-card:hover,
.timeline-item:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 132, 58, 0.4);
  box-shadow: 0 8px 24px rgba(255, 132, 58, 0.15);
}

.warm-card {
  background: linear-gradient(180deg, rgba(255, 132, 58, 0.1), rgba(255, 255, 255, 1));
}

.dark-card {
  background: linear-gradient(180deg, rgba(248, 249, 250, 1), rgba(255, 255, 255, 1));
}

.outline-card {
  background: #ffffff;
  border: 2px solid rgba(255, 132, 58, 0.3);
}

.tall-card {
  min-height: 300px;
}

.mosaic-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #FF843A;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timeline-section {
  padding-top: 16px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline-item {
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 18px;
  background: #FF843A;
  color: #fff;
  font-weight: 800;
}

.showcase-card,
.contact-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  border-radius: 32px;
  padding: 32px;
}

.showcase-card {
  position: relative;
  overflow: hidden;
}

.showcase-card::after {
  content: '';
  position: absolute;
  inset: auto -80px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 132, 58, 0.12), transparent 68%);
  pointer-events: none;
}

.showcase-visual {
  display: flex;
  justify-content: center;
}

.showcase-visual img {
  max-height: 360px;
  animation: floatCard 9s ease-in-out infinite reverse;
}

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

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

.testimonial-card {
  padding: 26px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.featured-testimonial {
  background: linear-gradient(180deg, rgba(255, 132, 58, 0.08), rgba(255, 255, 255, 1));
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-inline {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.mission-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.mission-band {
  margin-top: 0;
}

.mission-visual {
  display: flex;
  justify-content: center;
}

.partners-carousel {
  margin-top: 32px;
  overflow: hidden;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  gap: 20px;
  animation: scroll 20s linear infinite;
}

.partner-card {
  min-width: 200px;
  height: 140px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 132, 58, 0.4);
  box-shadow: 0 8px 24px rgba(255, 132, 58, 0.15);
}

.partner-placeholder {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.cta-final-section {
  padding-bottom: 64px;
}

.cta-final-box {
  background: linear-gradient(135deg, rgba(255, 132, 58, 0.1), rgba(255, 255, 255, 1));
  border: 2px solid rgba(255, 132, 58, 0.3);
  border-radius: 32px;
  padding: 48px;
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-final-content {
  max-width: 720px;
  margin: 0 auto 32px;
}

.cta-final-content h2 {
  font-size: 2.2rem;
  margin: 16px 0;
  color: #FF843A;
}

.cta-final-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-220px * 6));
  }
}

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

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatAura {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(18px, -14px, 0);
  }
}

@media (max-width: 1100px) {
  .hero-content,
  .split-section,
  .showcase-card,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .story-band,
  .feature-mosaic,
  .benefits-mosaic,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .benefits-mosaic .mosaic-card:nth-child(4),
  .benefits-mosaic .mosaic-card:nth-child(5) {
    grid-column: span 1;
  }

  .hero-metrics,
  .process-columns,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .split-copy,
  .split-section.reverse .split-visual {
    order: initial;
  }

  .contact-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 820px) {
  .navbar {
    border-radius: 24px;
    padding: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero {
    padding-top: 16px;
  }

  .hero-content {
    padding-top: 42px;
  }

  .image-panel {
    min-height: auto;
  }

  .page-shell::before,
  .page-shell::after {
    opacity: 0.2;
  }

  .cta-final-box {
    padding: 32px 24px;
  }

  .cta-final-content h2 {
    font-size: 1.75rem;
  }

  .cta-inline {
    flex-direction: column;
    align-items: stretch;
  }
}

.section-heading p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .hero,
  .section {
    width: min(calc(100% - 20px), var(--container));
  }

  .hero-copy h1 {
    font-size: 2.25rem;
  }

  .section-heading h2,
  .split-copy h2,
  .showcase-copy h2,
  .contact-box h2 {
    font-size: 1.9rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }
}
