/* shared.css */

/* Hero + Animated Icons */
.pricing-hero {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 80px 20px;
  }
  .hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 12px;
    color: var(--text);
    animation: fadeInDown 1s ease-out;
  }
  .hero-content p {
    font-size: 1.1rem;
    color: var(--muted);
    animation: fadeIn 1s 0.5s ease-out forwards;
    opacity: 0;
  }
  .hero-icons i {
    position: absolute;
    font-size: 3rem;
    color: rgba(0,151,136,0.15);
    animation: float 8s ease-in-out infinite;
  }
  .hero-icons i:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
  .hero-icons i:nth-child(2) { top: 10%; right: 15%; animation-delay: 1s; }
  .hero-icons i:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 2s; }
  .hero-icons i:nth-child(4) { bottom: 10%; right: 25%; animation-delay: 3s; }
  .hero-icons i:nth-child(5) { top: 50%; left: 50%; animation-delay: 4s; }
  .hero-icons i:nth-child(6) { top: 60%; right: 50%; animation-delay: 5s; }
  @keyframes float {
    0%,100%{transform:translateY(0) scale(1);}
    50%{transform:translateY(20px) scale(1.1);}
  }
  @keyframes fadeInDown {
    from{opacity:0;transform:translateY(-20px);} to{opacity:1;transform:translateY(0);}
  }
  @keyframes fadeIn { to{opacity:1;} }
  
  /* Tabs */
  .pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
  }
  .tab-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s, color .3s;
  }
  .tab-btn.active,
  .tab-btn:hover:not(.active) {
    background: var(--primary);
    color: #fff;
  }
  
  /* Page padding */
  .pricing-page {
    padding: 60px 80px;
  }
  
  /* Shared: 4 columns */
  #shared .pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  /* WP: 3 columns */
  #wordpress .pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  /* Show only active section */
  .pricing-section { display: none; }
  .pricing-section.active { display: block; }
  
  /* Section titles & subtitles */
  .section-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 8px;
    color: #333333;  /* Darker */
  }
  .section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 32px;
  }
  
  /* Pricing cards */
  .pricing-card {
    position: relative;
    background: var(--surface);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow);
    padding: 32px 20px 20px;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
  }
  .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px var(--shadow);
  }
  .stripe {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--accent);
  }
  .popular .ribbon {
    position: absolute; top: 12px; right: -32px;
    background: var(--accent); color: #fff;
    padding: 4px 48px; font-size: .9rem;
    transform: rotate(45deg);
    box-shadow: 0 2px 6px var(--shadow);
  }
  .pricing-card h3 {
    font-family: 'Montserrat',sans-serif;
    font-size: 1.4rem; margin: 16px 0 8px;
  }
  .price {
    font-size: 2rem; color: var(--accent);
    margin-bottom: 16px;
  }
  .price span {
    font-size: 1rem; color: var(--muted);
  }
  
  /* Feature list left-aligned */
  .features-list {
    list-style: none; padding: 0;
    margin: 0 0 24px; text-align: left;
  }
  .features-list li {
    display: flex; align-items: center;
    gap: 8px; margin-bottom: 8px;
    font-size: .95rem; color: var(--text);
  }
  .features-list li i { color: var(--primary); }
  
  /* Select Plan button */
  .btn-select {
    background: var(--primary);
    color: #fff;
    padding: 10px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background .3s;
  }
  .btn-select:hover { background: var(--secondary); }
  
  /* Included With Every Plan */
  .included-features {
    background: var(--bg-light);
    margin-top: 80px;
    padding: 60px 80px;
  }
  .included-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 32px;
    color: #333333 !important;
  }
  .included-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 24px;
  }
  .included-card {
    background: var(--surface);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px var(--shadow);
    transition: transform .3s, box-shadow .3s;
  }
  .included-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px var(--shadow);
  }
  .included-card i {
    font-size: 2rem; color: var(--primary);
    margin-bottom: 12px;
  }
  .included-card h4 {
    font-family: 'Montserrat',sans-serif;
    font-size: 1.1rem; margin-bottom: 8px;
  }
  .included-card p { color: var(--muted); font-size: .95rem; }
  