/* ============================================
   ENDOTEC HOMEPAGE CSS
   Loaded only on front page via functions.php
   Child theme priority = loads AFTER Astra
   No !important needed — specificity wins naturally.
   ============================================ */

/* ===========================================
   ASTRA FULL-WIDTH FIX (the RIGHT way)
   -------------------------------------------
   Problem: Astra wraps content in .ast-container
   which has max-width:1240px + padding.

   Solution: In child theme, our CSS loads after
   Astra, so equal specificity = we win.
   No !important, no page-id hacks.
   =========================================== */

/* Strip ALL Astra wrapper constraints on homepage */
.ast-page-builder-template .site-content > .ast-container,
.ast-page-builder-template .ast-container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.ast-page-builder-template #primary,
.ast-page-builder-template main,
.ast-page-builder-template article,
.ast-page-builder-template .entry-content {
    max-width: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Force .ast-container to block (Astra uses flex) */
.ast-page-builder-template .site-content .ast-container {
    display: block;
}

/* Hide WP page title and breadcrumbs on homepage */
.ast-page-builder-template .entry-header,
.ast-page-builder-template .ast-breadcrumbs-wrapper {
    display: none;
}

/* Remove Astra separate-container box styles */
.ast-separate-container .ast-article-single:not(.ast-related-post),
.ast-separate-container .ast-article-page {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

/* ===========================================
   V4 HOMEPAGE WRAPPER
   -------------------------------------------
   No more left:50%/translateX(-50%) hack.
   The Astra containers above are already 100%,
   so .v4-homepage just needs width:100%.
   =========================================== */

.v4-homepage {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Universal reset for v4 scope */
.v4-homepage,
.v4-homepage *,
.v4-homepage *::before,
.v4-homepage *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===========================================
   DESIGN TOKENS
   =========================================== */
:root {
    /* Color System */
    --navy-950: #020617;
    --navy-900: #0a0f1a;
    --navy-800: #0f1729;
    --navy-700: #1a2744;
    --navy-600: #1e3a5f;
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --blue-400: #60a5fa;
    --blue-50: #eff6ff;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --green-500: #22c55e;
    --slate-900: #0f172a;
    --slate-700: #334155;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;

    /* Typography */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing */
    --section-pad: 100px 0;
    --container: 1200px;
    --gutter: 24px;
}

html { scroll-behavior: smooth; }

.v4-homepage {
    font-family: var(--font-body);
    color: var(--slate-700);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* Content container — centered with max-width */
.v4-homepage .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
@keyframes countUp {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.v4-homepage .animate-fade-up {
    animation: fadeUp 0.8s ease-out both;
}
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* ===========================================
   HERO SECTION
   =========================================== */
.v4-homepage .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--navy-800) 100%);
    overflow: hidden;
    padding-top: 72px;
}
.v4-homepage .hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 65%);
    pointer-events: none;
}
.v4-homepage .hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.04) 0%, transparent 65%);
    pointer-events: none;
}
.v4-homepage .hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.v4-homepage .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 60px 0;
}
.v4-homepage .hero-left {
    flex: 1.1;
    animation: slideInLeft 1s ease-out both;
}
.v4-homepage .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.25);
    color: var(--blue-400);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
}
.v4-homepage .hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.v4-homepage .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}
.v4-homepage .hero h1 .text-gradient {
    background: linear-gradient(135deg, var(--blue-400) 0%, var(--blue-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.v4-homepage .hero-subtitle {
    font-size: 18px;
    color: var(--slate-400);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 40px;
}
.v4-homepage .hero-subtitle strong {
    color: var(--white);
    font-weight: 600;
}
.v4-homepage .hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

/* --- Buttons --- */
.v4-homepage .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--blue-600);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s ease;
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.3);
    border: none;
    cursor: pointer;
}
.v4-homepage .btn-primary:hover {
    background: var(--blue-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.4);
}
.v4-homepage .btn-primary .arrow {
    transition: transform 0.2s;
}
.v4-homepage .btn-primary:hover .arrow {
    transform: translateX(4px);
}
.v4-homepage .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    border: 1.5px solid rgba(255,255,255,0.2);
    transition: all 0.25s ease;
    cursor: pointer;
}
.v4-homepage .btn-secondary:hover {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
}
.v4-homepage .hero-right {
    flex: 0.9;
    position: relative;
    animation: slideInRight 1s ease-out 0.3s both;
}
.v4-homepage .hero-image-wrapper {
    position: relative;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.06), rgba(37, 99, 235, 0.02));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
}
.v4-homepage .hero-image-wrapper img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}
.v4-homepage .hero-image-tag {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy-800);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--slate-400);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

