    :root {
      --ink: #1A428A;
      --navy: #1a2e45;
      --gold: #00A887;
      --gold-light: #00A887;
      --cream: #f5f0e8;
      --white: #ffffff;
      --muted: #6b7e95;
      --dark: #1A428A;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--ink);
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
    }

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

    /* HEADER */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: #1A428A;
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,149,58,0.25);
      transition: all 0.3s ease;
    }

    .nav-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-icon {
      width: 140px;
      height: 130px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      color: var(--white);
      letter-spacing: -0.02em;
    }

    .logo-text span {
      color: var(--gold);
    }

    nav {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    nav a {
      color: rgba(255,255,255,0.72);
      font-size: 0.88rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    nav a:hover {
      color: var(--gold-light);
    }

    .btn-nav {
      padding: 10px 20px;
      background: #00A887;
      color: var(--ink) !important;
      border-radius: 8px;
      font-weight: 700 !important;
      transition: all 0.2s ease !important;
    }

    .btn-nav:hover {
      background: var(--gold-light) !important;
      transform: translateY(-1px);
    }

    .menu-toggle {
      display: none;
      background: transparent;
      color: white;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 10px;
      padding: 10px 12px;
      cursor: pointer;
      font-size: 1rem;
    }

    .mobile-menu {
      display: none;
      background: rgba(13,27,42,0.98);
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 1rem 2rem 1.5rem;
    }

    .mobile-menu.open {
      display: block;
    }

    .mobile-menu a {
      display: block;
      color: rgba(255,255,255,0.85);
      padding: 0.9rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      text-transform: uppercase;
      font-size: 0.84rem;
      letter-spacing: 0.04em;
    }

    .mobile-menu a:last-child {
      border-bottom: none;
    }

    /* HERO */
    .hero {
      position: relative;
      min-height: 100vh;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      padding-top: 76px;
    }

    .slides-track {
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1s ease;
      background-size: cover;
      background-position: center;
      pointer-events: none;
    }

    .slide.active {
      opacity: 1;
    }

    .slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(13, 27, 42, 0.60);
    }

    .slide-1 {
      background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 50%, #0d2640 100%);
    }

    .slide-2 {
      background: linear-gradient(135deg, #1a2820 0%, #2a4a30 50%, #1a3025 100%);
    }

    .slide-3 {
      background: linear-gradient(135deg, #2a1a0d 0%, #4a2e10 50%, #3a200a 100%);
    }

    .slide-art {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 55%;
      opacity: 0.18;
    }

    .hero-content {
      position: relative;
      z-index: 10;
      max-width: 1280px;
      width: 100%;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: rgba(201,149,58,0.16);
      border: 1px solid rgba(201,149,58,0.35);
      color: var(--gold-light);
      padding: 8px 16px;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 1.4rem;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.7s 0.2s forwards;
    }

    .hero-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 5vw, 4.8rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.06;
      letter-spacing: -0.03em;
      max-width: 760px;
      margin-bottom: 1.4rem;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s 0.4s forwards;
    }

    .hero-headline .accent {
      color: var(--gold);
      display: inline-block;
      min-width: 120px;
    }

    .hero-sub {
      max-width: 580px;
      font-size: 1.08rem;
      line-height: 1.75;
      color: rgba(255,255,255,0.75);
      font-weight: 300;
      margin-bottom: 2rem;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s 0.6s forwards;
    }

    .hero-cta-group {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s 0.8s forwards;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 34px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--ink);
      border-radius: 10px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: all 0.25s ease;
      box-shadow: 0 10px 30px rgba(201,149,58,0.35);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 40px rgba(201,149,58,0.45);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 15px 28px;
      border-radius: 10px;
      border: 1.5px solid rgba(255,255,255,0.28);
      color: rgba(255,255,255,0.88);
      background: transparent;
      font-weight: 500;
      transition: all 0.25s ease;
    }

    .btn-secondary:hover {
      border-color: var(--gold);
      color: var(--gold-light);
    }

    .slide-dots {
      position: absolute;
      left: 50%;
      bottom: 2rem;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 20;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,0.35);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .dot.active {
      width: 30px;
      background: var(--gold);
    }

    .slide-counter {
      position: absolute;
      right: 2rem;
      bottom: 2rem;
      z-index: 20;
      color: rgba(255,255,255,0.45);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.06em;
    }

    .hero-badge {
      position: absolute;
      top: 50%;
      right: 5%;
      transform: translateY(-50%);
      z-index: 12;
      width: 230px;
      border-radius: 18px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      backdrop-filter: blur(14px);
      padding: 1.5rem;
      animation: fadeUp 0.9s 1s both;
    }

    .badge-label {
      color: rgba(255,255,255,0.45);
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0.55rem;
    }

    .badge-val {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--gold);
      line-height: 1;
      font-weight: 900;
    }

    .badge-sub {
      color: rgba(255,255,255,0.58);
      font-size: 0.78rem;
      margin-top: 0.35rem;
    }

    .badge-divider {
      border: none;
      border-top: 1px solid rgba(255,255,255,0.1);
      margin: 1rem 0;
    }

    /* STATS */
    .stats-bar {
      background: var(--navy);
      border-top: 1px solid rgba(201,149,58,0.22);
    }

    .stats-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 1.5rem 2rem;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }

    .stat-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 0.9rem 1.2rem;
      border-right: 1px solid rgba(255,255,255,0.08);
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-icon {
      font-size: 1.8rem;
      flex-shrink: 0;
    }

    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      line-height: 1;
      color: var(--gold);
      font-weight: 800;
    }

    .stat-label {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-top: 4px;
    }

    /* SECTIONS */
    .section-mechanism,
    .section-faq,
    .section-contact {
      padding: 7rem 2rem;
      background: var(--cream);
    }

    .section-process {
      padding: 7rem 2rem;
      background: var(--ink);
      position: relative;
      overflow: hidden;
    }

    .section-process::before {
      content: "";
      position: absolute;
      top: -40%;
      right: -10%;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,149,58,0.08), transparent 70%);
      pointer-events: none;
    }

    .section-inner {
      max-width: 1280px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .section-tag {
      display: inline-block;
      color: var(--gold);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      font-weight: 900;
      line-height: 1.15;
      letter-spacing: -0.03em;
      margin-bottom: 1rem;
      color: var(--ink);
    }

    .section-desc {
      max-width: 680px;
      margin: 0 auto;
      color: var(--muted);
      font-size: 1.02rem;
      line-height: 1.8;
      font-weight: 300;
    }

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

    .section-process .section-desc {
      color: rgba(255,255,255,0.55);
      margin: 0;
      max-width: 100%;
      text-align: left;
    }

    /* MECHANISM CARDS */
    .mech-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .mech-card {
      background: var(--white);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 4px 22px rgba(13,27,42,0.08);
      transition: all 0.3s ease;
    }

    .mech-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 20px 52px rgba(13,27,42,0.13);
    }

    .card-image {
      height: 200px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .card-image svg {
      width: 100%;
      height: 100%;
    }

    .card-body {
      padding: 1.75rem;
    }

    .card-number {
      width: 38px;
      height: 38px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--ink);
      font-size: 0.85rem;
      font-weight: 800;
      margin-bottom: 1rem;
    }

    .card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      margin-bottom: 0.6rem;
      color: var(--ink);
    }

    .card-text {
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.7;
      font-weight: 300;
    }

    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 1.1rem;
      color: var(--gold);
      font-size: 0.86rem;
      font-weight: 700;
      transition: gap 0.2s ease;
    }

    .card-link:hover {
      gap: 10px;
    }

    /* PROCESS */
    .process-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 5rem;
      align-items: center;
    }

    .steps-list {
      display: flex;
      flex-direction: column;
    }

    .step-item {
      display: flex;
      gap: 1.2rem;
      padding: 1.35rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      position: relative;
    }

    .step-line {
      position: absolute;
      left: 17px;
      top: 52px;
      bottom: -1px;
      width: 2px;
      background: linear-gradient(to bottom, var(--gold), transparent);
    }

    .step-num {
      width: 36px;
      height: 36px;
      border-radius: 999px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--gold);
      color: var(--gold);
      background: rgba(201,149,58,0.1);
      font-size: 0.82rem;
      font-weight: 700;
      position: relative;
      z-index: 1;
      margin-top: 2px;
    }

    .step-content h4 {
      color: white;
      font-size: 1rem;
      margin-bottom: 0.35rem;
      font-weight: 600;
    }

    .step-content p {
      color: rgba(255,255,255,0.48);
      font-size: 0.9rem;
      line-height: 1.7;
      font-weight: 300;
    }

    .process-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .visual-box {
      width: 100%;
      max-width: 480px;
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 24px;
      padding: 2rem;
      backdrop-filter: blur(10px);
      box-shadow: 0 25px 60px rgba(0,0,0,0.22);
    }

    .visual-stack {
      display: grid;
      gap: 1rem;
    }

    .visual-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 18px;
      padding: 1rem 1.1rem;
      color: white;
    }

    .visual-card h5 {
      font-size: 0.95rem;
      margin-bottom: 0.35rem;
    }

    .visual-card p {
      font-size: 0.83rem;
      line-height: 1.6;
      color: rgba(255,255,255,0.58);
    }

    /* FAQ */
    .faq-grid {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      gap: 1rem;
    }

    .faq-item {
      background: white;
      border-radius: 16px;
      box-shadow: 0 6px 18px rgba(13,27,42,0.06);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      border: none;
      background: transparent;
      padding: 1.2rem 1.3rem;
      text-align: left;
      font-weight: 700;
      font-size: 1rem;
      color: var(--ink);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

    .faq-answer {
      display: none;
      padding: 0 1.3rem 1.3rem;
      color: var(--muted);
      line-height: 1.75;
      font-size: 0.95rem;
      font-weight: 300;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    .faq-icon {
      font-size: 1.2rem;
      color: var(--gold);
      flex-shrink: 0;
    }

    /* CTA BAND */
    .cta-band {
      background: linear-gradient(135deg, var(--gold) 0%, #13ad87 100%);
      padding: 4rem 2rem;
      text-align: center;
    }

    .cta-band h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 3vw, 2.7rem);
      color: var(--ink);
      margin-bottom: 0.8rem;
      font-weight: 900;
    }

    .cta-band p {
      color: rgba(13,27,42,0.75);
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 1.8rem;
    }

    .btn-dark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 36px;
      background: var(--ink);
      color: var(--white);
      border-radius: 10px;
      font-weight: 700;
      transition: all 0.25s ease;
      box-shadow: 0 10px 28px rgba(13,27,42,0.28);
    }

    .btn-dark:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 42px rgba(13,27,42,0.38);
    }

    /* CONTACT */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: start;
    }

    .contact-card,
    .contact-form {
      background: white;
      border-radius: 18px;
      padding: 1.75rem;
      box-shadow: 0 6px 20px rgba(13,27,42,0.07);
    }

    .contact-card h3,
    .contact-form h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--ink);
    }

    .contact-list {
      display: grid;
      gap: 1rem;
    }

    .contact-item {
      display: flex;
      gap: 0.9rem;
      align-items: flex-start;
    }

    .contact-item-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: rgba(201,149,58,0.13);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-weight: 700;
      flex-shrink: 0;
    }

    .contact-item h4 {
      margin-bottom: 0.25rem;
      font-size: 0.98rem;
      color: var(--ink);
    }

    .contact-item p {
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.65;
    }

    .form-grid {
      display: grid;
      gap: 1rem;
    }

    .form-grid input,
    .form-grid textarea,
    .form-grid select {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid #d8dee8;
      border-radius: 12px;
      background: #fff;
      font-size: 0.96rem;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      font-family: inherit;
    }

    .form-grid input:focus,
    .form-grid textarea:focus,
    .form-grid select:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 4px rgba(201,149,58,0.12);
    }

    .form-grid textarea {
      min-height: 130px;
      resize: vertical;
    }

    /* FOOTER */
    footer {
      background: var(--dark);
      padding: 5rem 2rem 2rem;
    }

    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .footer-brand p {
      margin-top: 1rem;
      color: white;
      font-size: 0.9rem;
      line-height: 1.8;
      font-weight: 300;
      max-width: 320px;
    }

    .footer-socials {
      display: flex;
      gap: 10px;
      margin-top: 1.4rem;
    }

    .social-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: all 0.2s ease;
    }

    .social-icon:hover {
      background: rgba(201,149,58,0.16);
      border-color: var(--gold);
    }

    .footer-col h5 {
      color: rgba(255,255,255,0.35);
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 1.1rem;
      font-weight: 700;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col li {
      margin-bottom: 0.7rem;
    }

    .footer-col a {
      color: rgba(255,255,255,0.56);
      font-size: 0.9rem;
      font-weight: 300;
      transition: color 0.2s ease;
    }

    .footer-col a:hover {
      color: var(--gold-light);
    }

    .footer-bottom {
      padding-top: 1.8rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-bottom p,
    .footer-bottom a {
      color: rgba(255,255,255,0.28);
      font-size: 0.82rem;
    }

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

    /* MODAL */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(6, 15, 24, 0.82);
      backdrop-filter: blur(6px);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      padding: 1.2rem;
    }

    .modal-overlay.active {
      display: flex;
    }

    .modal-box {
      width: 100%;
      max-width: 760px;
      background: white;
      border-radius: 22px;
      padding: 2rem;
      position: relative;
      box-shadow: 0 20px 60px rgba(0,0,0,0.25);
      max-height: 90vh;
      overflow-y: auto;
    }

    .modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 42px;
      height: 42px;
      border: none;
      border-radius: 12px;
      background: rgba(13,27,42,0.06);
      color: var(--ink);
      font-size: 1.2rem;
      cursor: pointer;
    }

    .modal-box h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      margin-bottom: 0.7rem;
      color: var(--ink);
    }

    .modal-box p {
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    /* REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.08s; }
    .reveal-delay-2 { transition-delay: 0.16s; }
    .reveal-delay-3 { transition-delay: 0.24s; }
    .reveal-delay-4 { transition-delay: 0.32s; }

    /* ANIMATIONS */
    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes pulse-ring {
      0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(201,149,58,0.5);
      }
      70% {
        transform: scale(1);
        box-shadow: 0 0 0 16px rgba(201,149,58,0);
      }
      100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(201,149,58,0);
      }
    }

    .pulse {
      animation: pulse-ring 2.5s infinite;
    }

    /* SCROLLBAR */
    ::-webkit-scrollbar { width: 7px; }
    ::-webkit-scrollbar-track { background: var(--cream); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 999px; }

    /* RESPONSIVE */
    @media (max-width: 1150px) {
      .hero-badge {
        display: none;
      }

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

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

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

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

      .stat-item:nth-child(2) {
        border-right: none;
      }

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

    @media (max-width: 768px) {
      nav {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .hero {
        min-height: 760px;
        height: auto;
        padding-bottom: 4rem;
      }

      .hero-content {
        padding-top: 2rem;
      }

      .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
      }

      .slide-counter {
        right: 1rem;
        bottom: 1rem;
      }

      .slide-dots {
        bottom: 1rem;
      }

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

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

      .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
      }

      .stat-item:last-child {
        border-bottom: none;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .section-mechanism,
      .section-process,
      .section-faq,
      .section-contact {
        padding: 5.5rem 1.2rem;
      }

      .nav-inner,
      .hero-content,
      .stats-inner,
      .section-inner,
      .footer-inner {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
      }
    }
