/* ============================================================
   HOME.CSS — Homepage-specific styles for Prasad Tyres
   ============================================================ */

/* ===== GOOGLE FONT OVERRIDE ===== */
body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

/* ===== WIDE CONTAINER (home overrides pages.css) ===== */
.container {
    max-width: 1400px;
    padding: 0 20px;
}

/* ===== GRADIENT TEXT UTILITY ===== */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.12), rgba(255, 193, 7, 0.12));
    color: var(--primary-color);
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title-v2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== WAVE SEPARATORS ===== */
.wave-separator {
    line-height: 0;
    overflow: hidden;
}

.wave-separator svg {
    display: block;
    width: 100%;
}

/* ===== ENHANCED NAVBAR ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
}

.logo strong {
    color: var(--primary-color);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #d62839);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    /* animation removed — no spinning logo icon */
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

/* nav-right: wraps theme toggle + hamburger */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary-color), #d62839) !important;
    color: white !important;
    border-radius: 50px !important;
    padding: 0.6rem 1.4rem !important;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(230, 57, 70, 0.45) !important;
    background-color: transparent !important;
}

/* ===== HERO V2 ===== */
.hero-v2 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    background: var(--bg-primary);
}

/* Background orbs */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.2) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
    bottom: 100px;
    right: 100px;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat 12s ease-in-out infinite 2s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* Grid overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(230, 57, 70, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230, 57, 70, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

[data-theme="dark"] .hero-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

/* Floating icons */
.hero-floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.fi {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.07;
    animation: floatIcon 8s ease-in-out infinite;
}

.fi-1 {
    font-size: 6rem;
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.fi-2 {
    font-size: 10rem;
    top: 65%;
    right: 5%;
    animation-delay: 2s;
}

.fi-3 {
    font-size: 4rem;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.fi-4 {
    font-size: 7rem;
    top: 30%;
    right: 20%;
    animation-delay: 1s;
    opacity: 0.04;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(180deg);
    }
}

/* Hero inner layout */
.hero-v2-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 4rem 0 6rem;
}

/* Hero text */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(255, 193, 7, 0.1));
    border: 1px solid rgba(230, 57, 70, 0.25);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--secondary-color);
    animation: pulse-star 2s ease-in-out infinite;
}

@keyframes pulse-star {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}

.hero-headline {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-desc strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Hero buttons */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    background: linear-gradient(135deg, var(--primary-color), #d62839);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 32px rgba(230, 57, 70, 0.5);
    color: white;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.15);
}

/* Hero trust row */
.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Hero visual / card */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-main {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: var(--card-bg);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px var(--border-color);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.hero-card-main::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 28px 28px 0 0;
}

.hero-tyre-ring {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-card-logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(230, 57, 70, 0.35);
    border: 3px solid rgba(230, 57, 70, 0.2);
}

.hero-card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hc-stat {
    text-align: center;
    padding: 1rem 0.5rem;
    background: var(--bg-secondary);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.hc-stat:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05), rgba(255, 193, 7, 0.05));
}

.hcs-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hcs-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 2px;
}

.hero-card-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), #d62839);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

/* Hero wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* ===== STATS STRIP ===== */
.stats-strip {
    padding: 4rem 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--card-bg);
    border-radius: 18px;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(230, 57, 70, 0.1);
    border-color: rgba(230, 57, 70, 0.2);
}

.stat-card>i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(255, 193, 7, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card h3 {
    font-size: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 2px;
}

/* ===== FEATURED PRODUCTS ===== */
.section-featured {
    padding: 6rem 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.products-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Product card v2 */
.product-card-v2 {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card-v2:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.18);
    border-color: rgba(230, 57, 70, 0.4);
}

.pcv2-image {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
}

.pcv2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card-v2:hover .pcv2-image img {
    transform: scale(1.12);
}

/* Overlay on hover */
.pcv2-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card-v2:hover .pcv2-overlay {
    opacity: 1;
}

.pcv2-quick-btn {
    background: white;
    color: var(--primary-color);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transform: translateY(15px);
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.product-card-v2:hover .pcv2-quick-btn {
    transform: translateY(0);
}

/* Badges */
.pcv2-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--primary-color), #d62839);
    color: white;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
    letter-spacing: 0.5px;
}

.pcv2-badge.new {
    background: linear-gradient(135deg, #00c853, #009624);
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.4);
}

.pcv2-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Card body */
.pcv2-body {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.6rem;
}

.pcv2-body h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s;
}

.product-card-v2:hover .pcv2-body h3 {
    color: var(--primary-color);
}

.pcv2-body>p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.pcv2-specs {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.pcv2-specs span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
}

.pcv2-specs span i {
    color: var(--primary-color);
    font-size: 0.7rem;
}

