/* ===================================
   SAFUn - Premium Redesign
   Inspired by RIVRE & lucano
   =================================== */

/* CSS Variables */
:root {
  --bg: #fafafa;
  --bg-alt: #ffffff;
  --bg-dark: #1a1a1a;
  --bg-accent: #f0f7f4;
  --text: #1a1a1a;
  --text-light: #555555;
  --text-muted: #888888;
  --accent: #00a86b;
  --accent-light: #66d4a8;
  --accent-pale: #e5f5ed;
  --secondary: #ff6b35;
  --border: #e0e0e0;
  --border-light: #f0f0f0;
  
  --font-sans: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

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

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

/* ===================================
   Loading Screen
   =================================== */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
}

.loading-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  display: block;
  margin-bottom: 2.5rem;
  animation: loadingPulse 1.5s ease infinite;
}

.loading-bar {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.loading-progress {
  width: 0;
  height: 100%;
  background: var(--accent);
  animation: loadingBar 2s var(--ease-out-expo) forwards;
}

@keyframes loadingPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes loadingBar {
  to { width: 100%; }
}

/* ===================================
   Custom Cursor (Desktop only)
   =================================== */
.cursor, .cursor-follower {
  display: none;
}

@media (min-width: 1024px) and (hover: hover) {
  .cursor {
    display: block;
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--text);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.3s, height 0.3s;
  }
  
  .cursor-follower {
    display: block;
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--text);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
    transform: translate(-50%, -50%);
    transition: transform 0.15s var(--ease-out-quart), opacity 0.3s, width 0.3s, height 0.3s;
  }
  
  body:hover .cursor-follower {
    opacity: 0.5;
  }
}

/* ===================================
   Container
   =================================== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6vw;
}

@media (min-width: 1200px) {
  .container {
    padding: 0 80px;
  }
}

/* ===================================
   Utilities
   =================================== */
.sp-only {
  display: inline;
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-large {
  padding: 22px 48px;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease-bounce);
}

.btn:hover .btn-arrow {
  transform: translateX(8px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out-expo);
}

.btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}

.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out-expo);
}

.btn-secondary:hover {
  color: #fff;
}

.btn-secondary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out-expo);
}

.btn-outline:hover {
  color: var(--bg-dark);
  border-color: #fff;
}

.btn-outline:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* ===================================
   Section Labels
   =================================== */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.label-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.label-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}

.section-label-light .label-number,
.section-label-light .label-text {
  color: rgba(255, 255, 255, 0.6);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.section-title-large {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.section-description {
  color: var(--text-light);
  max-width: 560px;
  margin-top: 24px;
  font-size: 0.9375rem;
  line-height: 2;
}

.section-header-light .section-title,
.section-header-light .section-description {
  color: var(--bg);
}

.section-header-light .section-description {
  color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   Header
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 6vw;
  transition: all 0.5s var(--ease-out-expo);
}

.header.scrolled {
  padding: 16px 6vw;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header.hero-dark .logo-text {
  color: var(--bg);
}

.header.hero-dark.scrolled .logo-text {
  color: var(--text);
}

@media (min-width: 1200px) {
  .header {
    padding: 32px 80px;
  }
  .header.scrolled {
    padding: 20px 80px;
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  position: relative;
  z-index: 1001;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  transition: all 0.3s;
  color: #fff;
}

.header.scrolled .logo-text {
  color: var(--text);
}

.logo:hover .logo-text {
  opacity: 0.6;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 48px;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  position: relative;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s var(--ease-out-expo);
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease-out-expo);
}

.header.scrolled .nav-link {
  color: var(--text-light);
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after {
  width: 100%;
}

.header.scrolled .nav-link:hover {
  color: var(--accent);
}

.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex;
    padding: 12px 28px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: all 0.4s var(--ease-out-expo);
  }
  
  .nav-cta:hover {
    background: var(--text);
  }
}

.mobile-menu-btn {
  position: relative;
  z-index: 1001;
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--bg);
  transition: all 0.4s var(--ease-out-expo);
  transform-origin: center;
}

.header.scrolled .mobile-menu-btn span {
  background: var(--text);
}

.mobile-menu-btn.active span:first-child {
  transform: rotate(45deg) translateY(4.5px);
}

.mobile-menu-btn.active span:last-child {
  transform: rotate(-45deg) translateY(-4.5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  text-align: center;
}

.mobile-menu-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  padding: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-out-expo);
}

.mobile-menu-link:hover {
  color: var(--accent);
}

