@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-VariableFont_wght.ttf');
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-style: normal;
}

@font-face {
  font-family: 'Work Sans';
  src: url('/fonts/WorkSans-VariableFont_wght.ttf');
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-style: normal;
}

@font-face {
  font-family: 'retro';
  src: url('/fonts/retro_computer_personal_use.ttf');
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-style: normal;
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 900;
}

  /* -------- RESET & BASE -------- */
  *, *::before, *::after { 
    margin:0; 
    padding:0; 
    box-sizing:border-box; 
  }
  
  html {
    scroll-behavior: smooth;
  }

  html.scroll-lock {
  overflow: hidden;
}
  
  body {
    font-family: 'Inter', sans-serif;
    /*font-family: 'Montserrat', sans-serif;*/
/*    background: linear-gradient(135deg, #e0e0e0 0%, #fff 100%);*/
    /*background: linear-gradient(135deg, #e0e0e0 0%, #fff 100%);*/
    color: #222;
    line-height:1.6;
    overflow-x:hidden;
    box-shadow: inset 0 0 20px #bbb;
  }

  body.scroll-lock {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
  p {
    font-family: 'Montserrat', sans-serif;
  }

  /* -------- VARIABLES -------- */
  :root {
    --primary: #3b82f6;
    --primary-light: #60a5fa;
    --primary-dark: #1d4ed8;
    --accent: #8b5cf6;
    --accent-light: #a78bfa;
    --text-light: #f8fafc;
    --text-dark: #1e293b;
    --card-bg: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }

  /* -------- ANIMATED BACKGROUND -------- */
  .animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
  }
  
  .gradient-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
/*    animation: float 15s infinite ease-in-out;*/
  }
  
  .circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
  }
  
  .circle-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    bottom: -300px;
    right: -200px;
    animation-delay: 5s;
  }
  
  .circle-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
  }
  
  @keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
  }

  /* -------- HEADER -------- */
  header {
    text-align: center;
/*    padding: 180px 20px 150px;*/
    position: relative;
    /*max-width: 1200px;*/
    margin: 0 auto;
  }
  
  .header-content {
    position: relative;
    z-index: 1;
    height: 100%;
    align-content: center;
  }
  
  h1 {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 30px;
    /*background: linear-gradient(90deg, var(--text-light) 0%, var(--primary-light) 50%, var(--accent-light) 100%);*/
/*    background: linear-gradient(90deg, #000 0%, #030062 100%);*/
  background: linear-gradient(90deg, #2358de 0%, #a18dff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
  }
  
  .lead {
    margin: 30px auto 40px;
    font-size: 1.5rem;
    color: black;
    max-width: 950px;
    font-weight: 600;
    line-height: 1.6;
    text-shadow: 0 0 1px #fff;
    padding: 0 20px;
  }
  
  .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  
  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 42px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }
  
  .cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    text-shadow: 0 0 10px #fff;
    color: black;
  }
  
  .cta-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
  }
  
  .cta-btn.secondary:hover {
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
    background: rgba(255, 255, 255, 0.15);
  }

  /* -------- SECTIONS -------- */
  .section {
    padding: 120px 20px;
    max-width: 1200px;
    margin: auto;
    position: relative;
    margin: 0 auto;
  }
  
  .section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    /*background: linear-gradient(90deg, var(--text-light) 0%, var(--primary-light) 100%);*/
    background: linear-gradient(90deg, #2358de 0%, #a18dff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
/*    text-align: center;*/
/*    display: block;*/
    left: 50%;
    transform: translateX(-50%);
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 3px;
  }
  
  .section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    text-shadow: 0 0 1px #fff;
    color: black;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
  }

  /* -------- FEATURES / BENTO GRID -------- */
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
  }
  
  .feature-box {
    padding: 40px 35px;
    border-radius: 24px;
/*    background: var(--card-bg);*/
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  
  .feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  }
  
  .feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: black;
    text-align: center;
  }
  
  .feature-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: black;
    font-weight: 900;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
  }
  
  .feature-box p {
    color: black;
    line-height: 1.7;
    font-size: 20px;
  }
  
  .feature-box ul {
    list-style: none;
    margin-top: 20px;
  }
  
  .feature-box li {
    padding: 8px 0;
    color: #cbd5e1;
    position: relative;
    padding-left: 30px;
  }
  
  .feature-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: bold;
  }


  .snap-section {
    height: 100vh;
    background: #222;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
  }


  /* =========================== */