/* ===========================================
   TRUST INDICATORS
   =========================================== */
.v4-homepage .trust-bar {
    background: var(--navy-950);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 48px 0;
}
.v4-homepage .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.v4-homepage .trust-item {
    text-align: center;
    padding: 12px 24px;
    position: relative;
    animation: countUp 0.6s ease-out both;
}
.v4-homepage .trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255,255,255,0.08);
}
.v4-homepage .trust-icon {
    font-size: 20px;
    margin-bottom: 8px;
    opacity: 0.7;
}
.v4-homepage .trust-value {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.2;
}
.v4-homepage .trust-label {
    font-size: 13px;
    color: var(--slate-500);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ===========================================
   PRODUCT CATEGORIES
   =========================================== */
.v4-homepage .categories {
    padding: var(--section-pad);
    background: var(--white);
}
.v4-homepage .section-header {
    text-align: center;
    margin-bottom: 64px;
}
.v4-homepage .section-eyebrow {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue-600);
    margin-bottom: 16px;
}
.v4-homepage .section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.2;
}
.v4-homepage .section-subtitle {
    font-size: 17px;
    color: var(--slate-500);
    max-width: 560px;
    margin: 0 auto;
}
.v4-homepage .category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.v4-homepage .category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    padding: 32px 24px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.v4-homepage .category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--blue-600);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.v4-homepage .category-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.08);
    transform: translateY(-4px);
}
.v4-homepage .category-card:hover::before {
    transform: scaleX(1);
}
.v4-homepage .category-img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}
.v4-homepage .category-card:hover .category-img {
    transform: scale(1.08);
}
.v4-homepage .category-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 4px;
}
.v4-homepage .category-count {
    font-size: 13px;
    color: var(--slate-500);
}
.v4-homepage .category-arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--blue-600);
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}
.v4-homepage .category-card:hover .category-arrow {
    opacity: 1;
    transform: translateY(0);
}
.v4-homepage .view-all-link {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}
.v4-homepage .view-all-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-600);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 28px;
    border: 2px solid var(--blue-600);
    border-radius: 10px;
    transition: all 0.25s ease;
}
.v4-homepage .view-all-link a:hover {
    background: var(--blue-600);
    color: var(--white);
}

/* ===========================================
   WHY CHOOSE US
   =========================================== */
.v4-homepage .why-us {
    padding: var(--section-pad);
    background: var(--slate-50);
    position: relative;
}
.v4-homepage .why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--slate-200), transparent);
}
.v4-homepage .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.v4-homepage .why-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid var(--slate-200);
    transition: all 0.3s ease;
    position: relative;
}
.v4-homepage .why-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}
.v4-homepage .why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}
.v4-homepage .why-icon.blue   { background: rgba(37, 99, 235, 0.08); }
.v4-homepage .why-icon.green  { background: rgba(34, 197, 94, 0.08); }
.v4-homepage .why-icon.orange { background: rgba(249, 115, 22, 0.08); }
.v4-homepage .why-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.v4-homepage .why-card p {
    font-size: 15px;
    color: var(--slate-500);
    line-height: 1.7;
}
.v4-homepage .why-card ul {
    list-style: none;
    margin-top: 16px;
}
.v4-homepage .why-card ul li {
    font-size: 14px;
    color: var(--slate-600, #475569);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.v4-homepage .why-card ul li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--blue-600);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===========================================
   FACTORY / MANUFACTURING
   =========================================== */
.v4-homepage .factory {
    padding: var(--section-pad);
    background: var(--white);
}
.v4-homepage .factory-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}
.v4-homepage .factory-images {
    position: relative;
}
.v4-homepage .factory-main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    background: var(--slate-100);
    border: 1px solid var(--slate-200);
}
.v4-homepage .factory-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}
.v4-homepage .factory-thumb {
    flex: 1;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    background: var(--slate-100);
    border: 1px solid var(--slate-200);
}
.v4-homepage .factory-iso-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.v4-homepage .factory-iso-badge .iso-icon {
    width: 36px;
    height: 36px;
    background: var(--blue-600);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 11px;
    font-family: var(--font-display);
}
.v4-homepage .factory-iso-badge .iso-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--slate-900);
}
.v4-homepage .factory-iso-badge .iso-sub {
    font-size: 11px;
    color: var(--slate-500);
    font-weight: 400;
}
.v4-homepage .factory-text h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    color: var(--slate-900);
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.2;
}
.v4-homepage .factory-text > p {
    font-size: 17px;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 32px;
}
.v4-homepage .factory-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.v4-homepage .factory-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--slate-700);
    line-height: 1.5;
}
.v4-homepage .feature-check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.v4-homepage .feature-check svg {
    width: 14px;
    height: 14px;
    color: var(--green-500);
}

