/* === SALE ANNOUNCEMENT BAR === */
@keyframes saleShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes saleGlint {
    0% { left: -100%; }
    100% { left: 200%; }
}
.sale-bar {
    background: linear-gradient(90deg, #b91c1c 0%, #dc2626 25%, #ef4444 50%, #dc2626 75%, #b91c1c 100%);
    background-size: 200% 100%;
    animation: saleShimmer 4s ease-in-out infinite;
    padding: 0.5rem 0; text-align: center; position: relative; overflow: hidden;
}
.sale-bar::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    animation: saleGlint 3s ease-in-out infinite;
}
.sale-bar-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 0.625rem; flex-wrap: wrap;
}
.sale-bar-text { font-size: 0.8125rem; font-weight: 600; color: #ffffff; text-shadow: 0 1px 2px rgba(0,0,0,0.15); }
.sale-bar-timer {
    font-size: 0.75rem; font-weight: 700; color: #fecaca;
    font-family: 'SF Mono', 'Cascadia Code', monospace; letter-spacing: 0.03em;
    background: rgba(0,0,0,0.2); padding: 0.2rem 0.625rem; border-radius: var(--radius-sm);
    animation: fadeIn 0.5s ease-out both;
}
.sale-bar-link {
    font-size: 0.75rem; color: #fecaca; text-decoration: underline;
    text-underline-offset: 2px;
}
.sale-bar-link:hover { color: #fff; }

/* === HERO SECTION — Full-width centered === */
.hero-section {
    background: linear-gradient(160deg, var(--white) 0%, var(--primary-50) 30%, var(--primary-100) 70%, #dbeafe 100%);
    padding: 3.5rem 0 2rem; position: relative; overflow: hidden;
    border-bottom: 1px solid var(--border-subtle);
}
.hero-bg-pattern {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(30, 64, 175, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(30, 64, 175, 0.03) 0%, transparent 40%);
    pointer-events: none;
}
.hero-centered {
    text-align: center; max-width: 700px; margin: 0 auto;
    position: relative; z-index: 1;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--white); border: 1px solid var(--primary-100);
    padding: 0.35rem 1rem; border-radius: 100px; font-size: 0.6875rem;
    font-weight: 600; color: var(--primary-dark); margin-bottom: 1.25rem;
    text-transform: uppercase; letter-spacing: 0.06em;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.08);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}
.hero-eyebrow i { color: var(--primary); }
.hero-title {
    font-size: 2.75rem; font-weight: 800; color: var(--gray-900); margin-bottom: 1rem;
    letter-spacing: -0.035em; line-height: 1.1;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}
@media (min-width: 640px) { .hero-title { font-size: 3.25rem; } }
.hero-title span { color: var(--primary); }
.hero-subtitle {
    font-size: 1.0625rem; color: var(--gray-500); margin-bottom: 2rem;
    line-height: 1.65; max-width: 560px; margin-left: auto; margin-right: auto;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}
.hero-cta {
    display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}
.hero-cta-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.875rem 2rem; background: var(--primary); color: #fff;
    border: none; border-radius: var(--radius-lg); font-weight: 700;
    font-size: 0.9375rem; cursor: pointer; text-decoration: none;
    transition: all 0.15s ease;
    box-shadow: 0 4px 14px rgba(30, 64, 175, 0.25);
    position: relative; overflow: hidden;
}
.hero-cta-primary::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}
.hero-cta-primary:hover::after { left: 100%; }
.hero-cta-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(30,64,175,0.35); }
.hero-cta-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.875rem 2rem; background: var(--white); color: var(--gray-700);
    border: 1px solid var(--gray-200); border-radius: var(--radius-lg); font-weight: 500;
    font-size: 0.9375rem; cursor: pointer; text-decoration: none;
    transition: all 0.15s ease;
}
.hero-cta-secondary:hover { border-color: var(--gray-300); background: var(--gray-50); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.hero-trust-row {
    display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; justify-content: center;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}
.hero-trust-item {
    display: flex; align-items: center; gap: 0.375rem;
    font-size: 0.8125rem; color: var(--gray-500); text-decoration: none;
}
.hero-trust-item i { color: var(--primary); font-size: 0.75rem; }
.hero-trust-item a { color: var(--gray-500); text-decoration: none; }
.hero-trust-item a:hover { color: var(--primary); }

/* === HERO DEALS STRIP (horizontal volume discounts) === */
.hero-deals-strip {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl); overflow: hidden;
    margin-top: 2rem; max-width: 720px; margin-left: auto; margin-right: auto;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    animation: fadeInUp 0.6s ease-out 0.6s both;
    position: relative; z-index: 1;
}
.deal-strip-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(90deg, #b91c1c, #dc2626);
}
.deal-strip-badge {
    font-size: 0.6875rem; font-weight: 700; color: #fff;
    text-transform: uppercase; letter-spacing: 0.08em;
}
.deal-strip-timer {
    font-size: 0.6875rem; font-weight: 600; color: #fef2f2;
}
.deal-strip-timer span {
    font-family: 'SF Mono', 'Cascadia Code', monospace; font-weight: 700;
}
.deal-strip-tiers {
    display: flex; align-items: center; justify-content: center;
    padding: 0.875rem 1.25rem; gap: 0;
}
.deal-strip-tier {
    flex: 1; text-align: center; padding: 0.25rem 0.5rem;
}
.deal-strip-threshold {
    display: block; font-size: 0.9rem; font-weight: 800; color: var(--gray-900);
    margin-bottom: 0.15rem;
}
.deal-strip-value {
    display: block; font-size: 0.75rem; font-weight: 600; color: var(--primary-dark);
    background: var(--primary-50); padding: 0.15rem 0.5rem; border-radius: var(--radius-sm);
    display: inline-block;
}
.deal-strip-divider {
    width: 1px; height: 36px; background: var(--gray-200); flex-shrink: 0;
}

