    :root {
      --primary: #9830D5;
      --primary-light: #b054e8;
      --primary-dark: #6e1a9e;
      --primary-subtle: rgba(152, 48, 213, 0.08);
      --primary-glow: rgba(152, 48, 213, 0.28);
      --black: #000000;
      --dark: #111111;
      --dark-card: #1c1c1e;
      --gray-900: #1a1a1a;
      --gray-800: #2d2d2d;
      --gray-600: #555555;
      --gray-400: #8e8e93;
      --gray-200: #e5e5ea;
      --gray-100: #f7f7f9;
      --white: #FFFFFF;
      --bg-gradient: linear-gradient(135deg, #180524 0%, #000000 100%);
      --purple-gradient: linear-gradient(135deg, #9830D5 0%, #5d1189 100%);
      --accent-gradient: linear-gradient(135deg, #b84df7 0%, #9830D5 50%, #4a0f6b 100%);
      --font-main: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
      --shadow-purple: 0 12px 32px rgba(152, 48, 213, 0.25);
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-full: 9999px;
      --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-padding-top: 80px; }
    body {
      font-family: var(--font-main);
      background-color: var(--white);
      color: var(--black);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4, h5, h6 {
      font-weight: 800;
      line-height: 1.2;
      color: var(--black);
      letter-spacing: -0.02em;
    }

    p {
      color: #333333;
      font-size: 16px;
      line-height: 1.7;
      font-weight: 400;
    }

    a { color: inherit; text-decoration: none; transition: var(--transition); }
    img { max-width: 100%; height: auto; display: block; }

    .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section-spacing {
      padding: 100px 0;
      position: relative;
    }

    @media (max-width: 768px) {
      .section-spacing { padding: 64px 0; }
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--primary-subtle);
      color: var(--primary);
      padding: 6px 14px;
      border-radius: var(--radius-full);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 16px;
      border: 1px solid rgba(152, 48, 213, 0.2);
    }

    .section-tag.light {
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
      border-color: rgba(255, 255, 255, 0.3);
    }

    .section-header {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 56px auto;
    }

    .section-title {
      font-size: clamp(28px, 4vw, 42px);
      margin-bottom: 16px;
    }

    .section-subtitle {
      font-size: clamp(16px, 2vw, 19px);
      color: var(--gray-600);
      font-weight: 400;
      line-height: 1.55;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 28px;
      font-size: 15px;
      font-weight: 600;
      font-family: var(--font-main);
      border-radius: var(--radius-full);
      cursor: pointer;
      border: none;
      transition: var(--transition);
      text-align: center;
      text-decoration: none;
    }

    .btn-primary {
      background: var(--purple-gradient);
      color: var(--white);
      box-shadow: var(--shadow-purple);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 36px rgba(152, 48, 213, 0.38);
      background: linear-gradient(135deg, #a73de8 0%, #6e1a9e 100%);
    }

    .btn-dark {
      background: var(--black);
      color: var(--white);
    }

    .btn-dark:hover {
      background: #222;
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      color: var(--black);
      border: 2px solid var(--black);
    }

    .btn-outline:hover {
      background: var(--black);
      color: var(--white);
      transform: translateY(-2px);
    }

    .btn-outline-purple {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
    }

    .btn-outline-purple:hover {
      background: var(--primary);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: var(--shadow-purple);
    }

    .btn-outline-light {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.7);
    }

    .btn-outline-light:hover {
      background: var(--white);
      color: var(--black);
      border-color: var(--white);
      transform: translateY(-2px);
    }

    .btn-sm {
      padding: 10px 20px;
      font-size: 13px;
    }

    .btn-note {
      display: block;
      font-size: 13px;
      color: var(--gray-600);
      margin-top: 10px;
    }

    /* HEADER */
    .site-header {
      position: sticky;
      top: 0;
      left: 0;
      width: 100%;
      background: linear-gradient(90deg, #5d1189 0%, #9830D5 100%);
      border-bottom: none;
      z-index: 1000;
      transition: var(--transition);
    }

    .site-header.scrolled {
      box-shadow: var(--shadow-md);
    }

    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .header-logo {
      display: flex;
      align-items: center;
      cursor: pointer;
    }

    .header-logo img {
      height: 46px;
      width: auto;
      object-fit: contain;
    }

    .header-nav {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .nav-link {
      font-size: 14px;
      font-weight: 500;
      color: var(--white);
      padding: 8px 12px;
      border-radius: var(--radius-sm);
      transition: var(--transition);
    }

    .nav-link:hover, .nav-link.active {
      color: var(--primary);
      background: var(--white);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .header-cta-btn {
      background: var(--white) !important;
      color: var(--primary) !important;
      border: 1px solid var(--white) !important;
      box-shadow: none !important;
    }
    .header-cta-btn:hover {
      background: #f0f0f0 !important;
      color: var(--primary-dark) !important;
      border-color: #f0f0f0 !important;
    }

    /* LANG DROPDOWN */
    .lang-dropdown {
      position: relative;
    }

    .lang-btn {
      font-size: 13px;
      font-weight: 700;
      font-family: var(--font-main);
      color: var(--primary);
      background: var(--white);
      border: 1px solid transparent;
      padding: 8px 14px;
      border-radius: var(--radius-full);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      user-select: none;
      transition: var(--transition);
    }

    .lang-btn:hover {
      background: #f0f0f0;
    }

    .lang-menu {
      display: none;
      position: absolute;
      right: 0;
      top: calc(100% + 8px);
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
      min-width: 120px;
      padding: 6px;
      z-index: 1200;
      flex-direction: column;
      gap: 2px;
    }

    .lang-dropdown.open .lang-menu {
      display: flex !important;
    }

    .lang-menu a {
      font-size: 13px;
      font-weight: 600;
      color: var(--black);
      padding: 8px 12px;
      border-radius: var(--radius-sm);
      text-align: left;
      cursor: pointer;
      display: block;
    }

    .lang-menu a:hover {
      background: var(--primary-subtle);
      color: var(--primary);
    }

    .lang-menu a.active {
      background: var(--black);
      color: var(--white);
    }

    .burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 6px;
    }

    .burger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: var(--transition);
    }

    .mobile-drawer {
      display: none;
      position: fixed;
      inset: 0;
      top: 76px;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      padding: 24px;
      flex-direction: column;
      gap: 12px;
      z-index: 999;
      overflow-y: auto;
    }

    .site-header.menu-open + .mobile-drawer { display: flex; }
    .mobile-drawer .nav-link {
      font-size: 17px;
      font-weight: 600;
      color: var(--black);
      padding: 12px 16px;
      border-bottom: 1px solid var(--gray-100);
    }

    .mobile-lang-row { display: flex; gap: 8px; margin-top: 12px; }
    .mobile-lang-row a {
      flex: 1;
      padding: 10px;
      text-align: center;
      font-weight: 700;
      border-radius: var(--radius-sm);
      border: 1px solid var(--gray-200);
      cursor: pointer;
    }
    .mobile-lang-row a.active { background: var(--black); color: #fff; }

    @media (max-width: 1024px) {
      .header-nav { display: none; }
      .burger { display: flex; }
      .header-cta-btn { display: none; }
    }

    /* HERO */
    .hero-section {
      padding: 200px 0 160px 0;
      background: url("images/bg02.webp") center center/cover no-repeat;
      position: relative;
      z-index: 2;
      overflow: hidden;
      min-height: 90vh;
      display: block;
      box-shadow: 0px 10px 40px rgb(0 0 0 / 77%);
    }
    
    .hero-section .container { width: 100%; padding: 0; }

    .hero-grid {
      display: block;
      max-width: 650px;
      margin-right: auto;
      position: relative;
      z-index: 1;
    }

    .hero-text {
      background: rgba(15, 5, 25, 0.65);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 52px 32px;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    }
    
    .hero-mobile-img {
      display: none;
    }
    
    .hero-text .btn-note {
      color: rgba(255, 255, 255, 0.7);
    }

    .hero-tagline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 18px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--radius-full);
      font-size: 13px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 24px;
      width: 100%;
    }

    .hero-tagline img { width: 18px; height: 18px; object-fit: contain; }

    .hero-title {
      font-size: clamp(38px, 5.5vw, 63px);
      font-weight: 900;
      line-height: 1.08;
      margin-bottom: 16px;
      letter-spacing: -0.03em;
      color: var(--white);
    }

    .hero-title-sub {
      font-size: clamp(20px, 2.8vw, 30px);
      font-weight: 600;
      color: var(--primary-light);
      line-height: 1.25;
      margin-bottom: 24px;
    }

    .hero-desc {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.7;
      margin-bottom: 36px;
      white-space: pre-line;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
    }

    @media (max-width: 900px) { 
      .hero-grid { max-width: 100%; text-align: left; } 
    }
    @media (max-width: 768px) { 
      .hero-section {
        padding: 0;
        background-position: center top;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
      }
      .hero-section .container {
        padding: 0;
      }
      .hero-grid {
        margin-top: 0;
        width: 100%;
      }
      .hero-text { 
        padding: 28px 24px 90px 24px; 
        border-radius: 0;
      }
      .hero-mobile-img {
        display: block;
        width: 100%;
        height: auto;
        margin-bottom: -62px;
        border-radius: 16px;
        position: relative;
        z-index: 0;
      }
      .hero-title {
        font-size: clamp(57px, 5.5vw, 63px);
        margin-bottom: 20px;
      }
      .hero-desc {
        line-height: 1.4;
        margin-bottom: 40px;
      }
      .hero-tagline {
        width: 100%;
        border-radius: 16px;
        padding: 12px 16px;
        line-height: 1.4;
        margin-bottom: 28px;
        position: relative;
        z-index: 1;
      }
      .hero-title-sub {
        margin-bottom: 28px;
      }
      .hero-buttons {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 24px;
      }
      .hero-buttons .btn {
        width: 100%;
        justify-content: center;
      }
    }

    /* PROBLEMS */
    .problem-section {
      background: #FAFAFB;
      border-top: 1px solid var(--gray-200);
      border-bottom: 1px solid var(--gray-200);
      padding-bottom: 0 !important;
    }

    .problem-section .section-header {
      position: sticky;
      top: 90px;
      z-index: 5;
      background: #FAFAFB;
      padding-top: 20px;
      margin-top: -20px; /* Offset the padding */
    }

    .problem-grid {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 60vh;
    }

    .problem-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg);
      padding: 0;
      box-shadow: var(--shadow-lg);
      will-change: transform, filter;
      transform-origin: top center;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
      width: 100%;
      max-width: 420px;
      height: auto;
      min-height: 460px;
      position: sticky;
      overflow: hidden;
    }

    .problem-card:nth-child(1) { top: 285px; z-index: 1; }
    .problem-card:nth-child(2) { top: 305px; z-index: 2; }
    .problem-card:nth-child(3) { top: 325px; z-index: 3; }
    .problem-card:nth-child(4) { top: 345px; z-index: 4; }

    .problem-card-img {
      width: 100%;
      aspect-ratio: 1000 / 659;
      object-fit: cover;
      display: block;
    }

    .problem-content {
      padding: 24px 32px 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      flex-grow: 1;
    }

    .problem-content h3 { font-size: 22px; margin-bottom: 16px; color: var(--black); }
    .problem-content p { font-size: 15px; color: var(--gray-600); line-height: 1.6; }

    @media (max-width: 768px) {
      .problem-card { max-width: 390px; }
      .problem-content { padding: 16px 24px 24px; }
      .problem-card:nth-child(1) { top: calc(450px - 28vw); }
      .problem-card:nth-child(2) { top: calc(467px - 28vw); }
      .problem-card:nth-child(3) { top: calc(484px - 28vw); }
      .problem-card:nth-child(4) { top: calc(501px - 28vw); }
    }

    /* SERVICES */
    .services-section { 
      background: var(--white); 
      position: relative;
      z-index: 10;
      margin-top: -100vh;
    }
    .services-header {
      display: flex;
      align-items: center;
      text-align: left;
      margin: 0 auto 56px auto;
      max-width: 100%;
    }
    .services-header-anim {
      width: 144px;
      height: 144px;
      margin: 0;
      flex-shrink: 0;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .services-header-text {
      flex: 1;
      text-align: left;
    }

    @media (max-width: 768px) {
      .services-header {
        flex-direction: column;
        text-align: center;
      }
      .services-header-anim {
        margin-bottom: 24px;
      }
      .services-header-text {
        text-align: center;
      }
    }
    .services-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 48px;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      padding: 32px 36px;
      display: grid;
      grid-template-columns: 80px 1fr auto;
      gap: 28px;
      align-items: center;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: var(--primary);
      opacity: 0;
      transition: var(--transition);
    }

    .service-card:hover {
      transform: translateX(4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(152, 48, 213, 0.4);
    }

    .service-card:hover::before { opacity: 1; }
    .service-num {
      font-size: 42px;
      font-weight: 900;
      color: var(--primary);
      opacity: 0.3;
      line-height: 1;
      transition: var(--transition);
    }

    .service-card:hover .service-num { opacity: 1; transform: scale(1.05); }
    .service-content h3 { font-size: 20px; margin-bottom: 8px; color: var(--black); }
    .service-content p { font-size: 15px; color: var(--gray-600); line-height: 1.65; }
    .service-cta { display: flex; flex-direction: column; align-items: center; text-align: center; }

    @media (max-width: 840px) {
      .service-card { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
      .service-num { font-size: 28px; opacity: 0.8; }
    }

    /* MISSION BANNER */
    .mission-banner {
      background: var(--purple-gradient);
      color: var(--white);
      padding: 90px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .mission-icon {
      width: 112px;
      height: 112px;
      margin: 0 auto 24px auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mission-icon img { width: 96px; height: 96px; object-fit: contain; }
    .mission-label {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--primary-light);
      margin-bottom: 20px;
    }

    .mission-quote {
      font-size: clamp(22px, 3.2vw, 34px);
      font-weight: 100;
      line-height: 1.3;
      max-width: 860px;
      margin: 0 auto;
      color: #fff;
    }

    /* EXPERT */
    .expert-section { background: var(--white); }
    .expert-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 56px;
      align-items: flex-start;
      margin-bottom: 48px;
    }

    .expert-photo-col { position: sticky; top: 100px; }
    .expert-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      background: var(--bg-gradient);
    }

    .expert-card img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      object-position: top center;
      display: block;
    }

    .expert-text-col h2 { font-size: clamp(28px, 3.5vw, 38px); margin-bottom: 8px; }
    .expert-sub {
      font-size: 17px;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 24px;
      display: block;
    }

    .expert-bio { font-size: 16px; color: #333; line-height: 1.8; margin-bottom: 32px; }
    .expert-bio p { margin-bottom: 16px; }
    
    .expert-bio-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--primary);
      font-weight: 600;
      font-family: inherit;
      font-size: 15px;
      cursor: pointer;
      padding: 0;
      margin-top: -16px;
      margin-bottom: 32px;
      transition: color 0.2s;
    }
    .expert-bio-toggle:hover {
      color: var(--primary-dark);
    }

    @media (max-width: 768px) {
      .expert-bio {
        margin-bottom: 16px;
      }
      .expert-bio p:not(:first-child) {
        max-height: 0;
        opacity: 0;
        margin-bottom: 0;
        overflow: hidden;
        transform: translateY(15px);
        transition: max-height 0.6s ease, opacity 0.5s ease, margin-bottom 0.6s ease, transform 0.5s ease;
      }
      .expert-bio.expanded p:not(:first-child) {
        max-height: 500px;
        opacity: 1;
        margin-bottom: 16px;
        transform: translateY(0);
      }
      .expert-bio.expanded p:nth-child(2) { transition-delay: 0s, 0.1s, 0s, 0.1s; }
      .expert-bio.expanded p:nth-child(3) { transition-delay: 0s, 0.2s, 0s, 0.2s; }
      .expert-bio.expanded p:nth-child(4) { transition-delay: 0s, 0.3s, 0s, 0.3s; }
      .expert-bio.expanded p:nth-child(5) { transition-delay: 0s, 0.4s, 0s, 0.4s; }
      .expert-bio-toggle {
        display: inline-block;
      }
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 32px;
    }

    .stat-box {
      background: var(--gray-100);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      padding: 20px 16px;
      text-align: center;
      transition: var(--transition);
    }

    .stat-box:hover {
      background: var(--white);
      border-color: var(--primary);
      box-shadow: var(--shadow-sm);
      transform: translateY(-2px);
    }

    .stat-val {
      font-size: 74px;
      font-weight: 900;
      color: var(--primary);
      line-height: 1.1;
      margin-bottom: 6px;
      display: block;
    }

    .stat-lbl {
      font-size: 13px;
      font-weight: 600;
      color: var(--gray-600);
      display: block;
    }

    .strategy-callout {
      background: var(--primary-subtle);
      border-left: 4px solid var(--primary);
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      padding: 24px;
      margin: 32px 0;
    }

    .strategy-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 8px;
    }

    .strategy-text {
      font-size: 16px;
      font-weight: 500;
      color: var(--black);
      line-height: 1.6;
      font-style: italic;
    }

    @media (max-width: 900px) {
      .expert-grid { grid-template-columns: 1fr; gap: 36px; }
      .expert-photo-col { position: static; }
      .expert-card img { height: 400px; }
      .stats-row { grid-template-columns: 1fr; }
    }

    /* QUOTE SECTION */
    .quote-section {
      padding-top: 10px;
    }
    .quote-grid {
      max-width: 1000px;
      margin: 0 auto;
      padding: 40px 0;
      display: flex;
      align-items: center;
      flex-direction: row-reverse;
      justify-content: space-between;
      gap: 64px;
    }
    .quote-animation {
      width: 180px;
      height: 180px;
      flex-shrink: 0;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .quote-text-col {
      flex: 1;
      text-align: right;
    }
    .quote-label {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--primary);
      margin-bottom: 24px;
    }
    .quote-text {
      font-size: 26px;
      line-height: 1.5;
      color: var(--black);
      font-weight: 500;
    }

    @media (max-width: 768px) {
      .quote-grid {
        flex-direction: column;
        text-align: center;
        gap: 32px;
      }
      .quote-text-col {
        text-align: center;
      }
      .quote-text {
        font-size: 20px;
      }
    }

    /* CERTS */
    .certs-section {
      background: #FAFAFB;
      border-top: 1px solid var(--gray-200);
      border-bottom: 1px solid var(--gray-200);
    }

    .certs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .cert-card {
      position: relative;
      overflow: hidden;
      border: none;
      border-radius: var(--radius-md);
      padding: 40px 24px;
      text-align: center;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      box-shadow: var(--shadow-sm);
    }

    .cert-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary);
    }
    
    .cert-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      filter: blur(4px);
      transform: scale(1.1);
      z-index: 1;
    }
    
    .cert-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.3);
      z-index: 2;
    }
    
    .cert-content {
      position: relative;
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      height: 100%;
      justify-content: center;
    }

    .cert-title-blur {
      color: var(--white);
      margin-bottom: 24px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
      font-size: 16px;
      font-weight: 700;
    }

    .btn-outline-light {
      border: 1px solid rgba(255, 255, 255, 0.4);
      color: var(--white);
      background: transparent;
    }

    .btn-outline-light:hover {
      background: var(--white);
      color: var(--primary);
    }
    
    .btn-white {
      background: var(--white);
      color: var(--primary);
      border: 1px solid var(--white);
    }
    .btn-white:hover {
      background: transparent;
      color: var(--white);
    }

    .cert-btn-blur {
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.5);
      color: var(--white);
      backdrop-filter: blur(4px);
      transition: var(--transition);
    }

    .cert-btn-blur:hover {
      background: rgba(255, 255, 255, 0.3);
      border-color: var(--white);
    }

    @media (max-width: 768px) { .certs-grid { grid-template-columns: 1fr; } }

    /* AUDIENCE */
    .audience-section { background: var(--white); }
    .audience-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      }

    .audience-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      padding: 0;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: var(--transition);
    }
    
    .audience-card-body {
      padding: 24px 28px 32px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex-grow: 1;
    }

    .audience-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary);
    }

    .audience-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--primary-subtle);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .audience-icon svg { width: 24px; height: 24px; }
    .audience-card h3 { font-size: 19px; margin-bottom: 14px; color: var(--black); }
    .audience-card p { font-size: 15px; color: var(--gray-600); line-height: 1.65; margin-bottom: 20px; }
    .audience-tag {
      display: inline-block;
      padding: 6px 12px;
      background: var(--gray-100);
      border-radius: var(--radius-sm);
      font-size: 12px;
      font-weight: 600;
      color: var(--primary);
      border: 1px solid var(--gray-200);
    }

    @media (max-width: 900px) { .audience-grid { grid-template-columns: 1fr; } }

    /* RETREAT */
    .retreat-section {
      background: var(--purple-gradient);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }


    .retreat-box {
      position: relative;
      z-index: 1;
      padding: 48px 0; /* Убрал боковые отступы, так как рамки больше нет */
    }

    .retreat-banner-img {
      width: 100%;
      height: 400px;
      border-radius: var(--radius-md);
      overflow: hidden;
      margin-bottom: 36px;
      position: relative;
      
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .retreat-banner-img img { width: 100%; height: 100%; object-fit: cover; object-position: top;  }
    

    .retreat-banner-content h4 { font-size: 24px; color: #fff; margin-bottom: 6px; }
    .retreat-banner-content span { font-size: 14px; color: rgba(255, 255, 255, 0.8); }
    .retreat-header {
      text-align: center;
    }
    .retreat-header h2 { color: var(--white); font-size: clamp(28px, 4vw, 40px); margin-bottom: 12px; }
    .retreat-header .sub {
      font-size: 18px;
      color: var(--primary-light);
      font-weight: 500;
      margin-bottom: 24px;
      display: block;
    }

    .retreat-desc {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.8;
      margin: 0 auto 36px auto;
      max-width: 820px;
    }

    @media (max-width: 768px) {
      .retreat-box { padding: 24px 0; }
      .retreat-banner-img { height: 200px; }
    }

    /* REVIEWS */
    .reviews-section { background: var(--white); }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-bottom: 56px;
    }

    .review-card {
      background: #FAFAFB;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      padding: 32px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: var(--transition);
    }

    .review-card:hover {
      box-shadow: var(--shadow-md);
      border-color: rgba(152, 48, 213, 0.3);
      transform: translateY(-2px);
    }

    .review-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 18px;
    }

    .review-avatar {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-full);
      background: var(--purple-gradient);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .review-author h4 { font-size: 16px; margin-bottom: 2px; color: var(--black); }
    .review-author span { font-size: 12px; color: var(--primary); font-weight: 600; }
    .review-quote { font-size: 15px; color: #444; line-height: 1.7; font-style: italic; }

    .video-reviews-block {
      border-top: 1px solid var(--gray-200);
      padding-top: 48px;
      margin-top: 20px;
    }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 24px;
    }

    .video-card {
      background: #FAFAFB;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      overflow: hidden;
      cursor: pointer;
      transition: var(--transition);
    }

    .video-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary);
    }

    .video-thumb {
      aspect-ratio: 16 / 9;
      background: linear-gradient(135deg, #240a36 0%, #111111 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .play-btn {
      width: 52px;
      height: 52px;
      border-radius: var(--radius-full);
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.3);
      transition: transform 0.2s;
    }

    .play-btn::after {
      content: "";
      display: block;
      width: 0;
      height: 0;
      border-left: 14px solid var(--primary);
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
      margin-left: 3px;
    }

    .video-card:hover .play-btn { transform: scale(1.1); }
    .video-info { padding: 16px; text-align: center; font-size: 14px; font-weight: 600; color: var(--black); }

    @media (max-width: 768px) {
      .reviews-grid { grid-template-columns: 1fr; }
      .video-grid { grid-template-columns: 1fr; }
    }

    /* FAQ ACCORDION */
    .faq-section {
      background: #FAFAFB;
      border-top: 1px solid var(--gray-200);
      border-bottom: 1px solid var(--gray-200);
    }

    .faq-list {
      max-width: 840px;
      margin: 0 auto 40px auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .faq-item {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition);
    }

    .faq-item.active {
      border-color: var(--primary);
      box-shadow: var(--shadow-sm);
    }

    .faq-question {
      padding: 22px 24px;
      font-size: 17px;
      font-weight: 700;
      color: var(--black);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      user-select: none;
      transition: color 0.2s ease;
    }

    .faq-question:hover { color: var(--primary); }
    .faq-icon {
      width: 32px;
      height: 32px;
      border-radius: var(--radius-full);
      background: var(--gray-100);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 600;
      color: var(--gray-600);
      flex-shrink: 0;
      transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
      background: var(--primary-subtle);
      color: var(--primary);
    }

    .faq-answer {
      display: none;
      padding: 0 24px 22px 24px;
      animation: faqFadeIn 0.25s ease;
    }

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

    @keyframes faqFadeIn {
      from { opacity: 0; transform: translateY(-4px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .faq-answer p { font-size: 15px; color: #444; line-height: 1.7; }

    /* ARTICLES */
    .articles-section { background: var(--gray-100); }
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      
    }

    .article-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      overflow: hidden;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

    .article-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(152, 48, 213, 0.4);
    }

    .article-thumb {
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: var(--bg-gradient);
    }

    .article-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .article-card:hover .article-thumb img { transform: scale(1.06); }
    .article-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
    .article-body h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 8px;
      line-height: 1.35;
    }

    .article-body p {
      font-size: 13px;
      color: var(--gray-600);
      line-height: 1.55;
      margin-bottom: 16px;
      flex: 1;
    }

    .article-link {
      font-size: 13px;
      font-weight: 700;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 4px;
    }

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

    /* GALLERY */
    .gallery-section {
      background: #FAFAFB;
      border-top: 1px solid var(--gray-200);
      border-bottom: 1px solid var(--gray-200);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .gallery-item {
      aspect-ratio: 1 / 1;
      border-radius: var(--radius-md);
      overflow: hidden;
      position: relative;
      cursor: pointer;
      background: var(--gray-200);
      box-shadow: var(--shadow-sm);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .gallery-item:hover img { transform: scale(1.08); }
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: rgba(152, 48, 213, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      opacity: 0;
      transition: opacity 0.25s ease;
      font-weight: 600;
      font-size: 14px;
    }

    .gallery-item:hover .gallery-overlay { opacity: 1; }

    @media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
    @media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

    /* CONTACTS */
    .contacts-section {
      background: var(--purple-gradient);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .contacts-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .contacts-info h2 {
      color: var(--white);
      font-size: clamp(32px, 4.5vw, 48px);
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .contacts-info p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 17px;
      line-height: 1.7;
      margin-bottom: 36px;
    }

    .contact-channels { display: flex; flex-direction: column; gap: 14px; }
    .channel-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 20px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-md);
      transition: var(--transition);
      color: var(--white);
    }

    .channel-item:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: var(--primary-light);
      transform: translateX(6px);
    }

    .channel-icon {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-full);
      background: var(--purple-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: #fff;
    }

    .channel-icon svg { width: 22px; height: 22px; }
    .channel-text strong { display: block; font-size: 15px; }
    .channel-text span { font-size: 13px; color: rgba(255, 255, 255, 0.7); }

    .contacts-form-box {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 40px;
      color: var(--black);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    }

    .contacts-form-box h3 { font-size: 22px; margin-bottom: 8px; }
    .contacts-form-box p { font-size: 14px; color: var(--gray-600); margin-bottom: 24px; }
    .form-group { margin-bottom: 18px; }
    .form-group label { display: block; font-size: 13px; font-weight: 600; color: #333; margin-bottom: 6px; }
    .form-input, .form-textarea {
      width: 100%;
      padding: 12px 16px;
      font-family: var(--font-main);
      font-size: 14px;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-sm);
      background: var(--gray-100);
      transition: var(--transition);
      outline: none;
    }

    .form-input:focus, .form-textarea:focus {
      border-color: var(--primary);
      background: var(--white);
      box-shadow: 0 0 0 3px var(--primary-subtle);
    }

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

    @media (max-width: 900px) {
      .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
      .contacts-form-box { padding: 28px; }
    }

    /* FOOTER */
    .site-footer {
      background: #0d0d0f;
      color: var(--white);
      padding: 64px 0 32px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      text-align: center;
    }

    .footer-logo { margin-bottom: 24px; display: inline-block; }
    .footer-logo img { height: 70px; width: auto; object-fit: contain; }
    .footer-nav {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 32px;
    }

    .footer-nav a { font-size: 14px; color: rgba(255, 255, 255, 0.7); transition: var(--transition); }
    .footer-nav a:hover { color: var(--primary-light); }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-bottom p { font-size: 13px; color: rgba(255, 255, 255, 0.5); }

    @media (max-width: 600px) { .footer-bottom { flex-direction: column; text-align: center; } }

    /* MODAL */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(8px);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
    }

    .modal-overlay.active { opacity: 1; pointer-events: auto; }
    .modal-box {
      background: var(--white);
      border-radius: var(--radius-lg);
      max-width: 680px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      padding: 36px;
      position: relative;
      transform: translateY(20px);
      transition: transform 0.25s ease;
    }

    .modal-overlay.active .modal-box { transform: translateY(0); }
    .modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      z-index: 1000;
      width: 36px;
      height: 36px;
      border-radius: var(--radius-full);
      background: var(--gray-100);
      border: none;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--black);
    }

    .modal-close:hover { background: var(--black); color: var(--white); }
    .modal-img-wrapper {
      aspect-ratio: 16 / 9;
      border-radius: var(--radius-md);
      overflow: hidden;
      margin-bottom: 24px;
      background: var(--bg-gradient);
    }

    .modal-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
    .modal-title { font-size: 24px; font-weight: 800; margin-bottom: 16px; color: var(--black); }
    .modal-text { font-size: 16px; color: #333; line-height: 1.8; }

    /* SCROLL TOP */
    .scroll-top-btn {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 48px;
      height: 48px;
      border-radius: var(--radius-full);
      background: var(--white);
      border: 1px solid var(--gray-200);
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--black);
      z-index: 900;
      opacity: 0;
      pointer-events: none;
      transition: var(--transition);
    }

    .scroll-top-btn.visible { opacity: 1; pointer-events: auto; }
    .scroll-top-btn:hover {
      background: var(--primary);
      color: var(--white);
      border-color: var(--primary);
      transform: translateY(-3px);
    }
  
    .modal-overlay.photo-mode .modal-box {
      width: 100vw;
      height: 100vh;
      max-width: 100vw;
      max-height: 100vh;
      padding: 0;
      background: transparent;
      box-shadow: none;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    
    .modal-content-center { text-align: center; padding: 20px 0; }
    .modal-icon-lg { width: 80px; height: 80px; margin: 0 auto 20px auto; border-radius: 50%; background: var(--primary-subtle); display: flex; align-items: center; justify-content: center; color: var(--primary); }
    .modal-icon-md { width: 72px; height: 72px; margin: 0 auto 20px auto; border-radius: 50%; background: var(--primary-subtle); display: flex; align-items: center; justify-content: center; color: var(--primary); }
    .modal-text-constrained { max-width: 500px; margin: 0 auto 24px auto; }
    .modal-text-spaced { margin-bottom: 24px; }
    .modal-verification-box { padding: 16px; background: var(--gray-100); border-radius: 12px; font-size: 14px; color: var(--gray-600); }
    
    /* PHOTO MODAL */
    .photo-modal-container {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100vw;
      height: 100vh;
      user-select: none;
    }
    .photo-modal-img {
      max-height: 90vh;
      max-width: 90vw;
      object-fit: contain;
      border-radius: 8px;
    }
    .photo-modal-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.3);
      width: 64px;
      height: 64px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      backdrop-filter: blur(8px);
      z-index: 10;
      transition: all 0.2s;
      color: white;
    }
    .photo-modal-nav:hover {
      background: rgba(255,255,255,0.25);
    }
    .photo-modal-prev { left: 24px; }
    .photo-modal-next { right: 24px; }
    
    @media (max-width: 768px) {
      .photo-modal-container {
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        width: 100%;
      }
      .photo-modal-img {
        max-height: 70vh;
        max-width: 100%;
      }
      .photo-modal-nav-container {
        position: static;
        display: flex;
        gap: 32px;
        justify-content: center;
        width: 100%;
      }
      .photo-modal-nav {
        position: static;
        transform: none;
        width: 56px;
        height: 56px;
      }
    }