/* ===========================================
   COMPATIBLE BRANDS
   =========================================== */
.v4-homepage .brands {
    padding: 64px 0;
    background: var(--slate-50);
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
}
.v4-homepage .brands-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}
.v4-homepage .brands-label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--slate-400);
    white-space: nowrap;
}
.v4-homepage .brand-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--slate-400);
    letter-spacing: -0.3px;
    transition: color 0.2s;
}
.v4-homepage .brand-item:hover {
    color: var(--slate-700);
}
.v4-homepage .brand-dot {
    width: 4px;
    height: 4px;
    background: var(--slate-300);
    border-radius: 50%;
}

/* ===========================================
   GLOBAL REACH
   =========================================== */
.v4-homepage .global {
    padding: var(--section-pad);
    background: linear-gradient(145deg, var(--navy-900) 0%, var(--navy-700) 100%);
    position: relative;
    overflow: hidden;
}
.v4-homepage .global::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}
.v4-homepage .global-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.v4-homepage .global .section-eyebrow { color: var(--blue-400); }
.v4-homepage .global .section-title   { color: var(--white); }
.v4-homepage .global .section-subtitle { color: var(--slate-400); }
.v4-homepage .countries-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 48px;
    margin-bottom: 48px;
}
.v4-homepage .country-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 12px 24px;
    border-radius: 100px;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
}
.v4-homepage .country-tag:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
}
.v4-homepage .country-flag { font-size: 20px; }
.v4-homepage .global-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 56px;
}
.v4-homepage .global-stat { text-align: center; }
.v4-homepage .global-stat-value {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1;
}
.v4-homepage .global-stat-label {
    font-size: 14px;
    color: var(--slate-500);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================================
   BOTTOM CTA
   =========================================== */
.v4-homepage .cta-section {
    padding: 80px 0;
    background: var(--blue-600);
    position: relative;
    overflow: hidden;
}
.v4-homepage .cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.v4-homepage .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.v4-homepage .cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 12px;
    line-height: 1.2;
}
.v4-homepage .cta-content > p {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.v4-homepage .cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.v4-homepage .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--blue-600);
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.v4-homepage .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.v4-homepage .cta-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}
.v4-homepage .cta-contact a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}
.v4-homepage .whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
    .v4-homepage .hero-content { flex-direction: column; gap: 48px; text-align: center; }
    .v4-homepage .hero-subtitle { margin: 0 auto 40px; }
    .v4-homepage .hero-actions { justify-content: center; }
    .v4-homepage .hero-right { max-width: 480px; width: 100%; }
    .v4-homepage .factory-content { grid-template-columns: 1fr; gap: 48px; }
    .v4-homepage .global-stats { gap: 48px; }
}

@media (max-width: 768px) {
    :root { --section-pad: 64px 0; --gutter: 20px; }
    .v4-homepage .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .v4-homepage .trust-item:not(:last-child)::after { display: none; }
    .v4-homepage .category-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .v4-homepage .why-grid { grid-template-columns: 1fr; }
    .v4-homepage .brands-inner { gap: 32px; }
    .v4-homepage .brand-item { font-size: 15px; }
    .v4-homepage .countries-grid { gap: 12px; }
    .v4-homepage .country-tag { padding: 8px 16px; font-size: 13px; }
    .v4-homepage .global-stats { flex-direction: column; gap: 32px; }
    .v4-homepage .cta-actions { flex-direction: column; }
}

@media (max-width: 480px) {
    .v4-homepage .category-grid { grid-template-columns: 1fr 1fr; }
    .v4-homepage .category-card { padding: 24px 16px 20px; }
    .v4-homepage .trust-grid { grid-template-columns: 1fr 1fr; }
    .v4-homepage .hero-actions { flex-direction: column; width: 100%; }
    .v4-homepage .btn-primary,
    .v4-homepage .btn-secondary { width: 100%; justify-content: center; }
}
