/* =============================================
   MicroNoxy — Page Tarifs Particuliers — v1.0
   Fichier : assets/css/page-tarifs-particuliers.css
   Prefixe : tp- (tarifs particuliers)
   ============================================= */

/* --- Variables locales --- */
:root {
    --tp-cyan: #00e5ff;
    --tp-cyan-soft: rgba(0, 229, 255, 0.08);
    --tp-cyan-glow: rgba(0, 229, 255, 0.15);
    --tp-cyan-border: rgba(0, 229, 255, 0.2);
    --tp-cyan-border-h: rgba(0, 229, 255, 0.5);

    --tp-violet: #a855f7;
    --tp-violet-soft: rgba(168, 85, 247, 0.08);
    --tp-violet-glow: rgba(168, 85, 247, 0.15);
    --tp-violet-border: rgba(168, 85, 247, 0.2);
    --tp-violet-border-h: rgba(168, 85, 247, 0.5);
    --tp-violet-deep: #7c3aed;

    --tp-red: #ff6b6b;
    --tp-red-soft: rgba(255, 107, 107, 0.1);
    --tp-red-glow: rgba(255, 107, 107, 0.15);
    --tp-red-border: rgba(255, 107, 107, 0.2);

    --tp-green: #10b981;

    --tp-bg-card: linear-gradient(180deg, rgba(15, 10, 30, 0.7) 0%, rgba(10, 5, 20, 0.85) 100%);
    --tp-bg-dark: rgba(0, 0, 0, 0.4);

    --tp-txt: #e8f0f2;
    --tp-txt2: rgba(255, 255, 255, 0.6);
    --tp-txt3: rgba(255, 255, 255, 0.4);
    --tp-border: rgba(255, 255, 255, 0.06);

    --tp-f-display: 'Michroma', sans-serif;
    --tp-f-heading: 'Exo 2', sans-serif;
    --tp-f-body: 'Rajdhani', sans-serif;
    --tp-f-mono: 'Space Mono', monospace;
}


/* =============================================
   SECTION : HERO (centré, simplifié)
   ============================================= */
.tp-hero-content {
    text-align: center;
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.tp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--tp-violet-soft);
    border: 1px solid var(--tp-violet-border);
    border-radius: 4px;
    font-family: var(--tp-f-mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--tp-violet);
    margin-bottom: 28px;
    text-transform: uppercase;
}

.tp-hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--tp-violet);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--tp-violet);
    animation: tpPulse 2s ease-in-out infinite;
}

.tp-hero-title {
    font-family: var(--tp-f-heading);
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 18px;
}

.tp-hero-title .tp-cyan {
    color: var(--tp-cyan);
}

.tp-hero-subtitle {
    font-family: var(--tp-f-body);
    font-size: 17px;
    color: var(--tp-txt2);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}


/* =============================================
   SECTION : INFO BAR (4 items)
   ============================================= */
.tp-info-section {
    padding: 0 40px 60px;
    position: relative;
    z-index: 1;
}

.tp-info-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.tp-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--tp-bg-card);
    border: 1px solid var(--tp-violet-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tp-info-item:hover {
    border-color: var(--tp-violet-border-h);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.1);
}

.tp-info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
    flex-shrink: 0;
}

.tp-info-icon.cyan {
    background: var(--tp-cyan-soft);
    border: 1px solid var(--tp-cyan-border);
}

.tp-info-icon.violet {
    background: var(--tp-violet-soft);
    border: 1px solid var(--tp-violet-border);
}

.tp-info-icon.red {
    background: var(--tp-red-soft);
    border: 1px solid var(--tp-red-border);
}

.tp-info-icon.muted {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tp-info-label {
    font-family: var(--tp-f-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--tp-txt);
    margin-bottom: 2px;
}

.tp-info-value {
    font-family: var(--tp-f-body);
    font-size: 12px;
    color: var(--tp-txt3);
    line-height: 1.4;
}

.tp-info-value.cyan { color: var(--tp-cyan); }
.tp-info-value.violet { color: var(--tp-violet); }
.tp-info-value.red { color: var(--tp-red); }


/* =============================================
   SECTION : GRILLE 6 CARTES
   ============================================= */
.tp-section {
    padding: 80px 40px;
    position: relative;
    z-index: 1;
}

.tp-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.tp-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--tp-violet-soft);
    border: 1px solid var(--tp-violet-border);
    border-radius: 4px;
    font-family: var(--tp-f-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--tp-violet);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tp-section-title {
    font-family: var(--tp-f-heading);
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.tp-section-title .tp-cyan { color: var(--tp-cyan); }
.tp-section-title .tp-violet { color: var(--tp-violet); }

.tp-section-desc {
    font-family: var(--tp-f-body);
    font-size: 16px;
    color: var(--tp-txt2);
    max-width: 550px;
    margin: 0 auto;
}

/* --- Cards grid --- */
.tp-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1300px;
    margin: 0 auto;
}

