/* Buy App Review — refreshed layout, same blue theme */
:root {
    --bg: #ffffff;
    --ink: #0f1b24;
    --muted: #5f7382;
    --border: #e6eef4;
    --soft: #f7fafc;
    --blue: #229ed9;
    --blue-dark: #1b8ec4;
    --blue-soft: #e8f6fc;
    --success: #1f8a5b;
    --danger: #c44747;
    --warning: #b7791f;
    --shadow: 0 10px 30px rgba(15, 27, 36, 0.05);
    --radius: 10px;
    --tp: #00b67a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background:
        radial-gradient(ellipse 80% 50% at 100% -10%, rgba(34, 158, 217, 0.08), transparent 55%),
        radial-gradient(ellipse 60% 40% at 0% 20%, rgba(34, 158, 217, 0.05), transparent 50%),
        var(--bg);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 1px, 1px) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.nav-container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 68px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.nav-logo,
.nav-logo a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-logo i,
.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 800;
    margin: 0;
    box-shadow: 0 0 0 3px var(--blue-soft);
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.nav-logo i {
    font-size: 0.85rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    text-decoration: none;
    color: var(--muted);
    font-weight: 600;
    font-size: 13.5px;
    white-space: nowrap;
    transition: color 0.15s ease, background 0.15s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--blue-dark);
    background: var(--blue-soft);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.25rem;
}

.bar {
    width: 22px;
    height: 2px;
    background: var(--ink);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero */
.hero {
    padding: 64px 0 56px;
    background:
        linear-gradient(180deg, rgba(232, 246, 252, 0.65) 0%, rgba(247, 250, 252, 0.35) 55%, #fff 100%);
    border-bottom: 1px solid var(--border);
    color: var(--ink);
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(34, 158, 217, 0.12) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.45), transparent 75%);
    pointer-events: none;
}

.hero-container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(34, 158, 217, 0.25);
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero-title {
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(34px, 5.2vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1rem;
    color: var(--ink);
    letter-spacing: -0.035em;
    background: none;
    -webkit-text-fill-color: unset;
}

.gradient-text {
    color: var(--blue);
    background: none;
    -webkit-text-fill-color: unset;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 17.5px;
    margin-bottom: 1.6rem;
    color: var(--muted);
    line-height: 1.65;
    max-width: 540px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid transparent;
}

.badge-blue {
    background: var(--blue-soft);
    color: var(--blue-dark);
    border-color: rgba(34, 158, 217, 0.18);
}

.badge-success {
    background: #e8f7ef;
    color: var(--success);
    border-color: rgba(31, 138, 91, 0.15);
}

.badge-default {
    background: #eef2f5;
    color: var(--muted);
    border-color: var(--border);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    border: 0;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: none;
    position: relative;
    overflow: visible;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary,
.download-btn {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 8px 18px rgba(34, 158, 217, 0.28);
}

.btn-primary:hover,
.download-btn:hover {
    background: var(--blue-dark);
    color: #fff;
    box-shadow: 0 10px 22px rgba(34, 158, 217, 0.32);
}

.btn-secondary,
.btn-outline {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--border);
}

.btn-secondary:hover,
.btn-outline:hover {
    background: var(--soft);
    color: var(--ink);
    border-color: rgba(34, 158, 217, 0.35);
    box-shadow: none;
}

/* ===== Hero Reviews Animation (preserved) ===== */
.hero-video {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.reviews-animation-container {
    position: relative;
    width: 82%;
    max-width: 420px;
    background: #fff;
    border-radius: 12px;
    padding: 1.35rem 1.35rem 1.35rem 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    border-left: 4px solid var(--blue);
    transform: none;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.reviews-animation-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(34, 158, 217, 0.12);
}

.trustpilot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.trustpilot-logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue-dark);
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.trustpilot-logo i {
    color: var(--blue);
    font-size: 1.1rem;
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.rating-stars i {
    color: var(--tp);
    font-size: 0.85rem;
}

.rating-text {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 500;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 340px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s ease;
}

.reviews-container.show-all {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(34, 158, 217, 0.35) transparent;
}

.reviews-container.show-all::-webkit-scrollbar {
    width: 6px;
}

.reviews-container.show-all::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.04);
    border-radius: 3px;
}

.reviews-container.show-all::-webkit-scrollbar-thumb {
    background: rgba(34, 158, 217, 0.35);
    border-radius: 3px;
}

