/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (Luxury Light Theme)
   ========================================================================== */
:root {
    /* Fonts */
    --font-display: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Light Theme Palette */
    --color-bg-dark: #F8FAFC; /* Slate-50 background for section contrast */
    --color-bg-card: #FFFFFF; /* Pure White card backgrounds */
    --color-bg-card-winner: #FFFFFF;
    --color-border: rgba(15, 23, 42, 0.07); /* Thin dark grey border */
    --color-border-winner: rgba(245, 158, 11, 0.45); /* Semi-transparent Gold */
    --color-border-hover: rgba(109, 40, 217, 0.25); /* Light Purple hover */
    --color-border-winner-hover: rgba(245, 158, 11, 0.9);

    --color-primary: #3B108E; /* Brand Purple */
    --color-purple-light: #6D28D9; /* Saturated purple for high contrast read */
    --color-magenta: #DB2777; /* Deep Pink/Magenta */
    --color-cyan: #0891B2; /* Rich Cyan */
    --color-green: #059669; /* Read friendly emerald */
    --color-gold: #D97706; /* Amber Gold */
    
    --color-text-main: #0F172A; /* Slate-900 (Main text) */
    --color-text-muted: #475569; /* Slate-600 (Body text) */
    --color-text-dim: #64748B; /* Slate-500 */
    
    /* Layout Details */
    --border-radius-lg: 20px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   BASE RESET & UTILITIES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--color-text-main);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ==========================================================================
   AURORA LIGHT ANIMATED BACKGROUND (Soft Pastel Glows)
   ========================================================================== */
.aurora-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.08; /* Extremely soft pastel on white background */
    mix-blend-mode: multiply;
}

.blob-purple {
    top: -10%;
    left: 20%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 80%);
    animation: floatBlob 20s infinite alternate ease-in-out;
}

.blob-cyan {
    bottom: 10%;
    right: 10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--color-cyan) 0%, transparent 80%);
    animation: floatBlob 25s infinite alternate-reverse ease-in-out 2s;
}

.blob-magenta {
    top: 40%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--color-magenta) 0%, transparent 80%);
    animation: floatBlob 18s infinite alternate ease-in-out 4s;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(8%, 12%) scale(1.15); }
}

/* ==========================================================================
   PROMO TICKER / COUNTDOWN
   ========================================================================== */
.promo-ticker {
    background: linear-gradient(90deg, #1e0944 0%, #3B108E 50%, #1e0944 100%);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    color: #FFFFFF; /* Stays white for readability contrast */
    padding: 10px 24px;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-magenta);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--color-magenta);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.timer-span {
    font-family: var(--font-display);
    font-weight: 700;
    color: #06B6D4;
    background: rgba(0, 0, 0, 0.25);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(6, 182, 212, 0.3);
    margin-left: 4px;
}

.close-ticker {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    cursor: pointer;
    position: absolute;
    right: 20px;
    padding: 2px;
    transition: color 0.2s ease;
}

.close-ticker:hover {
    color: #FFFFFF;
}

/* ==========================================================================
   HEADER NAVIGATION
   ========================================================================== */
