:root {
      --brand: #01a199;
      --brand-dark: #018a83;
      --brand-deeper: #016b65;
      --brand-light: #e0f7f6;
      --brand-mid: #b3ebe9;
      --white: #ffffff;
      --gray-50: #f8fafc;
      --gray-100: #f1f5f9;
      --gray-200: #e2e8f0;
      --gray-400: #94a3b8;
      --gray-600: #475569;
      --gray-800: #1e293b;
      --gray-900: #0f172a;
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 24px;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
      --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.09);
      --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
      --shadow-brand: 0 8px 28px rgba(1, 161, 153, 0.28);
      --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  }

  *,
  *::before,
  *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  html {
      scroll-behavior: smooth;
      font-size: 16px;
  }

  body {
      font-family: 'Montserrat', sans-serif;
      color: var(--gray-800);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
  }

  img {
      display: block;
      max-width: 100%;
  }

  a {
      text-decoration: none;
      color: inherit;
  }

  ul {
      list-style: none;
  }

  .display {
      font-family: 'Playfair Display', serif;
  }

  .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 30px;
      border-radius: 50px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      border: 2px solid transparent;
      transition: var(--transition);
      white-space: nowrap;
  }

  .btn-primary {
      background: var(--brand);
      color: var(--white);
      box-shadow: var(--shadow-brand);
  }

  .btn-primary:hover {
      background: var(--brand-dark);
      box-shadow: 0 12px 36px rgba(1, 161, 153, 0.38);
      transform: translateY(-2px);
  }

  .btn-outline {
      background: transparent;
      border-color: var(--white);
      color: var(--white);
  }

  .btn-outline:hover {
      background: var(--white);
      color: var(--brand);
      transform: translateY(-2px);
  }

  .btn-outline-brand {
      background: transparent;
      border-color: var(--brand);
      color: var(--brand);
  }

  .btn-outline-brand:hover {
      background: var(--brand);
      color: var(--white);
      transform: translateY(-2px);
  }

  .btn-sm {
      padding: 10px 22px;
      font-size: 0.875rem;
  }

  .btn-whatsapp {
      background: var(--brand);
      color: var(--white);
      box-shadow: var(--shadow-brand);
      width: 100%;
      justify-content: center;
  }

  .btn-whatsapp:hover {
      background: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(1, 161, 153, 0.38);
  }

  .section {
      padding: 70px 0;
  }

  .section-alt {
      background: var(--gray-50);
  }

  .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
  }

  .section-label {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--brand);
      background: var(--brand-light);
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 16px;
  }

  .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 700;
      line-height: 1.25;
      color: var(--gray-900);
      margin-bottom: 16px;
  }

  .section-subtitle {
      font-size: 1.05rem;
      color: var(--gray-600);
      line-height: 1.75;
  }

  .section-header {
      margin-bottom: 60px;
  }

  .section-header.centered {
      text-align: center;
  }

  .section-header.centered .section-subtitle {
      margin: 0 auto;
  }

  /* HEADER */
  .header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--gray-200);
      transition: var(--transition);
  }

  .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
  }

  .logo {
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .logo-icon {
      width: 38px;
      height: 38px;
      background: var(--brand);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .logo-icon img {
  }

  .logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--gray-900);
  }

  .logo-text span {
      color: var(--brand);
  }

  .nav {
      display: flex;
      align-items: center;
      gap: 36px;
  }

  .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
  }

  .nav-links a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--gray-600);
      position: relative;
      transition: var(--transition);
  }

  .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--brand);
      border-radius: 2px;
      transition: var(--transition);
  }

  .nav-links a:hover {
      color: var(--brand);
  }

  .nav-links a:hover::after {
      width: 100%;
  }

  .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
  }

  .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--gray-800);
      border-radius: 2px;
      transition: var(--transition);
  }

  /* HERO */
  .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: linear-gradient(135deg, var(--gray-900) 0%, #042e2c 45%, var(--brand-deeper) 100%);
  }

  .hero-bg-pattern {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 20% 50%, rgba(1, 161, 153, 0.18) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(1, 161, 153, 0.12) 0%, transparent 40%), radial-gradient(circle at 60% 80%, rgba(1, 161, 153, 0.08) 0%, transparent 35%);
      z-index: 0;
  }

  .hero-grid {
      position: absolute;
      inset: 0;
      z-index: 0;
      opacity: 0.04;
      background-image: linear-gradient(var(--brand) 1px, transparent 1px), linear-gradient(90deg, var(--brand) 1px, transparent 1px);
      background-size: 60px 60px;
  }

  .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      padding: 120px 0 80px;
  }

  .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(1, 161, 153, 0.15);
      border: 1px solid rgba(1, 161, 153, 0.3);
      color: #6de8e2;
      padding: 8px 18px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 28px;
  }

  .hero-badge-dot {
      width: 6px;
      height: 6px;
      background: var(--brand);
      border-radius: 50%;
      animation: pulse 2s infinite;
  }

  @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1) }
      50% { opacity: .5; transform: scale(1.4) }
  }

  .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 5vw, 3.8rem);
      font-weight: 700;
      line-height: 1.2;
      color: var(--white);
      margin-bottom: 24px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      hyphens: auto;
  }

  .hero-title em {
      font-style: italic;
      color: var(--brand);
      background: linear-gradient(135deg, #3dd4ce, #01a199);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }

  .hero-desc {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.8;
      margin-bottom: 40px;
      max-width: 480px;
  }

  .hero-cta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 56px;
  }

  .hero-stats {
      display: flex;
      gap: 40px;
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-stat-value {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
  }

  .hero-stat-value span {
      color: var(--brand);
  }

  .hero-stat-label {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 500;
      margin-top: 6px;
  }

  .hero-visual {
      position: relative;
  }

  .hero-card-main {
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-lg);
      padding: 36px;
      animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
      0%, 100% { transform: translateY(0) }
      50% { transform: translateY(-12px) }
  }

  .hero-card-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 8px;
  }

  .hero-card-rate {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
      margin-bottom: 4px;
  }

  .hero-card-rate span {
      font-size: 1.4rem;
      color: var(--brand);
  }

  .hero-card-sub {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 28px;
  }

  .hero-card-bar {
      background: rgba(255, 255, 255, 0.08);
      border-radius: 50px;
      height: 6px;
      margin-bottom: 6px;
      overflow: hidden;
  }

  .hero-card-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--brand), #6de8e2);
      border-radius: 50px;
  }

  .hero-card-bar-label {
      display: flex;
      justify-content: space-between;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 20px;
  }

  .hero-card-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-card-avatar-group {
      display: flex;
  }

  .hero-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.2);
      background: var(--brand);
      overflow: hidden;
      margin-left: -8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      font-weight: 700;
      color: white;
  }

  .hero-avatar:first-child {
      margin-left: 0;
  }

  .hero-card-meta-text {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.55);
  }

  .hero-card-meta-text strong {
      color: var(--white);
  }

  .hero-pill {
      position: absolute;
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 14px 20px;
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      gap: 12px;
      animation: float2 5s ease-in-out infinite;
  }

  @keyframes float2 {
      0%, 100% { transform: translateY(0) }
      50% { transform: translateY(-8px) }
  }

  .hero-pill-1 { top: -20px; right: -20px; animation-delay: -2s; }
  .hero-pill-2 { bottom: -16px; left: -24px; animation-delay: -1s; }

  .hero-pill-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: var(--brand-light);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .hero-pill-icon svg {
      width: 18px;
      height: 18px;
      stroke: var(--brand);
      fill: none;
      stroke-width: 2;
  }

  .hero-pill-label {
      font-size: 0.7rem;
      color: var(--gray-400);
      font-weight: 500;
  }

  .hero-pill-value {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--gray-900);
      line-height: 1.2;
  }

  /* ABOUT */
  .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
  }

  .about-text .section-subtitle {
      margin-bottom: 32px;
  }

  .about-checklist {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 40px;
  }

  .check-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
  }

  .check-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--brand-light);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
  }

  .check-icon svg {
      width: 13px;
      height: 13px;
      stroke: var(--brand);
      stroke-width: 3;
      fill: none;
  }

  .check-text {
      font-size: 0.95rem;
      color: var(--gray-600);
      line-height: 1.6;
  }

  .check-text strong {
      color: var(--gray-800);
  }

  .about-benefits {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
  }

  .benefit-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      padding: 28px 24px;
      text-align: center;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
  }

  .benefit-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-mid);
  }

  .benefit-icon {
      width: 52px;
      height: 52px;
      background: var(--brand-light);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      transition: var(--transition);
  }

  .benefit-icon svg {
      width: 26px;
      height: 26px;
      stroke: var(--brand);
      fill: none;
      stroke-width: 1.8;
  }

  .benefit-card:hover .benefit-icon {
      background: var(--brand);
  }

  .benefit-card:hover .benefit-icon svg {
      stroke: var(--white);
  }

  .benefit-title {
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--gray-900);
      margin-bottom: 8px;
  }

  .benefit-desc {
      font-size: 0.82rem;
      color: var(--gray-600);
      line-height: 1.6;
  }

  /* EXPERTS */
  .experts-carousel-wrapper {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
  }

  .experts-carousel {
      overflow: hidden;
      border-radius: var(--radius-md);
  }

  .experts-track {
      display: flex;
      gap: 24px;
      transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
  }

  .expert-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      box-shadow: var(--shadow-sm);
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
  }

  .expert-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: var(--brand-mid);
  }

  .expert-photo {
      position: relative;
      height: 220px;
      background: linear-gradient(135deg, var(--brand-deeper), var(--brand));
      overflow: hidden;
      flex-shrink: 0;
  }

  .expert-photo-initials {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 3.5rem;
      font-weight: 700;
      color: rgba(255,255,255,0.25);
      letter-spacing: -2px;
      user-select: none;
  }

  .expert-photo-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  }

  .expert-badge {
      position: absolute;
      top: 14px;
      right: 14px;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.2);
      color: white;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      padding: 5px 12px;
      border-radius: 50px;
      text-transform: uppercase;
  }

  .expert-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
  }

  .expert-name {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--gray-900);
      margin-bottom: 4px;
  }

  .expert-title {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--brand);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 12px;
  }

  .expert-desc {
      font-size: 0.85rem;
      color: var(--gray-600);
      line-height: 1.65;
      margin-bottom: 20px;
      flex: 1;
  }

  .expert-divider {
      height: 1px;
      background: var(--gray-100);
      margin-bottom: 20px;
  }

  .btn-whatsapp {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: #25D366;
      color: white;
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 600;
      padding: 10px 18px;
      border-radius: 50px;
      transition: background 0.2s ease, transform 0.2s ease;
      width: 100%;
      white-space: nowrap;
  }

  .btn-whatsapp:hover {
      background: #1ebe5d;
      transform: scale(1.02);
  }

  .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 50%;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0,0,0,0.12);
      transition: var(--transition);
      z-index: 10;
      color: var(--gray-900);
  }

  .carousel-btn:hover {
      background: var(--brand);
      color: white;
      border-color: var(--brand);
      box-shadow: 0 6px 20px rgba(1, 161, 153, 0.35);
  }

  .carousel-btn:disabled {
      opacity: 0.35;
      cursor: default;
      pointer-events: none;
  }

  .carousel-btn-prev { left: -22px; }
  .carousel-btn-next { right: -22px; }

  .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 24px;
  }

  .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gray-200);
      border: none;
      cursor: pointer;
      transition: background 0.25s, transform 0.25s;
      padding: 0;
  }

  .carousel-dot.active {
      background: var(--brand);
      transform: scale(1.4);
  }

  @media (max-width: 640px) {
      .experts-carousel-wrapper { padding: 0 0 0 0; }
      .carousel-btn { width: 36px; height: 36px; }
      .carousel-btn-prev { left: -8px; }
      .carousel-btn-next { right: -8px; }
  }

  /* ===== FAQ SECTION ===== */
  .faq-section {
      background: var(--white);
  }

  .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
  }

  .faq-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
  }

  .faq-item {
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition);
      background: var(--white);
  }

  .faq-item.open {
      border-color: var(--brand-mid);
      box-shadow: var(--shadow-sm);
  }

  .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 24px;
      cursor: pointer;
      user-select: none;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--gray-800);
      transition: var(--transition);
  }

  .faq-question:hover {
      color: var(--brand);
      background: var(--gray-50);
  }

  .faq-item.open .faq-question {
      color: var(--brand);
      background: var(--brand-light);
  }

  .faq-chevron {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--gray-100);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: var(--transition);
  }

  .faq-item.open .faq-chevron {
      background: var(--brand);
      transform: rotate(180deg);
  }

  .faq-chevron svg {
      width: 14px;
      height: 14px;
      stroke: var(--gray-600);
      fill: none;
      stroke-width: 2.5;
      transition: var(--transition);
  }

  .faq-item.open .faq-chevron svg {
      stroke: white;
  }

  .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq-item.open .faq-answer {
      max-height: 400px;
  }

  .faq-answer-inner {
      padding: 10px 0 24px 20px;
      font-size: 0.9rem;
      color: var(--gray-600);
      line-height: 1.75;
  }

  .faq-promo {
      background: linear-gradient(135deg, var(--brand-deeper) 0%, var(--brand) 100%);
      border-radius: var(--radius-lg);
      padding: 48px 40px;
      color: white;
      position: sticky;
      top: 100px;
  }

  .faq-promo-icon {
      width: 56px;
      height: 56px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
  }

  .faq-promo-icon svg {
      width: 28px;
      height: 28px;
      stroke: white;
      fill: none;
      stroke-width: 1.8;
  }

  .faq-promo-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 12px;
  }

  .faq-promo-desc {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.7;
      margin-bottom: 28px;
  }

  .faq-promo .btn {
      background: white;
      color: var(--brand);
      border-color: white;
      width: 100%;
      justify-content: center;
      font-weight: 700;
  }

  .faq-promo .btn:hover {
      background: var(--brand-light);
      transform: translateY(-2px);
  }

  .faq-promo-note {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 14px;
      text-align: center;
  }

  /* ===== SOCIAL NETWORKS SECTION ===== */
  .socials-section {
      background: var(--gray-50);
  }

  .socials-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
  }

  .social-channel-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg);
      padding: 36px 20px 28px;
      text-align: center;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
      text-decoration: none;
      color: inherit;
      cursor: pointer;
  }

  .social-channel-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
  }

  .social-channel-icon {
      width: 64px;
      height: 64px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      transition: var(--transition);
  }

  .social-channel-icon svg {
      width: 30px;
      height: 30px;
  }

  .social-channel-card:hover .social-channel-icon {
      transform: scale(1.1);
  }

  .social-channel-name {
      font-weight: 700;
      font-size: 1rem;
      color: var(--gray-900);
      margin-bottom: 6px;
  }

  .social-channel-label {
      font-size: 0.78rem;
      color: var(--gray-400);
      font-weight: 500;
      line-height: 1.4;
  }

  /* YouTube */
  .sc-youtube .social-channel-icon { background: #fff0f0; }
  .sc-youtube:hover { border-color: #ff0000; }
  .sc-youtube:hover .social-channel-icon { background: #ff0000; }
  .sc-youtube .social-channel-icon svg { fill: #ff0000; }
  .sc-youtube:hover .social-channel-icon svg { fill: white; }

  /* Instagram */
  .sc-instagram .social-channel-icon { background: #fff0f8; }
  .sc-instagram:hover { border-color: #e1306c; }
  .sc-instagram:hover .social-channel-icon { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
  .sc-instagram .social-channel-icon svg { fill: #e1306c; }
  .sc-instagram:hover .social-channel-icon svg { fill: white; }

  /* Facebook */
  .sc-facebook .social-channel-icon { background: #eff5ff; }
  .sc-facebook:hover { border-color: #1877f2; }
  .sc-facebook:hover .social-channel-icon { background: #1877f2; }
  .sc-facebook .social-channel-icon svg { fill: #1877f2; }
  .sc-facebook:hover .social-channel-icon svg { fill: white; }

  /* Telegram */
  .sc-telegram .social-channel-icon { background: #eef9ff; }
  .sc-telegram:hover { border-color: #0088cc; }
  .sc-telegram:hover .social-channel-icon { background: #0088cc; }
  .sc-telegram .social-channel-icon svg { fill: #0088cc; }
  .sc-telegram:hover .social-channel-icon svg { fill: white; }

  /* TikTok */
  .sc-tiktok .social-channel-icon { background: #fef0ff; }
  .sc-tiktok:hover { border-color: #69c9d0; }
  .sc-tiktok:hover .social-channel-icon { background: #69c9d0; }
  .sc-tiktok .social-channel-icon svg { fill: #69c9d0; }
  .sc-tiktok:hover .social-channel-icon svg { fill: white; }

  /* WhatsApp */
  .sc-whatsapp .social-channel-icon { background: #edfbf3; }
  .sc-whatsapp:hover { border-color: #25d366; }
  .sc-whatsapp:hover .social-channel-icon { background: #25d366; }
  .sc-whatsapp .social-channel-icon svg { fill: #25d366; }
  .sc-whatsapp:hover .social-channel-icon svg { fill: white; }

  /* ===== PARTNERS SECTION ===== */
  .partners-section {
      background: var(--white);
  }

  .partners-intro {
      font-size: 0.95rem;
      color: var(--gray-600);
      line-height: 1.75;
      max-width: 620px;
      margin: 0 auto 56px;
      text-align: center;
  }

  .partners-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 20px;
      margin-bottom: 10px;
  }

  .partner-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      padding: 32px 24px;
      padding-bottom: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
      text-align: center;
  }

  .partner-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-mid);
  }

  .partner-logo {
      max-height: 100px;
      height: 100px;
  }

  .partner-logo-wrap {
      width: 72px;
      height: 72px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      flex-shrink: 0;
      transition: var(--transition);
  }

  .partner-card:hover .partner-logo-wrap {
      transform: scale(1.08);
  }

  .partner-name {
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--gray-900);
  }

  .partner-type {
      font-size: 0.75rem;
      color: var(--gray-400);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.08em;
  }

  .partners-logos-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--gray-50);
  }

  .partners-logo-item {
      flex: 1;
      min-width: 140px;
      padding: 28px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-right: 1px solid var(--gray-200);
      transition: var(--transition);
  }

  .partners-logo-item:last-child {
      border-right: none;
  }

  .partners-logo-item:hover {
      background: var(--brand-light);
  }

  .partners-logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--gray-400);
      transition: var(--transition);
      letter-spacing: -0.5px;
  }

  .partners-logo-item:hover .partners-logo-text {
      color: var(--brand);
  }

  /* CONTACT */
  .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
  }

  .contact-info-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--gray-900);
      margin-bottom: 16px;
  }

  .contact-info-desc {
      font-size: 0.95rem;
      color: var(--gray-600);
      line-height: 1.75;
      margin-bottom: 36px;
  }

  .contact-details {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 36px;
  }

  .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
  }

  .contact-item-icon {
      width: 44px;
      height: 44px;
      background: var(--brand-light);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .contact-item-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--brand);
      fill: none;
      stroke-width: 2;
  }

  .contact-item-label {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--gray-400);
      margin-bottom: 4px;
  }

  .contact-item-value {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--gray-800);
  }

  .contact-map-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--brand);
      text-decoration: none;
      margin-top: 4px;
      transition: var(--transition);
  }

  .contact-map-link:hover {
      color: var(--brand-dark);
      text-decoration: underline;
  }

  .contact-map-link svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
  }

  .contact-info-panel {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg);
      padding: 44px;
      box-shadow: var(--shadow-md);
  }

  .contact-panel-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--gray-900);
      margin-bottom: 8px;
  }

  .contact-panel-sub {
      font-size: 0.875rem;
      color: var(--gray-600);
      line-height: 1.7;
      margin-bottom: 32px;
  }

  .contact-panel-divider {
      height: 1px;
      background: var(--gray-100);
      margin: 28px 0;
  }

  .contact-hours-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 28px;
  }

  .contact-hours-item {
      background: var(--gray-50);
      border-radius: var(--radius-sm);
      padding: 14px 16px;
  }

  .contact-hours-day {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--gray-400);
      margin-bottom: 4px;
  }

  .contact-hours-time {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--gray-800);
  }

  .contact-hours-time.closed {
      color: var(--gray-400);
  }

  .contact-map-embed {
      width: 100%;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--brand-mid);
      display: block;
      text-decoration: none;
      position: relative;
  }

  .contact-map-visual {
      width: 100%;
      height: 160px;
      background: linear-gradient(135deg, #e0f7f6 0%, #b3ebe9 50%, #9de3e1 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
  }

  .contact-map-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
          linear-gradient(rgba(1, 161, 153, 0.08) 1px, transparent 1px),
          linear-gradient(90deg, rgba(1, 161, 153, 0.08) 1px, transparent 1px);
      background-size: 24px 24px;
  }

  .contact-map-embed:hover .contact-map-visual {
      background: linear-gradient(135deg, #c8f0ee 0%, #9de3e1 50%, #7ddad8 100%);
  }

  .contact-map-pin {
      width: 40px;
      height: 40px;
      background: var(--brand);
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 14px rgba(1, 161, 153, 0.4);
      position: relative;
      z-index: 1;
      margin-bottom: 4px;
  }

  .contact-map-pin svg {
      width: 18px;
      height: 18px;
      fill: white;
      transform: rotate(45deg);
  }

  .contact-map-text {
      position: relative;
      z-index: 1;
      text-align: center;
  }

  .contact-map-text strong {
      display: block;
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--brand-deeper);
  }

  .contact-map-text small {
      font-size: 0.75rem;
      color: var(--brand-dark);
      opacity: 0.8;
  }

  .contact-map-footer {
      background: var(--brand);
      padding: 10px 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
  }

  .contact-map-footer span {
      font-size: 0.8rem;
      font-weight: 600;
      color: white;
  }

  .contact-map-footer svg {
      width: 16px;
      height: 16px;
      stroke: white;
      fill: none;
      stroke-width: 2;
  }

  /* FOOTER */
  .footer {
      background: linear-gradient(135deg, var(--gray-900) 0%, #041f1e 60%, var(--brand-deeper) 100%);
      padding: 72px 0 0;
  }

  .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 60px;
      padding-bottom: 56px;
  }

  .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
  }

  .footer-logo .logo-icon {
      background: rgba(1, 161, 153, 0.2);
      border: 1px solid rgba(1, 161, 153, 0.3);
  }

  .footer-logo .logo-text {
      color: var(--white);
  }

  .footer-desc {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.75;
      max-width: 300px;
      margin-bottom: 28px;
  }

  .footer-social {
      display: flex;
      gap: 12px;
  }

  .social-link {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      color: rgba(255, 255, 255, 0.6);
  }

  .social-link:hover {
      background: var(--brand);
      border-color: var(--brand);
      color: white;
      transform: translateY(-2px);
  }

  .social-link svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
  }

  .footer-col-title {
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--white);
      margin-bottom: 20px;
  }

  .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  .footer-links a {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.5);
      transition: var(--transition);
  }

  .footer-links a:hover {
      color: var(--brand);
      padding-left: 4px;
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      padding: 24px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  .footer-copy {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.35);
  }

  .footer-copy a {
      color: var(--brand);
  }

  .footer-tagline {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.25);
      font-style: italic;
  }

  /* RESPONSIVE */
  @media (max-width: 1100px) {
      .experts-grid { grid-template-columns: repeat(3, 1fr); }
      .partners-grid { grid-template-columns: repeat(2, 1fr); }
      .socials-grid { grid-template-columns: repeat(3, 1fr); }
  }

  @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 100px 0 60px; }
      .hero-visual { display: none; }
      .about-grid { grid-template-columns: 1fr; gap: 48px; }
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  @media (max-width: 768px) {
      .section { padding: 64px 0; }
      .nav-links, .nav .btn { display: none; }
      .hamburger { display: flex; }
      .about-benefits { grid-template-columns: 1fr; }
      .experts-grid { grid-template-columns: 2fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 36px; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
      .hero-stats { gap: 24px; flex-wrap: wrap; }
      .socials-grid { grid-template-columns: repeat(2, 1fr); }
      .partners-grid { grid-template-columns: 1fr 1fr; }
      .partners-logos-row { flex-direction: column; }
      .partners-logo-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
      .partners-logo-item:last-child { border-bottom: none; }
  }

  @media (max-width: 480px) {
      .hero-cta { flex-direction: column; }
      .btn { width: 100%; justify-content: center; }
      .socials-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
  }

  .hero-badge { animation: fadeUp 0.6s ease both; }
  .hero-title { animation: fadeUp 0.7s 0.1s ease both; }
  .hero-desc { animation: fadeUp 0.7s 0.2s ease both; }
  .hero-cta { animation: fadeUp 0.7s 0.3s ease both; }
  .hero-stats { animation: fadeUp 0.7s 0.4s ease both; }

  /* ===== MOBILE NAV OVERLAY ===== */
  .nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      z-index: 998;
      backdrop-filter: blur(2px);
  }
  .nav-overlay.active { display: block; }

  /* ===== MOBILE NAV DRAWER ===== */
  @media (max-width: 768px) {
      .nav {
          position: fixed;
          top: 0;
          right: 0;
          width: min(300px, 80vw);
          height: 100dvh;
          background: var(--white);
          flex-direction: column;
          align-items: flex-start;
          justify-content: flex-start;
          padding: 88px 32px 40px;
          gap: 0;
          z-index: 999;
          box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
          transform: translateX(100%);
          visibility: hidden;
          transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                      visibility 0s linear 0.35s;
      }

      .nav.nav-open {
          transform: translateX(0);
          visibility: visible;
          transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                      visibility 0s linear 0s;
      }

      .nav.nav-open .nav-links,
      .nav.nav-open .btn { display: flex; }

      .nav-links {
          flex-direction: column;
          align-items: flex-start;
          gap: 4px;
          width: 100%;
          margin-bottom: 28px;
      }

      .nav-links a {
          font-size: 1rem;
          font-weight: 600;
          color: var(--gray-800);
          padding: 12px 0;
          width: 100%;
          border-bottom: 1px solid var(--gray-100);
      }

      .nav-links a:last-child { border-bottom: none; }
      .nav-links a::after { display: none; }
      .nav .btn { width: 100%; justify-content: center; margin-top: 8px; }
  }

  /* ===== HAMBURGER ANIMATION (X) ===== */
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 480px) {
      .hero-title br { display: none; }
      .hero-desc { font-size: 1rem; line-height: 1.6; }
      .hero-inner { padding: 60px 0 40px; }
  }

  @media (max-width: 360px) {
      .logo-text { font-size: 1.1rem; }
  }

  .hero-image-frame {
  position: relative;
  padding: 20px 30px 30px;
  animation: float 6s ease-in-out infinite;
}

.hero-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  /* Subtle glow matching brand color */
  box-shadow:
    0 0 0 1px rgba(1, 161, 153, 0.2),
    0 32px 80px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(1, 161, 153, 0.15);
  display: block;
}

/* Decorative corner accent */
.hero-image-frame::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(1, 161, 153, 0.25);
  pointer-events: none;
  z-index: 0;
}

/* Keep floating pills above the image */
.hero-image-frame .hero-pill {
  z-index: 2;
}

/* On mobile, hide the image frame (same as original hero-visual) */
@media (max-width: 900px) {
  .hero-visual { display: none; }
}