/**
Theme Name: clunqr
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: clunqr
Template: astra
*/

/* ============================================
   CLUNQR - Shared Styles
   ============================================ */

body {
    --black: #000000;
    --white: #FFFFFF;
    --cta: #C6FF23;
    --cta-hover: #d4ff4d;
    --accent: #7C93FF;
    --accent-muted: rgba(124, 147, 255, 0.15);
    --gray-900: #111111;
    --gray-800: #1a1a1a;
    --gray-700: #2a2a2a;
    --gray-600: #555555;
    --gray-400: #888888;
    --gray-200: #e5e5e5;
    --gray-100: #f5f5f5;
}


/* ============================================
   Buttons
   ============================================ */

.btn-cta {
    background: var(--cta);
    color: var(--black);
    padding: 0.75rem 1.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-cta:hover {
    background: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(198, 255, 35, 0.35);
}

.btn-cta.large {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
}

/* ============================================
   Section Styles
   ============================================ */

section {
    padding: 7rem 4rem;
}

.section-header {
    max-width: 650px;
    margin-bottom: 4rem;
}

.section-header.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--accent);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--black);
}

.section-title.light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-top: 1.25rem;
}

.section-subtitle.light {
    color: var(--gray-400);
}

/* ============================================
   Footer
   ============================================ */

footer {
    background: var(--black);
    padding: 3rem 4rem;
    border-top: 1px solid var(--gray-800);
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo svg {
    height: 26px;
    width: auto;
}

.footer-text {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

/* ============================================
   Homepage Styles
   ============================================ */

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem 4rem 6rem;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 147, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    max-width: 900px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-400);
    max-width: 550px;
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-form input {
    width: 320px;
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 500;
    border: 2px solid var(--gray-800);
    background: var(--gray-900);
    color: var(--white);
    border-radius: 100px;
    outline: none;
    transition: all 0.2s ease;
}

.hero-form input:focus {
    border-color: var(--accent);
}

.hero-form input::placeholder {
    color: var(--gray-600);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--gray-400);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-trust-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    stroke-width: 2.5;
}

/* Brands Bar */
.brands-bar {
    background: var(--black);
    padding: 3rem 4rem;
    border-top: 1px solid var(--gray-800);
}

.brands-bar-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brands-label {
    color: var(--gray-600);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.brands-logos {
    display: flex;
    align-items: center;
    gap: 4rem;
    opacity: 0.4;
}

.brands-logos span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

/* How It Works */
.how-it-works {
    background: var(--white);
}

.how-it-works-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    background: var(--gray-100);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.step-card:hover {
    background: var(--gray-200);
    transform: translateY(-4px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px;
    margin-bottom: 1.75rem;
}

.step-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--black);
    letter-spacing: -0.02em;
}

.step-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* What We Buy */
.what-we-buy {
    background: var(--black);
}

.what-we-buy-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.what-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.what-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 20px;
    padding: 2.25rem;
    transition: all 0.3s ease;
}

.what-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.what-card-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-muted);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.what-card-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent);
}

.what-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--white);
    letter-spacing: -0.01em;
}

.what-card p {
    color: var(--gray-400);
    line-height: 1.6;
}

/* Why Clunqr */
.why-clunqr {
    background: var(--white);
}

.why-clunqr-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.why-feature {
    display: flex;
    gap: 1.25rem;
}

.why-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(124, 147, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.why-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--black);
    letter-spacing: -0.01em;
}

.why-feature p {
    color: var(--gray-600);
    line-height: 1.6;
}

.stats-container {
    background: var(--black);
    border-radius: 28px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.stats-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(124, 147, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* Testimonials */
.testimonials {
    background: var(--gray-100);
}

.testimonials-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1.25rem;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--accent);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--black);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-info strong {
    display: block;
    color: var(--black);
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* CTA Section */
.cta-section {
    background: var(--black);
    padding: 10rem 4rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 147, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-muted);
    border: 1px solid rgba(124, 147, 255, 0.3);
    color: var(--accent);
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 2rem;
}

.cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -0.03em;
}

.cta-section .cta-description {
    color: var(--gray-400);
    font-size: 1.15rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.cta-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cta-form input {
    width: 300px;
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 500;
    border: 2px solid var(--gray-800);
    background: var(--gray-900);
    color: var(--white);
    border-radius: 100px;
    outline: none;
    transition: all 0.2s ease;
}

.cta-form input::placeholder {
    color: var(--gray-600);
}

.cta-form input:focus {
    border-color: var(--accent);
}

.cta-note {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ============================================
   Service Page Styles
   ============================================ */

/* Service Hero */
.service-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 6rem;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 147, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.service-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.service-hero-content {
    max-width: 600px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: var(--accent);
}

.service-hero h1 {
    font-size: clamp(2.75rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.service-hero-description {
    font-size: 1.15rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-feature svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
}

/* Form Container */
.hero-form-container {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.form-header p {
    color: var(--gray-600);
}

.form-placeholder {
    background: var(--gray-100);
    border: 2px dashed var(--gray-200);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--gray-600);
}

.form-placeholder p {
    margin-bottom: 0.5rem;
}

.form-placeholder code {
    background: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* Overview Section */
.overview {
    background: var(--white);
}

.overview-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.overview-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.overview-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.overview-content p:last-of-type {
    margin-bottom: 2rem;
}

.overview-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.overview-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--black);
    font-weight: 500;
}

.overview-list svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.overview-image {
    background: var(--gray-100);
    border-radius: 24px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.overview-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-muted) 0%, transparent 60%);
}

.overview-image svg {
    width: 120px;
    height: 120px;
    stroke: var(--accent);
    opacity: 0.5;
}

/* Process Section */
.process {
    background: var(--gray-100);
}

.process-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.process .step-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.process .step-card:hover {
    border-color: var(--accent);
    background: var(--white);
}

/* Why Us Section */
.why-us {
    background: var(--black);
}

.why-us-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.why-card-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-muted);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.why-card-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent);
}

.why-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--white);
    letter-spacing: -0.01em;
}

.why-card p {
    color: var(--gray-400);
    line-height: 1.6;
}

/* Trust Builders */
.trust-builders {
    background: var(--white);
}

.trust-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-card {
    text-align: center;
    padding: 2rem;
}

.trust-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.trust-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Reviews Section */
.reviews {
    background: var(--gray-100);
}

.reviews-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

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

.review-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--accent);
}

.review-text {
    font-size: 1rem;
    color: var(--black);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
}

.review-info strong {
    display: block;
    color: var(--black);
    font-weight: 600;
    font-size: 0.95rem;
}

.review-info span {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* FAQ Section */
.faq {
    background: var(--white);
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--gray-100);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.01em;
}

.faq-question svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 2rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

/* Final CTA */
.final-cta {
    background: var(--black);
    padding: 8rem 4rem;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 147, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -0.03em;
}

.final-cta p {
    color: var(--gray-400);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* ============================================
   Article Page Styles
   ============================================ */

/* Article Header */
.article-header {
    background: var(--black);
    padding: 8rem 4rem 5rem;
    position: relative;
    overflow: hidden;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 147, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.article-header-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.article-category {
    display: inline-block;
    background: var(--accent-muted);
    color: var(--accent);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.article-header h1 {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
}

/* Article Content Area */
.article-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem;
}

.article-content {
    max-width: 100%;
}

/* Quick Answer Box */
.quick-answer {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    border: 2px solid var(--accent);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.quick-answer-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.quick-answer-label svg {
    width: 18px;
    height: 18px;
}

.quick-answer p {
    line-height: 1.8;
    color: var(--black);
    margin: 0;
}

.quick-answer strong {
    color: var(--black);
}

/* Article Typography */
.article-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--black);
    margin: 3rem 0 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    scroll-margin-top: 100px;
}

.article-content h2:first-of-type {
    margin-top: 0;
}

.article-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--black);
    margin: 2.5rem 0 1rem;
    letter-spacing: -0.01em;
    scroll-margin-top: 100px;
}

