/* ============================================
   ScrapNode - Tarifs Page Styles (Redesign)
   Matches index.html premium design language
   ============================================ */

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15px, -20px) scale(1.05); }
    66% { transform: translate(-10px, 10px) scale(0.95); }
}

/* --------------------------------------------------------------------------
   Page Header — Hero-like treatment
   -------------------------------------------------------------------------- */

.page-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Glow orbs for depth */
.page-header::before,
.page-header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
    animation: floatOrb 8s ease-in-out infinite;
}

.page-header::before {
    width: 350px;
    height: 350px;
    background: rgba(230, 126, 34, 0.12);
    top: -80px;
    left: -60px;
}

.page-header::after {
    width: 300px;
    height: 300px;
    background: rgba(46, 204, 113, 0.08);
    bottom: -40px;
    right: -60px;
    animation-delay: -4s;
}

.page-header h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -3px;
    line-height: 1.05;
}

.page-header h1 .gradient-text {
    background: linear-gradient(135deg, #E67E22 0%, #F39C12 50%, #E67E22 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.page-header p {
    font-size: 1.35rem;
    color: #95A5A6;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Pricing Categories
   -------------------------------------------------------------------------- */

.pricing-category {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.pricing-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding: 30px 35px;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.5), rgba(52, 73, 94, 0.25));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(52, 73, 94, 0.4);
    border-left: 5px solid;
    transition: all 0.4s ease;
}

.pricing-category-header.free {
    border-left-color: #2ECC71;
}

.pricing-category-header.premium {
    border-left-color: #E67E22;
}

.pricing-category-header:hover {
    border-color: rgba(52, 73, 94, 0.6);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.pricing-category-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.pricing-category-info h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ECF0F1;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.pricing-category-info p {
    color: #BDC3C7;
    font-size: 1rem;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Pricing Section & Grid
   -------------------------------------------------------------------------- */

.pricing-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 28px;
    margin-top: 0;
}

/* --------------------------------------------------------------------------
   Pricing Cards — Premium glassmorphism
   -------------------------------------------------------------------------- */

.pricing-card {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.6), rgba(52, 73, 94, 0.4));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(52, 73, 94, 0.5);
    border-radius: 24px;
    padding: 45px 36px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Top gradient bar */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #E67E22, #F39C12);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 126, 34, 0.4);
    box-shadow: 0 20px 60px rgba(230, 126, 34, 0.15);
}

/* Featured card */
.pricing-card.featured {
    border-color: rgba(230, 126, 34, 0.4);
    transform: scale(1.02);
}