.mobile-menu.active .mobile-menu-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu-link:nth-child(5) { transition-delay: 0.3s; }

/* ===================================
   Hero Section
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hero Slideshow */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide.exiting {
  opacity: 0;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
}

.slide.active img {
  animation: slideZoomIn 6s ease-out forwards;
}

@keyframes slideZoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.4) 0%,
    rgba(26, 26, 26, 0.3) 50%,
    rgba(26, 26, 26, 0.7) 100%
  );
  z-index: 2;
}

.slideshow-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 5;
}

.progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0;
  animation: progressBar 6s linear infinite;
}

@keyframes progressBar {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.slideshow-indicators {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.indicator {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.6);
}

.indicator.active {
  background: var(--accent);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .slideshow-indicators {
    bottom: 24px;
    z-index: 100;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 6vw;
  color: var(--bg);
}

.hero-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-out-expo) 0.5s forwards;
}

.hero-label-line {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-label-text {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.7);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  overflow: hidden;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: titleReveal 1.2s var(--ease-out-expo) forwards;
  white-space: nowrap;
}

.title-line:nth-child(1) .title-word { animation-delay: 0.6s; }
.title-line:nth-child(2) .title-word { animation-delay: 0.75s; }

@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-description {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 2.2;
  margin-bottom: 48px;
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-out-expo) 1s forwards;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1rem;
  }
}

.hero-cta {
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-out-expo) 1.2s forwards;
}

.hero-cta .btn-primary {
  background: var(--bg);
  color: var(--text);
}

.hero-cta .btn-primary::before {
  background: var(--accent);
}

.hero-cta .btn-primary:hover {
  color: var(--bg);
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
  }
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-out-expo) 1.5s forwards;
}

.scroll-text {
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.5);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.scroll-line span {
  display: block;
  width: 100%;
  height: 30px;
  background: var(--bg);
  animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  50% { transform: translateY(200%); }
  50.01% { transform: translateY(-100%); }
  100% { transform: translateY(-100%); }
}

/* ===================================
   Partners Marquee
   =================================== */
.partners-marquee {
  padding: 40px 0;
  background: var(--bg-dark);
  overflow: hidden;
  position: relative;
}

.marquee-link {
  display: block;
  cursor: pointer;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 15s linear infinite;
}

.marquee-link:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
}

.partner-item {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: color 0.3s;
}

.marquee-link:hover .partner-item {
  color: var(--accent);
}

.partner-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1rem;
}

.marquee-label {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  background: var(--bg-dark);
  padding: 8px 16px 8px 32px;
  pointer-events: none;
}

.marquee-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 32px;
  background: linear-gradient(to right, transparent, var(--bg-dark));
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .marquee-label {
    display: none;
  }
  
  .partner-item {
    font-size: 1rem;
  }
}

/* ===================================
   About Section
   =================================== */
.about {
  padding: 160px 0;
  background: var(--bg);
}

@media (min-width: 768px) {
  .about {
    padding: 200px 0;
  }
}

.about-grid {
  display: grid;
  gap: 64px;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
  }
}

.about-image-col {
  position: relative;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image-accent {
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .about-image-accent {
    bottom: -60px;
    right: -40px;
  }
}

.about-image-accent img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
}

.about-image-accent:hover img {
  transform: scale(1.05);
}

.about-content-col {
  padding-top: 40px;
}

@media (min-width: 1024px) {
  .about-content-col {
    position: sticky;
    top: 140px;
    padding-top: 0;
  }
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 2.2;
  margin-top: 32px;
}

.link-arrow-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding: 16px 0;
  position: relative;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.link-arrow-btn::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--text);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.link-arrow-btn:hover::after {
  transform: scaleX(1);
}

.link-arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.5s var(--ease-out-expo);
}

.link-arrow svg {
  width: 100%;
  height: 100%;
}

.link-arrow-btn:hover .link-arrow {
  transform: translateX(8px);
}

.about-statement {
  margin-top: 120px;
  padding-top: 80px;
  position: relative;
}

.statement-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.statement-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  text-align: center;
  line-height: 2.2;
  color: var(--text);
}

/* ===================================
   Visual Break Section
   =================================== */
.visual-break {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.visual-break-inner {
  position: absolute;
  inset: -20%;
}

.visual-break-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-break-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 24, 22, 0.4);
}

.visual-break-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

/* ===================================
   Why Section
   =================================== */
.why {
  padding: 160px 0;
  background: var(--bg-alt);
}