/* --- Card --- */
.tp-card {
    display: flex;
    flex-direction: column;
    background: var(--tp-bg-card);
    border: 1px solid var(--tp-violet-border);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    animation: tpFadeInUp 0.6s ease both;
}

.tp-card:nth-child(1) { animation-delay: 0.05s; }
.tp-card:nth-child(2) { animation-delay: 0.10s; }
.tp-card:nth-child(3) { animation-delay: 0.15s; }
.tp-card:nth-child(4) { animation-delay: 0.20s; }
.tp-card:nth-child(5) { animation-delay: 0.25s; }
.tp-card:nth-child(6) { animation-delay: 0.30s; }

/* Scan line top on hover */
.tp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tp-violet), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.tp-card:hover {
    transform: translateY(-4px);
    border-color: var(--tp-violet-border-h);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.15),
                inset 0 1px 0 rgba(168, 85, 247, 0.2);
}

.tp-card:hover::before {
    opacity: 1;
}

/* Accent color variants */
.tp-card[data-accent="cyan"]:hover {
    border-color: var(--tp-cyan-border-h);
    box-shadow: 0 8px 32px rgba(0, 229, 255, 0.12),
                inset 0 1px 0 rgba(0, 229, 255, 0.2);
}

.tp-card[data-accent="cyan"]::before {
    background: linear-gradient(90deg, transparent, var(--tp-cyan), transparent);
}

.tp-card[data-accent="red"]:hover {
    border-color: rgba(255, 107, 107, 0.5);
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.12),
                inset 0 1px 0 rgba(255, 107, 107, 0.2);
}

.tp-card[data-accent="red"]::before {
    background: linear-gradient(90deg, transparent, var(--tp-red), transparent);
}

/* --- Card Header (terminal bar) --- */
.tp-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: var(--tp-bg-dark);
    border-bottom: 1px solid var(--tp-border);
}

.tp-card-code {
    font-family: var(--tp-f-mono);
    font-size: 10px;
    color: var(--tp-violet);
    letter-spacing: 1px;
    opacity: 0.6;
}

.tp-card[data-accent="cyan"] .tp-card-code { color: var(--tp-cyan); }
.tp-card[data-accent="red"] .tp-card-code { color: var(--tp-red); }

.tp-card-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Signal bars */
.tp-signal-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
}

.tp-signal-bar {
    width: 3px;
    border-radius: 1px;
    background: rgba(168, 85, 247, 0.25);
}

.tp-signal-bar:nth-child(1) { height: 3px; }
.tp-signal-bar:nth-child(2) { height: 6px; }
.tp-signal-bar:nth-child(3) { height: 9px; background: rgba(168, 85, 247, 0.5); }
.tp-signal-bar:nth-child(4) { height: 12px; background: var(--tp-violet); }

/* Urgency badge */
.tp-urgency {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    border-radius: 3px;
    font-family: var(--tp-f-mono);
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tp-urgency-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

/* Urgency : URGENT (red) */
.tp-urgency.urgent {
    background: var(--tp-red-soft);
    color: var(--tp-red);
}

.tp-urgency.urgent .tp-urgency-dot {
    background: var(--tp-red);
    box-shadow: 0 0 6px var(--tp-red);
    animation: tpPulse 2s ease-in-out infinite;
}

/* Urgency : COURANT (cyan) */
.tp-urgency.courant {
    background: var(--tp-cyan-soft);
    color: var(--tp-cyan);
}

.tp-urgency.courant .tp-urgency-dot {
    background: var(--tp-cyan);
    box-shadow: 0 0 6px var(--tp-cyan);
    animation: tpPulse 2s ease-in-out infinite;
}

/* Urgency : DISPO (violet) */
.tp-urgency.dispo {
    background: var(--tp-violet-soft);
    color: var(--tp-violet);
}

.tp-urgency.dispo .tp-urgency-dot {
    background: var(--tp-violet);
    box-shadow: 0 0 6px var(--tp-violet);
    animation: tpPulse 2.5s ease-in-out infinite;
}

/* --- Card Content --- */
.tp-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 28px 24px 30px;
}

/* Icon box */
.tp-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
}

.tp-card-icon svg {
    width: 26px;
    height: 26px;
}

/* Icon color variants */
.tp-card-icon.cyan {
    background: var(--tp-cyan-soft);
    border: 1px solid var(--tp-cyan-border);
}

.tp-card-icon.cyan svg {
    stroke: var(--tp-cyan);
    filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.4));
}

.tp-card-icon.violet {
    background: var(--tp-violet-soft);
    border: 1px solid var(--tp-violet-border);
}

.tp-card-icon.violet svg {
    stroke: var(--tp-violet);
    filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.4));
}