.article-content p {
    line-height: 1.85;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.article-content strong {
    color: var(--black);
    font-weight: 600;
}

.article-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-content a:hover {
    color: var(--black);
}

/* Article Lists */
.article-content ol {
    list-style: none;
    counter-reset: list-counter;
    margin: 2rem 0;
    padding: 0;
}

.article-content ol > li {
    counter-increment: list-counter;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--gray-100);
    border-radius: 12px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.article-content ol > li::before {
    content: counter(list-counter);
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.article-content ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.article-content ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.article-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

/* Key Takeaway Box */
.key-takeaway {
    background: var(--black);
    border-radius: 16px;
    padding: 2rem;
    margin: 2.5rem 0;
}

.key-takeaway-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cta);
    margin-bottom: 0.75rem;
}

.key-takeaway p {
    color: var(--white);
    margin: 0;
    line-height: 1.7;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th {
    background: var(--black);
    color: var(--white);
    font-weight: 600;
    text-align: left;
    padding: 1rem 1.25rem;
}

.comparison-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
}

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

.comparison-table tr:nth-child(even) {
    background: var(--gray-100);
}

.comparison-table .value-high {
    color: var(--accent);
    font-weight: 600;
}

/* Callout Boxes */
.callout {
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
}

.callout svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.callout-content {
    flex: 1;
}

.callout-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.callout p {
    margin: 0;
    line-height: 1.6;
}

.callout.warning {
    background: #FEF3C7;
    border: 1px solid #F59E0B;
}

.callout.warning svg {
    stroke: #D97706;
}

.callout.warning .callout-title {
    color: #92400E;
}

.callout.tip {
    background: var(--accent-muted);
    border: 1px solid var(--accent);
}

.callout.tip svg {
    stroke: var(--accent);
}

.callout.tip .callout-title {
    color: var(--black);
}

/* Article FAQ */
.faq-section {
    margin: 3rem 0;
}

.faq-section h2 {
    margin-bottom: 1.5rem;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 1.5rem;
    background: var(--gray-100);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
}

.author-avatar {
    width: 72px;
    height: 72px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cta);
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.author-info .author-title {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.author-info p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    align-self: start;
}

.sidebar-cta {
    background: var(--black);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.sidebar-cta h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.sidebar-cta p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sidebar-cta .btn-cta {
    width: 100%;
}

.sidebar-related {
    background: var(--gray-100);
    border-radius: 20px;
    padding: 2rem;
}

.sidebar-related h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.25rem;
}