.pricing-card.featured::before {
    height: 4px;
    background: linear-gradient(90deg, #E67E22, #2ECC71);
    transform: scaleX(1);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 25px 70px rgba(230, 126, 34, 0.2);
}

/* Unavailable state — more subtle, still readable */
.pricing-card.unavailable {
    opacity: 0.75;
    border-color: rgba(127, 140, 141, 0.25);
}

.pricing-card.unavailable::before {
    background: linear-gradient(90deg, #7F8C8D, #95A5A6);
    transform: scaleX(1);
    opacity: 0.6;
}

.pricing-card.unavailable:hover {
    opacity: 0.85;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(149, 165, 166, 0.4);
}

.pricing-card.featured.unavailable:hover {
    transform: scale(1.02) translateY(-5px);
}

/* Scroll reveal */
.pricing-card.scroll-hidden {
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card.scroll-hidden.revealed {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card.featured.scroll-hidden.revealed {
    transform: scale(1.02);
}

/* Unavailable + scroll reveal combo */
.pricing-card.unavailable.scroll-hidden.revealed {
    opacity: 0.75;
}

.pricing-card.featured.unavailable.scroll-hidden.revealed {
    opacity: 0.75;
    transform: scale(1.02);
}

/* Stagger delays within grids */
.pricing-grid .pricing-card:nth-child(1) { transition-delay: 0s; }
.pricing-grid .pricing-card:nth-child(2) { transition-delay: 0.12s; }
.pricing-grid .pricing-card:nth-child(3) { transition-delay: 0.24s; }

/* --------------------------------------------------------------------------
   Pricing Badge
   -------------------------------------------------------------------------- */

.pricing-badge {
    background: linear-gradient(135deg, #E67E22, #D35400);
    color: white;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 22px;
}

.pricing-badge.popular {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
}

.pricing-badge.unavailable-badge {
    background: linear-gradient(135deg, #5D6D7E, #7F8C8D);
}

.pricing-badge.green-badge {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
}

/* --------------------------------------------------------------------------
   Pricing Icon
   -------------------------------------------------------------------------- */

.pricing-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, #E67E22, #D35400);
    transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.08);
}

.pricing-card:nth-child(1) .pricing-icon {
    background: linear-gradient(135deg, #E67E22, #D35400);
}

.pricing-card:nth-child(2) .pricing-icon {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
}

/* --------------------------------------------------------------------------
   Pricing Info
   -------------------------------------------------------------------------- */

.pricing-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ECF0F1;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.pricing-description {
    color: #95A5A6;
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.pricing-price {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4.2rem;
    font-weight: 800;
    color: #E67E22;
    margin-bottom: 5px;
    line-height: 1;
}

.pricing-price span {
    font-size: 1.5rem;
    color: #7F8C8D;
}

.pricing-card .pricing-price.free-price {
    color: #2ECC71;
}

.pricing-period {
    color: #7F8C8D;
    font-size: 1rem;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   Pricing Features List
   -------------------------------------------------------------------------- */

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    padding: 13px 0;
    border-bottom: 1px solid rgba(52, 73, 94, 0.25);
    color: #BDC3C7;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    transition: color 0.2s;
}

.pricing-features li::before {
    content: "\2713";
    color: #2ECC71;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li.unavailable {
    color: #5D6D7E;
    text-decoration: line-through;
}

.pricing-features li.unavailable::before {
    content: "\2717";
    color: #5D6D7E;
    background: rgba(93, 109, 126, 0.1);
}

/* --------------------------------------------------------------------------
   Pricing Button
   -------------------------------------------------------------------------- */

.btn-pricing {
    background: linear-gradient(135deg, #E67E22, #D35400);
    color: white;
    padding: 16px 45px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.35);
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 126, 34, 0.55);
}

.btn-pricing.green {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.35);
}

.btn-pricing.green:hover {
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.55);
}

.btn-pricing.disabled {
    background: linear-gradient(135deg, #5D6D7E, #7F8C8D);
    cursor: not-allowed;
    box-shadow: none;
}

.btn-pricing.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* --------------------------------------------------------------------------
   Pass Divider — Dramatic
   -------------------------------------------------------------------------- */

.pass-divider {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

.pass-divider-line {
    display: flex;
    align-items: center;
    gap: 25px;
}

.pass-divider-line::before,
.pass-divider-line::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(230, 126, 34, 0.5), transparent);
}

.pass-divider-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #E67E22;
    white-space: nowrap;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(230, 126, 34, 0.3);
}

/* --------------------------------------------------------------------------
   Pass Section
   -------------------------------------------------------------------------- */

.pass-section {
    max-width: 600px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.pass-section .pricing-card {
    transform: scale(1.02);
}

.pass-section .pricing-card.scroll-hidden {
    opacity: 0;
    transform: translateY(30px) scale(1.02);
}

.pass-section .pricing-card.scroll-hidden.revealed {
    opacity: 1;
    transform: scale(1.02);
}

.pass-section .pricing-card.unavailable.scroll-hidden.revealed {
    opacity: 0.75;
    transform: scale(1.02);
}

/* --------------------------------------------------------------------------
   Info Box — Enhanced
   -------------------------------------------------------------------------- */

.info-box {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.08), rgba(39, 174, 96, 0.05));
    border: 1px solid rgba(46, 204, 113, 0.25);
    border-radius: 20px;
    padding: 35px;
    max-width: 940px;
    margin: 60px auto;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.info-box:hover {
    border-color: rgba(46, 204, 113, 0.4);
    box-shadow: 0 10px 40px rgba(46, 204, 113, 0.08);
}

.info-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.info-text h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #2ECC71;
    margin-bottom: 8px;
}

.info-text p {
    color: #BDC3C7;
    line-height: 1.7;
    font-size: 1rem;
}

/* Scroll reveal for info box */
.info-box.scroll-hidden {
    opacity: 0;
    transform: translateY(20px);
}

.info-box.scroll-hidden.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Comparison Section — Enhanced
   -------------------------------------------------------------------------- */

.comparison-section {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 40px;
}

.comparison-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ECF0F1;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

/* Scroll reveal for comparison */
.comparison-section.scroll-hidden {
    opacity: 0;
    transform: translateY(30px);
}

.comparison-section.scroll-hidden.revealed {
    opacity: 1;
    transform: translateY(0);
}

.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 20px;
}

