/* =========================================
   RATING HELPER - PREMIUM STYLESHEET
   ========================================= */

:root {
    --bg-dark: #07090E;
    --bg-card: rgba(20, 24, 34, 0.6);
    --bg-card-hover: rgba(30, 36, 50, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #94A3B8;
    --accent-pure: #FFD700;
    --accent-glow: rgba(255, 215, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFB600 100%);
    --gradient-dark: linear-gradient(180deg, #07090E 0%, #0F131D 100%);
    --border-color: rgba(255, 255, 255, 0.08);

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 50% 0%, #151a28 0%, transparent 70%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

img {
    max-width: 100%;
    display: block;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Typography */
h1,
h2,
h3,
h4 {
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #000;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--accent-pure);
    background: rgba(255, 215, 0, 0.05);
}

.btn-full {
    width: 100%;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--accent-pure);
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: var(--accent-pure);
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--accent-pure);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

nav.scrolled {
    background: rgba(7, 9, 14, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links .btn {
    padding: 10px 20px;
    color: var(--text-primary);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        /* Golden orb top-right */
        radial-gradient(ellipse 50% 60% at 80% 10%, rgba(255, 195, 0, 0.12) 0%, transparent 70%),
        /* Violet accent bottom-left */
        radial-gradient(ellipse 40% 50% at 15% 85%, rgba(100, 60, 200, 0.08) 0%, transparent 60%),
        /* Subtle centre glow */
        radial-gradient(circle at 50% 40%, rgba(255, 215, 0, 0.04) 0%, transparent 50%),
        /* Noise-style micro grid */
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255, 255, 255, 0.015) 60px, rgba(255, 255, 255, 0.015) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255, 255, 255, 0.015) 60px, rgba(255, 255, 255, 0.015) 61px),
        /* Base dark gradient */
        linear-gradient(170deg, #0c1020 0%, #07090E 40%, #0a0d18 100%);
}

.hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: glowPulse 6s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.08);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-pure);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-indicators .stars {
    color: var(--accent-pure);
    font-size: 1.2rem;
    display: flex;
    gap: 2px;
}

.trust-indicators p {
    margin: 0;
    font-size: 0.9rem;
}

/* Review Removal Card */
.review-removal-card {
    background: rgba(20, 24, 34, 0.85);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    max-width: 420px;
    margin: 0 auto;
    text-align: left;
    animation: cardFloat 4s ease-in-out infinite alternate;
}

@keyframes cardFloat {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-10px);
    }
}

.removal-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.2);
}

.removal-header .gbp-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}

.removal-header span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.removal-status {
    margin-left: auto !important;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444 !important;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.removal-body {
    padding: 8px 16px 16px;
}

.review-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: var(--transition-smooth);
    position: relative;
}

.review-item:last-child {
    margin-bottom: 0;
}

.review-removed {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.review-removed .review-content {
    opacity: 0.5;
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.4);
}

.review-safe {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #ef4444;
    flex-shrink: 0;
}

.review-avatar.safe {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
}

.review-content {
    flex: 1;
    min-width: 0;
}

.review-name {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.review-stars-bad {
    color: #ef4444;
    font-size: 0.75rem;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.review-stars-good {
    color: var(--accent-pure);
    font-size: 0.75rem;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.review-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.removal-badge,
.safe-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
    padding-top: 4px;
}

.removal-badge span {
    font-size: 0.6rem;
    font-weight: 700;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.safe-badge span {
    font-size: 0.6rem;
    font-weight: 700;
    color: #10B981;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Review Removal Animation */
.review-animatable {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    transition: background 0.6s ease, border-color 0.6s ease;
}

.review-animatable .review-content {
    transition: opacity 0.6s ease, text-decoration-color 0.6s ease;
}

.review-animatable .review-avatar {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
    transition: background 0.6s ease, color 0.6s ease;
}

.review-animatable.is-removed {
    background: rgba(239, 68, 68, 0.06);
    border-color: rgba(239, 68, 68, 0.15);
}

.review-animatable.is-removed .review-content {
    opacity: 0.5;
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.4);
}

.review-animatable.is-removed .review-avatar {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Badge toggle */
.review-status-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
    padding-top: 4px;
    position: relative;
}

.badge-pending,
.badge-removed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.badge-pending span {
    font-size: 0.6rem;
    font-weight: 700;
    color: #10B981;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-removed span {
    font-size: 0.6rem;
    font-weight: 700;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Default: show pending, hide removed */
.review-animatable .badge-removed {
    display: none;
}

.review-animatable .badge-pending {
    display: flex;
}

/* When removed: show removed, hide pending */
.review-animatable.is-removed .badge-removed {
    display: flex;
}

.review-animatable.is-removed .badge-pending {
    display: none;
}

/* Trust Shield */
.trust-shield {
    font-size: 1.4rem;
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-suffix {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-pure);
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Dark Section Background */
.dark-section {
    background: rgba(0, 0, 0, 0.2);
}

/* How It Works */
.steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    text-align: center;
    flex: 1;
    max-width: 280px;
    padding: 0 20px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 215, 0, 0.15);
    line-height: 1;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    color: var(--accent-pure);
    font-size: 1.5rem;
    min-width: 40px;
    opacity: 0.4;
}

.connector-line {
    display: none;
}

/* Before & After */
.before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.ba-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    flex: 1;
    max-width: 320px;
    transition: var(--transition-smooth);
}

.ba-card:hover {
    transform: translateY(-5px);
}

.ba-before {
    border-color: rgba(239, 68, 68, 0.2);
}

.ba-after {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.08);
}

.ba-label {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    margin-bottom: 20px;
}

.ba-label-gold {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-pure);
}