.related-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-link {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.2s;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.related-link:hover {
    color: var(--accent);
}

.related-link svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Article CTA */
.article-cta {
    background: var(--black);
    border-radius: 24px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
}

.article-cta h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.article-cta p {
    color: var(--gray-400);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Animations
   ============================================ */

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

.hero-label,
.hero h1,
.hero-description,
.hero-form,
.hero-trust,
.service-hero-content > *,
.hero-form-container {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.hero-label, .service-hero .breadcrumb { animation-delay: 0.1s; }
.hero h1, .service-hero h1 { animation-delay: 0.2s; }
.hero-description, .service-hero-description { animation-delay: 0.3s; }
.hero-form, .hero-features { animation-delay: 0.4s; }
.hero-trust { animation-delay: 0.5s; }
.hero-form-container { animation-delay: 0.3s; }

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1100px) {
    .article-container {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 3rem;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        order: -1;
    }
}

@media (max-width: 1024px) {
    .service-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-features {
        justify-content: center;
    }

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

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .overview-image {
        order: -1;
    }

    .steps-grid,
    .reviews-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .why-us-grid,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .what-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .brands-bar {
        display: none;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-center {
        display: none;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .hero,
    .service-hero {
        padding: 5rem 1.5rem;
        padding-top: 7rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero-form {
        flex-direction: column;
    }

    .hero-form input {
        width: 100%;
    }

    .btn-cta.large {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cta-form {
        flex-direction: column;
        align-items: center;
    }

    .cta-form input,
    .cta-form .btn-cta {
        width: 100%;
        max-width: 320px;
    }

    .why-us-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-card {
        padding: 1.5rem;
    }

    .trust-number {
        font-size: 2.75rem;
    }

    .article-header {
        padding: 6rem 1.5rem 3rem;
    }

    .article-container {
        padding: 2rem 1.5rem;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .article-meta {
        gap: 1rem;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar {
        margin: 0 auto;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 1rem;
    }

    footer {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   Scrap Prices Page - Calculator
   ============================================ */

.calculator-section {
    margin: 2.5rem 0;
}

.calculator-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.calculator-inputs {
    display: grid;
    gap: 1rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-weight: 600;
    font-size: 0.9rem;
}

.input-group input,
.input-group select {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--cta);
    box-shadow: 0 0 0 3px rgba(198, 255, 35, 0.2);
}

.input-hint {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.btn-calculate {
    background: var(--gray-900);
    color: var(--white);
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.btn-calculate:hover {
    background: var(--gray-700);
}

.calculator-result {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ddd;
    text-align: center;
}

.result-header {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.result-note {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
}

.result-comparison {
    background: linear-gradient(135deg, var(--cta) 0%, #a8e600 100%);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.comparison-label {
    font-size: 0.85rem;
    font-weight: 500;
}

.comparison-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.comparison-note {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ============================================
   Scrap Prices Page - Quick Stats
   ============================================ */

.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(198, 255, 35, 0.3);
}

.quick-stats .stat {
    text-align: center;
}

.quick-stats .stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.quick-stats .stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* ============================================
   Scrap Prices Page - State Table
   ============================================ */

.state-pricing-legend {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legend-color.high {
    background: var(--cta);
}

.legend-color.medium {
    background: var(--accent);
}

.legend-color.low {
    background: #e9ecef;
}

.state-table-wrapper {
    max-height: 500px;
    overflow-y: auto;
    margin: 1rem 0;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.state-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.state-table th {
    position: sticky;
    top: 0;
    background: var(--gray-900);
    color: var(--white);
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
}

.state-table td {
    padding: 0.6rem 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.state-table tr:hover {
    background: #f8f9fa;
}

.state-table .tier-high td:first-child {
    border-left: 3px solid var(--cta);
}

.state-table .tier-medium td:first-child {
    border-left: 3px solid var(--accent);
}

.state-table .tier-low td:first-child {
    border-left: 3px solid #e9ecef;
}

/* ============================================
   Scrap Prices Page - Market Indicators
   ============================================ */

.market-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.indicator {
    background: var(--gray-100);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.indicator-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.indicator-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.indicator-value.trend-down {
    color: #dc3545;
}

.indicator-value.trend-up {
    color: #28a745;
}

.indicator-date {
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.25rem;
}

/* ============================================
   Scrap Prices Page - Table Enhancements
   ============================================ */

.table-subtext {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 400;
}

.table-footnote {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-style: italic;
    margin-top: 0.5rem;
}

.highlight-cell {
    background: rgba(198, 255, 35, 0.2);
    font-weight: 600;
}

/* ============================================
   Scrap Prices Page - Responsive
   ============================================ */

@media (max-width: 768px) {
    .quick-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .quick-stats .stat-value {
        font-size: 1rem;
    }
    
    .market-indicators {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .state-pricing-legend {
        gap: 1rem;
    }
    
    .state-table {
        font-size: 0.8rem;
    }
    
    .state-table th,
    .state-table td {
        padding: 0.5rem;
    }
}