.comparison-table-wrapper .comparison-table {
    min-width: 700px;
}

.comparison-table {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.5), rgba(52, 73, 94, 0.3));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(52, 73, 94, 0.4);
    border-radius: 20px;
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid rgba(52, 73, 94, 0.25);
    transition: background 0.2s;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:not(.header):not(.header-6col):not(.group-label-row):hover {
    background: rgba(230, 126, 34, 0.04);
}

.comparison-row.header {
    background: rgba(230, 126, 34, 0.08);
}

.comparison-cell {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.95rem;
}

.comparison-cell:first-child {
    justify-content: flex-start;
    text-align: left;
}

.comparison-row.header .comparison-cell {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #E67E22;
}

.comparison-cell .feature-name {
    color: #BDC3C7;
    font-weight: 500;
}

.check {
    color: #2ECC71;
    font-size: 1.2rem;
    font-weight: bold;
}

.cross {
    color: #5D6D7E;
    font-size: 1.2rem;
}

/* 6-column layout */
.comparison-row.header-6col,
.comparison-row.row-6col {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
}

.comparison-cell.col-header {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Grouped Comparison Table */
.comparison-table-grouped .col-group-end {
    border-right: 1px solid rgba(127, 140, 141, 0.25);
}

.comparison-table-grouped .col-group-pass {
    border-right: none;
}

/* Group header backgrounds */
.comparison-row.header-6col .col-group-free {
    background: rgba(46, 204, 113, 0.06);
}

.comparison-row.header-6col .col-group-premium {
    background: rgba(230, 126, 34, 0.06);
}

.comparison-row.header-6col .col-group-pass {
    background: rgba(241, 196, 15, 0.08);
}

/* Group label row */
.group-label-row {
    background: rgba(44, 62, 80, 0.3);
    border-bottom: 2px solid rgba(52, 73, 94, 0.4) !important;
}

.group-label-row .comparison-cell {
    padding: 10px 6px;
}

.group-label {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.group-label-free {
    color: #2ECC71;
}

.group-label-premium {
    color: #E67E22;
}

.group-label-pass {
    color: #F1C40F;
}

/* Partial check */
.check-partial {
    color: #E67E22;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

/* --------------------------------------------------------------------------
   FAQ Section — Enhanced
   -------------------------------------------------------------------------- */

.faq-section {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
}

.faq-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ECF0F1;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -2px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.5), rgba(52, 73, 94, 0.3));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(52, 73, 94, 0.4);
    border-radius: 18px;
    padding: 28px 32px;
    margin-bottom: 14px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Left accent bar on hover */
.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #E67E22, #D35400);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(230, 126, 34, 0.35);
    transform: translateX(4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #E67E22;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.faq-item p {
    color: #BDC3C7;
    line-height: 1.7;
    font-size: 1rem;
}

/* Scroll reveal for FAQ items */
.faq-item.scroll-hidden {
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.scroll-hidden.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.faq-item:nth-child(2).scroll-hidden { transition-delay: 0.05s; }
.faq-item:nth-child(3).scroll-hidden { transition-delay: 0.1s; }
.faq-item:nth-child(4).scroll-hidden { transition-delay: 0.15s; }
.faq-item:nth-child(5).scroll-hidden { transition-delay: 0.2s; }
.faq-item:nth-child(6).scroll-hidden { transition-delay: 0.25s; }
.faq-item:nth-child(7).scroll-hidden { transition-delay: 0.3s; }

/* --------------------------------------------------------------------------
   CTA Section — Animated gradient border (like index)
   -------------------------------------------------------------------------- */

.cta-section {
    max-width: 900px;
    margin: 80px auto 100px;
    padding: 60px 40px;
    text-align: center;
    border-radius: 30px;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.97), rgba(15, 20, 25, 0.93));
    border: 2px solid transparent;
    transition: transform 0.3s;
    isolation: isolate;
}