/* === HERO CONTACT STRIP === */
.hero-contact-strip {
    display: flex; align-items: center; justify-content: center; gap: 0.75rem;
    margin-top: 1rem; font-size: 0.8125rem; color: var(--gray-500);
    animation: fadeInUp 0.6s ease-out 0.7s both;
    position: relative; z-index: 1;
}
.hero-contact-strip a {
    color: var(--primary); text-decoration: none; font-weight: 600;
    display: inline-flex; align-items: center; gap: 0.3rem;
}
.hero-contact-strip a:hover { text-decoration: underline; }
.hero-contact-sep { color: var(--gray-300); }

/* === TIMER UNIT LABELS === */
.timer-num { font-weight: 700; }
.timer-unit { font-size: 0.6em; font-weight: 500; color: var(--gray-500); margin: 0 1px; text-transform: uppercase; }
.timer-sep { margin: 0 2px; color: var(--gray-400); }

/* === TRUST & QUALITY — Feature Cards === */
.trust-section {
    background: var(--white);
    padding: 3.5rem 0; border-bottom: 1px solid var(--border-subtle);
}
.trust-header { text-align: center; margin-bottom: 2rem; }
.trust-header h2 {
    font-size: 1.75rem; font-weight: 700; color: #0f172a;
    position: relative; display: inline-block; margin-bottom: 0.25rem;
}
.trust-header h2::after {
    content: ''; display: block; width: 48px; height: 3px;
    background: var(--primary); border-radius: 2px; margin: 0.5rem auto 0;
}
.trust-header p { font-size: 0.875rem; color: var(--gray-500); }

.gyc-trust-features {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem; max-width: 900px; margin: 0 auto 2rem;
}
.gyc-trust-feature {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl); padding: 1.75rem; text-align: center;
    transition: all 0.2s ease; box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; align-items: center;
}
.gyc-trust-feature:hover {
    border-color: var(--primary); transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.12);
}
.gyc-trust-feature-icon {
    width: 56px; height: 56px; margin-bottom: 1rem;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    color: var(--primary); border-radius: var(--radius-lg); font-size: 1.25rem;
}
.gyc-trust-feature:hover .gyc-trust-feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff;
}
.gyc-trust-feature h4 {
    font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem;
}
.gyc-trust-feature p {
    font-size: 0.8125rem; color: var(--gray-500); line-height: 1.55; margin-bottom: 0.75rem; flex: 1;
}
.gyc-trust-feature-link {
    display: inline-flex; align-items: center; gap: 0.375rem;
    color: var(--primary); font-size: 0.8125rem; font-weight: 600;
}
.gyc-trust-feature:hover .gyc-trust-feature-link { text-decoration: underline; }