.pcv2-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.pcv2-price {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pcv2-price small {
    font-size: 0.72rem;
    font-weight: 500;
    -webkit-text-fill-color: var(--text-secondary);
    color: var(--text-secondary);
}

.pcv2-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.3rem;
    background: linear-gradient(135deg, var(--primary-color), #d62839);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.pcv2-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.pcv2-btn:hover {
    transform: translateX(3px);
    box-shadow: 0 6px 18px rgba(230, 57, 70, 0.45);
    color: white;
}

.pcv2-btn:hover i {
    transform: translateX(3px);
}

/* View all button */
.section-cta-center {
    text-align: center;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #d62839);
    z-index: -1;
    transition: width 0.4s ease;
    border-radius: 50px;
}

.btn-view-all:hover::before {
    width: 100%;
}

.btn-view-all:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.3);
}

/* ===== FEATURES SECTION ===== */
.section-features {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.features-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card-v2 {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--icon-color, var(--primary-color)), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card-v2:hover::before {
    transform: scaleX(1);
}

.feature-card-v2:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(230, 57, 70, 0.2);
}

.fcv2-icon-wrap {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(var(--icon-color, 230, 57, 70), 0.12), rgba(var(--icon-color, 230, 57, 70), 0.06));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--icon-color, var(--primary-color));
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Directly color icons by style attribute */
.feature-card-v2:nth-child(1) .fcv2-icon-wrap {
    background: rgba(230, 57, 70, 0.1);
    color: #e63946;
}

.feature-card-v2:nth-child(2) .fcv2-icon-wrap {
    background: rgba(255, 193, 7, 0.12);
    color: #ffc107;
}

.feature-card-v2:nth-child(3) .fcv2-icon-wrap {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.feature-card-v2:nth-child(4) .fcv2-icon-wrap {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.feature-card-v2:nth-child(5) .fcv2-icon-wrap {
    background: rgba(111, 66, 193, 0.1);
    color: #6f42c1;
}

.feature-card-v2:nth-child(6) .fcv2-icon-wrap {
    background: rgba(253, 126, 20, 0.1);
    color: #fd7e14;
}

.feature-card-v2:hover .fcv2-icon-wrap {
    transform: rotateY(20deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card-v2 h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.7rem;
}

.feature-card-v2 p {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.fcv2-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(230, 57, 70, 0.08);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 50px;
    padding: 0.25rem 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== BRANDS ===== */
.section-brands {
    padding: 5rem 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.brands-track-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brands-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.brands-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.brand-pill {
    background: var(--card-bg);
    border: 1.5px solid var(--border-color);
    border-radius: 14px;
    padding: 1.2rem 2.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: default;
    flex-shrink: 0;
}

.brand-pill:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.06), rgba(255, 193, 7, 0.06));
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.12);
}

/* ===== TESTIMONIALS REDESIGN ===== */
.section-testimonials {
    padding: 6rem 0;
    background: var(--bg-secondary);
}
.testi-redesign {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
}
.testi-quote-mark {
    font-size: 10rem;
    line-height: 1;
    font-family: Georgia, serif;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    position: absolute;
    top: -2rem;
    left: 0;
    pointer-events: none;
    user-select: none;
}
.testi-track { position: relative; min-height: 220px; }
.testi-slide {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem 2.5rem 2rem;
    background: var(--card-bg);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
    animation: testi-in 0.45s ease;
}
.testi-slide.active { display: flex; }
@keyframes testi-in {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.testi-rating { display: flex; align-items: center; gap: 1rem; }
.testi-bar {
    flex: 1;
    height: 6px;
    border-radius: 6px;
    background: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
}
.testi-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    width: var(--pct, 100%);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 6px;
    animation: bar-fill 0.6s ease 0.1s both;
}
@keyframes bar-fill {
    from { width: 0; }
    to   { width: var(--pct, 100%); }
}
.testi-score {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}
.testi-text {
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.8;
    font-style: italic;
    font-weight: 500;
}
.testi-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}
.testi-avatar-lg {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(230,57,70,0.3);
}
.testi-meta strong { display: block; font-size: 1rem; color: var(--text-primary); }
.testi-meta span   { font-size: 0.82rem; color: var(--text-secondary); }
.testi-thumbs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.8rem;
    flex-wrap: wrap;
}
.testi-thumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.1rem 0.5rem 0.5rem;
    border-radius: 50px;
    border: 2px solid var(--border-color);
    background: var(--card-bg);
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.testi-thumb:hover { border-color: var(--primary-color); color: var(--primary-color); }
.testi-thumb.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(230,57,70,0.08), rgba(255,193,7,0.08));
    color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(230,57,70,0.15);
}
.testi-thumb-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    flex-shrink: 0;
}


/* ===== CTA SECTION ===== */
.cta-section {
    padding: 8rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.cta-shape.s1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.2) 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.cta-shape.s2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
    bottom: -150px;
    right: -50px;
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: rotate 5s linear infinite;
    filter: drop-shadow(0 8px 20px rgba(230, 57, 70, 0.35));
}

