
    .pricing-header {
      text-align: center;
      padding: 48px 16px 24px 16px;
    }
    .pricing-header h1 {
      font-size: 2.2rem;
      color: #d32f2f;
      margin-bottom: 10px;
      font-weight: 700;
    }
    .pricing-header p {
      color: #555;
      font-size: 1.1rem;
      margin: 0 auto;
      max-width: 500px;
    }
    .pricing-table {
      display: flex;
      justify-content: center;
      align-items: stretch;
      gap: 32px;
      margin: 32px auto 48px auto;
      max-width: 1100px;
      flex-wrap: nowrap;
    }
    .pricing-card {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 1.5px 4px rgba(0,0,0,0.08);
      padding: 36px 32px 32px 32px;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: box-shadow 0.3s cubic-bezier(.4,2,.6,1), transform 0.3s cubic-bezier(.4,2,.6,1);
      border: 2px solid transparent;
      position: relative;
      opacity: 0;
      transform: translateY(40px) scale(0.98);
      animation: fadeInUp 0.8s cubic-bezier(.4,2,.6,1) forwards;
    }
    .pricing-card:nth-child(1) { animation-delay: 0.1s; }
    .pricing-card:nth-child(2) { animation-delay: 0.25s; }
    .pricing-card:nth-child(3) { animation-delay: 0.4s; }
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }
    .pricing-card:hover, .pricing-card:focus-within {
      box-shadow: 0 16px 48px rgba(211,47,47,0.18), 0 4px 16px rgba(0,0,0,0.10);
      transform: translateY(-10px) scale(1.045);
      z-index: 3;
    }
    .pricing-card.featured {
      border-color: #d32f2f;
      transform: scale(1);
      z-index: 2;
    }
    .pricing-card.featured:hover, .pricing-card.featured:focus-within {
      transform: translateY(-10px) scale(1.08);
      box-shadow: 0 24px 64px rgba(211,47,47,0.22), 0 8px 24px rgba(0,0,0,0.12);
    }
    .pricing-card h2 {
      font-size: 1.4rem;
      color: #d32f2f;
      margin-bottom: 8px;
      font-weight: 700;
    }
    .pricing-card .price {
      font-size: 2.2rem;
      color: #222;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .pricing-card .period {
      color: #888;
      font-size: 1rem;
      margin-bottom: 18px;
    }
    .pricing-features {
      list-style: none;
      padding: 0;
      margin: 0 0 24px 0;
      width: 100%;
      flex-grow: 1;
    }
    .pricing-features li {
      padding: 10px 0;
      border-bottom: 1px solid #f0f0f0;
      color: #444;
      font-size: 1.05rem;
      text-align: left;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .pricing-features li:last-child {
      border-bottom: none;
    }
    .pricing-card .btn {
      background: #d32f2f;
      color: #fff;
      border: none;
      border-radius: 24px;
      padding: 12px 32px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 4px 18px rgba(211,47,47,0.12);
      transition: background 0.2s, transform 0.2s;
      text-decoration: none;
      margin-top: auto;
      display: inline-block;
    }
    .pricing-card .btn:hover {
      background: #b71c1c;
      transform: translateY(-2px) scale(1.04);
    }
    .badge {
      position: absolute;
      top: 18px;
      right: 18px;
      background: #d32f2f;
      color: #fff;
      font-size: 0.95rem;
      font-weight: 600;
      padding: 4px 16px;
      border-radius: 16px;
      letter-spacing: 0.5px;
    }
    @media (max-width: 1100px) {
      .pricing-table {
        gap: 18px;
      }
      .pricing-card {
        width: 300px;
      }
    }
    @media (max-width: 1000px) {
      .pricing-table {
        flex-wrap: wrap;
      }
      .pricing-card {
        width: 90vw;
        max-width: 400px;
        margin-bottom: 18px;
      }
    }
    @media (max-width: 900px) {
      .pricing-table {
        flex-direction: column;
        align-items: center;
        gap: 18px;
      }
      .pricing-card {
        width: 95vw;
        max-width: 400px;
      }
    }
    @media (max-width: 600px) {
      .pricing-header { padding: 32px 4px 16px 4px; }
      .pricing-table { gap: 10px; }
      .pricing-card { padding: 24px 8px 20px 8px; }
    }
    .hero-section {
      width: 100%;
      max-width: 1000px;
      margin: 0 auto 48px auto;
      opacity: 0;
      transform: translateY(40px) scale(0.98);
      animation: fadeInUp 0.8s cubic-bezier(.4,2,.6,1) forwards;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      border-radius: 12px;
      transition: box-shadow 0.3s cubic-bezier(.4,2,.6,1), transform 0.3s cubic-bezier(.4,2,.6,1);
      background: transparent;
    }
    .hero-section:hover, .hero-section:focus-within {
      box-shadow: 0 16px 48px rgba(211,47,47,0.13), 0 4px 16px rgba(0,0,0,0.10);
      transform: translateY(-8px) scale(1.025);
      z-index: 2;
    }
    .hero-section img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 12px 12px 0 0;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      transition: box-shadow 0.3s;
    }
    .content {
      background-color: #fff;
      padding: 30px;
      border-radius: 0 0 12px 12px;
    }
    .content h1 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #d32f2f;
      font-weight: 700;
    }
    .content p {
      font-size: 1.1rem;
      margin-bottom: 16px;
      line-height: 1.7;
    }
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }
    /* Animasyon gecikmeleri */
    .hero-section:nth-of-type(1) { animation-delay: 0.1s; }
    .hero-section:nth-of-type(2) { animation-delay: 0.25s; }
    .hero-section:nth-of-type(3) { animation-delay: 0.4s; }
    .hero-section:nth-of-type(4) { animation-delay: 0.55s; }
    .hero-section:nth-of-type(5) { animation-delay: 0.7s; }
    @media (max-width: 768px) {
      .content h1 {
        font-size: 1.5rem;
      }
      .content {
        padding: 20px;
      }
      .hero-section {
        margin-bottom: 32px;
      }
    }
.acilsistem-card {
    background: #fff;
    border-radius: 22px;
    margin: 10px;
    padding: 32px 32px 32px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10), 0 1.5px 4px rgba(0, 0, 0, 0.08);
    border: 2px solid #ddd;
    justify-content: center;
    align-items: center;
    display: table;
    text-align: center;
}
.acilsistem-card h2 {
    font-size: 1.4rem;
    color: #d32f2f;
    margin-bottom: 8px;
    font-weight: 700;
}
.acilsistem-card a.btn {
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(211, 47, 47, 0.12);
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
    margin-top: auto;
    display: inline-block;
}
.price {
    font-size: 37px;
    font-weight: 700;
}