/* === STATS BAR === */
.gyc-stats-bar {
    display: flex; justify-content: center; align-items: center;
    gap: 0; flex-wrap: wrap;
    background: var(--gray-50); border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl); padding: 1rem 1.5rem;
    max-width: 800px; margin: 0 auto;
}
.gyc-stat-item {
    flex: 1; text-align: center; min-width: 100px; padding: 0.5rem;
}
.gyc-stat-number {
    display: block; font-size: 1.5rem; font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gyc-stat-label {
    display: block; font-size: 0.7rem; color: var(--gray-500); margin-top: 0.125rem;
    text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500;
}
.gyc-stat-divider {
    width: 1px; height: 32px; background: var(--gray-200); flex-shrink: 0;
}

/* === HOW IT WORKS — Timeline === */
.gyc-process-section {
    padding: 3.5rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-subtle);
}
.gyc-timeline {
    display: flex; align-items: flex-start; justify-content: center;
    max-width: 900px; margin: 0 auto; flex-wrap: wrap;
}
.gyc-timeline-step {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; flex: 1; min-width: 130px; max-width: 170px; padding: 0 0.5rem;
}
.gyc-timeline-number {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 800; margin-bottom: 0.75rem;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
    transition: all 0.2s ease;
}
.gyc-timeline-step:hover .gyc-timeline-number {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(30, 64, 175, 0.3);
}
.gyc-timeline-content h4 {
    font-size: 0.875rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.25rem;
}
.gyc-timeline-content p {
    font-size: 0.75rem; color: var(--gray-500); line-height: 1.4;
}
.gyc-timeline-connector {
    width: 40px; height: 2px; background: linear-gradient(90deg, var(--primary-100), var(--primary));
    margin-top: 22px; flex-shrink: 0;
    border-radius: 1px;
}

/* === TRUSTPILOT BANNER === */
.trustpilot-banner {
    background: linear-gradient(135deg, #00b67a 0%, #009e6a 100%);
    padding: 14px 0; transition: background 0.3s ease;
}
.trustpilot-banner:hover { background: linear-gradient(135deg, #00c984 0%, #00b67a 100%); }
.tp-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.tp-banner-left { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.tp-banner-stars { display: flex; gap: 3px; }
.tp-b-star {
    width: 26px; height: 26px; background: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.tp-b-star.half { background: linear-gradient(90deg, #fff 50%, rgba(255,255,255,0.35) 50%); }
.tp-banner-score { color: #fff; font-size: 1rem; font-weight: 500; }
.tp-banner-score strong { font-weight: 800; font-size: 1.15rem; }
.tp-banner-count { color: rgba(255,255,255,0.85); font-size: 0.875rem; }
.tp-banner-btn {
    display: inline-flex; align-items: center; padding: 10px 24px;
    background: #fff; color: #00b67a; font-weight: 700; font-size: 0.95rem;
    border-radius: 8px; text-decoration: none; transition: all 0.3s ease; white-space: nowrap;
}
.tp-banner-btn:hover { background: #eff6ff; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.tp-banner-btn-icon { margin-left: 6px; font-size: 0.8rem; }

/* === SECTION HEADER (shared by multiple sections) === */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.01em;
}
.section-header h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin: 0.5rem auto 0;
}
.section-header p {
    font-size: 1rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

/* === SECTION ALTERNATING BACKGROUNDS === */
.section-alt { background-color: var(--gray-50); }

/* === CERTIFICATIONS === */
.certifications-section {
    padding: 3.5rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-subtle);
}
.cert-section { padding: 2rem 0; background: var(--gray-50); }
.cert-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
}
.cert-card {
    display: block;
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}
.cert-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.12);
}
.cert-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.25rem;
}
.cert-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}
.cert-card p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 1rem;
}
.cert-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s ease;
}
.cert-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}
.cert-link i {
    font-size: 0.6875rem;
}
.cert-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--gray-600); }
.cert-item i { color: var(--primary); }

/* === FAQ ACCORDION === */
.faq-section { padding: 3.5rem 0; background: var(--white); }
.faq-header { text-align: center; margin-bottom: 2rem; }
.faq-header h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.25rem; }
.faq-header p { color: var(--gray-500); font-size: 0.875rem; }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%;
    padding: 1rem 0; cursor: pointer; font-weight: 600; font-size: 0.9375rem;
    color: var(--gray-800); transition: color 0.15s ease;
    background: none; border: none; text-align: left;
    font-family: inherit;
}
.faq-question:hover { color: var(--primary); }
.faq-question i { transition: transform 0.3s ease; color: var(--gray-400); }
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    font-size: 0.875rem; color: var(--gray-600); line-height: 1.6;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 1rem; }