/* SERVICE CATEGORIES           */
/* =========================== */
.service-category {
  width: 100%;
  margin-bottom: 80px;
  position: relative;
  min-height: 100vh;
  height: 100%;
  align-content: center;
}

.service-bg {
  width: 100%;
  height: 100vh;
  background-image: url(/../images/mm10-smile.png);
  background-size: contain;
  overflow: hidden;
}

.category-title {
  font-size: 8rem;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 40px;
  text-align: center;
  background: linear-gradient(90deg, #2358de 0%, #a18dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  padding: 50px;
  left: 50%;
  transform: translateX(-50%);
}

/*.category-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 3px;
}*/

/* =========================== */
/* SERVICE CARD ANIMATIONS      */
/* =========================== */
.service-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  background: rgba(255,255,255,0.8);
}

.service-card:hover {
  /*transform: translateY(-12px);*/
  /*box-shadow: 0 35px 60px rgba(0, 0, 0, 0.25);*/
  /*border-color: rgba(255, 255, 255, 0.2);*/
}

/* =========================== */
/* FADE-IN ANIMATION           */
/* =========================== */
.service-card, .feature-box {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.service-card.visible, .feature-box.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================== */
/* RESPONSIVE IMPROVEMENTS     */
/* =========================== */
@media (max-width: 992px) {
  .service-card {
    width: 90%;
    min-width: auto;
  }
  
  .category-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .service-card {
    width: 100%;
    padding: 40px 25px;
  }

  .category-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .category-title {
    font-size: 2.8rem;
  }
  
  .service-card h3 {
    font-size: 2rem;
  }

  .service-card .icon {
    font-size: 60px;
  }
  
  .service-card p, .service-card li {
    font-size: 1.2rem;
  }
}

  /* -------- SERVICES / PACKAGES -------- */
  .services {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}


  .service-card {
    width: 47%;
    padding: 50px 29px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid #bbb;
    transition: all 0.4s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-width: 450px;

    flex: 1 1 45%; /* grow/shrink, base width ~45% to fit 2 per row */
  max-width: 500px; /* optional: cap width */
  min-width: 300px; /* optional: don't shrink too much */
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  }
  
 /* .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
  }*/
  
  .service-card h3 {
    font-size: 2.7rem;
    margin-bottom: 15px;
    color: black;
    font-weight: 700;
    text-shadow: 0 0 10px #fff;
    line-height: 1;
  }
  
  .service-card .price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #343434;
    margin: 20px 0;
  }
  
  .service-card p {
    color: black;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.4rem;
  }
  
  .service-card ul {
    list-style: none;
    margin-top: 25px;
  }
  
  .service-card li {
    padding: 10px 0;
    color: black;
    position: relative;
    padding-left: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.4rem;
    font-weight: 600;
  }
  
  .service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: bold;
  }
  
  .service-card li:last-child {
    border-bottom: none;
  }

  .service-card button {
    width: 100%;
    display: block;
    margin-top: 20px;
  }

  /* -------- CONTACT FORM -------- */
  #contact {
    height: 100vh;
    align-content: center;
/*    text-align: center;*/
/*    max-width: none;*/
    /*border-radius: 30px;
    padding: 80px 40px;
    margin-top: 60px;
    backdrop-filter: blur(10px);
    background-image: url(./images/background.png);
    background-repeat: repeat;
    background-size: contain;
    box-shadow: 0 0 10px;*/
  }

  
  #contact form {
    max-width: 500px;
    margin: 40px auto 0;
  }
  
  .form-group {
    margin-bottom: 25px;
    text-align: left;
  }
  
  #contact input, #contact textarea {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.7);
    color: #000;
    font-size: 1rem;
    margin: 3px 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
  }
  
  #contact input:focus, #contact textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  }
  
  #contact textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  .submit-btn {
    width: 100%;
    padding: 18px;
    margin-top: 2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  }
  
  .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
  }