/* Animated gradient border */
.cta-section::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 32px;
    background: linear-gradient(135deg, #E67E22, #2ECC71, #E67E22, #2ECC71);
    background-size: 300% 300%;
    z-index: -1;
    animation: borderGlow 4s ease infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.97), rgba(15, 20, 25, 0.93));
    z-index: -1;
}

.cta-section:hover {
    transform: scale(1.01);
}

.cta-section h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #E67E22;
    margin-bottom: 18px;
    letter-spacing: -2px;
}

.cta-section p {
    font-size: 1.2rem;
    color: #BDC3C7;
    margin-bottom: 35px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Buttons — Harmonized with index
   -------------------------------------------------------------------------- */

.btn-primary {
    background: linear-gradient(135deg, #E67E22, #D35400);
    color: white;
    padding: 18px 45px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 126, 34, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #ECF0F1;
    padding: 18px 45px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #34495E;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: #E67E22;
    color: #E67E22;
    transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   Footer Social
   -------------------------------------------------------------------------- */

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

/* --------------------------------------------------------------------------
   Scroll Reveal — Global classes
   -------------------------------------------------------------------------- */

.scroll-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-hidden.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Category headers scroll reveal */
.pricing-category-header.scroll-hidden {
    opacity: 0;
    transform: translateY(20px);
}

.pricing-category-header.scroll-hidden.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Pass divider scroll reveal */
.pass-divider.scroll-hidden {
    opacity: 0;
    transform: translateY(15px);
}

.pass-divider.scroll-hidden.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* CTA scroll reveal */
.cta-section.scroll-hidden {
    opacity: 0;
    transform: translateY(30px) scale(1);
}

.cta-section.scroll-hidden.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* --------------------------------------------------------------------------
   Responsive — 1024px
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    .page-header h1 {
        font-size: 4rem;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }

    .comparison-title,
    .faq-title {
        font-size: 2.5rem;
    }
}

/* --------------------------------------------------------------------------
   Responsive — 768px
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {
    .page-header {
        padding: 70px 24px 60px;
    }

    .page-header::before,
    .page-header::after {
        display: none;
    }

    .page-header h1 {
        font-size: 2.8rem;
        letter-spacing: -2px;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .pricing-card.featured.scroll-hidden.revealed {
        transform: none;
    }

    .pricing-card.featured.unavailable.scroll-hidden.revealed {
        opacity: 0.75;
        transform: none;
    }

    .comparison-section {
        padding: 0 20px;
    }

    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .comparison-cell {
        padding: 14px 8px;
        font-size: 0.85rem;
    }

    .comparison-title,
    .faq-title {
        font-size: 2.2rem;
    }

    .info-box {
        flex-direction: column;
        text-align: center;
    }

    .pricing-category {
        padding: 0 24px;
    }

    .pricing-category-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .pricing-category-info h2 {
        font-size: 1.6rem;
    }

    .pass-section .pricing-card {
        transform: scale(1);
    }

    .pass-section .pricing-card.scroll-hidden.revealed {
        transform: none;
    }

    .pass-section .pricing-card.unavailable.scroll-hidden.revealed {
        opacity: 0.75;
        transform: none;
    }

    .comparison-row.header-6col,
    .comparison-row.row-6col {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    }

    .comparison-cell {
        padding: 12px 6px;
        font-size: 0.75rem;
    }

    .comparison-cell.col-header {
        font-size: 0.65rem;
    }

    .group-label {
        font-size: 0.7rem;
    }

    .check-partial {
        font-size: 0.65rem;
    }

    .cta-section {
        margin-left: 16px;
        margin-right: 16px;
        padding: 40px 24px;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }

    .faq-item:hover {
        transform: translateX(2px);
    }
}

/* --------------------------------------------------------------------------
   Responsive — 480px
   -------------------------------------------------------------------------- */

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .page-header p {
        font-size: 1rem;
    }

    .pricing-card {
        padding: 35px 28px;
    }

    .pricing-price {
        font-size: 3.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 32px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .comparison-title,
    .faq-title {
        font-size: 1.8rem;
    }

    .pass-divider-text {
        font-size: 1rem;
        letter-spacing: 1px;
    }
}