.main-header {
    background-color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(16px);
    position: sticky;
    top: 41px;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.security-shield {
    color: var(--color-primary);
    font-size: 1.6rem;
    filter: drop-shadow(0 2px 6px rgba(59, 16, 142, 0.15));
}

.brand-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.brand-title {
    color: var(--color-text-main);
}

.brand-sub {
    color: var(--color-purple-light);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-text-main);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-purple-light), var(--color-primary));
    transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta-btn {
    background: linear-gradient(135deg, var(--color-purple-light) 0%, var(--color-primary) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(59, 16, 142, 0.15);
    transition: var(--transition-smooth);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(109, 40, 217, 0.3);
    border-color: rgba(109, 40, 217, 0.4);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 80px 24px 40px 24px;
    text-align: center;
    position: relative;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.badge-row {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.expert-badge {
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: var(--color-green);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple-light) 50%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero-subtitle {
    color: var(--color-text-muted);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Review Panel Metrics */
.review-metrics-panel {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 20px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
    box-shadow: 0 4px 20px rgba(59, 16, 142, 0.04);
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-item.flex-row-item {
    gap: 4px;
}

.metric-val {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.metric-lbl {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background-color: var(--color-border);
}

.trust-stars {
    color: #F59E0B; /* standard amber-star */
    font-size: 0.95rem;
    display: flex;
    gap: 3px;
}

/* Toggle Billing */
.toggle-container {
    display: inline-flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: 40px;
    padding: 6px 12px;
    gap: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.toggle-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.toggle-label.label-active {
    color: var(--color-text-main);
    font-weight: 700;
}

.billing-toggle-btn {
    width: 52px;
    height: 28px;
    background-color: var(--color-primary);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    outline: none;
    transition: var(--transition-smooth);
}

.toggle-handle {
    width: 20px;
    height: 20px;
    background-color: #FFFFFF;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.billing-toggle-btn[aria-checked="true"] {
    background-color: var(--color-magenta);
    border-color: rgba(217, 70, 239, 0.2);
}

.billing-toggle-btn[aria-checked="true"] .toggle-handle {
    left: 26px;
}

/* ==========================================================================
   COMPARISON SECTION (The Long Width Cards List)
   ========================================================================== */
.comparison-section {
    padding: 20px 24px 80px 24px;
}

.comparison-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Card base layout */
.vpn-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 6px 24px rgba(59, 16, 142, 0.03), 0 2px 8px rgba(0, 0, 0, 0.02);
}

.vpn-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-hover);
    box-shadow: 0 12px 35px rgba(109, 40, 217, 0.08);
}

/* Ribbon badge on cards */
.ribbon-winner,
.ribbon-standard {
    position: absolute;
    top: -14px;
    left: 36px;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
    text-transform: uppercase;
}

.ribbon-winner {
    background: linear-gradient(135deg, var(--color-gold) 0%, #D97706 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.ribbon-standard {
    background: rgba(109, 40, 217, 0.06);
    border: 1px solid rgba(109, 40, 217, 0.15);
    color: var(--color-purple-light);
}

/* Winner glowing overlay & borders */
.vpn-card-winner {
    background: var(--color-bg-card-winner);
    border: 2px solid var(--color-border-winner);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.08), 0 2px 10px rgba(59, 16, 142, 0.03);
}

.vpn-card-winner:hover {
    border-color: var(--color-border-winner-hover);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.15);
}

.winner-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: calc(var(--border-radius-lg) - 2px);
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.winner-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

/* Main Grid Inside The Cards */
.card-grid {
    display: grid;
    grid-template-columns: 240px 140px 1fr 240px;
    align-items: center;
    padding: 36px 32px 32px 32px;
}

/* Col 1: Identity */
.col-identity {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-right: 1px solid var(--color-border);
    padding-right: 20px;
    height: 100%;
    justify-content: center;
}

.rank-badge {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.04);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 20px;
}

.vpn-card-winner .rank-badge {
    color: rgba(245, 158, 11, 0.07);
}

.brand-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-svg,
.brand-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.trustpilot-rating {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trustpilot-rating .stars {
    color: #F59E0B;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.trust-lbl {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Col 2: Score */
.col-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--color-border);
    padding: 0 10px;
    height: 100%;
}

.rating-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.rating-circle-container {
    position: relative;
    width: 72px;
    height: 72px;
}

.rating-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(15, 23, 42, 0.06); /* clean grey track on white bg */
    stroke-width: 3;
}

.circle-fill {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 0.6s ease;
}

.rating-fill-winner {
    stroke: var(--color-gold);
    filter: drop-shadow(0 0 3px rgba(245, 158, 11, 0.3));
}

.rating-fill-standard {
    stroke: var(--color-purple-light);
}

.rating-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.rating-verdict {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
}

.vpn-card-winner .rating-verdict {
    color: var(--color-gold);
}

/* Col 3: Features checklist */
.col-features {
    padding: 0 30px;
}

.feature-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.feature-checklist li strong {
    color: var(--color-text-main);
}

.icon-check {
    width: 18px;
    height: 18px;
    background: rgba(109, 40, 217, 0.06);
    border: 1px solid rgba(109, 40, 217, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--color-purple-light);
    margin-top: 3px;
    flex-shrink: 0;
}

.icon-check.check-winner {
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: var(--color-green);
}

/* Col 4: Action Block */
.col-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left: 1px solid var(--color-border);
    padding-left: 20px;
    height: 100%;
    justify-content: center;
}