.email-client {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem;
  /*height: 100vh;*/
}

.email-window {
  width: 57vw;
  max-width: 650px;
  background: rgba(255,255,255,0.3);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-size: 14px;
  backdrop-filter: blur(10px);
}

/* HEADER (like Gmail / Mac Mail) */
.email-window header {
  background: #f5f5f5;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  border-bottom: 1px solid #ddd;
}

.dots {
  display: flex;
  gap: 0.4rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }

header h3 {
  font-weight: 500;
  font-size: 1rem;
  margin: 0;
}

/* BODY */
.email-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field label {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 0.3rem;
  display: block;
  font-weight: bolder;
}

.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background: none;
  backdrop-filter: blur(30px);
}

.field input:focus, .field textarea:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 5px rgba(74,144,226,0.4);
}

.message-field textarea {
  min-height: 160px;
  resize: vertical;
}

.send-btn {
  background: #2a5be0;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  float: right;
  margin: -7px 16px 13px;
}

.send-btn:hover {
  background: #5a82f1;
}


#paperPlane {
  display: none; 
  position: absolute; 
  font-size: 48px; 
  z-index: 100;
}


  /* -------- FOOTER -------- */
  footer {
    left: 0;
  position: absolute;
  font-size: 14px;
  padding: 10px;
  width: 100%;
  background: black;
  color: white;
  text-align: center;
  }

  /* -------- RESPONSIVE DESIGN -------- */
  @media (max-width: 992px) {
    h1 {
      font-size: 3.5rem;
    }
    
    .lead {
      font-size: 1.3rem;
    }
    
    .section-title {
      font-size: 2.5rem;
    }
  }
  
  @media (max-width: 768px) {
    h1 {
      font-size: 2.8rem;
    }
    
    .lead {
      font-size: 1.2rem;
    }
    
    .section-title {
      font-size: 2.2rem;
    }
    
    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .cta-btn {
      width: 100%;
      max-width: 300px;
      justify-content: center;
    }
    
    .features {
      grid-template-columns: 1fr;
    }
    
    .service-card {
      width: 100%;
      max-width: 400px;
    }
  }
  
  @media (max-width: 480px) {
    h1 {
      font-size: 2.2rem;
    }
    
    .lead {
      font-size: 1.1rem;
    }
    
    .section-title {
      font-size: 2.8rem;
    }
    
    .feature-box, .service-card {
      padding: 30px 25px;
    }
  }

  /*.logo {
    height: 500px;
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
  }*/

  .logo {
    position: absolute;
    z-index: -1;
    top: 10px;
    left: 10px;
    height: 100px;
  }

  .bg-monkey {
    position: absolute;
    z-index: -1;
    height: 400px;
  }

  .outer {
    display: table;
    height: 100vh;
    width: 100%;
  }

  .inner {
    display: table-cell;
    vertical-align: middle;
  }

    @keyframes shuffle {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
        100% {
            transform: translateY(0);
        }
    }

    #word-container {
      display: initial;
    }

    #word-container span {
        /* display: inline-block; */
        animation: shuffle 0.5s ease-in-out;
    }


    .icon-scroll,
    .icon-scroll:before {
      position: absolute;
      left: 50%;
    }
    .icon-scroll {
      width: 40px;
      height: 70px;
      margin-left: -20px;
      bottom: 70px;
      margin-top: -35px;
      box-shadow: inset 0 0 0 1px #000;
      border-radius: 25px;
      right: 30px;
      left: inherit;
      transition: all .4s;
    }
    .icon-scroll:before {
      content: '';
      width: 8px;
      height: 8px;
      background: #000;
      margin-left: -4px;
      top: 8px;
      border-radius: 4px;
      -webkit-animation-duration: 1.5s;
              animation-duration: 1.5s;
      -webkit-animation-iteration-count: infinite;
              animation-iteration-count: infinite;
      -webkit-animation-name: scroll;
              animation-name: scroll;
    }
    @-webkit-keyframes scroll {
      0% {
        opacity: 1;
      }
      100% {
        opacity: 0;
        transform: translateY(46px);
      }
    }
    @keyframes scroll {
      0% {
        opacity: 1;
      }
      100% {
        opacity: 0;
        transform: translateY(46px);
      }
    }


    .icon-scroll.light {
      box-shadow: inset 0 0 0 1px #fff;
    }

    .icon-scroll.light::before {
      background: #fff;
    }



    /* INTRO */
    #background {
      transition-delay: 10s;
      transition: all 0.3s;
      opacity: 0;
      background-size: contain;
    }


