/* === FONT FACE DECLARATIONS === */
/* Switzer Variable Font */
@font-face {
    font-family: 'Switzer';
    src: url('assets/Switzer_Complete/Fonts/WEB/fonts/Switzer-Variable.woff2') format('woff2'),
         url('assets/Switzer_Complete/Fonts/WEB/fonts/Switzer-Variable.woff') format('woff'),
         url('assets/Switzer_Complete/Fonts/WEB/fonts/Switzer-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Switzer';
    src: url('assets/Switzer_Complete/Fonts/WEB/fonts/Switzer-VariableItalic.woff2') format('woff2'),
         url('assets/Switzer_Complete/Fonts/WEB/fonts/Switzer-VariableItalic.woff') format('woff'),
         url('assets/Switzer_Complete/Fonts/WEB/fonts/Switzer-VariableItalic.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
    font-style: italic;
  }
  
  /* Gambetta Variable Font */
  @font-face {
    font-family: 'Gambetta';
    src: url('assets/Gambetta_Complete/Fonts/WEB/fonts/Gambetta-Variable.woff2') format('woff2'),
         url('assets/Gambetta_Complete/Fonts/WEB/fonts/Gambetta-Variable.woff') format('woff'),
         url('assets/Gambetta_Complete/Fonts/WEB/fonts/Gambetta-Variable.ttf') format('truetype');
    font-weight: 300 700;
    font-display: swap;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Gambetta';
    src: url('assets/Gambetta_Complete/Fonts/WEB/fonts/Gambetta-VariableItalic.woff2') format('woff2'),
         url('assets/Gambetta_Complete/Fonts/WEB/fonts/Gambetta-VariableItalic.woff') format('woff'),
         url('assets/Gambetta_Complete/Fonts/WEB/fonts/Gambetta-VariableItalic.ttf') format('truetype');
    font-weight: 300 700;
    font-display: swap;
    font-style: italic;
  }
  
  /* === RESET & DESIGN SYSTEM === */
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  
  :root {
      /* Color System - 60-30-10 Rule */
      --bg: #000000; /* 60% - Neutral background (true black) */
      --bg-secondary: rgba(255, 252, 242, 0.03); /* 30% - Secondary backgrounds (warm white) */
      --accent: #fffcf2; /* 10% - Accent color for CTAs (warm white) */
      
      /* Typography Scale - Major Third (1.25 ratio) - Base 16px */
      --font-base: 1rem; /* 16px - Base paragraph text */
      --font-h6: 1.25rem; /* 20px - H6 */
      --font-h5: 1.563rem; /* 25px - H5 */
      --font-h4: 1.953rem; /* 31.25px - H4 */
      --font-h3: 2.441rem; /* 39px - H3 */
      --font-h2: 3.052rem; /* 48.8px - H2 */
      --font-h1: 3.815rem; /* 61px - H1 */
      
      /* Spacing System - 8 Point Grid */
      --space-1: 0.5rem; /* 8px */
      --space-2: 1rem; /* 16px */
      --space-3: 1.5rem; /* 24px */
      --space-4: 2rem; /* 32px */
      --space-5: 3rem; /* 48px */
      --space-6: 4rem; /* 64px */
      --space-7: 5rem; /* 80px */
      --space-8: 6rem; /* 96px */
      
      --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
      --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
      --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
  }
  
  html { 
      scroll-behavior: smooth; 
      overflow-x: hidden;
      font-size: 18px; /* Base font size */
  }
  
  body {
      font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg);
      color: var(--accent);
      font-size: var(--font-base); /* 16px base */
      line-height: 1.5; /* 150% for paragraphs - optimal readability */
      font-weight: 300;
      position: relative;
      overflow-x: hidden;
  }
  
  /* === AWWWARDS STYLE ANIMATIONS === */
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(40px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  @keyframes fadeIn {
      from {
          opacity: 0;
      }
      to {
          opacity: 1;
      }
  }
  
  @keyframes scaleIn {
      from {
          opacity: 0;
          transform: scale(0.95);
      }
      to {
          opacity: 1;
          transform: scale(1);
      }
  }
  
  @keyframes slideInLeft {
      from {
          opacity: 0;
          transform: translateX(-40px);
      }
      to {
          opacity: 1;
          transform: translateX(0);
      }
  }
  
  @keyframes slideInRight {
      from {
          opacity: 0;
          transform: translateX(40px);
      }
      to {
          opacity: 1;
          transform: translateX(0);
      }
  }
  
  /* Animation Classes - GSAP will handle animations */
  .animate-on-scroll {
      /* GSAP will set initial states and animate */
      will-change: opacity, transform;
  }
  
  /* Keep these classes for reference but GSAP handles the animations */
  .fade-in-up,
  .fade-in,
  .scale-in,
  .slide-in-left,
  .slide-in-right {
      /* GSAP controls these animations */
  }
  
  /* Stagger delays */
  .stagger-1 { transition-delay: 0.1s; }
  .stagger-2 { transition-delay: 0.2s; }
  .stagger-3 { transition-delay: 0.3s; }
  .stagger-4 { transition-delay: 0.4s; }
  .stagger-5 { transition-delay: 0.5s; }
  .stagger-6 { transition-delay: 0.6s; }
  
  /* === STICKY CTA BUTTON === */
  .sticky-cta {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 64px;
      height: 64px;
      background: #D0E1C8;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(208, 225, 200, 0.4);
      transition: all 0.3s ease;
      z-index: 999;
      cursor: pointer;
  }
  
  .sticky-cta svg {
      width: 28px;
      height: 28px;
      stroke: #000000;
  }
  
  .sticky-cta:hover {
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 8px 30px rgba(208, 225, 200, 0.6);
      background: #c5d6bd;
  }
  
  @media (max-width: 768px) {
      .sticky-cta {
          width: 56px;
          height: 56px;
          bottom: 1.5rem;
          right: 1.5rem;
      }
      
      .sticky-cta svg {
          width: 24px;
          height: 24px;
      }
  }
  
  @media (max-width: 480px) {
      .sticky-cta {
          width: 52px;
          height: 52px;
          bottom: 1rem;
          right: 1rem;
      }
      
      .sticky-cta svg {
          width: 22px;
          height: 22px;
      }
  }

  /* === GRID SYSTEM === */
  .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 var(--space-4); /* 32px */
      width: 100%;
  }
  
  @media (max-width: 1024px) {
      .container {
          padding: 0 var(--space-3); /* 24px */
      }
  }
  
  @media (max-width: 768px) {
      .container {
          padding: 0 var(--space-3); /* 24px */
      }
  }
  
  @media (max-width: 480px) {
      .container {
          padding: 0 var(--space-2); /* 16px */
      }
  }
  
  /* === NAVIGATION – MINIMAL, FLOATING === */
  nav {
      position: fixed;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      width: auto;
      max-width: 90%;
      transition: var(--transition);
  }
  .nav-container {
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border-radius: 40px;
      padding: 0.75rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border: none;
      box-shadow: none;
      transition: var(--transition);
      width: fit-content;
  }
  nav.scrolled {
      bottom: 2rem;
  }
  nav.scrolled .nav-container {
      background: transparent;
      padding: 0.75rem 1.5rem;
      border-radius: 40px;
      width: fit-content;
      max-width: 90vw;
      justify-content: space-between;
      align-items: center;
      min-width: auto;
      gap: 1.5rem;
  }
  nav.scrolled .profile-picture {
      width: 32px;
      height: 32px;
  }
  nav.scrolled .logo {
      font-size: 0.9rem;
      gap: 0.4rem;
      white-space: nowrap;
      display: flex;
      align-items: center;
  }
  nav.scrolled .logo-name {
      font-size: 0.85rem;
  }
  nav.scrolled .logo-text {
      display: block;
      opacity: 0.8;
      transform: translateX(0);
  }
  nav.scrolled .pulse-dot {
      display: inline-block;
      opacity: 1;
      transform: scale(1);
  }
  nav.scrolled .nav-menu {
      opacity: 0;
      pointer-events: none;
      transform: translateX(20px);
      width: 0;
      overflow: hidden;
  }
  .nav-social-icons {
      display: flex; /* Always visible */
      gap: 0.75rem;
      align-items: center;
      margin-left: 1.25rem;
      opacity: 1;
      transform: translateX(0);
      transition: opacity 0.4s ease, transform 0.4s ease;
      padding: 0.6rem 1rem;
      background: rgba(255, 252, 242, 0.05);
      border: 1px solid rgba(255, 252, 242, 0.1);
      border-radius: 28px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
  }
  nav.scrolled .nav-social-icons {
      display: flex;
      opacity: 1;
      transform: translateX(0);
  }
  .nav-social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border: none;
      color: var(--accent);
      text-decoration: none;
      transition: var(--transition);
      background: transparent;
      opacity: 0.8;
  }
  .nav-social-icon:hover {
      color: #D0E1C8;
      transform: translateY(-2px);
      opacity: 1;
  }
  .nav-social-icon svg,
  .nav-social-icon img {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      fill: currentColor;
  }
  .nav-social-icon img {
      display: block;
      filter: brightness(0) invert(1);
  }
  .logo {
      font-family: 'EB Garamond', 'Gambetta', serif;
      font-size: 1.5rem;
      font-weight: 700;
      font-style: italic;
      letter-spacing: -0.5px;
      color: var(--accent);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: var(--transition);
      text-decoration: none;
      cursor: pointer;
  }
  .profile-picture {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      object-fit: cover;
      transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
      display: none; /* Hidden by default */
      opacity: 0;
      transform: scale(0.5);
      margin-right: 0.5rem;
  }
  nav.scrolled .profile-picture {
      display: block; /* Show when scrolled */
      opacity: 1;
      transform: scale(1);
      animation: profileSlideIn 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  }
  
  @keyframes profileSlideIn {
      0% {
          opacity: 0;
          transform: scale(0.5);
      }
      50% {
          transform: scale(1.1);
      }
      100% {
          opacity: 1;
          transform: scale(1);
      }
  }
  .logo-text-container {
      display: none; /* Hidden by default */
      flex-direction: column;
      align-items: flex-start;
      line-height: 1.2;
  }
  .logo-name {
      font-size: 1rem;
      font-weight: 700;
      font-style: italic;
      color: var(--accent);
      display: block;
      transition: var(--transition);
      white-space: nowrap;
  }
  .logo-text {
      display: none;
      font-size: 0.75rem;
      font-weight: 500;
      opacity: 0;
      transition: opacity 0.4s ease, transform 0.4s ease;
      transform: translateX(-10px);
      white-space: nowrap;
      color: var(--accent);
  }
  .pulse-dot {
      display: none !important; /* Always hidden */
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #D0E1C8;
      margin-left: 0.3rem;
      animation: pulse 2s ease-in-out infinite;
      box-shadow: 0 0 10px rgba(208, 225, 200, 0.8), 0 0 20px rgba(208, 225, 200, 0.5);
      opacity: 0;
      transition: opacity 0.4s ease, transform 0.4s ease;
      transform: scale(0);
  }
  
  @keyframes pulse {
      0%, 100% {
          opacity: 1;
          transform: scale(1);
          box-shadow: 0 0 10px rgba(255, 252, 242, 0.8), 0 0 20px rgba(255, 252, 242, 0.5);
      }
      50% {
          opacity: 0.7;
          transform: scale(1.2);
          box-shadow: 0 0 15px rgba(255, 252, 242, 1), 0 0 30px rgba(255, 252, 242, 0.8);
      }
  }
  nav ul.nav-menu {
      display: none; /* Hidden by default */
      gap: 2rem;
      list-style: none;
      margin: 0;
      padding: 0;
      transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease, width 0.4s ease;
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
      width: auto;
  }
  nav a {
      color: var(--accent);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      opacity: 0.8;
      transition: opacity 0.3s;
  }
  nav a:hover {
      opacity: 1;
  }
  .btn-nav {
      background: #D0E1C8;
      color: #000000;
      padding: 0.7rem 1.5rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.9rem;
      transition: var(--transition);
      box-shadow: 0 0 15px rgba(255, 252, 242, 0.5), 0 0 30px rgba(255, 252, 242, 0.3);
      animation: glow 2s ease-in-out infinite alternate;
  }
  .btn-nav:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 20px rgba(255, 252, 242, 0.8), 0 0 40px rgba(255, 252, 242, 0.5);
  }
  
  @keyframes glow {
      from {
          box-shadow: 0 0 15px rgba(255, 252, 242, 0.5), 0 0 30px rgba(255, 252, 242, 0.3);
      }
      to {
          box-shadow: 0 0 20px rgba(255, 252, 242, 0.8), 0 0 40px rgba(255, 252, 242, 0.5);
      }
  }
  @keyframes glow-green {
      from {
          box-shadow: 0 0 15px rgba(208, 225, 200, 0.5), 0 0 30px rgba(208, 225, 200, 0.3);
      }
      to {
          box-shadow: 0 0 20px rgba(208, 225, 200, 0.8), 0 0 40px rgba(208, 225, 200, 0.5);
      }
  }
  
  /* Mobile Menu Toggle */
  .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--accent);
      font-size: 1.5rem;
      cursor: pointer;
      padding: 0.5rem;
      z-index: 1001;
  }
  .menu-toggle:focus {
      outline: none;
  }
  
  /* === HERO SECTION === */
  .hero-section {
      min-height: 100vh;
      padding: 120px 0 120px;
      display: flex;
      align-items: center;
  }
  .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-6); /* 64px - 8 point grid (8 × 8) */
      align-items: center;
  }
  .hero-image {
      height: 600px;
      width: 600px;
      background: var(--bg-secondary); /* 30% - Secondary background (warm white) */
      border: 1px solid rgba(255, 252, 242, 0.2);
      border-radius: 50%;
      overflow: hidden;
      position: relative;
      padding: 0;
  }
  .hero-profile-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 20%;
      display: block;
  }
  .hero-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
  }
  .hero-content h1 {
      font-family: 'EB Garamond', 'Gambetta', serif;
      font-size: clamp(var(--font-h2), 7vw, var(--font-h1));
      font-weight: 700;
      font-style: italic;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin: 0 0 var(--space-4);
      text-transform: uppercase;
      text-align: left;
  }
  .hero-content p {
      font-size: clamp(var(--font-base), 2.5vw, var(--font-h6));
      line-height: 1.6;
      margin: 0 0 var(--space-5);
      opacity: 0.9;
      text-align: left;
      letter-spacing: 0.01em;
  }
  
  .hero-social-icons {
      display: flex;
      gap: var(--space-3);
      align-items: center;
      justify-content: flex-start;
  }
  
  .hero-social-icons .social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      border: 1px solid rgba(255, 252, 242, 0.2);
      transition: var(--transition);
      background: transparent;
  }
  
  .hero-social-icons .social-icon img {
      width: 28px;
      height: 28px;
      display: block;
      filter: brightness(0) invert(1);
  }
  
  .hero-social-icons .social-icon:hover {
      background: #D0E1C8;
      color: #000000;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(208, 225, 200, 0.3);
      border-color: #D0E1C8;
  }
  
  .hero-social-icons .social-icon:hover img {
      filter: brightness(0);
  }
  
  @media (max-width: 1024px) {
      .hero-section {
          min-height: 100vh;
          padding: 100px 0 80px;
      }
      .hero-grid {
          grid-template-columns: 1fr;
          gap: var(--space-5);
          max-width: 600px;
          margin: 0 auto;
      }
      .hero-image {
          height: 450px;
          width: 450px;
          margin: 0 auto;
      }
      .hero-content {
          align-items: center;
      }
      .hero-content h1 {
          text-align: center;
          font-size: clamp(var(--font-h3), 8vw, var(--font-h1));
      }
      .hero-content p {
          text-align: center;
          max-width: 600px;
          margin-left: auto;
          margin-right: auto;
      }
      .hero-social-icons {
          justify-content: center;
      }
  }
  
  @media (max-width: 768px) {
      .hero-section {
          min-height: 100vh;
          padding: 80px 0 60px;
      }
      .hero-grid {
          gap: var(--space-4);
      }
      .hero-image {
          height: 350px;
          width: 350px;
      }
      .hero-content h1 {
          font-size: clamp(var(--font-h4), 10vw, var(--font-h2));
      }
      .hero-content p {
          font-size: clamp(0.95rem, 2.5vw, 1.125rem);
      }
      .hero-social-icons .social-icon {
          width: 56px;
          height: 56px;
      }
      .hero-social-icons .social-icon img {
          width: 24px;
          height: 24px;
      }
  }
  
  @media (max-width: 480px) {
      .hero-section {
          min-height: 100vh;
          padding: 60px 0 40px;
      }
      .hero-grid {
          gap: var(--space-3);
      }
      .hero-image {
          height: 280px;
          width: 280px;
      }
      .hero-content h1 {
          margin-bottom: var(--space-2);
          font-size: clamp(var(--font-h5), 8vw, var(--font-h3));
      }
      .hero-content p {
          margin-bottom: var(--space-3);
          font-size: 1rem;
          line-height: 1.6;
      }
      .hero-social-icons {
          gap: var(--space-2);
      }
      .hero-social-icons .social-icon {
          width: 52px;
          height: 52px;
      }
      .hero-social-icons .social-icon img {
          width: 22px;
          height: 22px;
      }
      .btn-hero {
          padding: 0.9rem 2rem;
          font-size: 1rem;
      }
  }
  
  /* === VSL SECTION – YOUTUBE ABOVE TEXT === */
  .vsl-section {
      padding: 160px 0 120px;
      text-align: center;
  }
  .vsl-video-wrapper {
      max-width: 95%;
      width: 100%;
      margin: 0 auto 4rem;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
      border: 1px solid rgba(255, 252, 242, 0.15);
      position: relative;
  }
  .vsl-video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      border-radius: 24px;
  }
  .vsl-video-overlay span {
      color: var(--accent);
      font-size: 2.5rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
  }
  .vsl-video-wrapper iframe {
      width: 100%;
      height: 560px;
      border: none;
      display: block;
  }
  .vsl-content {
      text-align: center;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      overflow: hidden;
      position: relative;
      padding: 80px 0;
  }
  .vsl-content h1 {
      font-family: 'EB Garamond', 'Gambetta', serif;
      font-size: clamp(var(--font-h2), 7vw, var(--font-h1));
      font-weight: 700;
      font-style: italic;
      line-height: 1.1; /* Tighter for headings - more impactful */
      letter-spacing: -0.02em; /* Tightened for larger text */
      margin: 0 auto var(--space-3); /* 24px - 8 point grid */
      text-transform: uppercase;
      text-align: center;
      width: 100%;
      overflow: hidden;
      position: relative;
      padding: 80px 0;
      margin-top: -80px;
      margin-bottom: calc(var(--space-3) - 80px);
  }
  .vsl-content p {
      font-size: clamp(var(--font-base), 2.5vw, var(--font-h6));
      line-height: 1.6; /* Improved line height for readability */
      max-width: 700px;
      margin: 0 auto var(--space-4); /* 32px - adjusted spacing */
      opacity: 0.9;
      text-align: center;
      letter-spacing: 0.01em; /* Slight letter spacing for clarity */
  }
  .highlight {
      color: #D0E1C8; /* Green text color */
      font-weight: 600; /* Make it slightly bolder for emphasis */
      display: inline;
  }
  .btn-hero {
      display: inline-block;
      background: #D0E1C8;
      color: #000000;
      padding: 1.1rem 3rem;
      border-radius: 60px;
      font-weight: 700;
      font-size: 1.1rem;
      text-decoration: none;
      transition: var(--transition);
      box-shadow: 0 0 15px rgba(208, 225, 200, 0.5), 0 0 30px rgba(208, 225, 200, 0.3);
      animation: glow-green 2s ease-in-out infinite alternate;
  }
  .btn-hero:hover {
      transform: translateY(-4px);
      box-shadow: 0 0 20px rgba(208, 225, 200, 0.8), 0 0 40px rgba(208, 225, 200, 0.5);
      background: #D0E1C8;
  }
  @media (max-width: 768px) {
      .btn-hero {
          padding: 1rem 2rem;
          font-size: 1rem;
      }
  }
  @media (max-width: 480px) {
      .btn-hero {
          padding: 0.9rem 1.5rem;
          font-size: 0.95rem;
      }
  }
  
  /* === SECTIONS === */
  section:not(.vsl-section) {
      padding: var(--space-8) 0; /* 96px - 8 point grid (12 × 8) */
      width: 100%;
      overflow: hidden;
      position: relative;
  }
  h2 {
      font-family: 'EB Garamond', 'Gambetta', serif;
      font-size: clamp(var(--font-h3), 6vw, var(--font-h2));
      font-weight: 700;
      font-style: italic;
      line-height: 1.2; /* Tighter for headings */
      letter-spacing: -0.01em; /* Tightened for larger text */
      text-align: center;
      margin: 0 auto var(--space-2); /* 16px - 8 point grid */
      width: 100%;
      overflow: hidden;
      position: relative;
      padding: 60px 0 10px 0;
  }
  @media (max-width: 768px) {
      section:not(.vsl-section) {
          padding: var(--space-7) 0; /* 80px - 8 point grid (10 × 8) */
      }
      h2 {
          margin-bottom: var(--space-4); /* 32px - 8 point grid */
      }
  }
  @media (max-width: 480px) {
      section:not(.vsl-section) {
          padding: var(--space-6) 0; /* 64px - 8 point grid (8 × 8) */
      }
      h2 {
          margin-bottom: var(--space-3); /* 24px - 8 point grid */
      }
  }
  
  /* === ABOUT === */
  .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-6); /* 64px - 8 point grid (8 × 8) */
      align-items: center;
  }
  .about-image {
      height: 500px;
      background: var(--bg-secondary); /* 30% - Secondary background (warm white) */
      border: 1px solid rgba(255, 252, 242, 0.2);
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      padding: 0;
  }
  .about-profile-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 20%;
      display: block;
  }
  .about-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow-x: visible; /* Allow horizontal overflow for social icons to expand on hover */
      overflow-y: hidden; /* Keep vertical overflow hidden */
      position: relative;
      padding: 60px 0 60px 12px; /* Add left padding to prevent icon cutoff on hover */
  }
  .about-text h2 {
      text-align: left;
      margin-bottom: 1rem;
      overflow: hidden;
      position: relative;
      padding: 60px 0 10px 0;
  }
  .about-text p {
      font-size: 1.125rem; /* 18px - larger for better readability */
      line-height: 1.7; /* 170% - increased spacing for easier reading */
      margin-bottom: var(--space-3); /* 24px - 8 point grid */
      opacity: 1; /* Full opacity for better contrast */
      text-align: left;
      letter-spacing: 0.01em; /* Slight letter spacing for clarity */
      max-width: 100%;
  }
  .btn-outline {
      display: inline-block;
      border: 2px solid var(--accent);
      color: var(--accent);
      padding: 1rem 2.5rem;
      border-radius: 60px;
      font-weight: 600;
      text-decoration: none;
      transition: var(--transition);
  }
  .btn-outline:hover {
      background: var(--accent);
      color: var(--bg);
  }
  
  /* Social Icons */
  .social-icons {
      display: flex;
      gap: var(--space-2); /* 16px - 8 point grid */
      align-items: center;
      margin-top: var(--space-4); /* 32px - 8 point grid */
      justify-content: flex-start;
  }
  .vsl-content .social-icons {
      justify-content: center;
      margin-top: var(--space-5); /* 48px - 8 point grid */
  }
  .about-text .social-icons {
      overflow: visible; /* Allow icons to expand beyond container on hover */
  }
  .social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 56px;
      height: 56px;
      border: none;
      border-radius: 50%;
      color: var(--accent);
      text-decoration: none;
      transition: var(--transition);
      background: transparent;
  }
  .social-icon svg,
  .social-icon img {
      width: 24px;
      height: 24px;
      stroke: currentColor;
      fill: currentColor;
  }
  .social-icon img {
      display: block;
      filter: brightness(0) invert(1);
  }
  .social-icon:hover {
      background: #D0E1C8;
      color: #000000;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(208, 225, 200, 0.3);
  }
  .social-icon:hover img {
      filter: brightness(0);
  }
  @media (max-width: 768px) {
      .about-grid {
          gap: 2.5rem;
      }
      .about-image {
          height: 350px;
          font-size: 3.5rem;
      }
      .about-text h2 {
          text-align: center;
      }
      .about-text p {
          font-size: 1rem;
          text-align: center;
      }
      .social-icons {
          justify-content: center;
      }
      .social-icon {
          width: 52px;
          height: 52px;
      }
      .social-icon svg {
          width: 22px;
          height: 22px;
      }
  }
  @media (max-width: 480px) {
      .about-image {
          height: 250px;
          font-size: 2.5rem;
      }
      .about-text h2 {
          text-align: center;
      }
      .about-text p {
          text-align: center;
      }
      .social-icons {
          justify-content: center;
          gap: 0.8rem;
      }
      .social-icon {
          width: 48px;
          height: 48px;
      }
      .social-icon svg {
          width: 20px;
          height: 20px;
      }
  }
  
  /* === FEATURES CAROUSEL === */
  #features-carousel {
      text-align: center;
      overflow: hidden;
  }
  #features-carousel .container {
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  #features-carousel h2 {
      font-size: clamp(var(--font-h4), 5vw, var(--font-h3));
      padding: 20px 0 10px 0;
      margin-bottom: var(--space-2);
  }
  .carousel-subtitle {
      font-size: clamp(1rem, 1.8vw, 1.125rem);
      line-height: 1.6;
      max-width: 800px;
      margin: 0 auto var(--space-6);
      opacity: 0.85;
      text-align: center;
  }
  .carousel-wrapper {
      position: relative;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      overflow: hidden;
  }
  .carousel-container {
      overflow: hidden;
      width: 100%;
  }
  .carousel-track {
      display: flex;
      gap: var(--space-4);
      animation: scroll-left 30s linear infinite;
  }
  .carousel-track:hover {
      animation-play-state: paused;
  }
  
  @keyframes scroll-left {
      0% {
          transform: translateX(0);
      }
      100% {
          transform: translateX(calc(-100% - var(--space-4)));
      }
  }
  
  .carousel-card {
      flex: 0 0 350px;
      min-width: 350px;
      background: var(--bg-secondary);
      border: 1px solid rgba(255, 252, 242, 0.15);
      border-radius: 24px;
      padding: var(--space-5);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  .carousel-card:hover {
      background: rgba(255, 252, 242, 0.08);
      border-color: rgba(255, 252, 242, 0.25);
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  .carousel-icon {
      width: 70px;
      height: 70px;
      background: rgba(255, 252, 242, 0.1);
      border: 1px solid rgba(255, 252, 242, 0.2);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-3);
      transition: var(--transition);
  }
  .carousel-card:hover .carousel-icon {
      background: rgba(208, 225, 200, 0.15);
      border-color: #D0E1C8;
      transform: scale(1.05);
  }
  .carousel-icon svg {
      width: 36px;
      height: 36px;
      color: var(--accent);
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
  }
  .carousel-card h3 {
      font-size: var(--font-h5);
      font-weight: 700;
      margin: 0 0 var(--space-2) 0;
      color: var(--accent);
  }
  .carousel-card p {
      font-size: var(--font-base);
      line-height: 1.7;
      opacity: 0.85;
      margin: 0;
  }
  
  @media (max-width: 768px) {
      .carousel-subtitle {
          margin-bottom: var(--space-4);
      }
      .carousel-card {
          flex: 0 0 300px;
          min-width: 300px;
          padding: var(--space-5);
      }
      .carousel-icon {
          width: 70px;
          height: 70px;
      }
      .carousel-icon svg {
          width: 35px;
          height: 35px;
      }
  }
  
  /* === PORTFOLIO === */
  #portfolio {
      text-align: center;
  }
  #portfolio .container {
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: var(--space-4);
      width: 100%;
      max-width: 1400px;
  }
  
  @media (max-width: 1024px) {
      .portfolio-grid {
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: var(--space-3);
      }
  }
  
  @media (max-width: 768px) {
      .portfolio-grid {
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: var(--space-3);
      }
  }
  
  @media (max-width: 480px) {
      .portfolio-grid {
          grid-template-columns: 1fr;
          gap: var(--space-3);
      }
  }
  .portfolio-item {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
  .portfolio-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  }
  .portfolio-thumb {
      width: 100%;
      aspect-ratio: 16 / 9; /* Maintain video aspect ratio */
      overflow: hidden;
      position: relative;
  }
  .portfolio-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
      display: block;
  }
  .portfolio-item:hover .portfolio-thumb img {
      transform: scale(1.08);
  }
  
  /* Portfolio Title Overlay */
  .portfolio-title-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: var(--space-4) var(--space-3);
      background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.35) 60%, transparent 100%);
      pointer-events: none;
      z-index: 2;
  }
  
  .portfolio-title {
      font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: clamp(0.875rem, 1.5vw, 1.1rem);
      font-weight: 600;
      color: var(--accent);
      margin: 0;
      line-height: 1.2;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      opacity: 1;
      transform: translateY(0);
  }
  .portfolio-info {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 1.5rem;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
      color: var(--accent);
  }
  .portfolio-info h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 0.3rem;
  }
  .portfolio-info p {
      font-size: 0.95rem;
      opacity: 0.9;
  }
  
  /* === TESTIMONIALS === */
  #testimonials {
      text-align: center;
  }
  #testimonials .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      max-width: 1000px;
  }
  .testimonials-header {
      width: 100%;
      margin-bottom: var(--space-6);
  }
  .testimonials-tag {
      display: inline-block;
      background: #000000;
      color: var(--accent);
      padding: 0.5rem 1.25rem;
      border-radius: 50px;
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: var(--space-3);
      border: 1px solid rgba(255, 252, 242, 0.2);
  }
  .testimonials-header h2 {
      font-size: clamp(var(--font-h3), 5vw, var(--font-h2));
      margin-bottom: var(--space-2);
      color: var(--accent);
      padding-bottom: 10px;
  }
  .testimonials-description {
      font-size: clamp(var(--font-base), 1.8vw, 1.125rem);
      line-height: 1.6;
      opacity: 0.9;
      color: var(--accent);
      max-width: 700px;
      margin: 0 auto;
  }
  .trusted-by-section {
      width: 100%;
      margin-bottom: var(--space-6);
  }
  .trusted-avatars {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: -10px;
      margin-bottom: var(--space-3);
      position: relative;
  }
  .trusted-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #000000;
      margin-left: -12px;
      transition: var(--transition);
  }
  .trusted-avatar:first-child {
      margin-left: 0;
      z-index: 3;
  }
  .trusted-avatar:nth-child(2) {
      z-index: 2;
  }
  .trusted-avatar:nth-child(3) {
      z-index: 1;
  }
  .trusted-avatar:hover {
      transform: translateY(-4px);
      z-index: 4;
  }
  .trusted-title {
      font-size: clamp(var(--font-h5), 3vw, var(--font-h4));
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--accent);
  }
  .trusted-subtitle {
      font-size: var(--font-base);
      opacity: 0.8;
      color: var(--accent);
      margin: 0;
  }
  .testimonial-carousel {
      width: 100%;
      max-width: 800px;
      margin: 0 auto;
      position: relative;
  }
  .testimonial-carousel-container {
      position: relative;
      width: 100%;
      min-height: 300px;
  }
  .testimonial-card {
      background: var(--bg-secondary);
      border: 1px solid rgba(255, 252, 242, 0.15);
      padding: 2.5rem;
      border-radius: 20px;
      transition: opacity 0.5s ease;
      display: none;
      width: 100%;
      min-height: 300px;
      opacity: 0;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  }
  .testimonial-card.active {
      display: block;
      opacity: 1;
  }
  .testimonial-content {
      display: flex;
      gap: var(--space-4);
      align-items: flex-start;
  }
  .testimonial-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      border: 2px solid rgba(255, 252, 242, 0.2);
  }
  .testimonial-info {
      flex: 1;
      text-align: left;
  }
  .testimonial-name {
      font-weight: 700;
      margin-bottom: 0.25rem;
      font-size: var(--font-h6);
      color: var(--accent);
  }
  .testimonial-title {
      font-size: var(--font-base);
      opacity: 0.8;
      margin: 0 0 var(--space-3) 0;
      color: var(--accent);
  }
  .testimonial-text {
      font-size: clamp(var(--font-base), 2vw, 1.25rem);
      line-height: 1.6;
      margin: var(--space-3) 0;
      font-weight: 600;
      color: var(--accent);
  }
  .testimonial-rating {
      display: flex;
      justify-content: flex-start;
      gap: 0.3rem;
      margin-top: var(--space-3);
  }
  .testimonial-rating svg {
      width: 20px;
      height: 20px;
      color: var(--accent);
      opacity: 0.9;
  }
  .testimonial-nav {
      display: flex;
      justify-content: center;
      gap: var(--space-2);
      margin-top: var(--space-4);
  }
  .testimonial-nav-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--bg);
      border: 1px solid rgba(255, 252, 242, 0.2);
      color: var(--accent);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      padding: 0;
  }
  .testimonial-nav-btn:hover {
      background: rgba(255, 252, 242, 0.1);
      border-color: var(--accent);
      transform: scale(1.05);
  }
  .testimonial-nav-btn svg {
      width: 20px;
      height: 20px;
      stroke: var(--accent);
  }
  @media (max-width: 768px) {
      .testimonials-header {
          margin-bottom: var(--space-5);
      }
      .trusted-by-section {
          margin-bottom: var(--space-5);
      }
      .testimonial-card {
          padding: 2rem;
          min-height: 280px;
      }
      .testimonial-content {
          gap: var(--space-3);
      }
      .testimonial-avatar {
          width: 64px;
          height: 64px;
      }
      .testimonial-carousel-container {
          min-height: 280px;
      }
      .trusted-avatar {
          width: 48px;
          height: 48px;
          margin-left: -10px;
      }
  }
  @media (max-width: 480px) {
      .testimonials-header {
          margin-bottom: var(--space-4);
      }
      .testimonials-tag {
          padding: 0.4rem 1rem;
          font-size: 0.8rem;
      }
      .testimonials-header h2 {
          margin-bottom: var(--space-2);
      }
      .testimonials-description {
          font-size: var(--font-base);
      }
      .trusted-by-section {
          margin-bottom: var(--space-4);
      }
      .trusted-avatar {
          width: 44px;
          height: 44px;
          margin-left: -8px;
      }
      .trusted-title {
          font-size: var(--font-h6);
      }
      .testimonial-card {
          padding: 1.5rem;
          min-height: 260px;
      }
      .testimonial-content {
          flex-direction: column;
          gap: var(--space-3);
          align-items: center;
          text-align: center;
      }
      .testimonial-info {
          text-align: center;
      }
      .testimonial-avatar {
          width: 64px;
          height: 64px;
      }
      .testimonial-name {
          font-size: var(--font-base);
      }
      .testimonial-title {
          font-size: 0.875rem;
      }
      .testimonial-text {
          font-size: var(--font-base);
          margin: var(--space-2) 0;
      }
      .testimonial-rating {
          justify-content: center;
      }
      .testimonial-carousel-container {
          min-height: 260px;
      }
      .testimonial-nav-btn {
          width: 44px;
          height: 44px;
      }
      .testimonial-nav-btn svg {
          width: 18px;
          height: 18px;
      }
  }
  
  /* === SOCIALS === */
  #socials {
      text-align: center;
  }
  #socials .container {
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  .socials-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-4);
      max-width: 600px;
      margin: 0 auto;
  }
  .socials-content p {
      font-size: clamp(var(--font-base), 2vw, var(--font-h6));
      line-height: 1.5;
      opacity: 0.9;
      margin: 0;
      text-align: center;
  }
  .socials-content .social-icons {
      justify-content: center;
      margin-top: var(--space-2);
  }
  #socials .social-icon {
      width: 72px;
      height: 72px;
  }
  #socials .social-icon svg {
      width: 32px;
      height: 32px;
  }
  
  /* === TESTIMONIAL === */
  #testimonial {
      text-align: center;
  }
  #testimonial .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 1000px;
      padding: 0 var(--space-4);
  }
  .testimonial-hero {
      width: 100%;
      background: var(--bg-secondary);
      border: 1px solid rgba(255, 252, 242, 0.15);
      border-radius: 24px;
      padding: var(--space-6);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  }
  .testimonial-header {
      display: flex;
      align-items: center;
      gap: var(--space-3);
      margin-bottom: var(--space-5);
  }
  .testimonial-profile-img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center;
      border: 2px solid rgba(255, 252, 242, 0.2);
      transform: scale(1.2);
      transition: var(--transition);
      cursor: pointer;
      flex-shrink: 0;
  }
  .testimonial-profile-img:hover {
      border-color: #D0E1C8;
      transform: scale(1.25);
  }
  .testimonial-info {
      text-align: left;
      flex: 1;
  }
  .testimonial-name-link {
      text-decoration: none;
      color: var(--accent);
      transition: var(--transition);
  }
  .testimonial-name-link:hover {
      color: #D0E1C8;
  }
  .testimonial-name-link h3 {
      transition: var(--transition);
  }
  .testimonial-info h3 {
      font-size: var(--font-h5);
      font-weight: 700;
      margin: 0 0 0.5rem 0;
      color: var(--accent);
  }
  .subscriber-count {
      font-size: var(--font-base);
      opacity: 0.7;
      margin: 0;
      color: var(--accent);
  }
  .testimonial-screenshot {
      width: 100%;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(255, 252, 242, 0.1);
  }
  .testimonial-image {
      width: 100%;
      height: auto;
      display: block;
  }
  
  @media (max-width: 1024px) {
      #testimonial .container {
          padding: 0 var(--space-3);
      }
  }
  
  @media (max-width: 768px) {
      #testimonial .container {
          padding: 0 var(--space-3);
      }
      .testimonial-hero {
          padding: var(--space-5);
      }
      .testimonial-header {
          flex-direction: column;
          text-align: center;
          gap: var(--space-3);
          margin-bottom: var(--space-4);
      }
      .testimonial-info {
          text-align: center;
      }
      .testimonial-profile-img {
          width: 80px;
          height: 80px;
      }
      .testimonial-info h3 {
          font-size: var(--font-h6);
      }
  }
  
  @media (max-width: 480px) {
      #testimonial .container {
          padding: 0 var(--space-2);
      }
      .testimonial-hero {
          padding: var(--space-4);
      }
      .testimonial-header {
          gap: var(--space-2);
      }
      .testimonial-profile-img {
          width: 64px;
          height: 64px;
      }
      .testimonial-screenshot {
          border-radius: 12px;
      }
  }
  
  /* === CALENDAR === */
  #calendar {
      text-align: center;
  }
  #calendar .container {
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  #calendar p {
      text-align: center;
      margin-bottom: 2rem;
      font-size: 1.1rem;
      opacity: 0.9;
  }
  .calendar-container {
      max-width: 1000px;
      width: 100%;
      margin: 0 auto;
      position: relative;
  }
  .calendar-loading {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 750px;
      z-index: 1;
      transition: opacity 0.3s ease;
  }
  .calendar-skeleton {
      width: 100%;
      height: 100%;
      background: var(--bg-secondary);
      border: 1px solid rgba(255, 252, 242, 0.15);
      border-radius: 20px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .calendar-loading-text {
      font-size: 1.125rem;
      color: var(--accent);
      opacity: 0.8;
      font-weight: 500;
      letter-spacing: 0.02em;
      z-index: 2;
      position: relative;
      animation: pulse-text 2s ease-in-out infinite;
  }
  @keyframes pulse-text {
      0%, 100% {
          opacity: 0.6;
      }
      50% {
          opacity: 1;
      }
  }
  .calendar-skeleton::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 252, 242, 0.1),
          transparent
      );
      animation: skeleton-loading 1.5s infinite;
      z-index: 1;
  }
  @keyframes skeleton-loading {
      0% {
          left: -100%;
      }
      100% {
          left: 100%;
      }
  }
  #my-cal-inline-15min {
      width: 100%;
      height: 750px;
      border: none;
      position: relative;
      z-index: 2;
  }
  #my-cal-inline-30min {
      width: 100%;
      height: 750px;
      border: none;
  }
  @media (max-width: 768px) {
      .highlight {
          margin: 0 0.25em;
      }
      .calendar-loading {
          height: 600px;
      }
      #my-cal-inline-15min {
          height: 600px;
      }
      #my-cal-inline-30min {
          height: 600px;
      }
  }
  @media (max-width: 480px) {
      .calendar-loading {
          height: 500px;
      }
      #my-cal-inline-15min {
          height: 500px;
      }
      #my-cal-inline-30min {
          height: 500px;
      }
  }
  
  /* === FAQ === */
  #faq {
      text-align: center;
  }
  #faq .container {
      max-width: 900px;
      padding: 0 var(--space-4);
  }
  #faq h2 {
      padding: 20px 0 10px 0;
      margin-bottom: var(--space-2);
  }
  .faq-container {
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
      margin-top: var(--space-4);
  }
  .faq-item {
      background: rgba(255, 252, 242, 0.05);
      border-radius: 20px;
      overflow: hidden;
      transition: var(--transition);
      border: 1px solid rgba(255, 252, 242, 0.1);
  }
  .faq-item:hover {
      background: rgba(255, 252, 242, 0.08);
      border-color: rgba(255, 252, 242, 0.15);
  }
  .faq-question {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: var(--space-4) var(--space-4);
      background: transparent;
      border: none;
      text-align: left;
      cursor: pointer;
      color: var(--accent);
      font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: clamp(1rem, 2vw, 1.125rem);
      font-weight: 600;
      transition: var(--transition);
  }
  .faq-question:hover {
      color: var(--accent);
  }
  .faq-question span:first-child {
      flex: 1;
      padding-right: var(--space-3);
  }
  .faq-icon {
      width: 32px;
      height: 32px;
      min-width: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 252, 242, 0.1);
      border-radius: 50%;
      transition: var(--transition);
      flex-shrink: 0;
  }
  .faq-question:hover .faq-icon {
      background: rgba(255, 252, 242, 0.2);
      transform: scale(1.05);
  }
  .faq-icon svg {
      width: 16px;
      height: 16px;
      stroke: var(--accent);
      transition: transform 0.3s ease;
  }
  .faq-question[aria-expanded="true"] .faq-icon svg line:first-child {
      opacity: 0;
      transform: rotate(90deg);
  }
  .faq-question[aria-expanded="false"] .faq-icon svg line:first-child {
      opacity: 1;
      transform: rotate(0deg);
  }
  .faq-icon svg line {
      transition: opacity 0.3s ease, transform 0.3s ease;
      transform-origin: center;
  }
  .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.4s ease;
      padding: 0 var(--space-4);
  }
  .faq-question[aria-expanded="true"] + .faq-answer {
      max-height: 1000px;
      padding: var(--space-2) var(--space-4) var(--space-4) var(--space-4);
  }
  /* Initial state for first FAQ item */
  .faq-item:first-child .faq-answer {
      max-height: 1000px;
      padding: var(--space-2) var(--space-4) var(--space-4) var(--space-4);
  }
  .faq-answer p {
      color: var(--accent);
      font-size: clamp(0.95rem, 1.8vw, 1.05rem);
      line-height: 1.7;
      opacity: 1;
      margin: 0;
      padding-top: 0.5rem;
      text-align: left;
      letter-spacing: 0.01em;
  }
  .faq-answer a {
      color: var(--accent);
      text-decoration: underline;
      opacity: 0.9;
      transition: opacity 0.3s ease;
  }
  .faq-answer a:hover {
      opacity: 1;
  }
  
  @media (max-width: 1024px) {
      #faq .container {
          padding: 0 var(--space-3);
      }
  }
  
  @media (max-width: 768px) {
      #faq .container {
          padding: 0 var(--space-3);
      }
      .faq-container {
          gap: var(--space-3);
          margin-top: var(--space-3);
      }
      .faq-question {
          padding: var(--space-3) var(--space-3);
          font-size: 1rem;
          line-height: 1.5;
      }
      .faq-answer {
          padding: 0 var(--space-3);
      }
      .faq-question[aria-expanded="true"] + .faq-answer {
          padding: var(--space-2) var(--space-3) var(--space-3) var(--space-3);
      }
      .faq-item:first-child .faq-answer {
          padding: var(--space-2) var(--space-3) var(--space-3) var(--space-3);
      }
      .faq-answer p {
          line-height: 1.8;
          font-size: 1rem;
          padding-top: 0.5rem;
      }
      .faq-icon {
          width: 28px;
          height: 28px;
          min-width: 28px;
      }
      .faq-icon svg {
          width: 14px;
          height: 14px;
      }
  }
  
  @media (max-width: 480px) {
      #faq .container {
          padding: 0 var(--space-2);
      }
      .faq-container {
          gap: var(--space-2);
          margin-top: var(--space-3);
      }
      .faq-question {
          padding: var(--space-3) var(--space-2);
          font-size: 0.95rem;
          line-height: 1.5;
      }
      .faq-answer {
          padding: 0 var(--space-2);
      }
      .faq-question[aria-expanded="true"] + .faq-answer {
          padding: var(--space-2) var(--space-2) var(--space-3) var(--space-2);
      }
      .faq-item:first-child .faq-answer {
          padding: var(--space-2) var(--space-2) var(--space-3) var(--space-2);
      }
      .faq-answer p {
          line-height: 1.8;
          font-size: 0.95rem;
          padding-top: 0.5rem;
      }
      .faq-question span:first-child {
          padding-right: var(--space-2);
      }
  }
  
  /* === BOOK CTA === */
  .book-section {
      text-align: center;
      padding: 140px 0;
      background: var(--bg-secondary); /* 30% - Secondary background (subtle white over black) */
  }
  .book-section .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }
  .book-section p {
      font-size: clamp(1rem, 2vw, 1.2rem);
      margin-bottom: 2rem;
      text-align: center;
      max-width: 600px;
  }
  @media (max-width: 768px) {
      .book-section {
          padding: 100px 0;
      }
  }
  @media (max-width: 480px) {
      .book-section {
          padding: 80px 0;
      }
  }
  
  /* === FOOTER === */
  footer {
      padding: calc(var(--space-8) * 1.5) 0;
      text-align: center;
      width: 100%;
  }
  
  .footer-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 var(--space-4);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-5);
  }
  
  .footer-social {
      display: flex;
      gap: var(--space-3);
      align-items: center;
      justify-content: center;
  }
  
  .footer-social .social-icon {
      width: 72px;
      height: 72px;
  }
  
  .footer-social .social-icon svg {
      width: 32px;
      height: 32px;
  }
  
  .footer-divider {
      width: 100%;
      max-width: 1200px;
      height: 2px;
      background: #fffcf2;
      margin: var(--space-3) 0;
      opacity: 0.3;
  }
  
  .footer-copyright {
      font-size: 1.125rem;
      color: var(--accent);
      margin: 0;
      font-weight: 400;
      opacity: 0.7;
  }
  
  @media (max-width: 768px) {
      footer {
          padding: calc(var(--space-6) * 1.3) 0;
      }
      .footer-container {
          padding: 0 var(--space-3);
          gap: var(--space-4);
      }
      .footer-social {
          gap: var(--space-3);
      }
      .footer-social .social-icon {
          width: 64px;
          height: 64px;
      }
      .footer-social .social-icon svg {
          width: 28px;
          height: 28px;
      }
      .footer-copyright {
          font-size: 1.05rem;
      }
  }
  
  @media (max-width: 480px) {
      footer {
          padding: calc(var(--space-5) * 1.2) 0;
      }
      .footer-container {
          padding: 0 var(--space-2);
          gap: var(--space-3);
      }
      .footer-social {
          gap: var(--space-2);
      }
      .footer-social .social-icon {
          width: 56px;
          height: 56px;
      }
      .footer-social .social-icon svg {
          width: 24px;
          height: 24px;
      }
      .footer-copyright {
          font-size: 1rem;
          padding: 0 var(--space-2);
      }
  }
  
  /* === MODAL === */
  .modal {
      display: none;
      position: fixed;
      z-index: 2000;
      left: 0; top: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.98);
      align-items: center;
      justify-content: center;
      padding: 2rem;
  }
  .modal.active { 
      display: flex;
      animation: fadeIn 0.3s var(--ease-out-expo);
  }
  .modal-content {
      position: relative;
      width: 100%;
      max-width: 1000px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
      transform: scale(0.9);
      transition: transform 0.4s var(--ease-out-expo);
  }
  .modal.active .modal-content {
      transform: scale(1);
  }
  .modal-content iframe {
      width: 100%;
      height: 560px;
      border: none;
      display: block;
  }
  .close-modal {
      position: absolute;
      top: 1.5rem; right: 1.5rem;
      width: 50px; height: 50px;
      background: rgba(255, 252, 242, 0.2);
      color: var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      cursor: pointer;
      z-index: 10;
      transition: var(--transition);
  }
  .close-modal:hover {
      background: var(--accent);
      color: var(--bg);
  }
  @media (max-width: 768px) {
      .modal {
          padding: 1rem;
      }
      .modal-content {
          border-radius: 16px;
      }
      .modal-content iframe {
          height: 400px;
      }
      .close-modal {
          top: 1rem;
          right: 1rem;
          width: 40px;
          height: 40px;
          font-size: 1.2rem;
      }
  }
  @media (max-width: 480px) {
      .modal {
          padding: 0.5rem;
      }
      .modal-content iframe {
          height: 300px;
      }
      .close-modal {
          top: 0.5rem;
          right: 0.5rem;
          width: 35px;
          height: 35px;
          font-size: 1rem;
      }
  }
  
  /* === RESPONSIVE === */
  @media (max-width: 1024px) {
      .about-grid {
          gap: 3rem;
      }
      /* Navbar - iPad: Show only profile picture and social icons */
      .nav-container {
          justify-content: space-between;
          align-items: center;
      }
      .logo-text-container {
          display: none;
      }
      .pulse-dot {
          display: none;
      }
      nav ul.nav-menu {
          display: none;
      }
      .nav-social-icons {
          display: flex;
          opacity: 1;
          transform: translateX(0);
          margin-left: 1rem;
          padding: 0.45rem 0.65rem;
      }
      nav.scrolled .nav-social-icons {
          display: flex;
      }
      nav.scrolled .nav-container {
          justify-content: space-between;
      }
  }
  
  @media (max-width: 768px) {
      /* Navigation - Mobile: Show only profile picture and social icons */
      nav {
          bottom: 1rem;
          width: auto;
          left: 50%;
          transform: translateX(-50%);
      }
      .nav-container {
          padding: 0.5rem 1rem;
          border-radius: 30px;
          justify-content: space-between;
          align-items: center;
          width: fit-content;
          min-width: auto;
          gap: 1rem;
          transition: var(--transition);
          background: transparent;
          backdrop-filter: none;
          -webkit-backdrop-filter: none;
          border: none;
          box-shadow: none;
      }
      .logo-text-container {
          display: none;
      }
      .pulse-dot {
          display: none;
      }
      nav ul.nav-menu {
          display: none;
      }
      .nav-social-icons {
          display: flex;
          opacity: 1;
          transform: translateX(0);
          margin-left: 0.75rem;
          padding: 0.4rem 0.6rem;
      }
      nav.scrolled .nav-social-icons {
          display: flex;
      }
      .logo {
          font-size: 1rem;
      }
      .profile-picture {
          width: 40px;
          height: 40px;
      }
      .nav-social-icon {
          width: 32px;
          height: 32px;
      }
      .nav-social-icon svg {
          width: 15px;
          height: 15px;
      }
      
      /* Grid layouts */
      .about-grid {
          grid-template-columns: 1fr;
          gap: 2rem;
      }
      .portfolio-grid {
          grid-template-columns: 1fr;
      }
      .testimonials-grid {
          grid-template-columns: 1fr;
      }
      
      /* VSL Section */
      .vsl-section {
          padding: 120px 0 80px;
      }
      .vsl-video-wrapper {
          margin-bottom: 3rem;
          border-radius: 16px;
      }
      .vsl-video-overlay {
          border-radius: 16px;
      }
      .vsl-video-overlay span {
          font-size: 1.8rem;
      }
      .vsl-video-wrapper iframe {
          height: 45vw;
          min-height: 300px;
      }
      .vsl-content {
          padding: 50px 0;
      }
      .vsl-content h1 {
          padding: 50px 0;
          margin-top: -50px;
          margin-bottom: calc(1rem - 50px);
      }
      .vsl-content p {
          margin-bottom: 2rem;
          line-height: 1.7;
          padding: 0 var(--space-2);
      }
      
      /* Socials section */
      #socials .social-icon {
          width: 68px;
          height: 68px;
      }
      #socials .social-icon svg {
          width: 30px;
          height: 30px;
      }
      
      /* Typography */
      h2 {
          font-size: clamp(2rem, 8vw, 3rem);
      }
  }
  
  @media (max-width: 480px) {
      /* Navigation - iPhone - Show only profile picture and social icons */
      nav {
          bottom: 1rem;
          width: auto;
          left: 50%;
          transform: translateX(-50%);
          transition: var(--transition);
          max-width: calc(100vw - 1rem);
      }
      .nav-container {
          padding: 0.5rem 0.75rem;
          border-radius: 30px;
          justify-content: space-between;
          align-items: center;
          width: fit-content;
          min-width: auto;
          max-width: calc(100vw - 1rem);
          gap: 0.5rem;
          transition: var(--transition);
          background: transparent;
          backdrop-filter: none;
          -webkit-backdrop-filter: none;
          border: none;
          box-shadow: none;
      }
      nav ul.nav-menu {
          display: none !important;
          opacity: 0;
          pointer-events: none;
          width: 0;
          overflow: hidden;
      }
      .logo-text-container {
          display: none !important;
      }
      .pulse-dot {
          display: none !important;
      }
      .nav-social-icons {
          display: flex !important;
          opacity: 1;
          transform: translateX(0);
          margin-left: 0.5rem;
          padding: 0.3rem 0.5rem;
          gap: 0.35rem;
          flex-shrink: 0;
      }
      nav.scrolled .nav-social-icons {
          display: flex !important;
      }
      .logo {
          font-size: 0.9rem;
          gap: 0;
          flex-shrink: 0;
          display: flex;
          align-items: center;
      }
      .profile-picture {
          width: 34px;
          height: 34px;
          flex-shrink: 0;
      }
      .nav-social-icon {
          width: 28px;
          height: 28px;
          flex-shrink: 0;
      }
      .nav-social-icon svg {
          width: 13px;
          height: 13px;
      }
      nav a {
          font-size: 0.85rem;
      }
      .btn-nav {
          padding: 0.5rem 1rem;
          font-size: 0.8rem;
      }
      
      /* VSL Section */
      .vsl-section {
          padding: 100px 0 60px;
      }
      .vsl-video-wrapper {
          margin-bottom: 2rem;
          border-radius: 12px;
      }
      .vsl-video-overlay {
          border-radius: 12px;
      }
      .vsl-video-overlay span {
          font-size: 1.4rem;
      }
      .vsl-video-wrapper iframe {
          min-height: 250px;
      }
      
      /* Portfolio */
      .portfolio-info {
          padding: 1rem;
      }
      .portfolio-info h3 {
          font-size: 1.1rem;
      }
      .portfolio-info p {
          font-size: 0.85rem;
      }
      .portfolio-title-overlay {
          padding: var(--space-3) var(--space-2);
      }
      .portfolio-title {
          font-size: clamp(0.8rem, 2.5vw, 1rem);
      }
      
      /* Socials section */
      #socials .social-icon {
          width: 64px;
          height: 64px;
      }
      #socials .social-icon svg {
          width: 28px;
          height: 28px;
      }
      
      /* Calendar section text */
      #calendar p {
          font-size: 0.95rem;
          margin-bottom: 1.5rem;
          text-align: center;
      }
  }
  
  