.price-container {
    text-align: center;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.old-price {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    text-decoration: line-through;
}

.current-price-wrap {
    display: flex;
    align-items: flex-start;
    color: var(--color-text-main);
    line-height: 1;
    margin: 4px 0;
}

.currency {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 2px;
    margin-right: 1px;
}

.price-val {
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 800;
}

.mo {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    align-self: flex-end;
    margin-bottom: 4px;
}

.coupon-tag {
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(219, 39, 119, 0.08);
    border: 1px solid rgba(219, 39, 119, 0.2);
    color: var(--color-magenta);
    padding: 3px 8px;
    border-radius: 30px;
    margin-top: 4px;
}

.coupon-tag.font-dim {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.1);
    color: var(--color-text-muted);
}

.cta-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--color-gold) 0%, #D97706 100%);
    color: #FFFFFF;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.2);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(217, 119, 6, 0.4);
}

.btn-pulsing {
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(217, 119, 6, 0); }
    100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0); }
}

.secondary-btn {
    background: transparent;
    border: 1px solid var(--color-purple-light);
    color: var(--color-purple-light);
    box-shadow: none;
}

.secondary-btn:hover {
    background: rgba(109, 40, 217, 0.05);
    border-color: var(--color-purple-light);
    color: var(--color-purple-light);
}

.guarantee-text {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ==========================================================================
   WHY PUREVPN WINS SECTION
   ========================================================================== */
.why-purevpn-section {
    max-width: 1140px;
    margin: 0 auto;
    padding: 80px 24px;
}

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

.section-tag {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-purple-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.3rem;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-border-hover);
    box-shadow: 0 10px 30px rgba(109, 40, 217, 0.05);
}

.feature-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.bg-purple-glow {
    background: rgba(109, 40, 217, 0.06);
    border: 1px solid rgba(109, 40, 217, 0.15);
    color: var(--color-purple-light);
}

.bg-cyan-glow {
    background: rgba(8, 145, 178, 0.06);
    border: 1px solid rgba(8, 145, 178, 0.15);
    color: var(--color-cyan);
}

.bg-magenta-glow {
    background: rgba(219, 39, 119, 0.06);
    border: 1px solid rgba(219, 39, 119, 0.15);
    color: var(--color-magenta);
}

.feature-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   SAVINGS CALCULATOR
   ========================================================================== */
.calculator-section {
    padding: 80px 24px;
    position: relative;
}

.calculator-container {
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-header {
    text-align: center;
    margin-bottom: 50px;
}

.calculator-box {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(59, 16, 142, 0.04);
}

.slider-panel {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #FFFFFF;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}

.savings-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(15, 23, 42, 0.08);
    outline: none;
    margin-bottom: 24px;
}

.savings-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-purple-light) 0%, var(--color-primary) 100%);
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(109, 40, 217, 0.3);
    transition: transform 0.1s ease;
}

.savings-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.savings-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-purple-light) 0%, var(--color-primary) 100%);
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(109, 40, 217, 0.3);
    border: none;
}

.selected-duration-badge {
    align-self: center;
    background: rgba(109, 40, 217, 0.06);
    border: 1px solid rgba(109, 40, 217, 0.15);
    color: var(--color-text-main);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
}

.selected-duration-badge strong {
    color: var(--color-purple-light);
}