@media (min-width: 768px) {
  .why {
    padding: 200px 0;
  }
}

.why .section-header {
  max-width: 640px;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .why .section-header {
    margin-bottom: 100px;
  }
}

.features-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  position: relative;
  background: var(--bg-alt);
  padding: 48px 32px;
  transition: all 0.5s var(--ease-out-expo);
  overflow: hidden;
}

@media (min-width: 768px) {
  .feature-card {
    padding: 64px 48px;
  }
}

.feature-card:hover {
  background: var(--bg);
}

.feature-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.6s var(--ease-out-expo);
}

.feature-card:hover .feature-line {
  width: 100%;
}

.feature-index {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 32px;
  transition: color 0.5s var(--ease-out-expo);
}

.feature-card:hover .feature-index {
  color: var(--accent);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

@media (min-width: 768px) {
  .feature-title {
    font-size: 1.375rem;
  }
}

.feature-description {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 2;
}

/* ===================================
   Business Section
   =================================== */
.business {
  position: relative;
  padding: 160px 0;
  color: var(--bg);
  overflow: hidden;
}

@media (min-width: 768px) {
  .business {
    padding: 200px 0;
  }
}

.business-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.business-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 24, 22, 0.85);
}

.business .container {
  position: relative;
  z-index: 2;
}

.business .section-header {
  max-width: 640px;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .business .section-header {
    margin-bottom: 100px;
  }
}

.business .section-description {
  color: rgba(255, 255, 255, 0.6);
}

.services-grid {
  display: grid;
  gap: 24px;
}

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

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.service-card {
  position: relative;
  padding: 40px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.5s var(--ease-out-expo);
}

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

.service-card:hover::before {
  width: 100%;
}

.service-header {
  margin-bottom: 24px;
  position: relative;
}

.service-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.6;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.service-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  opacity: 0.5;
}

