:root {
    --bg: #fdfdfd;
    --text: #222;
    --accent: #4f46e5;
  }

  body {
    margin: 0;
    font-family: "Zalando Sans Expanded", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: italic;
    background: var(--bg);
    color: var(--text);
    scroll-behavior: smooth;
  }

  /* HEADER */
  header {
    position: fixed;
    top: 0; width: 100%;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.631);
    z-index: 1000;
  }
  .nav-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 5%;
  }
  .logo {
    font-weight: 800; font-size: 1.5rem; letter-spacing: 1px;
  }
  .logo .accent { color: var(--accent); }
  
  nav {
    display: flex; gap: 1.5rem;
  }
  nav a {
    text-decoration: none; color: var(--text);
    font-weight: 600; transition: color 0.3s;
  }
  nav a:hover { color: var(--accent); }
  
  /* Hamburger for mobile */
  #hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer;
  }
  #hamburger span {
    width: 25px; height: 3px; background: var(--text);
    border-radius: 2px;
  }
  
  /* Responsive menu */
  @media (max-width: 768px) {
    nav { 
      position: absolute; top: 60px; right: 0;
      background: rgba(255,255,255,0.95);
      flex-direction: column; align-items: flex-start;
      padding: 1rem 2rem; gap: 1rem;
      display: none;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    nav.active { display: flex; }
    #hamburger { display: flex; }
  }
  
  /* HERO */
  .hero {
    height: 100vh; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
    padding: 0 5%;
  }
  .hero h1 { font-size: 3rem; margin-bottom: 0.5rem; }
  .hero h2 { font-size: 1.8rem; margin-bottom: 1.5rem; }
  .highlight { color: var(--accent); }
  .btn {
    background: var(--accent); color: #fff; padding: 0.8rem 1.5rem;
    text-decoration: none; border-radius: 8px; transition: background 0.3s;
  }
  .btn:hover { background: #4338ca; }
  
  /* CONTENT */
  .content { max-width: 900px; margin: 6rem auto; padding: 0 5%; }
  .content h2 { font-size: 2.5rem; margin-bottom: 1rem; }
  
  .grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  .project-card {
    background: #fff; padding: 1rem; border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: transform 0.3s;
  }
  .project-card:hover { transform: translateY(-5px); }
  .project-card img {
    max-width: 100%; border-radius: 8px; margin-bottom: 0.5rem;
  }
  .project-card h3 { margin: 0.3rem 0; }
  
  footer {
    text-align: center; padding: 2rem; font-size: 0.9rem;
    background: #eee;
  }

/* === Pricing Section === */
.pricing-intro {
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center;
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .price-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
  }
  .price-card:hover { transform: translateY(-6px); }
  
  .price-card h3 {
    font-family: "Major Mono Display", monospace;
    font-weight: 900;
    font-style: normal;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .price {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0 1rem;
    color: var(--accent);
  }
  .price-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem;
  }
  .price-card li { margin: 0.5rem 0; }
  
  .price-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.03);
  }
  
  .maintenance {
    margin-top: 3rem;
    text-align: center;
    background: #f3f4f6;
    padding: 1.5rem;
    border-radius: 8px;
  }
  .maintenance h4 {
    margin: 0 0 0.5rem;
    color: var(--accent);
  }
  
  /* ===== Contact Form Styles ===== */
#contact-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  #contact-form label {
    font-weight: 600;
  }
  
  #contact-form input,
  #contact-form select,
  #contact-form textarea {
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }
  
  #contact-form input:focus,
  #contact-form select:focus,
  #contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 5px rgba(79,70,229,0.4);
  }
  
  #contact-form .btn {
    width: fit-content;
    align-self: flex-start;
    padding: 0.8rem 1.5rem;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  #contact-form .btn:hover {
    background: #4338ca;
  }
  
  .a-little-bit-of-fucking-padding {
    padding-bottom: 5px;
  }

  .move-to-the-fucking-middle {
    text-align: center;
  }

  /* ===== FAQ Section Styles ===== */
  .faq-container {
    max-width: 800px;
    margin: 2rem auto;
  }

  .faq-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
  }

  .faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: #f8f9fa;
    border: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s;
  }

  .faq-question:hover {
    background: #f8f9fa;
  }

  .faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    flex: 1;
    padding-right: 1rem;
  }

  .faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s;
    min-width: 20px;
    text-align: center;
  }

  .faq-item.active .faq-toggle {
    transform: rotate(45deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f8f9fa;
  }

  .faq-item.active .faq-answer {
    max-height: 200px;
  }

  .faq-answer p {
    margin: 0;
    padding: 0 1.5rem 1.5rem;
    color: #555;
    line-height: 1.6;
  }

  /* ===== Plan Comparison Modal Styles ===== */
  .compare-plans-container {
    text-align: center;
    margin-top: 2rem;
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
  }

  .modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 0;
    border-radius: 12px;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
  }

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

  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
  }

  .modal-header h2 {
    margin: 0;
    color: var(--text);
    font-size: 1.8rem;
  }

  .close-modal {
    font-size: 2rem;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
  }

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

  .modal-body {
    padding: 2rem;
  }

  .comparison-table-container {
    overflow-x: auto;
    margin-bottom: 3rem;
  }

  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .comparison-table th {
    background: var(--accent);
    color: #fff;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
  }

  .comparison-table th:first-child {
    text-align: left;
    background: #333;
  }

  .price-small {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 0.2rem;
  }

  .comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
  }

  .comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    background: #f8f9fa;
  }

  .comparison-table tr:hover {
    background: #f8f9fa;
  }

  .comparison-table tr:last-child td {
    border-bottom: none;
  }

  .plan-tips {
    margin-top: 2rem;
  }

  .plan-tips h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text);
    font-size: 1.5rem;
  }

  .tip-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent);
  }

  .tip-card h4 {
    margin: 0 0 0.5rem;
    color: var(--text);
    font-size: 1.1rem;
  }

  .tip-card p {
    margin: 0 0 1rem;
    color: #555;
    line-height: 1.6;
  }

  .tip-card ul {
    margin: 0;
    padding-left: 1.5rem;
  }

  .tip-card li {
    margin: 0.3rem 0;
    color: #666;
  }

  /* Mobile responsiveness for modal */
  @media (max-width: 768px) {
    .modal-content {
      width: 98%;
      margin: 1% auto;
      max-height: 95vh;
    }

    .modal-header {
      padding: 1rem;
    }

    .modal-header h2 {
      font-size: 1.4rem;
    }

    .modal-body {
      padding: 1rem;
    }

    .comparison-table th,
    .comparison-table td {
      padding: 0.5rem;
      font-size: 0.8rem;
    }

    .tip-card {
      padding: 1rem;
    }
  }