.tp-card-icon.red {
    background: var(--tp-red-soft);
    border: 1px solid var(--tp-red-border);
}

.tp-card-icon.red svg {
    stroke: var(--tp-red);
    filter: drop-shadow(0 0 6px rgba(255, 107, 107, 0.4));
}

/* Titles */
.tp-card-title {
    font-family: var(--tp-f-heading);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.tp-card-subtitle {
    font-family: var(--tp-f-mono);
    font-size: 9px;
    color: var(--tp-txt3);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.tp-card-desc {
    font-family: var(--tp-f-body);
    font-size: 14px;
    color: var(--tp-txt2);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Included list */
.tp-card-includes {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
}

.tp-card-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-family: var(--tp-f-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid var(--tp-border);
}

.tp-card-includes li:last-child {
    border-bottom: none;
}

.tp-card-includes li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* List bullet colors by card accent */
.tp-card[data-accent="cyan"] .tp-card-includes li::before {
    background: var(--tp-cyan);
    box-shadow: 0 0 6px var(--tp-cyan);
}

.tp-card[data-accent="violet"] .tp-card-includes li::before {
    background: var(--tp-violet);
    box-shadow: 0 0 6px var(--tp-violet);
}

.tp-card[data-accent="red"] .tp-card-includes li::before {
    background: var(--tp-red);
    box-shadow: 0 0 6px var(--tp-red);
}

/* Price area */
.tp-card-price-zone {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--tp-border);
}

.tp-card-price {
    font-family: var(--tp-f-body);
    font-size: 14px;
    color: var(--tp-txt2);
    margin-bottom: 4px;
}

.tp-card-price .amount {
    font-family: var(--tp-f-heading);
    font-size: 28px;
    font-weight: 700;
}

.tp-card[data-accent="cyan"] .tp-card-price .amount { color: var(--tp-cyan); }
.tp-card[data-accent="violet"] .tp-card-price .amount { color: var(--tp-violet); }
.tp-card[data-accent="red"] .tp-card-price .amount { color: var(--tp-red); }

.tp-card-price .unit {
    font-family: var(--tp-f-mono);
    font-size: 11px;
    color: var(--tp-txt3);
    letter-spacing: 1px;
    margin-left: 4px;
}

.tp-card-price-note {
    font-family: var(--tp-f-body);
    font-size: 11px;
    color: var(--tp-txt3);
    margin-bottom: 14px;
    font-style: italic;
}

/* Lieu badge */
.tp-lieu {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 4px;
    font-family: var(--tp-f-mono);
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.tp-lieu.atelier {
    background: var(--tp-cyan-soft);
    border: 1px solid var(--tp-cyan-border);
    color: var(--tp-cyan);
}

.tp-lieu.domicile {
    background: var(--tp-violet-soft);
    border: 1px solid var(--tp-violet-border);
    color: var(--tp-violet);
}

/* CTA button */
.tp-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 20px;
    background: transparent;
    border: 1px solid var(--tp-violet-border);
    border-radius: 6px;
    font-family: var(--tp-f-display);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--tp-violet);
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tp-card[data-accent="cyan"] .tp-card-btn {
    border-color: var(--tp-cyan-border);
    color: var(--tp-cyan);
}

.tp-card[data-accent="red"] .tp-card-btn {
    border-color: var(--tp-red-border);
    color: var(--tp-red);
}

.tp-card-btn:hover {
    background: var(--tp-violet-soft);
    border-color: var(--tp-violet);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

.tp-card[data-accent="cyan"] .tp-card-btn:hover {
    background: var(--tp-cyan-soft);
    border-color: var(--tp-cyan);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}

.tp-card[data-accent="red"] .tp-card-btn:hover {
    background: var(--tp-red-soft);
    border-color: var(--tp-red);
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.15);
}

.tp-card-btn .arrow {
    transition: transform 0.3s ease;
}

.tp-card-btn:hover .arrow {
    transform: translateX(4px);
}


/* =============================================
   SECTION : PACK REMISE A NEUF
   ============================================= */
.tp-pack-section {
    padding: 40px 40px 80px;
    position: relative;
    z-index: 1;
}

.tp-pack-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(60, 20, 90, 0.25) 0%, rgba(20, 8, 40, 0.5) 100%);
    border: 2px solid rgba(168, 85, 247, 0.4);
    border-radius: 14px;
    overflow: visible;
    position: relative;
    transition: all 0.3s ease;
}

.tp-pack-card:hover {
    transform: translateY(-2px);
    border-color: var(--tp-violet);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.2);
}

/* Glow top line */
.tp-pack-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--tp-violet), var(--tp-cyan), transparent);
    border-radius: 2px;
}

