:root {
    /* Core palette - cool slate with turquoise accent */
    --slate-950: #0a1214;
    --slate-900: #0f1a1d;
    --slate-800: #1a2a2e;
    --slate-700: #2a3f44;
    --slate-600: #3d5a61;
    --slate-500: #5a7f87;
    --slate-400: #8ab4bc;
    --slate-300: #b5d8de;
    --slate-200: #d9eff2;
    --slate-100: #ecf8f9;
    --slate-50: #f5fbfc;
    
    /* Accent - turquoise/seafoam */
    --turquoise-500: #14b8a6;
    --turquoise-400: #2dd4bf;
    --turquoise-300: #5eead4;
    --seafoam-500: #10b981;
    --seafoam-400: #34d399;
    
    /* Semantic */
    --background: var(--slate-950);
    --foreground: var(--slate-100);
    --muted: var(--slate-400);
    --accent: var(--turquoise-500);
    --accent-soft: var(--turquoise-300);
    --card: var(--slate-900);
    --card-hover: var(--slate-800);
    --border: var(--slate-700);
    
    /* Typography */
    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
    
    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
    
    /* Animation */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-sans);
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  
  /* Custom elements display */
  site-nav,
  hero-section,
  why-section,
  services-section,
  pricing-section,
  testimonial-section,
  cta-section,
  site-footer,
  lead-popup {
    display: block;
  }
  
  /* Shader background */
  shader-background {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
  }
  
  #shader-canvas {
    display: block;
    width: 100%;
    height: 100%;
  }
  
  /* Noise texture overlay */
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1000;
  }
  
  /* Container */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  /* Typography */
  h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
  }
  
  .serif { font-family: var(--font-serif); }
  .italic { font-style: italic; }
  
  /* Gradient text */
  .gradient-text {
    background: linear-gradient(135deg, var(--turquoise-400) 0%, var(--seafoam-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  /* Buttons - shadcn style */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s var(--ease-out-expo);
    text-decoration: none;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, var(--turquoise-500) 0%, var(--seafoam-500) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(20, 184, 166, 0.3);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
  }
  
  .btn-secondary {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
  }
  
  .btn-secondary:hover {
    background: var(--slate-800);
    border-color: var(--slate-600);
  }
  
  /* Cards - shadcn style */
  .card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s var(--ease-out-expo);
  }
  
  .card:hover {
    background: var(--card-hover);
    border-color: var(--slate-600);
    transform: translateY(-4px);
  }
  
  /* Badge */
  .badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    background: rgba(20, 184, 166, 0.1);
    color: var(--turquoise-400);
    border: 1px solid rgba(20, 184, 166, 0.2);
  }
  
  /* Navigation */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.3s ease;
  }
  
  .nav.scrolled {
    background: rgba(12, 16, 24, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .nav-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--foreground);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .nav-logo span {
    color: var(--turquoise-400);
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }
  
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
  }
  
  .nav-links a:hover {
    color: var(--foreground);
  }
  
  .nav-links a.btn-primary {
    color: white;
  }
  
  .nav-links a.btn-primary:hover {
    color: white;
  }
  
  /* Hero Section */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
    pointer-events: none;
    mix-blend-mode: screen;
  }
  
  .hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    pointer-events: none;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .hero-badge {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s var(--ease-out-expo) forwards;
    opacity: 0;
  }
  
  .hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.1s forwards;
    opacity: 0;
  }
  
  .hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s forwards;
    opacity: 0;
  }
  
  .hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.3s forwards;
    opacity: 0;
  }
  
  .hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.4s forwards;
    opacity: 0;
  }
  
  .stat-item h4 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--turquoise-400);
    margin-bottom: 0.25rem;
  }
  
  .stat-item p {
    font-size: 0.875rem;
    color: var(--muted);
  }
  
  /* Why Section */
  .why-section {
    padding: var(--section-padding) 0;
    position: relative;
  }
  
  .section-header {
    max-width: 700px;
    margin-bottom: 4rem;
  }
  
  .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--turquoise-400);
    margin-bottom: 1rem;
  }
  
  .section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
  }
  
  .section-header p {
    font-size: 1.125rem;
    color: var(--muted);
  }
  
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  
  .why-card {
    position: relative;
    overflow: hidden;
  }
  
  .why-card .icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .why-card .icon svg {
    width: 24px;
    height: 24px;
    color: var(--turquoise-400);
  }
  
  .why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .why-card p {
    color: var(--muted);
    font-size: 0.9375rem;
  }
  
  /* Services Section */
  .services-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, rgba(10, 18, 20, 0.85) 0%, rgba(15, 26, 29, 0.9) 50%, rgba(10, 18, 20, 0.85) 100%);
  }
  
  .services-grid {
    display: grid;
    gap: 2rem;
  }
  
  .service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease-out-expo);
  }
  
  .service-card:hover {
    border-color: var(--turquoise-500);
    box-shadow: 0 0 60px rgba(20, 184, 166, 0.1);
  }
  
  .service-card:nth-child(even) {
    direction: rtl;
  }
  
  .service-card:nth-child(even) > * {
    direction: ltr;
  }
  
  .service-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .service-content p {
    color: var(--muted);
    margin-bottom: 1.5rem;
  }
  
  .service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--slate-300);
  }
  
  .service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--turquoise-400);
    flex-shrink: 0;
  }
  
  .service-visual {
    aspect-ratio: 4/3;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--slate-800) 0%, var(--slate-700) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }
  
  .service-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, transparent 50%);
  }
  
  .service-visual svg {
    width: 80px;
    height: 80px;
    color: var(--turquoise-400);
    opacity: 0.5;
  }
  
  /* Pricing Section */
  .pricing-section {
    padding: var(--section-padding) 0;
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
  }
  
  .pricing-card {
    position: relative;
    padding: 2.5rem;
  }
  
  .pricing-card.featured {
    border-color: var(--turquoise-500);
    background: linear-gradient(180deg, var(--slate-800) 0%, var(--slate-900) 100%);
  }
  
  .pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, var(--turquoise-500) 0%, var(--seafoam-500) 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
  }
  
  .pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
  }
  
  .pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .pricing-header .price {
    font-family: var(--font-serif);
    font-size: 3rem;
  }
  
  .pricing-header .price span {
    font-size: 1rem;
    color: var(--muted);
  }
  
  .pricing-header .period {
    font-size: 0.875rem;
    color: var(--muted);
  }
  
  .pricing-features {
    list-style: none;
    margin-bottom: 2rem;
  }
  
  .pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    color: var(--slate-300);
  }
  
  .pricing-features li svg {
    width: 20px;
    height: 20px;
    color: var(--turquoise-400);
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .pricing-card .btn {
    width: 100%;
  }
  
  /* Testimonial Section */
  .testimonial-section {
    padding: var(--section-padding) 0;
    background: rgba(15, 26, 29, 0.85);
  }
  
  .testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .testimonial-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 2rem;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  
  .testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--turquoise-400) 0%, var(--seafoam-400) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: white;
  }
  
  .testimonial-info h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
  }
  
  .testimonial-info p {
    font-size: 0.875rem;
    color: var(--muted);
  }
  
  /* CTA Section */
  .cta-section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
  }
  
  .cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 60%);
    pointer-events: none;
  }
  
  .cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }
  
  .cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
  }
  
  .cta-content p {
    font-size: 1.125rem;
    color: var(--muted);
    margin-bottom: 2rem;
  }
  
  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Footer */
  .footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .footer-logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
  }
  
  .footer-logo span {
    color: var(--turquoise-400);
  }
  
  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  
  .footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
  }
  
  .footer-links a:hover {
    color: var(--foreground);
  }
  
  .footer-copy {
    width: 100%;
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--muted);
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s var(--ease-out-expo);
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }
    
    .hero-stats {
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .service-card {
      grid-template-columns: 1fr;
      padding: 2rem;
    }
    
    .service-card:nth-child(even) {
      direction: ltr;
    }
    
    .service-visual {
      order: -1;
    }
  }
  
  /* Lead Capture Popup */
  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 18, 20, 0.9);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .popup-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .popup-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: linear-gradient(145deg, var(--slate-800) 0%, var(--slate-900) 100%);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s var(--ease-out-expo);
    box-shadow: 
      0 25px 50px -12px rgba(0, 0, 0, 0.5),
      0 0 100px rgba(20, 184, 166, 0.1);
  }
  
  .popup-overlay.active .popup-container {
    transform: scale(1) translateY(0);
  }
  
  .popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .popup-close:hover {
    background: var(--slate-700);
    color: var(--foreground);
    border-color: var(--slate-600);
  }
  
  .popup-content {
    text-align: center;
  }
  
  .popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
    border-radius: 1rem;
    color: var(--turquoise-400);
  }
  
  .popup-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    background: rgba(20, 184, 166, 0.1);
    color: var(--turquoise-400);
    border: 1px solid rgba(20, 184, 166, 0.2);
    margin-bottom: 1rem;
  }
  
  .popup-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: var(--foreground);
  }
  
  .popup-description {
    font-size: 0.9375rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .popup-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
  }
  
  .popup-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--slate-300);
  }
  
  .popup-features li svg {
    color: var(--turquoise-400);
    flex-shrink: 0;
  }
  
  .popup-form {
    margin-top: 1rem;
  }
  
  .popup-input-group {
    display: flex;
    gap: 0.75rem;
  }
  
  .popup-input {
    flex: 1;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    background: var(--slate-900);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--foreground);
    outline: none;
    transition: all 0.2s ease;
  }
  
  .popup-input::placeholder {
    color: var(--slate-500);
  }
  
  .popup-input:focus {
    border-color: var(--turquoise-500);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
  }
  
  .popup-submit {
    white-space: nowrap;
  }
  
  .popup-privacy {
    font-size: 0.75rem;
    color: var(--slate-500);
    margin-top: 0.75rem;
  }
  
  .popup-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
  }
  
  .popup-success.active {
    display: flex;
  }
  
  .popup-success svg {
    color: var(--seafoam-400);
  }
  
  .popup-success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--foreground);
  }
  
  .popup-success p {
    color: var(--muted);
    font-size: 0.9375rem;
  }
  
  @media (max-width: 540px) {
    .popup-container {
      padding: 2rem 1.5rem;
    }
    
    .popup-input-group {
      flex-direction: column;
    }
    
    .popup-submit {
      width: 100%;
    }
  }
  
  /* Calendar Modal */
  calendar-modal {
    display: block;
  }
  
  .calendar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 18, 20, 0.95);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .calendar-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .calendar-modal {
    position: relative;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    background: var(--slate-900);
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s var(--ease-out-expo);
  }
  
  .calendar-overlay.active .calendar-modal {
    transform: scale(1) translateY(0);
  }
  
  .calendar-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-800);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
  }
  
  .calendar-close:hover {
    background: var(--slate-700);
    color: var(--foreground);
  }
  
  .calendar-content {
    width: 100%;
    min-height: 500px;
  }
  
  .calendar-content .zcal-inline-widget {
    width: 100%;
    height: 100%;
    min-height: 500px;
  }
  
  .calendar-content .zcal-inline-widget iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
  }
  
  @media (max-width: 768px) {
    .calendar-modal {
      max-height: 85vh;
    }
    
    .calendar-content {
      min-height: 450px;
    }
  }