.service-body {
  flex: 1;
  position: relative;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.service-description {
  font-size: 0.8125rem;
  line-height: 2;
  opacity: 0.6;
}

.service-footer {
  margin-top: 32px;
  position: relative;
}

.service-arrow {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.5s var(--ease-out-expo);
}

.service-arrow svg {
  width: 16px;
  height: 16px;
}

.service-card:hover .service-arrow {
  background: #fff;
  border-color: #fff;
  color: var(--text);
}

/* ===================================
   Growth Section
   =================================== */
.growth {
  padding: 160px 0;
  background: var(--bg);
}

@media (min-width: 768px) {
  .growth {
    padding: 200px 0;
  }
}

.growth .section-header {
  max-width: 640px;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .growth .section-header {
    margin-bottom: 100px;
  }
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-track {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

@media (min-width: 768px) {
  .timeline-track {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-progress {
  width: 100%;
  height: 0;
  background: var(--accent);
  transition: height 0.1s linear;
}

.timeline-items {
  position: relative;
}

.timeline-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 32px;
  padding-bottom: 64px;
}

@media (min-width: 768px) {
  .timeline-item {
    grid-template-columns: 1fr 40px 1fr;
    gap: 48px;
    padding-bottom: 80px;
  }
  
  .timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
    text-align: right;
  }
  
  .timeline-item:nth-child(odd) .timeline-marker {
    grid-column: 2;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 3;
  }
  
  .timeline-item:nth-child(even) .timeline-marker {
    grid-column: 2;
    grid-row: 1;
  }
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.marker-dot {
  width: 12px;
  height: 12px;
  background: var(--bg);
  border: 2px solid var(--border);
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease-out-expo);
}

.timeline-item.visible .marker-dot {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.3);
}

.timeline-phase {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 8px;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

@media (min-width: 768px) {
  .timeline-title {
    font-size: 1.375rem;
  }
}

.timeline-description {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.9;
}

/* ===================================
   Results Section
   =================================== */
.results-section {
  padding: 120px 0;
  background: var(--bg);
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.results-label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
}

.results-count {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.results-marquee-wrapper {
  overflow: hidden;
  margin-top: 40px;
  width: 100%;
}

.results-marquee-track {
  display: flex;
  width: fit-content;
  -webkit-animation: resultsMarquee 60s linear infinite;
  animation: resultsMarquee 60s linear infinite;
  cursor: grab;
  will-change: transform;
}

.results-marquee-track:active {
  cursor: grabbing;
  animation-play-state: paused;
}

.results-marquee-track:hover {
  animation-play-state: paused;
}

.results-marquee-content {
  display: flex;
  gap: 24px;
  padding-right: 24px;
  flex-shrink: 0;
}

@-webkit-keyframes resultsMarquee {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes resultsMarquee {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

/* Mobile: ensure animation works on iOS */
@media (max-width: 768px) {
  .results-marquee-wrapper {
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
  }
  
  .results-marquee-track {
    -webkit-animation: resultsMarquee 60s linear infinite;
    animation: resultsMarquee 60s linear infinite;
    will-change: transform;
  }
  
  .results-marquee-content {
    padding-left: 12px;
    padding-right: 12px;
    gap: 16px;
  }
}

a.results-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.results-card {
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo);
  flex-shrink: 0;
  width: 320px;
  cursor: pointer;
}

.results-card:hover {
  transform: translateY(-8px);
}

.results-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.results-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

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

.results-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.results-card-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.results-card-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
}

.results-card-type {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid var(--accent);
}

/* Detailed Card Styles */
.results-card-detailed {
  width: 420px;
  overflow: hidden;
}

.results-card-detailed .results-card-image {
  height: 260px;
  aspect-ratio: auto;
  margin: 0;
  padding: 0;
}

.results-card-detailed .results-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.results-card-detailed .results-card-content {
  padding: 24px;
  gap: 12px;
}

.results-card-location {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.results-card-detailed .results-card-name {
  font-size: 1.25rem;
  font-weight: 700;
}

.results-card-catch {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-top: 4px;
}

.results-card-detail {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-top: 8px;
}

.results-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.results-tag {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .results-card-detailed {
    width: 300px;
  }
  
  .results-card-detailed .results-card-image {
    height: 180px;
  }
  
  .results-card-detailed .results-card-content {
    padding: 16px;
  }
  
  .results-card-detailed .results-card-name {
    font-size: 1.125rem;
  }
  
  .results-card-catch {
    font-size: 0.875rem;
  }
  
  .results-card-detail {
    font-size: 0.75rem;
  }
  
  .results-tag {
    font-size: 0.625rem;
    padding: 4px 8px;
  }
}

@media (max-width: 768px) {
  .results-section {
    padding: 80px 0;
  }
  
  .results-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .results-marquee-content {
    gap: 16px;
    padding-right: 16px;
  }
  
  .results-card {
    width: 280px;
  }
}

/* ===================================
   Future Section
   =================================== */
.future {
  position: relative;
  padding: 200px 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .future {
    padding: 280px 0;
  }
}

.future-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.future-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.future-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 24, 22, 0.6) 0%,
    rgba(26, 24, 22, 0.75) 100%
  );
}

.future .container {
  position: relative;
  z-index: 2;
}

.future-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: var(--bg);
}

.future-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  line-height: 2.4;
  margin: 32px 0 48px;
}

.future-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.future-tag {
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: #fff;
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease-out-expo);
}

.future-tag:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.future-cta {
  margin-bottom: 0;
}

/* ===================================
   Recruit Section
   =================================== */
.recruit {
  padding: 160px 0;
  background: var(--bg-alt);
}

@media (min-width: 768px) {
  .recruit {
    padding: 200px 0;
  }
}

.recruit-grid {
  display: grid;
  gap: 80px;
}

@media (min-width: 1024px) {
  .recruit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
  }
}

.recruit-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 1024px) {
  .recruit-images {
    position: sticky;
    top: 120px;
  }
}

.recruit-image-main {
  position: relative;
  overflow: hidden;
}

.recruit-image-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

@media (min-width: 768px) {
  .recruit-image-main img {
    height: 500px;
  }
}

.recruit-image-main:hover img {
  transform: scale(1.03);
}

.recruit-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(26, 24, 22, 0.8), transparent);
  color: var(--bg);
}

.recruit-image-caption span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.recruit-image-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.recruit-image-item {
  overflow: hidden;
}

.recruit-image-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

@media (min-width: 768px) {
  .recruit-image-item img {
    height: 220px;
  }
}

.recruit-image-item:hover img {
  transform: scale(1.05);
}

.recruit-content {
  display: flex;
  flex-direction: column;
}

.recruit-header {
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .recruit-header {
    margin-bottom: 56px;
  }
}

.recruit-message {
  margin-bottom: 64px;
  padding: 32px;
  background: var(--bg);
  border-left: 3px solid var(--accent);
}

.recruit-message p {
  font-size: 0.9375rem;
  line-height: 2.2;
  color: var(--text-light);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 80px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.5s var(--ease-out-expo);
}

