  :root {
    --cream: #FFF5E6;
    --coral: #FF5C35;
    --tangerine: #FF8C42;
    --lemon: #FFD23F;
    --mint: #3FFFA8;
    --black: #0A0A0A;
    --ink: #1A1208;
    --warm-gray: #8A7560;
    --white: #FFFDF9;
    --title-font: 'Montserrat', sans-serif;
  }

  *,
  *::before,
  *::after {
    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;
    cursor: none;
  }

  /* CURSOR */
  .cursor {
    position: fixed;
    width: 14px;
    height: 14px;
    background: var(--coral);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s, width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: multiply;
  }

  .cursor-ring {
    position: fixed;
    width: 42px;
    height: 42px;
    border: 2px solid var(--coral);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease, width 0.2s, height 0.2s, border-color 0.2s;
    opacity: 0.6;
  }

  .cursor.hovering {
    width: 50px;
    height: 50px;
    background: var(--lemon);
  }

  .cursor-ring.hovering {
    width: 70px;
    height: 70px;
    border-color: var(--lemon);
    opacity: 0.3;
  }

  /* SECTIONS SYSTEM */
  .section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  /* NAV */
  nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    mix-blend-mode: multiply;
  }

  .nav-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .nav-social-links {
    display: flex;
    align-items: center;
    gap: 0.45rem;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
  }

  .nav-actions .messenger-btn {
    height: 40px;
    padding: 0.5rem 0.8rem;
    font-size: 0.82rem;
  }

  .top-contact-bar {
    position: relative;
    z-index: 12;
    margin: 6.1rem auto 0;
    width: min(1080px, calc(100% - 3rem));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: 16px;
    background: rgba(255, 245, 230, 0.85);
    backdrop-filter: blur(8px);
  }

  .top-contact-bar {
    display: none;
  }

  .top-social-links {
    display: flex;
    gap: 0.6rem;
    align-items: center;
  }

  .social-icon-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(10, 10, 10, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .social-icon-link.instagram {
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
    color: #fff;
    border-color: transparent;
  }

  .social-icon-link.facebook {
    background: #1877f2;
    color: #fff;
    border-color: transparent;
  }

  .social-icon-link.whatsapp {
    background: #25d366;
    color: #fff;
    border-color: transparent;
  }

  .social-icon-link.telegram {
    background: #229ed9;
    color: #fff;
    border-color: transparent;
  }

  .social-icon-link:hover {
    transform: translateY(-2px);
    border-color: var(--coral);
    color: var(--coral);
  }

  .social-icon-link.instagram:hover,
  .social-icon-link.facebook:hover,
  .social-icon-link.whatsapp:hover,
  .social-icon-link.telegram:hover {
    color: #fff;
    border-color: transparent;
    filter: brightness(0.95);
  }

  .top-messenger-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .messenger-btn {
    height: 44px;
    border-radius: 999px;
    padding: 0.7rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid transparent;
    transition: all 0.2s ease;
  }

  .messenger-btn.whatsapp {
    background: #25d366;
    color: #fff;
  }

  .messenger-btn.telegram {
    background: #229ed9;
    color: #fff;
  }

  .messenger-btn:hover {
    transform: translateY(-2px);
    filter: brightness(0.95);
  }

  .nav-actions .messenger-btn span {
    display: none;
  }

  .nav-logo {
    font-family: var(--title-font);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.02em;
  }

  .nav-cta {
    background: var(--coral);
    color: var(--white);
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.65rem 1.6rem;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: transform 0.2s, background 0.2s;
  }

  .nav-cta:hover {
    background: var(--ink);
    transform: scale(1.05);
  }

  /* LANGUAGE SWITCHER */
  .lang-switcher {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
  }

  .lang-link {
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--warm-gray);
    text-decoration: none;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.6rem;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
  }

  .lang-link:hover,
  .lang-link.active {
    color: var(--coral);
    border-bottom-color: var(--coral);
  }

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

    .lang-switcher {
      position: static;
      transform: none;
      gap: 0.5rem;
      margin: 0 1rem;
    }

    .lang-link {
      font-size: 0.65rem;
      padding: 0.3rem 0.4rem;
    }
  }

  /* PROGRESS BAR */
  .progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--coral);
    z-index: 200;
    transition: width 0.1s;
    width: 0%;
  }

  /* SECTION COUNTER */
  .section-counter {
    position: fixed;
    right: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--warm-gray);
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.4;
  }

  .dot.active {
    background: var(--coral);
    opacity: 1;
    width: 10px;
    height: 10px;
  }

  /* SCROLL ARROWS */
  .scroll-arrow {
    position: fixed;
    bottom: 2.5rem;
    right: 50%;
    transform: translateX(50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    pointer-events: none;
  }

  .arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--ink);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s;
    font-size: 1.3rem;
    color: var(--ink);
    pointer-events: auto;
  }

  .arrow-btn:hover {
    background: var(--coral);
    border-color: var(--coral);
    color: #fff;
    transform: scale(1.1);
  }

  /* ===================== SECTION 1 — HERO ===================== */
  .hero {
    background: var(--cream);
    padding: 0;
    flex-direction: column;
    text-align: center;
    min-height: 100vh;
    height: 100vh;
  }

  .hero-inner {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.9s 0.2s forwards;
  }

  .hero-kicker {
    background: var(--lemon);
    border-radius: 100px;
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    color: var(--ink);
    opacity: 0;
    animation: fadeUp 0.7s 0.5s forwards;
  }

  .hero-h1 {
    font-family: var(--title-font);
    font-size: clamp(3.5rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--ink);
    margin-bottom: 2rem;
  }

  .hero-h1 .accent {
    color: var(--coral);
    display: inline-block;
  }

  .hero-h1 .under {
    position: relative;
    display: inline-block;
  }

  .hero-h1 .under::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    right: 0;
    height: 8px;
    background: var(--lemon);
    z-index: -1;
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: left;
    animation: lineReveal 0.6s 1.2s forwards;
  }

  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: var(--warm-gray);
    max-width: 580px;
    margin: 0;
    line-height: 1.6;
    opacity: 0;
    animation: fadeUp 0.7s 0.8s forwards;
    text-align: center;
  }

  .hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin-top: 2.2rem;
    opacity: 0;
    animation: fadeUp 0.7s 1s forwards;
  }

  .hero-bottom {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 2rem;
    align-items: stretch;
    width: 90%;
    margin: 0 auto;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    height: 100%;
  }

  .hero-note {
    font-size: 0.9rem;
  }

  .hero-image {
    width: 100%;
    max-width: 100%;
    flex: 1;
    height: 100%;
    min-height: 240px;
    display: block;
    border-radius: 24px;
    object-fit: cover;
  }

  .btn-primary {
    height: 60px;
    background: var(--coral);
    color: #fff;
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2.4rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .btn-primary:hover {
    background: var(--ink);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 92, 53, 0.3);
  }

  .btn-secondary {
    height: 60px;
    background: transparent;
    color: var(--ink);
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2.4rem;
    border-radius: 100px;
    border: 2px solid var(--ink);
    text-decoration: none;
    transition: all 0.25s;
  }

  .btn-secondary:hover {
    background: var(--ink);
    color: var(--cream);
  }

  /* floating blobs */
  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    animation: blobFloat 6s ease-in-out infinite;
  }

  .blob-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 92, 53, 0.12);
    top: -100px;
    left: -150px;
  }

  .blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(255, 210, 63, 0.18);
    bottom: -80px;
    right: -100px;
    animation-delay: -3s;
  }

  .blob-3 {
    width: 300px;
    height: 300px;
    background: rgba(63, 255, 168, 0.1);
    top: 30%;
    left: 60%;
    animation-delay: -1.5s;
  }

  /* ===================== SECTION 2 — PAIN ===================== */
  .pain {
    background: var(--ink);
    color: var(--cream);
  }

  .pain-inner {
    max-width: 1000px;
    padding: 5rem 2rem;
    width: 100%;
  }

  .pain-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
    font-weight: 600;
    margin-bottom: 3rem;
    opacity: 0;
    transition: opacity 0.6s, transform 0.6s;
    transform: translateX(-20px);
  }

  .case-study-wrap .center-text, .case-study-wrap .offer-h2,
  .case-study-wrap .case-study-h2 {
    text-align: center;
  }

  .pain-items {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .pain-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s, transform 0.5s;
  }

  .pain-num {
    font-family: var(--title-font);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.06);
    min-width: 60px;
    line-height: 1;
  }

  .pain-text h3 {
    font-family: var(--title-font);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--cream);
  }

  .pain-text p {
    color: rgba(255, 245, 230, 0.55);
    font-size: 1rem;
    line-height: 1.6;
  }

  .pain-text .highlight {
    color: var(--lemon);
  }

  .pain .case-study-copy .highlight {
    color: var(--lemon);
  }

  /* ===================== SECTION 3 — HOW I WORK ===================== */
  .process {
    background: var(--cream);
  }

  .process-inner {
    max-width: 1100px;
    width: 100%;
    padding: 5rem 2rem;
  }

  .section-tag {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
  }

  .section-h2 {
    font-family: var(--title-font);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 4rem;
    color: var(--ink);
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .process-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s, transform 0.5s;
    cursor: default;
  }

  .process-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 50px rgba(10, 10, 10, 0.08);
  }

  .process-card::before {
    content: attr(data-step);
    position: absolute;
    top: -10px;
    right: 10px;
    font-family: var(--title-font);
    font-size: 5rem;
    font-weight: 800;
    color: rgba(10, 10, 10, 0.04);
    line-height: 1;
  }

  .card-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    display: block;
  }

  .card-day {
    font-family: var(--title-font);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--coral);
    margin-bottom: 0.5rem;
  }

  .card-title {
    font-family: var(--title-font);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--ink);
  }

  .card-desc {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.6;
  }

  .card-accent {
    background: var(--coral);
  }

  .card-accent * {
    color: var(--cream) !important;
  }

  .card-accent .card-desc {
    color: rgba(255, 245, 230, 0.75) !important;
  }

  .card-accent::before {
    color: rgba(255, 255, 255, 0.07);
  }

  /* ===================== SECTION 4 — ABOUT ME ===================== */
  .about {
    background: var(--lemon);
  }

  .about-inner {
    max-width: 1100px;
    width: 100%;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .about-left .about-tag {
    color: var(--coral);
  }

  .about-h2 {
    font-family: var(--title-font);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 1.5rem;
  }

  .about-p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(26, 18, 8, 0.7);
    margin: 1rem 0;
  }

  .about-p strong {
    color: var(--ink);
    font-weight: 600;
  }

  .about-list {
    margin-bottom: 0;
  }

  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .stat-box {
    background: var(--ink);
    border-radius: 16px;
    padding: 1.5rem;
    color: var(--cream);
  }

  .stat-num {
    font-family: var(--title-font);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--coral);
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 245, 230, 0.6);
  }

  .about-right {
    width: 100%;
  }

  .about-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .skill-pill {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--ink);
    color: var(--cream);
    border-radius: 100px;
    padding: 1rem 1.5rem;
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s, transform 0.5s;
  }

  .skill-pill:hover {
    background: var(--coral);
    transform: translateX(0) scale(1.02) !important;
  }

  .skill-pill .pill-icon {
    font-size: 1.3rem;
  }

  /* ===================== SECTION 5 — OFFER ===================== */
  .offer {
    background: var(--ink);
    color: var(--cream);
  }

  .offer-inner {
    max-width: 1000px;
    width: 100%;
    padding: 5rem 2rem;
    text-align: center;
  }

  .offer-tag {
    color: var(--mint);
  }

  .offer-h2 {
    font-family: var(--title-font);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--cream);
  }

  .offer-sub {
    color: rgba(255, 245, 230, 0.5);
    margin-bottom: 3rem;
    font-size: 1.1rem;
  }

  .offer-card-big {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem;
    text-align: left;
    position: relative;
    overflow: hidden;
  }

  .offer-card-big::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--lemon));
  }

  .offer-name {
    font-family: var(--title-font);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--cream);
  }

  .offer-price {
    font-family: var(--title-font);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--lemon);
    margin-bottom: 2rem;
    line-height: 1;
  }

  .offer-price span {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 245, 230, 0.4);
  }

  .offer-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .offer-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: rgba(255, 245, 230, 0.75);
  }

  .offer-feature::before {
    content: '✓';
    min-width: 22px;
    height: 22px;
    background: var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .offer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--coral);
    color: #fff;
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1.1rem 2.8rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.25s;
  }

  .offer-cta:hover {
    background: var(--lemon);
    color: var(--ink);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 92, 53, 0.3);
  }

  /* ===================== SECTION 6 — RESULTS ===================== */
  .results {
    background: var(--cream);
  }

  .results-inner {
    max-width: 1100px;
    width: 100%;
    padding: 5rem 2rem;
  }

  .ticker-wrap {
    overflow: hidden;
    margin: 3rem -2rem;
    padding: 1.5rem 0;
    background: var(--coral);
    white-space: nowrap;
  }

  .ticker-track {
    display: inline-block;
    animation: ticker 25s linear infinite;
  }

  .ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    padding: 0 2rem;
  }

  .ticker-dot {
    color: var(--lemon);
    font-size: 1.5rem;
  }

  .results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
  }

  .result-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s, transform 0.5s;
  }

  .result-card:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  }

  .result-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .result-link-cta {
    display: inline-flex;
    font-family: var(--title-font);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--coral);
    letter-spacing: 0.02em;
  }

  .result-quote {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--ink);
    margin-bottom: 1.5rem;
    font-style: italic;
  }

  .result-quote::before {
    content: '"';
    font-family: var(--title-font);
    font-size: 2rem;
    color: var(--coral);
    line-height: 0;
    vertical-align: -0.5rem;
  }

  .result-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .result-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }

  .result-name {
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 0.9rem;
  }

  .result-role {
    font-size: 0.8rem;
    color: var(--warm-gray);
  }

  .case-study-link {
    background-color: var(--coral);
  }

  .case-study-link span{
    color: var(--white);
    font-size: 1rem;
  }

  .av1 {
    background: var(--lemon);
    background-image: url(./images/veronika_res.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .av2 {
    background: var(--mint);
    background-image: url(./images/anna_li.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .av3 {
    background: var(--coral);
  }

  /* ===================== SECTION 7 — FAQ ===================== */
  .faq {
    background: var(--ink);
    color: var(--cream);
  }

  .faq-inner {
    max-width: 800px;
    width: 100%;
    padding: 5rem 2rem;
  }

  .faq-tag {
    color: var(--lemon);
  }

  .faq-h2 {
    font-family: var(--title-font);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 3rem;
    color: var(--cream);
  }

  .faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
  }

  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    font-family: var(--title-font);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cream);
    gap: 1rem;
    transition: color 0.2s;
  }

  .faq-q:hover {
    color: var(--lemon);
  }

  .faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    flex-shrink: 0;
    color: var(--coral);
  }

  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--coral);
    border-color: var(--coral);
    color: #fff;
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 0.98rem;
    color: rgba(255, 245, 230, 0.6);
    line-height: 1.7;
  }

  .faq-a-inner {
    padding-bottom: 1.5rem;
  }

  .faq-item.open .faq-a {
    max-height: 200px;
  }

  /* ===================== SECTION 8 — JOURNEY / CLIENT PAIN FLOW ===================== */
  .journey {
    background: var(--cream);
  }

  .journey-inner {
    max-width: 1100px;
    width: 100%;
    padding: 5rem 2rem;
  }

  .journey-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
  }

  .journey-flow::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--coral), var(--lemon), var(--mint));
    border-radius: 2px;
  }

  .journey-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s, transform 0.5s;
  }

  .j-circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    z-index: 1;
  }

  .j-pain {
    background: rgba(255, 92, 53, 0.12);
  }

  .j-discovery {
    background: rgba(255, 210, 63, 0.2);
  }

  .j-work {
    background: rgba(63, 255, 168, 0.15);
  }

  .j-result {
    background: var(--mint);
  }

  .j-content h3 {
    font-family: var(--title-font);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--ink);
  }

  .j-content p {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.6;
  }

  .j-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.8rem;
    border-radius: 100px;
    margin-bottom: 0.5rem;
  }

  .j-tag.pain-tag {
    background: rgba(255, 92, 53, 0.12);
    color: var(--coral);
  }

  .j-tag.action-tag {
    background: var(--lemon);
    color: var(--ink);
  }

  .j-tag.work-tag {
    background: rgba(63, 255, 168, 0.2);
    color: #0A8050;
  }

  .j-tag.result-tag {
    background: var(--mint);
    color: var(--ink);
  }

  /* ===================== SECTION 9 — GAMIFIED COUNTER ===================== */
  .counter-section {
    background: var(--coral);
    color: var(--cream);
    text-align: center;
  }

  .counter-inner {
    max-width: 900px;
    width: 100%;
    padding: 5rem 2rem;
  }

  .counter-h2 {
    font-family: var(--title-font);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: #fff;
  }

  .counter-sub {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    font-size: 1.1rem;
  }

  .counters-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .count-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
  }

  .count-num {
    font-family: var(--title-font);
    font-size: 4rem;
    font-weight: 800;
    color: var(--lemon);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
  }

  .count-label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
  }

  /* GAMIFIED PROGRESS BAR */
  .xp-bar-wrap {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    height: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
  }

  .xp-bar {
    height: 100%;
    border-radius: 100px;
    background: var(--lemon);
    width: 0%;
    transition: width 1.5s ease;
    position: relative;
  }

  .xp-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
  }

  .xp-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
  }

  /* ===================== SECTION 10 — CTA / CONTACT ===================== */
  .cta-final {
    background: var(--cream);
    text-align: center;
  }

  .cta-inner {
    max-width: 100%;
    width: 100%;
    padding: 5rem 2rem;
  }

  .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--mint);
    color: var(--ink);
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
  }

  .cta-h2 {
    font-family: var(--title-font);
    font-size: clamp(2.8rem, 6vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    color: var(--ink);
  }

  .cta-h2 em {
    color: var(--coral);
    font-style: normal;
  }

  .cta-p {
    font-size: 1.1rem;
    color: var(--warm-gray);
    max-width: 500px;
    margin: 0 auto 3rem;
    line-height: 1.6;
  }

  .cta-form {
    display: flex;
    gap: 1rem;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-form > div {
    width: 100%;
    min-height: 720px;
  }

  .cta-input {
    flex: 1;
    min-width: 240px;
    padding: 1rem 1.5rem;
    border-radius: 100px;
    border: 2px solid rgba(10, 10, 10, 0.1);
    background: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
  }

  .cta-input:focus {
    border-color: var(--coral);
  }

  .cta-input::placeholder {
    color: var(--warm-gray);
  }

  .cta-submit {
    background: var(--coral);
    color: #fff;
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2.2rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
  }

  .cta-submit:hover {
    background: var(--ink);
    transform: translateY(-2px);
  }

  .trust-line {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--warm-gray);
  }

  /* FOOTER */
  footer {
    background: var(--ink);
    color: rgba(255, 245, 230, 0.4);
    text-align: center;
    padding: 2rem;
    font-size: 0.85rem;
  }

  .footer-social {
    margin-top: 0.9rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
  }

  footer a, .footer-social a {
    color: var(--coral);
    text-decoration: none;
  }

  .footer-social a {
    border: 1px solid var(--coral);
  }

  /* COOKIE BANNER + MODAL */
  .cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1200;
    background: rgba(255, 245, 230, 0.96);
    border: 1px solid rgba(10, 10, 10, 0.12);
    border-radius: 18px;
    padding: 1rem;
    max-width: 960px;
    margin: 0 auto;
    box-shadow: 0 18px 60px rgba(10, 10, 10, 0.18);
    backdrop-filter: blur(10px);
  }

  .cookie-banner-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 1rem;
    align-items: center;
  }

  .cookie-title {
    font-family: var(--title-font);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.35rem;
    color: var(--ink);
  }

  .cookie-text {
    color: var(--warm-gray);
    line-height: 1.5;
    font-size: 0.95rem;
  }

  .cookie-actions {
    display: flex;
    gap: 0.55rem;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .cookie-btn {
    height: 44px;
    padding: 0 1rem;
    border-radius: 999px;
    border: 1px solid rgba(10, 10, 10, 0.18);
    background: transparent;
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-decoration: none;
  }

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

  .cookie-btn:hover {
    transform: translateY(-2px);
  }

  .cookie-btn.primary:hover {
    background: var(--ink);
    border-color: var(--ink);
  }

  .cookie-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.55);
    z-index: 1300;
    display: none;
  }

  .cookie-backdrop.open {
    display: block;
  }

  .cookie-modal {
    position: fixed;
    z-index: 1400;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(640px, calc(100% - 2rem));
    background: var(--cream);
    border: 1px solid rgba(10, 10, 10, 0.12);
    border-radius: 22px;
    padding: 1.2rem 1.2rem 1rem;
    display: none;
    box-shadow: 0 22px 80px rgba(10, 10, 10, 0.25);
  }

  .cookie-modal.open {
    display: block;
  }

  .cookie-modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
  }

  .cookie-modal h3 {
    font-family: var(--title-font);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--ink);
  }

  .cookie-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(10, 10, 10, 0.18);
    background: transparent;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--ink);
  }

  .cookie-options {
    display: grid;
    gap: 0.75rem;
    margin: 0.9rem 0 1rem;
  }

  .cookie-option {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(10, 10, 10, 0.10);
    border-radius: 16px;
    padding: 0.9rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: center;
  }

  .cookie-option-title {
    font-weight: 900;
    color: var(--ink);
  }

  .cookie-option-desc {
    color: var(--warm-gray);
    font-size: 0.92rem;
    line-height: 1.35;
    margin-top: 0.25rem;
  }

  .cookie-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    user-select: none;
    font-weight: 800;
    color: var(--ink);
  }

  .cookie-switch input {
    width: 44px;
    height: 26px;
    appearance: none;
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.18);
    position: relative;
    outline: none;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .cookie-switch input::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.2s ease;
  }

  .cookie-switch input:checked {
    background: var(--coral);
  }

  .cookie-switch input:checked::after {
    transform: translateX(18px);
  }

  .cookie-modal-actions {
    display: flex;
    gap: 0.6rem;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

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

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

  @keyframes blobFloat {

    0%,
    100% {
      transform: translateY(0) scale(1);
    }

    50% {
      transform: translateY(-30px) scale(1.05);
    }
  }

  @keyframes ticker {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

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

    100% {
      transform: translateX(200%);
    }
  }

  @keyframes pulse {

    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(63, 255, 168, 0.4);
    }

    50% {
      box-shadow: 0 0 0 12px rgba(63, 255, 168, 0);
    }
  }

  .visible {
    opacity: 1 !important;
    transform: none !important;
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    nav {
      padding: 1rem 1.5rem;
    }

    .section-counter {
      display: none;
    }

    .nav-left {
      gap: 0.35rem;
    }

    .nav-social-links {
      display: none;
    }

    .nav-actions {
      gap: 0.45rem;
    }

    .nav-actions .messenger-btn {
      width: 38px;
      height: 38px;
      padding: 0;
      justify-content: center;
    }

    .nav-actions .messenger-btn i {
      margin: 0;
    }

    .footer-social {
      gap: 0.55rem;
    }

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

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

    .offer-features {
      grid-template-columns: 1fr;
    }

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

    .counters-row {
      grid-template-columns: 1fr;
    }

    .journey-flow::before {
      left: 22px;
    }

    .j-circle {
      width: 46px;
      height: 46px;
      font-size: 1.2rem;
    }

    .scroll-arrow {
      display: none;
    }

    .cta-inner {
      max-width: 100%;
      padding: 3.5rem 1.5rem;
    }

    .cta-form > div {
      min-height: 720px;
    }

    .hero-inner {
      width: 100%;
      padding: 6.5rem 1rem 1.5rem;
    }

    .hero-bottom {
      grid-template-columns: 1fr;
      gap: 1.25rem;
      width: 100%;
    }

    .hero-kicker {
      margin-bottom: 1.2rem;
      font-size: 0.72rem;
      padding: 0.35rem 0.8rem;
    }

    .hero-h1 {
      font-size: clamp(2rem, 12vw, 3rem);
      line-height: 1.02;
      margin-bottom: 1rem;
      text-wrap: balance;
    }

    .hero-sub {
      margin: 0 auto;
      text-align: center;
      max-width: 38ch;
      font-size: 0.98rem;
      line-height: 1.5;
    }

    .hero-visual {
      align-items: center;
      width: 100%;
    }

    .hero-note {
      text-align: center;
      font-size: 0.84rem;
    }

    .hero-ctas {
      flex-direction: column;
      align-items: stretch;
      gap: 0.65rem;
      width: 100%;
      max-width: 360px;
      margin: 1.2rem auto 0;
    }

    .btn-primary,
    .btn-secondary {
      width: 100%;
      justify-content: center;
      padding: 0.82rem 1.1rem;
      font-size: 0.92rem;
      height: 52px;
      white-space: normal;
      text-align: center;
    }

    .hero-image {
      min-height: 200px;
      max-height: 42vh;
      border-radius: 18px;
      object-position: center top;
    }
  }

  @media (max-width: 480px) {
    .social-icon-link {
      width: 38px;
      height: 38px;
    }

    .messenger-btn {
      height: 42px;
      font-size: 0.86rem;
      padding: 0.65rem 0.85rem;
    }

    .nav-actions .messenger-btn {
      width: 36px;
      height: 36px;
      padding: 0;
    }

    .cta-inner {
      padding: 3rem 1rem;
    }

    .cta-form > div {
      min-height: 720px;
    }

    .hero-inner {
      padding: 6rem 0.85rem 1.25rem;
    }

    .hero-kicker {
      width: auto;
      max-width: 100%;
    }

    .hero-h1 {
      font-size: clamp(1.75rem, 11vw, 2.3rem);
      letter-spacing: -0.02em;
    }

    .hero-sub {
      font-size: 0.93rem;
    }

    .hero-ctas {
      max-width: 100%;
    }

    .btn-primary,
    .btn-secondary {
      font-size: 0.88rem;
      height: 50px;
    }

    .hero-image {
      min-height: 180px;
      max-height: 36vh;
    }

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

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

  /* STICKY BUTTON */
  .sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
    background: var(--coral);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 40px rgba(255, 92, 53, 0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
  }

  .sticky-cta:hover {
    background: var(--ink);
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(10, 10, 10, 0.3);
  }

  .sticky-cta.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100px);
  }

  @media (max-width: 768px) {
    .sticky-cta {
      bottom: 1rem;
      right: 1rem;
      padding: 0.75rem 1.2rem;
      font-size: 0.8rem;
    }

    footer {
      padding-bottom: 6.2rem;
    }

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

    .cookie-actions {
      justify-content: stretch;
    }

    .cookie-btn {
      width: 100%;
    }
  }

  /* CASE STUDY PAGE */
  .case-study-page {
    cursor: none;
  }

  .case-study-page nav {
    position: absolute;
    background: transparent;
    backdrop-filter: none;
  }

  .case-study-page .section {
    min-height: auto;
    justify-content: flex-start;
    align-items: stretch;
    padding: 8rem 0 5rem;
  }

  .case-study-wrap {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .case-study-hero {
    background: var(--cream);
    padding-top: 10rem;
  }

  .case-study-hero .case-study-wrap {
    min-height: calc(100vh - 10rem);
    display: flex;
    flex-direction: column;
  }

  .case-study-kicker {
    display: inline-block;
    background: var(--lemon);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
  }

  .case-study-page .case-study-kicker.observe {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .case-study-page .case-study-kicker.observe.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .case-study-title {
    font-family: var(--title-font);
    font-size: clamp(2.2rem, 5vw, 4.3rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
  }

  .case-study-title .accent {
    color: var(--coral);
  }

  .case-study-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 0.8rem 1.2rem;
    margin-top: 2rem;
    font-size: 1rem;
    color: rgba(26, 18, 8, 0.72);
  }

  .case-study-page .case-study-meta.observe {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .case-study-page .case-study-meta.observe.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .case-study-hero-image {
    width: 100%;
    flex: 1;
    min-height: 260px;
    border-radius: 22px;
    object-fit: cover;
    margin-top: 1.3rem;
  }

  .case-study-page .case-study-hero-image.observe {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .case-study-page .case-study-hero-image.observe.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .case-study-meta strong {
    color: var(--ink);
  }

  .case-study-meta a.case-study-client-link {
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--coral);
    text-decoration: none;
    border-bottom: 2px solid var(--coral);
    padding: 0.15rem 0.35rem 0.25rem;
    margin-left: 0.35rem;
    display: inline-block;
    line-height: 1;
    transition: color 0.2s, border-bottom-color 0.2s, transform 0.2s;
  }

  .case-study-meta a.case-study-client-link:hover {
    color: var(--ink);
    border-bottom-color: var(--ink);
    transform: translateY(-1px);
  }

  .case-study-section-light {
    background: var(--cream);
  }

  .case-study-section-dark {
    background: var(--ink);
    color: var(--cream);
  }

  .case-study-section-dark .section-tag,
  .case-study-section-dark .case-study-copy,
  .case-study-section-dark .case-study-points li {
    color: rgba(255, 245, 230, 0.75);
  }

  .case-study-section-dark .case-study-h2 {
    color: var(--cream);
  }

  .case-study-h2 {
    font-family: var(--title-font);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
  }

  .case-study-page .case-study-title.observe {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .case-study-page .case-study-title.observe.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .case-study-page .case-study-h2.observe,
  .case-study-page .section-h2.observe {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

  .case-study-page .case-study-h2.observe.visible,
  .case-study-page .section-h2.observe.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .case-study-page .about-h2.observe {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

  .case-study-page .about-h2.observe.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .case-study-page .offer-h2.observe {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

  .case-study-page .offer-h2.observe.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .case-study-copy {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(26, 18, 8, 0.74);
    margin-bottom: 1rem;
  }

  .case-study-page .case-study-copy.observe,
  .case-study-page .about-p.observe {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .case-study-page .case-study-copy.observe.visible,
  .case-study-page .about-p.observe.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .case-study-points {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .case-study-points li {
    position: relative;
    padding-left: 1.5rem;
    color: rgba(26, 18, 8, 0.76);
    line-height: 1.65;
  }

  .case-study-points li::before {
    content: "•";
    color: var(--coral);
    position: absolute;
    left: 0.2rem;
    top: 0;
    font-weight: 700;
  }

  .case-study-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .case-study-step {
    background: var(--white);
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(26, 18, 8, 0.08);
  }

  .case-study-step h3 {
    font-family: var(--title-font);
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
  }

  .case-study-quote {
    background: rgba(255, 92, 53, 0.08);
    border-left: 4px solid var(--coral);
    border-radius: 12px;
    padding: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.7;
  }

  .case-study-gallery-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.2rem;
    list-style: none;
  }

  .case-study-gallery-list li {
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px dashed rgba(255, 245, 230, 0.24);
    color: rgba(255, 245, 230, 0.75);
  }

  .case-study-page .offer-card-big.observe {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .case-study-page .offer-card-big.observe.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .case-study-page .pain-item {
    border-bottom-color: rgba(255, 255, 255, 0.14);
  }

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

  .case-study-process-grid .process-card {
    min-height: 240px;
  }

  .case-study-skill-list {
    margin: 1.2rem 0 1.8rem;
  }

  .case-study-process-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 1.5rem;
    align-items: start;
  }

  .case-study-process-image-wrap {
    position: sticky;
    top: 6.5rem;
  }

  .case-study-process-image {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    max-height: 1300px;
  }

  .case-study-effect {
    background: var(--ink);
  }

  .case-study-challenge {
    background: var(--lemon);
  }

  .case-study-challenge-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.9fr);
    gap: 2rem;
    align-items: start;
  }

  .case-study-challenge .about-p {
    color: rgba(26, 18, 8, 0.75);
  }

  .case-study-effect .case-study-label {
    color: var(--mint);
  }

  .case-study-effect .offer-h2 {
    margin-bottom: 2rem;
  }

  .case-study-effect-card {
    max-width: 100%;
    text-align: left;
    background: rgba(255, 255, 255, 0.04);
  }

  .case-study-effect-card .case-study-copy {
    color: rgba(255, 245, 230, 0.72);
  }

  .case-study-effect-features {
    grid-template-columns: 1fr;
    margin-bottom: 1.5rem;
  }

  .case-study-journey-flow {
    margin-top: 2.5rem;
  }

  .case-study-page .cta-form {
    max-width: 100%;
    width: 100%;
  }

  .case-study-page .cta-form > div {
    min-height: 720px;
  }


  .case-study-result-single {
    width: 100%;
    max-width: 100%;
    margin-top: 1.2rem;
  }

  .case-study-result-single .result-quote {
    font-style: normal;
  }

  @media (max-width: 768px) {
    .case-study-page nav {
      padding: 1rem 1.5rem;
    }

    .case-study-wrap {
      padding: 0 1.5rem;
    }

    .case-study-meta {
      grid-template-columns: 1fr;
    }

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

    .case-study-hero {
      padding-top: 8rem;
    }

    .case-study-hero .case-study-wrap {
      min-height: calc(100vh - 8rem);
    }

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

    .case-study-challenge-layout {
      grid-template-columns: 1fr;
    }

    .case-study-process-image-wrap {
      position: static;
    }

    .case-study-process-image {
      max-height: none;
    }
  }