@layer base, layout, components, utilities, pages;

@layer pages {

  /* =========================================
     Design System - 2025 Edition
     ========================================= */
  .front-page {
    /* Prevent horizontal overflow from 100vw elements */
    overflow-x: clip;
    /* Full-bleed container */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    --fp-gold: #b38f2d;
    --fp-gold-light: #d8b768;
    --fp-gold-pale: #f5dfa6;
    --fp-dark: #0a0908;
    --fp-dark-warm: #141210;
    --fp-dark-surface: #1a1816;
    --fp-cream: #fffcf5;
    --fp-cream-dark: #f8f4eb;
    --fp-border: rgba(179, 143, 45, 0.15);
    --fp-border-strong: rgba(179, 143, 45, 0.4);
    --fp-shadow-sm: 0 2px 12px rgba(43, 32, 16, 0.04);
    --fp-shadow-md: 0 8px 32px rgba(43, 32, 16, 0.08);
    --fp-shadow-lg: 0 16px 48px rgba(43, 32, 16, 0.12);
    --fp-section-gap: clamp(48px, 7vw, 88px);
    --fp-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --fp-ease-out: cubic-bezier(0.0, 0, 0.2, 1);
    --fp-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  /* =========================================
     Hero Section - 2025 Modern Design
     =========================================
     Features:
     - Solid dark base with gold accents
     - Grain/noise texture overlay
     - Bold typography with vertical accent
     - Glassmorphism CTA buttons
     - Staggered reveal animations
     - Micro-interactions
     ========================================= */

  .hero--2025 {
    position: relative;
    width: 100%;
    min-height: clamp(480px, 75vh, 680px);
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--fp-dark);
  }

  /* Background Layers */
  .hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero__bg-image {
    position: absolute;
    inset: 0;
    background: url('../images/index/main.png') center 30% / cover no-repeat;
    transform: scale(1.05);
    animation: hero2025Zoom 25s var(--fp-ease-out) forwards;
  }

  @keyframes hero2025Zoom {
    to { transform: scale(1); }
  }

  /* Grain Texture Overlay */
  .hero__bg-grain {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    mix-blend-mode: overlay;
  }

  /* Dark Overlay */
  .hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: var(--fp-dark);
    opacity: 0.65;
  }

  /* Decorative Lines */
  .hero__decor {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }

  .hero__decor-line {
    position: absolute;
    background: var(--fp-gold);
    opacity: 0;
    animation: decorLineReveal 1.2s var(--fp-ease) forwards;
  }

  .hero__decor-line--left {
    left: clamp(24px, 5vw, 80px);
    top: 15%;
    bottom: 15%;
    width: 1px;
    transform-origin: top;
    animation-delay: 0.8s;
  }

  .hero__decor-line--right {
    right: clamp(24px, 5vw, 80px);
    top: 15%;
    bottom: 15%;
    width: 1px;
    transform-origin: bottom;
    animation-delay: 1s;
  }

  @keyframes decorLineReveal {
    0% { opacity: 0; transform: scaleY(0); }
    100% { opacity: 0.3; transform: scaleY(1); }
  }

  /* Corner Accents */
  .hero__decor-corner {
    position: absolute;
    width: clamp(40px, 6vw, 80px);
    height: clamp(40px, 6vw, 80px);
    border: 1px solid var(--fp-gold);
    opacity: 0;
    animation: cornerReveal 0.8s var(--fp-ease) 1.2s forwards;
  }

  .hero__decor-corner--tl {
    top: clamp(24px, 5vw, 60px);
    left: clamp(24px, 5vw, 80px);
    border-right: none;
    border-bottom: none;
  }

  .hero__decor-corner--br {
    bottom: clamp(24px, 5vw, 60px);
    right: clamp(24px, 5vw, 80px);
    border-left: none;
    border-top: none;
  }

  @keyframes cornerReveal {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 0.4; transform: scale(1); }
  }

  /* Vertical Accent Text */
  .hero__accent {
    position: absolute;
    left: clamp(32px, 6vw, 100px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0;
    animation: accentReveal 1s var(--fp-ease) 1.4s forwards;
  }

  .hero__accent-text {
    display: block;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: "DM Sans", var(--font-sans);
    font-size: clamp(0.65rem, 1vw, 0.75rem);
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--fp-gold);
  }

  @keyframes accentReveal {
    0% { opacity: 0; transform: translateY(-50%) translateX(-10px); }
    100% { opacity: 0.7; transform: translateY(-50%) translateX(0); }
  }

  /* Main Container */
  .hero__container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    padding: clamp(60px, 10vh, 100px) clamp(24px, 5vw, 48px);
    text-align: center;
  }

  /* Content Block */
  .hero--2025 .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(24px, 4vw, 40px);
  }

  /* Title Styles - Bold Typography */
  .hero--2025 .hero__title {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0;
    transform: translateY(30px);
    animation: heroItemReveal 1s var(--fp-ease) 0.2s forwards;
  }

  .hero--2025 .hero__title .hero__catch-line--stack {
    display: flex;
    flex-direction: column;
    gap: 0.1em;
  }

  .hero--2025 .hero__title .hero__catch-word--main {
    display: block;
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
    line-height: 1.1;
  }

  .hero--2025 .hero__title .hero__catch-word--focus {
    display: inline-block;
    position: relative;
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 600;
    color: var(--fp-gold-light);
    margin-top: 0.15em;
  }

  .hero--2025 .hero__title .hero__catch-word--focus::after {
    content: '';
    position: absolute;
    bottom: -0.1em;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--fp-gold);
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineReveal 0.8s var(--fp-ease) 1s forwards;
  }

  @keyframes underlineReveal {
    to { transform: scaleX(1); }
  }

  /* Lead Text */
  .hero--2025 .hero__lead {
    margin: 0;
    max-width: 580px;
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    transform: translateY(20px);
    animation: heroItemReveal 0.9s var(--fp-ease) 0.5s forwards;
  }

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

  /* CTA Buttons - Glassmorphism */
  .hero--2025 .hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(12px, 2vw, 20px);
    margin-top: clamp(8px, 2vw, 16px);
    opacity: 0;
    transform: translateY(20px);
    animation: heroItemReveal 0.9s var(--fp-ease) 0.8s forwards;
  }

  .hero__cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 1vw, 12px);
    padding: clamp(14px, 2vw, 18px) clamp(28px, 4vw, 40px);
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s var(--fp-ease);
  }

  /* Primary CTA - Solid Gold */
  .hero__cta--primary {
    background: var(--fp-gold);
    color: var(--fp-dark);
    box-shadow:
      0 4px 24px rgba(179, 143, 45, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .hero__cta--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--fp-gold-light);
    transform: translateX(-101%);
    transition: transform 0.4s var(--fp-ease);
  }

  .hero__cta--primary:hover {
    transform: translateY(-3px);
    box-shadow:
      0 8px 32px rgba(179, 143, 45, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }

  .hero__cta--primary:hover::before {
    transform: translateX(0);
  }

  .hero__cta--primary .hero__cta-text,
  .hero__cta--primary .hero__cta-icon {
    position: relative;
    z-index: 1;
  }

  /* Outline CTA - Glassmorphism */
  .hero__cta--outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .hero__cta--outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s var(--fp-ease);
  }

  .hero__cta--outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
  }

  .hero__cta--outline:hover::before {
    opacity: 1;
  }

  /* CTA Icon */
  .hero__cta-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s var(--fp-ease);
  }

  .hero__cta-icon svg {
    width: clamp(16px, 1.5vw, 20px);
    height: clamp(16px, 1.5vw, 20px);
  }

  .hero__cta:hover .hero__cta-icon {
    transform: translateX(4px);
  }

  /* Scroll Indicator */
  .hero__scroll {
    position: absolute;
    bottom: clamp(32px, 5vh, 48px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(8px, 1.5vw, 12px);
    z-index: 4;
    opacity: 0;
    animation: heroItemReveal 0.8s var(--fp-ease) 1.5s forwards;
  }

  .hero__scroll-text {
    font-family: "DM Sans", var(--font-sans);
    font-size: clamp(0.6rem, 0.8vw, 0.7rem);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
  }

  .hero__scroll-line {
    width: 1px;
    height: clamp(40px, 6vh, 60px);
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
  }

  .hero__scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: var(--fp-gold);
    animation: scrollLineMove 2s var(--fp-ease) infinite;
  }

  @keyframes scrollLineMove {
    0% { transform: translateY(-100%); }
    50% { transform: translateY(250%); }
    100% { transform: translateY(250%); }
  }

  /* =========================================
     Hero Responsive - Mobile First
     ========================================= */
  @media (max-width: 900px) {
    .hero__accent {
      display: none;
    }

    .hero__decor-line--left,
    .hero__decor-line--right {
      display: none;
    }
  }

  @media (max-width: 640px) {
    .hero--2025 {
      min-height: clamp(400px, 70vh, 520px);
    }

    .hero__container {
      padding: clamp(60px, 10vh, 80px) clamp(20px, 5vw, 32px);
    }

    .hero--2025 .hero__title .hero__catch-word--main {
      font-size: clamp(2.2rem, 12vw, 3.2rem);
    }

    .hero--2025 .hero__title .hero__catch-word--focus {
      font-size: clamp(1.8rem, 9vw, 2.6rem);
    }

    .hero--2025 .hero__actions {
      flex-direction: column;
      width: 100%;
    }

    .hero__cta {
      width: 100%;
      justify-content: center;
    }

    .hero__decor-corner {
      width: 30px;
      height: 30px;
    }

    .hero__scroll {
      bottom: clamp(20px, 4vh, 32px);
    }
  }

  /* Reduced Motion */
  @media (prefers-reduced-motion: reduce) {
    .hero__bg-image {
      animation: none;
      transform: scale(1);
    }

    .hero--2025 .hero__title,
    .hero--2025 .hero__lead,
    .hero--2025 .hero__actions,
    .hero__scroll,
    .hero__decor-line,
    .hero__decor-corner,
    .hero__accent {
      animation: none;
      opacity: 1;
      transform: none;
    }

    .hero__scroll-line::after {
      animation: none;
    }

    .hero__cta::before {
      transition: none;
    }
  }

  /* CTA Ripple Effect */
  .hero__cta-ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: rippleEffect 0.6s var(--fp-ease-out) forwards;
    pointer-events: none;
  }

  .hero__cta--primary .hero__cta-ripple {
    background: rgba(255, 255, 255, 0.3);
  }

  @keyframes rippleEffect {
    to {
      transform: translate(-50%, -50%) scale(15);
      opacity: 0;
    }
  }

  /* Section Base - Full-bleed sections */
  .front-section {
    position: relative;
    width: 100%;
    padding: var(--fp-section-gap) clamp(20px, 5vw, 80px);
    box-sizing: border-box;
  }

  .front-section__inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  /* Section Header */
  .front-section .section__head {
    position: relative;
    display: grid;
    gap: clamp(6px, 1vw, 10px);
    margin-bottom: clamp(32px, 5vw, 48px);
    padding-left: clamp(16px, 2.5vw, 24px);
    border-left: 2px solid var(--fp-gold);
  }

  .front-section .section__head::before {
    content: '';
    position: absolute;
    left: -2px;
    top: -8px;
    width: 6px;
    height: 6px;
    background: var(--fp-gold);
    border-radius: 50%;
  }

  .front-section .section__subtitle {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(0.65rem, 0.9vw, 0.72rem);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--fp-gold);
  }

  .front-section .section__title {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.3;
    color: var(--color-text-strong);
  }

  .front-section .section__title::before,
  .front-section .section__title::after { display: none; }

  .front-section .section__lead {
    margin: clamp(4px, 0.8vw, 8px) 0 0;
    max-width: 56ch;
    font-size: clamp(0.88rem, 1.3vw, 0.96rem);
    line-height: 1.75;
    color: var(--color-text-subtle);
  }

  /* Section Footer */
  .front-section__footer {
    display: flex;
    justify-content: center;
    margin-top: clamp(32px, 5vw, 48px);
  }

  .front-section .section__more {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--color-text-strong);
    background: transparent;
    border: 1px solid var(--fp-border-strong);
    transition: all 0.25s var(--fp-ease);
  }

  .front-section .section__more::after {
    content: '\2192';
    transition: transform 0.25s var(--fp-ease);
  }

  .front-section .section__more:hover {
    background: rgba(179, 143, 45, 0.08);
    border-color: var(--fp-gold);
    color: var(--fp-gold);
  }

  .front-section .section__more:hover::after { transform: translateX(4px); }

  /* Section Backgrounds */
  .front-section--solutions { background: linear-gradient(180deg, var(--fp-cream) 0%, var(--fp-cream-dark) 100%); }
  .front-section--cases { background: #fff; }
  .front-section--guides { background: linear-gradient(180deg, #fafaf8 0%, #f5f4f1 100%); }
  .front-section--process { background: var(--fp-cream); }

  .front-section--industries {
    background: var(--fp-dark);
    color: #fff;
  }

  .front-section--industries .section__head { border-left-color: var(--fp-gold-light); }
  .front-section--industries .section__head::before { background: var(--fp-gold-light); }
  .front-section--industries .section__title { color: inherit; }
  .front-section--industries .section__lead { color: rgba(255, 255, 255, 0.7); }

  /* Intro Block */
  .front-section__intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 4.5vw, 48px);
    align-items: center;
    margin-bottom: clamp(28px, 4.5vw, 48px);
  }

  .front-section__intro-copy {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.8vw, 16px);
  }

  .front-section__intro-text {
    margin: 0;
    font-size: clamp(0.9rem, 1.3vw, 0.98rem);
    line-height: 1.85;
    color: var(--color-text-subtle);
  }

  .front-section__intro-media {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    box-shadow: var(--fp-shadow-lg);
  }

  .front-section__intro-media::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(179, 143, 45, 0.1);
    z-index: 1;
    pointer-events: none;
  }

  .front-section__intro-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--fp-ease);
  }

  .front-section__intro-media:hover img { transform: scale(1.04); }

  .section--solution .front-section__intro-media { order: 2; }
  .section--solution .front-section__intro-copy { order: 1; }
  .section--cases .front-section__intro-media { order: 1; }
  .section--cases .front-section__intro-copy { order: 2; }
  .section--guides .front-section__intro-media { order: 2; }
  .section--guides .front-section__intro-copy { order: 1; }

  @media (max-width: 800px) {
    .front-section__intro { grid-template-columns: 1fr; gap: clamp(20px, 4vw, 28px); }
    .front-section__intro-media,
    .front-section__intro-copy { order: unset !important; }
    .front-section__intro-media { max-height: 260px; }
  }

  /* Card Carousel */
  .frontCarousel {
    position: relative;
    width: 100%;
    min-width: 0;
  }

  .front-section--solutions .frontCarousel { --fp-carousel-bg: #f8f4eb; }
  .front-section--cases .frontCarousel { --fp-carousel-bg: #fff; }
  .front-section--guides .frontCarousel { --fp-carousel-bg: #f5f4f1; }

  .frontCarousel__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 12px 0;
    width: 100%;
    min-width: 0;
  }

  .frontCarousel__viewport::-webkit-scrollbar { display: none; }

  .frontCards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .frontCards__item {
    scroll-snap-align: start;
    margin: 0;
    padding: 0;
  }

  /* Mobile: horizontal scroll */
  @media (max-width: 900px) {
    .frontCards {
      display: flex;
      gap: 16px;
      width: max-content;
    }
    .frontCards__item {
      flex: 0 0 280px;
      max-width: 280px;
    }
  }

  /* Card */
  .frontCard {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--fp-border);
    overflow: hidden;
    transition: all 0.3s var(--fp-ease);
  }

  .frontCard:hover {
    transform: translateY(-3px);
    box-shadow: var(--fp-shadow-md);
    border-color: var(--fp-border-strong);
  }

  .frontCard__link {
    position: absolute;
    inset: 0;
    z-index: 2;
  }

  .frontCard__thumb { position: relative; width: 100%; }

  .frontCard__thumbInner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f5f3ee;
  }

  .frontCard__thumbInner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26, 22, 18, 0.35) 100%);
    opacity: 0;
    transition: opacity 0.3s var(--fp-ease);
  }

  .frontCard:hover .frontCard__thumbInner::after { opacity: 1; }

  .frontCard__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--fp-ease);
  }

  .frontCard:hover .frontCard__thumb img { transform: scale(1.05); }

  .frontCard__thumb img.frontCard__thumb--logo {
    object-fit: contain;
    padding: clamp(12px, 2vw, 18px);
    background: rgba(179, 143, 45, 0.03);
  }

  .frontCard__badge {
    position: absolute;
    left: clamp(10px, 1.5vw, 12px);
    top: clamp(10px, 1.5vw, 12px);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 1;
  }

  .frontCard__badge .frontCard__category {
    padding: 0.18rem 0.55rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(26, 22, 18, 0.75);
    backdrop-filter: blur(4px);
  }

  .frontCard__badge .frontCard__date {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }

  .frontCard__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: clamp(12px, 1.8vw, 16px);
  }

  .frontCard__category--plain {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--fp-gold);
  }

  .frontCard__date--plain {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
  }

  .frontCard__title {
    margin: 0;
    font-size: clamp(0.85rem, 1.2vw, 0.92rem);
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-text-strong);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Carousel Arrows */
  .frontCarousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid var(--fp-border);
    cursor: pointer;
    z-index: 4;
    box-shadow: var(--fp-shadow-sm);
    transition: all 0.25s var(--fp-ease);
  }

  .frontCarousel__arrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border: 1.5px solid var(--color-text-strong);
    border-top: none;
    border-right: none;
    transform: rotate(45deg) translateX(1px);
  }

  .frontCarousel__arrow--next::before { transform: rotate(-135deg) translateX(1px); }
  .frontCarousel__arrow--prev { left: -50px; }
  .frontCarousel__arrow--next { right: -50px; }

  @media (max-width: 1200px) {
    .frontCarousel__arrow--prev { left: -45px; }
    .frontCarousel__arrow--next { right: -45px; }
  }

  .frontCarousel__arrow:hover {
    background: var(--fp-gold);
    border-color: var(--fp-gold);
  }

  .frontCarousel__arrow:hover::before { border-color: #fff; }
  .frontCarousel__arrow[disabled] { opacity: 0.25; pointer-events: none; }

  .frontCarousel__dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: clamp(16px, 2.5vw, 22px);
  }

  .frontCarousel__dot {
    width: 6px;
    height: 6px;
    border: none;
    border-radius: 50%;
    background: rgba(179, 143, 45, 0.2);
    cursor: pointer;
    transition: all 0.25s var(--fp-ease);
  }

  .frontCarousel__dot.is-active {
    background: var(--fp-gold);
    transform: scale(1.3);
  }

  /* Desktop: hide arrows and dots (grid layout, no scroll) */
  @media (min-width: 901px) {
    .frontCarousel__arrow { display: none; }
    .frontCarousel__dots { display: none; }
  }

  /* Mobile: hide arrows (touch scroll instead) */
  @media (max-width: 900px) {
    .frontCarousel__arrow { display: none; }
  }

  /* Industry Summary */
  .industry-summary {
    display: grid;
    gap: clamp(8px, 1.2vw, 12px);
    margin: clamp(24px, 4vw, 36px) 0 0;
    padding: 0;
  }

  .industry-summary__row {
    display: grid;
    grid-template-columns: clamp(85px, 14vw, 130px) 1fr;
    gap: clamp(12px, 2vw, 20px);
    padding: clamp(12px, 1.8vw, 18px) clamp(14px, 2vw, 20px);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.25s var(--fp-ease);
  }

  .industry-summary__row:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(216, 183, 104, 0.25);
  }

  .industry-summary__label {
    margin: 0;
    font-size: clamp(0.8rem, 1.1vw, 0.88rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--fp-gold-light);
  }

  .industry-summary__point {
    margin: 0;
    font-size: clamp(0.85rem, 1.2vw, 0.92rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
  }

  .industry-summary__cta {
    margin-top: clamp(24px, 4vw, 36px);
    text-align: center;
  }

  .front-section--industries .btn--outline {
    background: transparent;
    border: 1px solid rgba(216, 183, 104, 0.45);
    color: var(--fp-gold-light);
    transition: all 0.25s var(--fp-ease);
  }

  .front-section--industries .btn--outline:hover {
    background: rgba(216, 183, 104, 0.1);
    border-color: var(--fp-gold-light);
    color: var(--fp-gold-pale);
  }

  @media (max-width: 600px) {
    .industry-summary__row { grid-template-columns: 1fr; gap: 4px; }
  }

  /* Process Steps */
  .process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(12px, 2vw, 18px);
    list-style: none;
    margin: clamp(24px, 4vw, 36px) 0 0;
    padding: 0;
  }

  .process-steps::before { display: none; }

  .process-steps__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(20px, 2.5vw, 28px) clamp(14px, 2vw, 20px) clamp(24px, 3vw, 32px);
    background: #fff;
    border: 1px solid var(--fp-border);
    transition: all 0.25s var(--fp-ease);
  }

  .process-steps__item::before { display: none; }

  .process-steps__item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--fp-gold), transparent);
    transform: scaleX(0);
    transition: transform 0.3s var(--fp-ease);
  }

  .process-steps__item:hover {
    border-color: var(--fp-border-strong);
    box-shadow: var(--fp-shadow-sm);
  }

  .process-steps__item:hover::after { transform: scaleX(1); }

  .process-steps__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: clamp(12px, 2vw, 16px);
    font-family: "DM Sans", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    background: var(--fp-gold);
    border-radius: 50%;
  }

  .process-steps__title {
    margin: 0 0 clamp(6px, 1vw, 10px);
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-text-strong);
  }

  .process-steps__detail {
    margin: 0;
    font-size: clamp(0.78rem, 1vw, 0.85rem);
    line-height: 1.7;
    color: var(--color-text-subtle);
    max-width: 280px;
  }

  .process-steps__cta {
    margin-top: clamp(28px, 4.5vw, 40px);
    text-align: center;
  }

  @media (max-width: 800px) {
    .process-steps { grid-template-columns: 1fr; gap: clamp(14px, 2.5vw, 20px); }

    .process-steps__item {
      flex-direction: row;
      text-align: left;
      padding: clamp(16px, 3vw, 22px);
      gap: clamp(14px, 2.5vw, 18px);
    }

    .process-steps__item::after {
      left: 0;
      right: auto;
      bottom: 0;
      top: 0;
      width: 2px;
      height: auto;
      background: linear-gradient(180deg, transparent, var(--fp-gold), transparent);
      transform: scaleY(0);
    }

    .process-steps__item:hover::after { transform: scaleY(1); }

    .process-steps__number {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      font-size: 1.1rem;
      margin-bottom: 0;
    }

    .process-steps__content { flex: 1; }
    .process-steps__detail { max-width: none; }
  }

  /* Strengths Block - Full-bleed */
  .strengths-block {
    width: 100%;
    padding: var(--fp-section-gap) clamp(20px, 5vw, 80px);
    box-sizing: border-box;
    background: #fff;
  }

  .strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(12px, 1.8vw, 16px);
    list-style: none;
    margin: clamp(24px, 4vw, 36px) 0 0;
    padding: 0;
  }

  .strengths-grid__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: clamp(16px, 2.2vw, 20px);
    background: var(--fp-cream);
    border: 1px solid var(--fp-border);
    transition: all 0.25s var(--fp-ease);
  }

  .strengths-grid__item:hover {
    border-color: var(--fp-border-strong);
    box-shadow: var(--fp-shadow-sm);
  }

  .strengths-grid__title {
    margin: 0;
    font-size: clamp(0.88rem, 1.2vw, 0.96rem);
    font-weight: 600;
    color: var(--color-text-strong);
  }

  .strengths-grid__text {
    margin: 0;
    font-size: clamp(0.8rem, 1vw, 0.86rem);
    line-height: 1.7;
    color: var(--color-text-subtle);
  }

  .strengths-block__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(10px, 1.5vw, 14px);
    margin-top: clamp(28px, 4.5vw, 40px);
  }

  /* Responsive */
  @media (max-width: 640px) {
    .hero--front { min-height: clamp(420px, 85vh, 560px); }
    .hero--front .hero__catch { font-size: clamp(1.4rem, 5.5vw, 2rem); }
    .hero--front .hero__catch-word--main { font-size: clamp(2.2rem, 10vw, 3.4rem); }

    .hero--front .hero__actions {
      flex-direction: column;
      width: 100%;
    }

    .hero--front .hero__actions .btn { width: 100%; }

    .front-section {
      padding: clamp(36px, 7vw, 56px) clamp(16px, 4vw, 24px);
    }

    .strengths-block {
      padding: clamp(36px, 7vw, 56px) clamp(16px, 4vw, 24px);
    }
  }
}