.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid var(--border);
    box-shadow: none;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInReview 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    border-color: rgba(34, 158, 217, 0.35);
    box-shadow: 0 12px 28px rgba(34, 158, 217, 0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.avatar {
    width: 32px;
    height: 32px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
}

.reviewer-details h4 {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink);
}

.review-date {
    font-size: 0.7rem;
    color: var(--muted);
}

.review-stars {
    display: flex;
    gap: 0.2rem;
}

.review-stars i {
    color: var(--tp);
    font-size: 0.75rem;
}

.review-text {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--muted);
    margin: 0;
    font-style: italic;
}

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

@keyframes starGlow {
    0%, 100% { transform: scale(1); color: var(--tp); }
    50% { transform: scale(1.1); color: #ffd700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
}

.review-card[data-delay="0"] { animation-delay: 0.3s; }
.review-card[data-delay="1"] { animation-delay: 0.7s; }
.review-card[data-delay="2"] { animation-delay: 1.1s; }
.review-card[data-delay="3"] { animation-delay: 1.5s; }
.review-card[data-delay="4"] { animation-delay: 1.9s; }
.review-card[data-delay="5"] { animation-delay: 2.3s; }
.review-card[data-delay="6"] { animation-delay: 2.7s; }
.review-card[data-delay="7"] { animation-delay: 3.1s; }
.review-card[data-delay="8"] { animation-delay: 3.5s; }
.review-card[data-delay="9"] { animation-delay: 3.9s; }

.review-stars i:hover {
    animation: starGlow 0.6s ease-in-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fadeOutUp {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to { opacity: 0; transform: translateY(-40px) scale(0.95); }
}

@keyframes reviewPulse {
    0% { box-shadow: none; }
    50% { box-shadow: 0 10px 25px -3px rgba(34, 158, 217, 0.15); }
    100% { box-shadow: none; }
}

.review-card.new-review {
    animation: reviewPulse 2s ease-in-out;
}

.review-card.active {
    background: var(--blue-soft);
    border: 1px solid rgba(34, 158, 217, 0.2);
}

/* Sections */
.section-title {
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(26px, 3.5vw, 34px);
    font-weight: 800;
    margin-bottom: 0.85rem;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1.15;
    position: relative;
}

.how-it-works-section .section-title,
.how-to-use-section .section-title,
.faq-section .section-title,
.contact-section .section-title,
.comparison-section .section-title,
.download-section .section-title,
.what-is-section .section-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works-section .section-title::after,
.how-to-use-section .section-title::after,
.faq-section .section-title::after,
.contact-section .section-title::after,
.comparison-section .section-title::after,
.download-section .section-title::after,
.what-is-section .section-title::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin: 12px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), rgba(34, 158, 217, 0.2));
}

.pricing-subtitle,
.success-subtitle {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing */
.download-section {
    padding: 56px 0;
    background: var(--bg);
    text-align: center;
    position: relative;
    overflow: visible;
    border-bottom: 1px solid var(--border);
}

.download-section::before {
    display: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 22px;
    border: 1px solid var(--border);
    box-shadow: none;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border);
}

.pricing-card:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 158, 217, 0.35);
    box-shadow: 0 14px 30px rgba(34, 158, 217, 0.1);
}