/* RETREAT GALLERY ENHANCEMENTS */
.retreat-visuals {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.retreat-banner-img {
  margin-bottom: 0 !important;
}
.retreat-thumbnails {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}
.retreat-thumbnails::-webkit-scrollbar {
  height: 6px;
}
.retreat-thumbnails::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}
.retreat-thumbnails::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}
.retreat-thumb {
  flex: 0 0 120px;
  height: 160px;
  border-radius: 8px;
  border: 1px solid #fff;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;
}
.retreat-thumb:hover {
  transform: scale(1.03);
  opacity: 1;
}
.retreat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 900px) {
  .retreat-visuals {
    flex-direction: column;
    height: auto;
  }
  .retreat-banner-img {
    width: 100%;
    height: 400px !important;
  }
  .retreat-thumbnails {
    flex: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    overflow-y: visible;
    overflow-x: visible;
    padding-bottom: 0;
    padding-right: 0;
    scroll-snap-type: none;
  }
  .retreat-thumbnails::-webkit-scrollbar {
    display: none;
  }
  .retreat-thumb {
    flex: 0 0 calc(16.66% - 12px);
    height: 120px;
    width: auto;
  }
}

/* NEW INLINE CLOSE BUTTON FOR PHOTO MODAL */
.modal-overlay.photo-mode > .modal-box > .modal-close {
  display: none !important;
}
.modal-close-inline {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1100;
  color: var(--white);
  transition: background 0.3s ease, color 0.3s ease;
}
.modal-close-inline:hover {
  background: var(--white);
  color: var(--black);
}

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

/* Video iframe container */
.video-iframe-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
}
@media (max-width: 768px) {
  .video-iframe-container {
    padding-bottom: 112.5%;
  }
}