.results-panel {
    background: #F8FAFC; /* light panel contrast */
    border-left: 1px solid var(--color-border);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.comparison-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.comp-label {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.comp-cost {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
}

.cost-express {
    color: #DC2626;
}

.cost-nord {
    color: #2563EB;
}

.highlight-row {
    background: rgba(5, 150, 105, 0.06);
    border: 1px solid rgba(5, 150, 105, 0.15);
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    margin-top: 4px;
}

.cost-pure {
    color: var(--color-green);
    font-size: 1.3rem;
    font-weight: 700;
}

.divider {
    height: 1px;
    background: var(--color-border);
    margin: 20px 0;
}

.savings-reveal {
    text-align: center;
    margin-bottom: 24px;
}

.savings-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.savings-amount {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1.2;
    margin: 4px 0;
}

.savings-percent {
    font-size: 0.85rem;
    color: var(--color-green);
    font-weight: 600;
}

.calc-cta-btn {
    background: linear-gradient(135deg, var(--color-purple-light) 0%, var(--color-primary) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #FFFFFF;
    font-family: var(--font-display);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.2);
    transition: var(--transition-smooth);
}

.calc-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(109, 40, 217, 0.35);
}

/* ==========================================================================
   FAQS SECTION
   ========================================================================== */
.faqs-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-main);
    text-align: left;
    outline: none;
}

.faq-icon {
    color: var(--color-purple-light);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease-out;
    padding: 0 24px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.faq-item.active-faq {
    border-color: var(--color-border-hover);
    background: #FFFFFF;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.04);
}

.faq-item.active-faq .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active-faq .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background: #FFFFFF;
    border-top: 1px solid var(--color-border);
    padding: 60px 24px;
    text-align: center;
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-disclosure {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-text-main);
}

.footer-links .dot {
    width: 4px;
    height: 4px;
    background-color: var(--color-text-dim);
    border-radius: 50%;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--color-green);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    backdrop-filter: blur(10px);
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.toast-notification.show-toast {
    transform: translateY(0);
    opacity: 1;
}