.pricing-card.popular {
    border: 1px solid rgba(34, 158, 217, 0.45);
    transform: none;
    box-shadow: 0 14px 30px rgba(34, 158, 217, 0.1);
    background: linear-gradient(180deg, #f4fbfe 0%, #fff 42%);
}

.pricing-card.popular::before {
    background: linear-gradient(90deg, var(--blue), var(--blue-dark));
    height: 4px;
}

.pricing-card.popular:hover {
    transform: translateY(-3px);
}

.popular-badge {
    position: absolute;
    top: 14px;
    right: -1px;
    left: auto;
    transform: none;
    background: var(--blue);
    color: #fff;
    padding: 5px 12px 5px 14px;
    border-radius: 999px 0 0 999px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.pricing-header {
    margin-bottom: 12px;
}

.package-icon {
    width: 42px;
    height: 42px;
    background: var(--blue-soft);
    color: var(--blue-dark);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    box-shadow: none;
}

.package-icon i {
    color: var(--blue-dark);
    font-size: 1rem;
}

.package-name {
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
}

.price-period {
    color: var(--muted);
    font-size: 13px;
}

.package-description {
    margin-bottom: 14px;
}

.package-description p {
    color: var(--muted);
    font-size: 14px;
}

.features-list {
    list-style: none;
    margin-bottom: 18px;
    flex: 1;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 7px 0;
    color: var(--ink);
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

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

.features-list li i {
    color: var(--success);
    margin-top: 3px;
}

.pricing-btn {
    width: 100%;
    padding: 12px 14px;
    background: var(--blue);
    color: #fff;
    border: 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
    margin-top: auto;
    box-shadow: 0 6px 14px rgba(34, 158, 217, 0.22);
}

.pricing-btn:hover,
.popular-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(34, 158, 217, 0.28);
}

.popular-btn {
    background: var(--blue);
}

.pricing-footer {
    margin-top: 24px;
    color: var(--muted);
    font-size: 14px;
}

.pricing-footer p {
    margin: 6px 0;
}

.pricing-footer p i {
    color: var(--blue);
    margin-right: 6px;
}

/* About */
.about-section {
    padding: 56px 0;
    background: var(--soft);
    border-bottom: 1px solid var(--border);
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
}

.about-description {
    margin-bottom: 1rem;
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
}

.about-features {
    display: grid;
    gap: 12px;
}

.feature-card {
    background: #fff;
    padding: 18px;
    border-radius: var(--radius);
    text-align: left;
    border: 1px solid var(--border);
    border-left: 3px solid var(--blue);
    box-shadow: none;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.feature-card:hover {
    transform: translateX(2px);
    border-color: rgba(34, 158, 217, 0.35);
    box-shadow: 0 10px 24px rgba(34, 158, 217, 0.08);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--blue-soft);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0;
    box-shadow: none;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1rem;
    color: var(--blue-dark);
}

.feature-card h3 {
    margin-bottom: 4px;
    color: var(--ink);
    font-size: 1rem;
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.feature-card p {
    color: var(--muted);
    font-size: 14px;
}

/* Comparison */
.comparison-section {
    padding: 56px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.comparison-intro {
    max-width: 720px;
    margin: 0 auto 12px;
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    text-align: center;
}

.comparison-highlight {
    max-width: 720px;
    margin: 28px auto;
    padding: 20px;
    background: var(--soft);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    border-left: 3px solid var(--blue);
    box-shadow: none;
}

.comparison-highlight h3 {
    color: var(--ink);
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.comparison-highlight p {
    color: var(--muted);
    margin-bottom: 12px;
}

.comparison-checklist {
    list-style: none;
    display: grid;
    gap: 8px;
}

.comparison-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--ink);
    font-weight: 500;
    font-size: 14px;
}

.comparison-checklist i {
    color: var(--blue);
    margin-top: 2px;
}

.comparison-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--ink);
    margin: 36px 0 16px;
    letter-spacing: -0.02em;
}

.comparison-table-wrap {
    overflow-x: auto;
    margin-bottom: 8px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: #fff;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    font-size: 14px;
}

.comparison-table th,
.comparison-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.5;
}

.comparison-table thead th {
    background: var(--ink);
    color: #fff;
    font-weight: 600;
}

.comparison-table thead th.highlight-col,
.quality-table thead th {
    background: var(--blue);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--soft);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--ink);
    width: 18%;
}

.comparison-table td.highlight-col {
    background: var(--blue-soft);
    color: var(--blue-dark);
    font-weight: 500;
}

.red-flags-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.red-flag-card {
    background: #fff;
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: border-color 0.15s;
}

.red-flag-card:hover {
    transform: none;
    border-color: rgba(196, 71, 71, 0.3);
    box-shadow: var(--shadow);
}

.red-flag-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #fdecec;
    color: var(--danger);
    display: grid;
    place-items: center;
    margin-bottom: 10px;
}

.red-flag-card h4 {
    color: var(--ink);
    margin-bottom: 6px;
    font-size: 0.98rem;
}