/* Popular badge */
.tp-pack-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 22px;
    background: linear-gradient(135deg, #a855f7 0%, #06b6d4 100%);
    border-radius: 20px;
    font-family: var(--tp-f-mono);
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.tp-pack-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    padding: 55px 45px 45px;
    align-items: center;
}

/* Pack content (left) */
.tp-pack-title {
    font-family: var(--tp-f-heading);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.tp-pack-subtitle {
    font-family: var(--tp-f-mono);
    font-size: 10px;
    color: var(--tp-violet);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    opacity: 0.7;
}

.tp-pack-desc {
    font-family: var(--tp-f-body);
    font-size: 15px;
    color: var(--tp-txt2);
    line-height: 1.7;
    margin-bottom: 24px;
}

.tp-pack-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.tp-pack-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--tp-f-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.tp-pack-features li::before {
    content: '✓';
    color: var(--tp-green);
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.tp-pack-lieu {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--tp-cyan-soft);
    border: 1px solid var(--tp-cyan-border);
    border-radius: 4px;
    font-family: var(--tp-f-mono);
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--tp-cyan);
}

/* Pack price (right) */
.tp-pack-price-box {
    text-align: center;
    padding: 35px 30px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--tp-violet-border);
    border-radius: 12px;
}

.tp-pack-price-old {
    font-family: var(--tp-f-body);
    font-size: 18px;
    color: var(--tp-txt3);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.tp-pack-price-new {
    font-family: var(--tp-f-heading);
    font-size: 52px;
    font-weight: 800;
    color: var(--tp-violet);
    line-height: 1;
    margin-bottom: 6px;
}

.tp-pack-price-new .euro { font-size: 32px; }

.tp-pack-price-unit {
    font-family: var(--tp-f-mono);
    font-size: 12px;
    color: var(--tp-txt3);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.tp-pack-discount {
    display: inline-block;
    padding: 4px 14px;
    background: var(--tp-red-soft);
    border: 1px solid var(--tp-red-border);
    border-radius: 20px;
    font-family: var(--tp-f-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--tp-red);
    margin-bottom: 20px;
}

.tp-pack-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--tp-violet) 0%, var(--tp-violet-deep) 100%);
    border: none;
    border-radius: 8px;
    font-family: var(--tp-f-display);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.tp-pack-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
}

.tp-pack-btn .arrow {
    transition: transform 0.3s ease;
}

.tp-pack-btn:hover .arrow {
    transform: translateX(4px);
}


/* =============================================
   SECTION : FOOTER INFO (3 lignes)
   ============================================= */
.tp-footer-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px 80px;
    position: relative;
    z-index: 1;
}

.tp-footer-lines {
    background: var(--tp-bg-card);
    border: 1px solid var(--tp-violet-border);
    border-radius: 10px;
    overflow: hidden;
}

.tp-footer-line {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px;
    border-bottom: 1px solid var(--tp-border);
    transition: background 0.3s ease;
}

.tp-footer-line:last-child {
    border-bottom: none;
}

.tp-footer-line:hover {
    background: rgba(168, 85, 247, 0.03);
}

.tp-footer-line-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.tp-footer-line-text {
    font-family: var(--tp-f-body);
    font-size: 14px;
    color: var(--tp-txt2);
    line-height: 1.5;
}

.tp-footer-line-text strong {
    color: var(--tp-violet);
    font-weight: 600;
}


/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes tpPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes tpFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet large */
@media (max-width: 1100px) {
    .tp-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 860px;
    }

    .tp-pack-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tp-pack-price-box {
        max-width: 320px;
        margin: 0 auto;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .tp-info-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .tp-hero-title {
        font-size: 36px;
    }

    .tp-section-title {
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .tp-hero-content {
        padding: 40px 20px;
    }

    .tp-hero-title {
        font-size: 32px;
    }

    .tp-section {
        padding: 60px 20px;
    }

    .tp-info-section {
        padding: 0 20px 40px;
    }

    .tp-info-bar {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .tp-cards-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .tp-pack-section {
        padding: 40px 20px 60px;
    }

    .tp-pack-inner {
        padding: 45px 24px 30px;
    }

    .tp-pack-features {
        grid-template-columns: 1fr;
    }

    .tp-footer-info {
        padding: 0 20px 60px;
    }

    .tp-footer-line {
        padding: 14px 20px;
    }

    /* RESPONSIVE FIX: Price size reduction at tablet */
    .tp-pack-price-new {
        font-size: 46px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .tp-hero-title {
        font-size: 28px;
    }

    .tp-section-title {
        font-size: 26px;
    }

    .tp-pack-price-new {
        font-size: 42px;
    }

    /* RESPONSIVE FIX: Euro sign */
    .tp-pack-price-new .euro {
        font-size: 24px;
    }

    /* RESPONSIVE FIX: Packs container */
    .tp-packs-container {
        max-width: 100%;
        padding: 0 16px;
    }
}