@media (min-width: 768px) {
  .benefit-item {
    grid-template-columns: 100px 1fr;
    gap: 48px;
    padding: 64px 0;
  }
}

.benefit-item:first-child {
  border-top: 1px solid var(--border);
}

.benefit-item:hover {
  padding-left: 24px;
}

.benefit-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--border);
  transition: color 0.5s var(--ease-out-expo);
}

@media (min-width: 768px) {
  .benefit-number {
    font-size: 2.5rem;
  }
}

.benefit-item:hover .benefit-number {
  color: var(--accent);
}

.benefit-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

@media (min-width: 768px) {
  .benefit-title {
    font-size: 1.5rem;
  }
}

.benefit-description {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 2;
  max-width: 560px;
}

.recruit-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

@media (min-width: 768px) {
  .recruit-cta {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}

/* ===================================
   Contact Section
   =================================== */
.contact {
  padding: 160px 0;
  background: var(--bg-dark);
  color: #fff;
}

@media (min-width: 768px) {
  .contact {
    padding: 200px 0;
  }
}

.contact-wrapper {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact .section-title-large {
  margin-bottom: 24px;
  text-wrap: balance;
}

@media (max-width: 600px) {
  .contact .section-title-large {
    font-size: 1.75rem;
  }
}

.contact-text {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 48px;
  line-height: 2;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.contact-actions .btn-contact-primary,
a.btn-contact-primary,
.btn-contact-primary {
  background: #00a86b !important;
  color: #ffffff !important;
  border: 2px solid #00a86b !important;
  padding: 20px 48px !important;
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.contact-actions .btn-contact-primary:hover,
a.btn-contact-primary:hover,
.btn-contact-primary:hover {
  background: #00c77d !important;
  border-color: #00c77d !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: none !important;
}

@media (max-width: 480px) {
  .contact-actions .btn-contact-primary,
  a.btn-contact-primary,
  .btn-contact-primary {
    padding: 16px 32px !important;
    font-size: 1rem !important;
  }
}

.btn-contact-primary .btn-arrow,
.btn-contact-primary:hover .btn-arrow {
  color: #ffffff !important;
}

.contact-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s;
}

.contact-tel:hover {
  opacity: 0.7;
}

.tel-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}

.tel-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* ===================================
   Company Section
   =================================== */
.company-section {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.company-content {
  display: grid;
  gap: 60px;
  margin-top: 60px;
}

@media (min-width: 1024px) {
  .company-content {
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
  }
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table tr {
  border-bottom: 1px solid var(--border);
}

.company-table th,
.company-table td {
  padding: 20px 0;
  text-align: left;
  vertical-align: top;
  font-size: 0.9375rem;
  line-height: 1.8;
}

.company-table th {
  width: 120px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
  padding-right: 24px;
}

.company-table td {
  color: var(--text);
}

.company-sub {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.company-history-title,
.company-philosophy-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.history-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.history-item {
  display: flex;
  gap: 24px;
  align-items: baseline;
}

.history-year {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.history-text {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.6;
}

.company-philosophy {
  background: var(--bg-light);
  padding: 32px;
  border-radius: 8px;
}

.company-philosophy-text {
  font-size: 0.9375rem;
  line-height: 2;
  color: var(--text);
}

@media (max-width: 768px) {
  .company-section {
    padding: 80px 0;
  }
  
  .company-table th {
    width: 100px;
    font-size: 0.8125rem;
  }
  
  .company-table td {
    font-size: 0.875rem;
  }
  
  .company-philosophy {
    padding: 24px;
  }
  
  .company-philosophy-text br {
    display: none;
  }
}

/* ===================================
   Footer
   =================================== */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-main {
  display: grid;
  gap: 64px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 1.5fr 1fr;
  }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.8;
}

.footer-tagline span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  opacity: 0.6;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.footer-heading {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-nav ul,
.footer-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a,
.footer-info a {
  font-size: 0.8125rem;
  color: var(--text-light);
  transition: color 0.3s;
}

.footer-nav a:hover,
.footer-info a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-credit {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* ===================================
   Scroll Animations
   =================================== */
[data-aos] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-aos][data-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-delay="150"] { transition-delay: 0.15s; }
[data-aos][data-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-delay="300"] { transition-delay: 0.3s; }
[data-aos][data-delay="450"] { transition-delay: 0.45s; }

/* ===================================
   Parallax
   =================================== */
[data-parallax] {
  will-change: transform;
  transition: transform 0.1s linear;
}