/* === TRENDING PRODUCTS === */
.trending-section { padding: 3.5rem 0; }
.trending-header { text-align: center; margin-bottom: 2rem; }
.trending-header h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.25rem; }
.trending-header p { color: var(--gray-500); font-size: 0.875rem; }
.trending-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem; max-width: 1000px; margin: 0 auto;
    min-height: 400px;
}
.trending-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 1.25rem;
    transition: all 0.2s ease;
    text-decoration: none; color: inherit; display: block;
}
.trending-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.trending-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.trending-category { font-size: 0.6875rem; color: var(--primary); font-weight: 600; text-transform: uppercase; }
.trending-badge { font-size: 0.6rem; background: #ede9fe; color: #6d28d9; padding: 2px 6px; border-radius: 100px; font-weight: 600; }
.trending-name { font-size: 0.9375rem; font-weight: 600; color: var(--gray-900); margin-bottom: 0.25rem; }
.trending-spec { font-size: 0.75rem; color: var(--gray-500); margin-bottom: 0.75rem; }
.trending-price { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.75rem; }
.trending-price-value { font-size: 1.125rem; font-weight: 800; color: var(--gray-900); }
.trending-bulk { font-size: 0.75rem; color: var(--primary-dark); }
.trending-cta {
    display: block; text-align: center; padding: 0.5rem;
    background: var(--primary-50); color: var(--primary-dark);
    border-radius: var(--radius-md); font-size: 0.8125rem; font-weight: 600;
    text-decoration: none; transition: all 0.15s ease;
}
.trending-cta:hover { background: var(--primary); color: var(--white); }

/* === PAYMENT METHODS SECTION === */
.payment-methods-section {
    padding: 1.2rem 0;
    background: linear-gradient(135deg, #eff6ff 0%, #f0f5ff 50%, #eff6ff 100%);
    border-top: 1px solid #dbeafe;
    border-bottom: 1px solid #dbeafe;
}
.payment-methods-inner {
    text-align: center;
}
.payment-methods-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}
.payment-methods-title i {
    color: #1e40af;
    margin-right: 6px;
}
.payment-methods-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.pay-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    cursor: default;
    user-select: none;
}
.pay-badge i { font-size: 1.2rem; }
.pay-crypto-tag {
    background: #f59e0b;
    color: white;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* === HOME RESPONSIVE === */
@media (max-width: 767px) {
    .hero-section { padding: 2rem 0 1.5rem; }
    .hero-title { font-size: 1.85rem; word-wrap: break-word; overflow-wrap: break-word; }
    .hero-subtitle { max-width: 100%; margin-bottom: 1.25rem; font-size: 0.9375rem; line-height: 1.65; }
    .hero-cta { flex-direction: column; gap: 0.625rem; margin-bottom: 1.5rem; }
    .hero-cta-primary, .hero-cta-secondary { width: 100%; justify-content: center; min-height: 48px; font-size: 0.9375rem; }
    .hero-trust-row { gap: 0.625rem; flex-wrap: wrap; }
    .hero-trust-item { font-size: 0.8125rem; color: var(--gray-600); }
    .hero-eyebrow { font-size: 0.6875rem; }

    /* Deals strip mobile */
    .hero-deals-strip { margin-top: 1.5rem; }
    .deal-strip-tiers { flex-direction: column; gap: 0; padding: 0.5rem; }
    .deal-strip-tier { padding: 0.5rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--gray-100); }
    .deal-strip-tier:last-child { border-bottom: none; }
    .deal-strip-divider { display: none; }
    .deal-strip-threshold { font-size: 0.85rem; }

    /* Contact strip */
    .hero-contact-strip { flex-wrap: wrap; font-size: 0.78rem; gap: 0.5rem; }

    /* Trust features mobile */
    .gyc-trust-features { grid-template-columns: 1fr; gap: 1rem; }
    .gyc-trust-feature { padding: 1.25rem; }

    /* Stats bar mobile */
    .gyc-stats-bar { flex-wrap: wrap; padding: 0.75rem; gap: 0; }
    .gyc-stat-item { min-width: 80px; padding: 0.375rem; }
    .gyc-stat-number { font-size: 1.25rem; }
    .gyc-stat-divider { display: none; }

    /* Timeline mobile */
    .gyc-process-section { padding: 2rem 0; }
    .gyc-timeline { flex-direction: column; align-items: center; gap: 0; }
    .gyc-timeline-step { flex-direction: row; text-align: left; max-width: 100%; width: 100%; max-width: 360px; padding: 0; gap: 1rem; }
    .gyc-timeline-number { flex-shrink: 0; }
    .gyc-timeline-connector { width: 2px; height: 20px; background: linear-gradient(180deg, var(--primary-100), var(--primary)); margin: 0; margin-left: 21px; }

    .trust-section { padding: 2rem 0; }
    .trust-header h2 { font-size: 1.25rem; }

    .sale-bar { padding: 0.5rem 0.75rem; }
    .sale-bar-inner { gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
    .sale-bar-text { font-size: 0.8125rem; text-align: center; line-height: 1.4; }
    .sale-bar-timer { font-size: 0.8125rem; }
    .sale-bar-link { font-size: 0.8125rem; padding: 0.375rem 0.5rem; min-height: 36px; display: inline-flex; align-items: center; }

    .tp-banner-inner { justify-content: center; text-align: center; }
    .tp-banner-left { justify-content: center; }
    .tp-b-star { width: 22px; height: 22px; }
    .tp-banner-score { font-size: 0.9rem; }
    .tp-banner-btn { padding: 8px 20px; font-size: 0.875rem; }

    /* Section header mobile */
    .section-header h2 { font-size: 1.375rem; }
    .section-header { margin-bottom: 2rem; }
    .section-header p { font-size: 0.875rem; }

    /* Payment strip */
    .payment-methods-strip { gap: 1rem; }
    .pay-badge { font-size: 0.78rem; }
    .payment-methods-title { font-size: 0.9rem; }
    .trending-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .trending-card { padding: 1rem; }
    .trending-section { padding: 2rem 0; }
    .faq-section { padding: 2rem 0; }

    .hero-section, .trust-section { overflow-x: hidden; overflow-y: visible; }
    .trust-header p { font-size: 0.9375rem; line-height: 1.65; }
    h1, .hero-title { font-size: 1.85rem; line-height: 1.15; }
    h2 { font-size: 1.35rem; line-height: 1.25; }
    h3 { font-size: 1.125rem; line-height: 1.3; }

    /* Certifications mobile */
    .certifications-section { padding: 2rem 0; }
    .cert-grid { flex-direction: column; align-items: center; }
    .cert-card { min-width: 0; max-width: 100%; width: 100%; padding: 1.25rem; }
}

@media (max-width: 479px) {
    .hero-section { padding: 1.5rem 0 1.25rem; }
    .hero-title { font-size: 1.625rem; }
    .hero-subtitle { font-size: 0.875rem; }
    .sale-bar-inner { flex-direction: column; gap: 0.25rem; }
    h1, .hero-title { font-size: 1.625rem; }
    h2 { font-size: 1.2rem; }

    /* Trending section small mobile */
    .trending-grid { grid-template-columns: 1fr; gap: 0.75rem; }
    .trending-card { padding: 1rem; }
    .trending-name { font-size: 0.875rem; }
    .trending-price-value { font-size: 1rem; }
    .trending-cta { min-height: 44px; display: flex; align-items: center; justify-content: center; }

    /* FAQ small mobile */
    .faq-question { font-size: 0.875rem; padding: 0.875rem 0; }
    .faq-answer { font-size: 0.8125rem; }

    /* Stats bar small */
    .gyc-stats-bar { justify-content: center; }
    .gyc-stat-item { min-width: 70px; }
    .gyc-stat-number { font-size: 1.1rem; }

    /* Payment methods small */
    .payment-methods-section { padding: 1rem 0; }
    .payment-methods-strip { gap: 0.6rem 1rem; }
    .pay-badge { font-size: 0.72rem; gap: 0.35rem; }
    .pay-badge i { font-size: 1rem; }
}
@media (max-width: 359px) {
    .hero-title { font-size: 1.375rem; }
    .hero-cta-primary, .hero-cta-secondary { padding: 0.625rem 1rem; font-size: 0.875rem; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-eyebrow, .hero-title, .hero-subtitle, .hero-cta, .hero-trust-row,
    .hero-deals-strip, .hero-contact-strip { animation: none; }
    .sale-bar { animation: none; }
    .sale-bar::after { animation: none; }
    .hero-cta-primary::after { display: none; }
}