.grid {
  width: 100vw;
  height: 100vh;
  text-align: center;
}

.monkey {
  display: inline-block;
  width: 250px;
  min-height: 150px;
  height: 250px;
  margin: 0;
  padding: 0;
  background-size: cover;
  background-position: center center;
  max-width: 260px;
  opacity: 0;

}

.bg-image {
  position: absolute;
  height: 500px;
  z-index: -1;
  transform: translate(-50%, -50%);
}

#intro-title {
  font-size: 70px;
  background: none;
  color: black;
  padding: 0 50px;
}

#intro-sub-title {
  font-size: 30px;
  font-style: italic;
  padding: 0 50px;
}

.header-bg {
  background-image: url(/images/background.png);
  background-repeat: repeat;
  background-size: contain;
  box-shadow: 0 0 10px;
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  opacity: 0;
  visibility: hidden;
  transition: all 3s;
}

.header-backdrop {
  background: rgba(255,255,255,0.8);
/*  backdrop-filter: blur(5px);*/
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.header-blur {
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}


.service-card.visible {
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-card:nth-child(1).visible { transition-delay: 0.1s; }
.service-card:nth-child(2).visible { transition-delay: 0.2s; }
.service-card:nth-child(3).visible { transition-delay: 0.3s; }
.service-card:nth-child(4).visible { transition-delay: 0.4s; }
.service-card:nth-child(5).visible { transition-delay: 0.5s; }
.service-card:nth-child(6).visible { transition-delay: 0.6s; }

.service-card .icon {
  font-size: 100px;
  text-align: center;
}

/*.mnky {
  opacity: 0;
  transition: all 1s;
}*/


#monkey {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none; /* so the click goes through */
  z-index: -1; /* behind everything */
}

#monkey img {
  position: absolute;
  width: min(100vw, 100vh); /* big but responsive */
  /*max-width: 600px;*/
  transition: opacity 0.2s ease;
}

.monkey-base { opacity: 1; }
.monkey-fade { opacity: 0; }




/*.transition-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: linear-gradient(135deg, #222, #fff);
  z-index: 999;
  mix-blend-mode: multiply;
}
*/




/* Modal overlay */
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0,0,0,0.6);
    animation: fadeIn 0.3s ease forwards;
  }

  .modal-content {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    margin: 80px auto;
    padding: 40px 30px;
    border-radius: 20px;
    max-width: 600px;
    position: relative;
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.4s ease;
  }

  .modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
  }

  .modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    font-weight: bold;
    color: #222;
    cursor: pointer;
    transition: color 0.3s ease;
  }

  .modal-close:hover {
    color: var(--primary);
  }

  .modal h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    background: linear-gradient(90deg, #2358de 0%, #a18dff 100%);
    -webkit-background-clip: text;
    color: transparent;
  }

  .modal-price {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
  }

  .modal p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.6;
  }

  .modal ul {
    list-style: none;
    padding-left: 0;
  }

  .modal ul li {
    font-size: 1.1rem;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
  }

  .modal ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: bold;
  }

  @keyframes fadeIn {
    from {opacity:0;}
    to {opacity:1;}
  }