.ba-rating {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    color: #ef4444;
}

.ba-rating-gold {
    color: var(--accent-pure);
}

.ba-stars {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.ba-stars .filled {
    color: #ef4444;
}

.ba-stars .filled.gold {
    color: var(--accent-pure);
}

.ba-stars .empty {
    color: rgba(255, 255, 255, 0.15);
}

.ba-reviews {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 18px;
}

.ba-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 15px;
}

.ba-bar-fill {
    height: 100%;
    background: #ef4444;
    border-radius: 3px;
    transition: width 1.5s ease;
}

.ba-bar-gold {
    background: var(--gradient-primary);
}

.ba-impact {
    font-size: 0.8rem;
    color: #ef4444;
    font-weight: 500;
}

.ba-impact-good {
    color: #22c55e;
}

.ba-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.arrow-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #000;
    font-weight: 800;
}

.ba-arrow p {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-pure);
}

/* FAQ */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-card);
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: rgba(255, 215, 0, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: left;
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent-pure);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}



/* Services section */
.grid {
    display: grid;
    gap: 30px;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
}

.card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
}

.card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    background: linear-gradient(180deg, rgba(30, 36, 50, 0.9) 0%, rgba(20, 24, 34, 0.9) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1;
}

.pricing-card .price span {
    font-size: 2rem;
    vertical-align: top;
    position: relative;
    top: 10px;
}

.pricing-card .desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 30px;
    min-height: 45px;
}

.pricing-card .features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-card .features li {
    margin-bottom: 15px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* CTA */
.cta-container {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(20, 24, 34, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-pure);
    background: rgba(0, 0, 0, 0.4);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
    background: var(--bg-dark);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 15px;
    max-width: 300px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* WhatsApp Floating Button */
.whatsapp-wrapper {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-float {
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: waPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

.whatsapp-tooltip {
    background: #fff;
    color: #1a1a1a;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.whatsapp-tooltip.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.tooltip-close {
    background: none;
    border: none;
    color: #999;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0 2px;
    line-height: 1;
    pointer-events: auto;
}

.tooltip-close:hover {
    color: #333;
}



/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */

/* --- Tablets & Small Laptops (≤992px) --- */
@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .hero-container,
    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .trust-indicators {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        max-width: 450px;
        margin: 0 auto 30px;
    }

    .review-removal-card {
        max-width: 340px;
    }

    .stats-row {
        gap: 15px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }

    .cta-container {
        padding: 40px;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .logo-wrapper {
        justify-content: center;
    }
}

/* --- Tablets Portrait & Mobile Nav (≤768px) --- */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        background: rgba(7, 9, 14, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero {
        padding-top: 130px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    .badge {
        font-size: 0.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 30px 25px;
    }

    .cta-container {
        padding: 30px 20px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .pricing-card {
        padding: 30px;
    }

    .pricing-card .price {
        font-size: 3rem;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .steps-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .step-connector {
        transform: rotate(90deg);
        padding: 0;
    }

    .before-after {
        flex-direction: column;
    }

    .ba-card {
        max-width: 100%;
    }

    .ba-arrow {
        flex-direction: row;
    }


}

/* --- Small Phones (≤480px) --- */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 0.9rem;
    }

    .ba-rating {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    .form-group input {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .footer-container {
        gap: 30px;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 8px;
    }

    .btn {
        padding: 12px 22px;
        font-size: 0.9rem;
    }



    .whatsapp-wrapper {
        bottom: 18px;
        right: 18px;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}