.cta-inner h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-inner p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.cta-call-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.3);
}

/* ===== FOOTER LOGO ===== */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== PRODUCTS SLIDER ARROWS — hidden on desktop ===== */
.products-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.products-slider-arrow {
    display: none;
}

.slider-dots {
    display: none;
}

/* ===== FLOATING ACTION BUTTONS ===== */
.fab-cluster {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 1100;
}

.fab-btn {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.35rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    outline: none;
}

/* Ripple ring */
.fab-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.fab-btn:hover::after {
    width: 130%;
    height: 130%;
    opacity: 0.25;
}

.fab-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.fab-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.fab-whatsapp::after {
    background: #25d366;
}

.fab-whatsapp:hover {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
    color: white;
}

.fab-call {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
}

.fab-call::after {
    background: #1a73e8;
}

.fab-call:hover {
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.55);
    color: white;
}

.fab-top {
    background: linear-gradient(135deg, var(--primary-color), #d62839);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.fab-top:hover {
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.55);
}

.fab-map {
    background: linear-gradient(135deg, var(--primary-color), #d62839);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
    display: flex !important;
}

.fab-map:hover {
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.55);
}

/* Tooltip on fab */
.fab-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.fab-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: var(--text-primary);
}

.fab-btn:hover .fab-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .hero-v2-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        margin-top: -6rem;
    }

    .hero-headline {
        font-size: 3.2rem;
    }

    .hero-desc {
        margin: 0 auto 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        justify-content: center;
    }

    .hero-card-main {
        max-width: 480px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .testi-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .hero-v2-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 0 4rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-desc {
        margin: 0 auto 2rem;
        font-size: 1rem;
    }

    .hero-visual { display: none; }

    .section-title-v2 {
        font-size: 2rem;
    }

    .cta-inner h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* ===== MOBILE PRODUCTS SLIDER ===== */
    .products-slider-wrapper {
        position: relative;
    }

    .slider-dots {
        display: flex;
    }

    .products-grid-v2,
    .features-grid-v2 {
        display: flex !important;
        flex-direction: row !important;
        grid-template-columns: unset !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding: 0.5rem 0 1.5rem;
        margin: 0;
        scrollbar-width: none;
        margin-bottom: 0.5rem;
    }

    .products-grid-v2::-webkit-scrollbar {
        display: none;
    }

    .product-card-v2,
    .feature-card-v2 {
        flex: 0 0 calc(100vw - 60px);`r`n        max-width: calc(100vw - 60px);
        scroll-snap-align: start;
        transform: none !important;
    }

    /* Slider dots */
    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin: 0.8rem 0 1.5rem;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--border-color);
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
        padding: 0;
    }

    .slider-dot.active {
        width: 24px;
        border-radius: 4px;
        background: var(--primary-color);
    }

    /* Arrow buttons */
    .products-slider-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        bottom: -2px;
        z-index: 10;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 2px solid var(--primary-color);
        background: var(--card-bg);
        color: var(--primary-color);
        font-size: 0.85rem;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(230, 57, 70, 0.2);
        transition: all 0.25s ease;
    }

    .products-slider-arrow:hover {
        background: var(--primary-color);
        color: white;
        box-shadow: 0 6px 18px rgba(230, 57, 70, 0.4);
    }

    .arrow-prev { right: 56px; }
    .arrow-next { right: 10px; }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-card-main {
        max-width: 100%;
    }

    .hero-card-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .fab-cluster {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .fab-btn {
        width: 48px;
        height: 48px;
        font-size: 1.15rem;
    }

    .fab-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-card-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .hcs-num {
        font-size: 1.1rem;
    }
}

/* ===== TESTI WALL ===== */
.testi-wall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.testi-wall-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testi-wall-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(230,57,70,0.12);
    border-color: rgba(230,57,70,0.3);
}

.twc-featured {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(230,57,70,0.15);
    background: linear-gradient(160deg, var(--card-bg) 60%, rgba(230,57,70,0.04));
}

.twc-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px 0 0 20px;
}

.twc-featured .twc-accent {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px 20px 0 0;
}

.twc-stars {
    display: flex;
    gap: 3px;
    padding-left: 0.5rem;
}

.twc-stars i {
    color: var(--secondary-color);
    font-size: 0.85rem;
}

.twc-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 0.5rem;
    flex: 1;
}

.twc-footer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.twc-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.twc-info {
    flex: 1;
}

.twc-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.twc-info span {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.twc-score {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

/* Mobile: horizontal swipe slider */
@media (max-width: 768px) {
    .testi-wall {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding: 0.5rem 0 1.2rem;
        margin: 0;
        scrollbar-width: none;
    }
    .testi-wall::-webkit-scrollbar { display: none; }
    .testi-wall-card {
        flex: 0 0 82vw;
        max-width: 82vw;
        scroll-snap-align: start;
        transform: none !important;
    }
}