.toast-body {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ==========================================================================
   RESPONSIVE LAYOUTS & COMPACT FOLDING
   ========================================================================== */

/* Desktop & Large Screen Reductions */
@media (max-width: 1100px) {
    .card-grid {
        grid-template-columns: 200px 110px 1fr 200px;
        padding: 30px 24px;
    }
    .col-features {
        padding: 0 15px;
    }
}

/* Tablet Screens */
@media (max-width: 900px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .nav-links {
        display: none;
    }
    
    .card-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 40px 30px 30px 30px;
    }
    
    .col-identity {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding-right: 0;
        padding-bottom: 24px;
        height: auto;
    }
    
    .col-rating {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding-bottom: 24px;
        height: auto;
    }
    
    .col-features {
        grid-column: span 2;
        border-bottom: 1px solid var(--color-border);
        padding: 24px 0;
    }
    
    .col-action {
        grid-column: span 2;
        border-left: none;
        padding-left: 0;
        padding-top: 24px;
        height: auto;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .price-container {
        margin-bottom: 0;
        align-items: flex-start;
    }
    
    .cta-btn {
        width: auto;
        min-width: 200px;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Calculator */
    .calculator-box {
        grid-template-columns: 1fr;
    }
    .results-panel {
        border-left: none;
        border-top: 1px solid var(--color-border);
    }
}

/* ==========================================================================
   MOBILE VIEW OPTIMIZATION (Compacts height to show 2-3 cards per viewport)
   ========================================================================== */
@media (max-width: 600px) {
    .promo-ticker {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .main-header {
        top: 36px;
    }
    
    .header-container {
        padding: 12px 16px;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-section {
        padding: 50px 16px 30px 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .review-metrics-panel {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
    
    .metric-divider {
        width: 60%;
        height: 1px;
        background-color: var(--color-border);
    }
    
    .toggle-container {
        flex-direction: column;
        gap: 8px;
        padding: 10px 20px;
    }

    /* CARD COMPRESSION SPECIFICS (Enables multiple cards visibility) */
    .vpn-card {
        border-radius: var(--border-radius-md);
        box-shadow: 0 4px 12px rgba(59, 16, 142, 0.02);
    }

    .card-grid {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        padding: 22px 16px 16px 16px; /* extra top padding for ribbons */
        gap: 12px;
        align-items: center;
    }
    
    /* Identity row cell */
    .col-identity {
        grid-column: 1;
        grid-row: 1;
        border-right: none;
        border-bottom: none;
        padding-right: 0;
        padding-bottom: 0;
        align-items: flex-start;
        gap: 4px;
        height: auto;
    }
    
    .brand-logo-svg,
    .brand-logo-img {
        width: 32px;
        height: 32px;
    }
    
    .brand-name {
        font-size: 1.15rem;
    }
    
    .trustpilot-rating {
        display: none; /* remove star reviews on mobile to save height */
    }

    /* Score circle row cell */
    .col-rating {
        grid-column: 2;
        grid-row: 1;
        border-right: none;
        border-bottom: none;
        padding: 0;
        height: auto;
        align-items: flex-end;
    }
    
    .rating-circle-container {
        width: 42px;
        height: 42px;
    }
    
    .rating-number {
        font-size: 1rem;
    }
    
    .rating-verdict {
        display: none; /* remove text score status */
    }

    /* Features - HIDDEN for compactness (fits multiple cards on screen) */
    .col-features {
        display: none;
    }

    /* Action bar row cell */
    .col-action {
        grid-column: span 2;
        grid-row: 2;
        border-left: none;
        border-top: 1px dashed var(--color-border);
        padding-left: 0;
        padding-top: 12px;
        height: auto;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 12px;
    }
    
    .price-container {
        margin-bottom: 0;
        align-items: flex-start;
        text-align: left;
    }
    
    .old-price {
        font-size: 0.75rem;
    }
    
    .price-val {
        font-size: 1.55rem;
    }
    
    .currency {
        font-size: 0.85rem;
        margin-top: 1px;
    }
    
    .mo {
        font-size: 0.75rem;
        margin-bottom: 2px;
    }
    
    .coupon-tag {
        font-size: 0.65rem;
        padding: 2px 6px;
        margin-top: 2px;
    }

    /* Button adjustments */
    .cta-btn {
        width: auto;
        padding: 8px 16px;
        font-size: 0.85rem;
        border-radius: var(--border-radius-sm);
        height: 38px;
    }
    
    .guarantee-text {
        display: none; /* remove security disclaimer text block */
    }
    
    /* Ribbons positioned perfectly on smaller cards */
    .ribbon-winner,
    .ribbon-standard {
        top: -10px;
        left: 12px;
        padding: 3px 8px;
        font-size: 0.65rem;
    }
    
    /* Features Grid under cards */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    /* Calculator stack */
    .slider-panel {
        padding: 24px;
    }
    .results-panel {
        padding: 24px;
    }
    
    .savings-amount {
        font-size: 2.2rem;
    }
    
    /* FAQs accordion */
    .faq-question {
        padding: 16px;
        font-size: 0.95rem;
    }
    .faq-answer {
        padding: 0 16px;
        font-size: 0.85rem;
    }
    .faq-item.active-faq .faq-answer {
        padding-bottom: 16px;
    }
}

/* ==========================================================================
   PROMOTIONAL MODAL POPUP (Cute PureVPN recommendation)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.show-modal {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #FFFFFF;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    max-width: 460px;
    width: 90%;
    padding: 32px 24px;
    position: relative;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.show-modal .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--color-text-dim);
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 10;
}

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

.modal-content > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.show-modal .modal-content > * {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.modal-overlay.show-modal .modal-content > :nth-child(1) { transition-delay: 0.1s; }
.modal-overlay.show-modal .modal-content > :nth-child(2) { transition-delay: 0.18s; }
.modal-overlay.show-modal .modal-content > :nth-child(3) { transition-delay: 0.26s; }
.modal-overlay.show-modal .modal-content > :nth-child(4) { transition-delay: 0.34s; }
.modal-overlay.show-modal .modal-content > :nth-child(5) { transition-delay: 0.42s; }

.modal-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.12) 0%, rgba(219, 39, 119, 0.12) 100%);
    color: var(--color-purple-light);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 20px;
    box-shadow: 0 0 12px rgba(109, 40, 217, 0.08);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--color-text-main);
    line-height: 1.25;
    margin-bottom: 12px;
}

.modal-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-deal-box {
    background: linear-gradient(135deg, rgba(219, 39, 119, 0.06) 0%, rgba(109, 40, 217, 0.06) 100%);
    border: 1.5px dashed rgba(109, 40, 217, 0.25);
    border-radius: var(--border-radius-md);
    padding: 20px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.modal-deal-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.6) 50%, transparent 55%);
    transform: rotate(45deg);
    animation: shine 4s infinite ease-in-out;
}

@keyframes shine {
    0% { transform: translate(-30%, -30%) rotate(45deg); }
    100% { transform: translate(30%, 30%) rotate(45deg); }
}

.modal-deal-tag {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--color-cyan);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.modal-discount {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--color-magenta);
    margin: 6px 0;
    font-family: var(--font-display);
    letter-spacing: -1px;
}

.modal-deal-desc {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal-btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, #D97706 100%);
    color: #FFFFFF;
    font-family: var(--font-display);
    font-weight: 800;
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
    transition: var(--transition-smooth);
    animation: btnPulse 2.5s infinite ease-in-out;
}

@keyframes btnPulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 8px 24px rgba(217, 119, 6, 0.5); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3); }
}

.modal-btn-primary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.6);
    animation-play-state: paused;
}

.modal-btn-secondary {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
    padding: 4px 0;
}

.modal-btn-secondary:hover {
    color: var(--color-text-main);
}

/* ==========================================================================
   EXPERT LAB FINDINGS & SEARCH SECTION
   ========================================================================== */
.findings-section {
    padding: 80px 24px;
    background-color: var(--color-bg-dark);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.findings-container {
    max-width: 1140px;
    margin: 0 auto;
}

.findings-header {
    text-align: center;
    margin-bottom: 50px;
}

.search-wrap {
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.search-bar-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 20px;
    color: var(--color-text-dim);
    font-size: 1.1rem;
    pointer-events: none;
}

.search-bar-container input {
    width: 100%;
    padding: 16px 50px;
    font-size: 1rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border);
    background-color: #FFFFFF;
    color: var(--color-text-main);
    font-family: var(--font-body);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.search-bar-container input:focus {
    outline: none;
    border-color: var(--color-purple-light);
    box-shadow: 0 4px 20px rgba(109, 40, 217, 0.08);
}

.clear-search-btn {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-dim);
    cursor: pointer;
    display: none;
}

.clear-search-btn:hover {
    color: var(--color-text-main);
}

.findings-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.finding-card {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--color-border);
    border-radius: 0;
    padding: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    height: auto;
    transition: var(--transition-smooth);
    box-shadow: none;
}

.finding-card:hover {
    transform: none;
    border-color: var(--color-purple-light);
}

.finding-card-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.finding-badge {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-speed { background: rgba(8, 145, 178, 0.08); color: var(--color-cyan); }
.badge-privacy { background: rgba(109, 40, 217, 0.08); color: var(--color-purple-light); }
.badge-streaming { background: rgba(219, 39, 119, 0.08); color: var(--color-magenta); }
.badge-security { background: rgba(59, 16, 142, 0.08); color: var(--color-primary); }
.badge-p2p { background: rgba(217, 119, 6, 0.08); color: var(--color-gold); }
.badge-device { background: rgba(5, 150, 105, 0.08); color: var(--color-green); }

.finding-status-tag {
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-pass {
    color: var(--color-green);
}

.finding-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 12px;
    line-height: 1.25;
}

.finding-desc {
    font-size: 1.02rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.finding-meta {
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    font-size: 0.82rem;
    color: var(--color-text-dim);
    border-top: none;
    padding-top: 0;
}

.finding-metric {
    font-weight: 700;
    color: var(--color-purple-light);
}

.no-findings-results {
    display: none;
    text-align: center;
    padding: 60px 20px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    color: var(--color-text-dim);
}

.no-findings-results i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 16px;
    display: block;
}

.no-findings-results p {
    font-size: 1rem;
    font-weight: 500;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 80px 24px;
    background-color: #FFFFFF; /* Contrast with findings section */
    border-bottom: 1px solid var(--color-border);
}

.testimonials-container {
    max-width: 1140px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-hover);
    box-shadow: 0 10px 30px rgba(109, 40, 217, 0.04);
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.user-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 2px;
}

.user-title {
    font-size: 0.8rem;
    color: var(--color-text-dim);
    font-weight: 500;
}