.red-flag-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.comparison-when {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

.when-card {
    padding: 20px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.when-card h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.when-yes h3 { color: var(--blue-dark); }
.when-no h3 { color: var(--warning); }

.when-card ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.when-card li {
    position: relative;
    padding-left: 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.when-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
}

.when-no li::before {
    background: var(--warning);
}

.comparison-cta {
    text-align: center;
    margin-top: 32px;
    padding: 24px;
    background: var(--soft);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: none;
}

.comparison-cta p {
    font-size: 16px;
    color: var(--ink);
    margin-bottom: 14px;
    font-weight: 600;
}

/* What is / How it works */
.what-is-section {
    padding: 56px 0;
    background: var(--soft);
    color: var(--ink);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.what-is-description {
    max-width: 720px;
    margin: 0 auto 1rem;
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
}

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

.how-it-works-section {
    padding: 56px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: none;
    text-align: left;
    position: relative;
}

.step-number {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--blue);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    margin-bottom: 14px;
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.step h3 {
    font-size: 1.08rem;
    margin-bottom: 8px;
    color: var(--ink);
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.step p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Success stories */
.how-to-use-section {
    padding: 56px 0;
    background: var(--soft);
    border-bottom: 1px solid var(--border);
}

.success-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.client-showcase {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.client-showcase:hover {
    border-color: rgba(34, 158, 217, 0.35);
    box-shadow: 0 12px 28px rgba(34, 158, 217, 0.08);
    transform: none;
}

.client-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.client-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--blue-soft);
    color: var(--blue-dark);
    display: grid;
    place-items: center;
}

.client-name {
    font-size: 1.05rem;
    color: var(--ink);
}

.client-industry {
    color: var(--muted);
    font-size: 13px;
}

.client-rating {
    margin-left: auto;
    text-align: right;
}

.rating-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--ink);
}

.rating-stars-display i {
    color: var(--tp);
    font-size: 0.75rem;
}

.client-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 14px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ink);
}

.stat-label {
    font-size: 12px;
    color: var(--muted);
}

.client-testimonial p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
}

.visit-button {
    margin-top: 14px;
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.success-cta {
    text-align: center;
    margin-top: 28px;
}

.success-cta p {
    color: var(--muted);
    margin-bottom: 12px;
}

/* FAQ */
.faq-section {
    padding: 56px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.faq-section::before {
    display: none;
}

.faq-content {
    display: grid;
    gap: 10px;
    max-width: 800px;
    margin: 24px auto 0;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px 18px 22px;
    box-shadow: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    border-left: 3px solid rgba(34, 158, 217, 0.35);
}

.faq-item:hover {
    border-color: rgba(34, 158, 217, 0.45);
    border-left-color: var(--blue);
    transform: none;
    box-shadow: 0 10px 24px rgba(34, 158, 217, 0.06);
}

.faq-item h3 {
    color: var(--ink);
    font-size: 1.05rem;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.faq-item p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

/* Contact */
.contact-section {
    padding: 56px 0;
    background: var(--soft);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px;
}

.contact-info,
.contact-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.contact-item i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--blue-soft);
    color: var(--blue-dark);
    display: grid;
    place-items: center;
}

.contact-item h4 {
    margin-bottom: 4px;
    color: var(--ink);
}

.contact-item p,
.contact-form p,
.support-info {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.contact-form h3 {
    margin-bottom: 10px;
    color: var(--ink);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    background: #fff;
    color: var(--muted);
    font-size: 14px;
    padding: 0;
}

.footer-content {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 18px 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--ink);
}

.footer-logo i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--blue);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 0.75rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-links a {
    color: var(--muted);
    font-size: 14px;
}

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

.footer-bottom {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 20px;
    border-top: none;
    text-align: left;
}

.footer-bottom p {
    color: var(--muted);
    font-size: 13px;
}

/* Legacy / unused download progress kept minimal */
.download-progress,
.progress-container,
.progress-bar,
.progress-fill,
.progress-text,
.email-form,
.email-input-group,
.email-input,
.download-submit-btn,
.modal,
.modal-content,
.modal-header,
.modal-body,
.modal-form {
    /* no-op legacy hooks */
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

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

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

/* Responsive */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 64px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(8px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: var(--shadow);
        padding: 1.25rem 0;
        border-top: 1px solid var(--border);
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 12px 16px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container,
    .about-content,
    .pricing-grid,
    .steps-container,
    .success-content,
    .contact-content,
    .comparison-when,
    .red-flags-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 36px 0 32px;
    }

    .reviews-animation-container {
        width: 100%;
        max-width: 380px;
        transform: none;
    }

    .reviews-animation-container:hover {
        transform: none;
    }

    .feature-card {
        display: flex;
    }

    .client-header {
        flex-wrap: wrap;
    }

    .client-rating {
        margin-left: 0;
        text-align: left;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 30px;
    }

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

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .red-flags-grid {
        grid-template-columns: 1fr;
    }
}
