/* ==========================================================================
   RHINO MOTORS — LUXURY PERUVIAN REDESIGN
   Direction: Cinematic Dark Luxury × Rhino Gold × Peruvian Fire
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    /* Core Palette */
    --bg-main: #F7F4EF;
    --bg-surface: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-solid-card: #F0ECE5;

    --color-text-primary: #0F0D09;
    --color-text-secondary: #5C5549;
    --color-text-muted: #A09A8F;

    /* Peru Fire Red */
    --color-accent: #C8102E;
    --color-accent-hover: #A30D25;
    --color-accent-rgb: 200, 16, 46;

    /* Rhino Gold — bright shield yellow */
    --color-gold: #D4A017;
    --color-gold-light: #F5C518;
    --color-gold-hover: #B38A14;
    --color-gold-rgb: 212, 160, 23;

    /* Dark Palette — deep midnight navy */
    --dark-900: #060608;
    --dark-800: #0C0C12;
    --dark-700: #121219;
    --dark-600: #1A1A26;
    --dark-500: #252535;

    --color-green: #10b981;
    --color-blue: #0284c7;
    --color-red: #ef4444;

    /* Layout */
    --max-width: 1200px;
    --border-radius-lg: 2px;
    --border-radius-md: 2px;
    --border-radius-sm: 1px;

    --border-glow: 1px solid rgba(200, 16, 46, 0.25);
    --border-gold: 1px solid rgba(201, 146, 42, 0.3);
    --border-normal: 1px solid #E4DED5;
    --border-dark: 1px solid rgba(255,255,255,0.07);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Fonts — Cormorant for heads, DM Sans for body */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 12px rgba(10, 8, 4, 0.08);
    --shadow-md: 0 8px 32px rgba(10, 8, 4, 0.12);
    --shadow-lg: 0 20px 60px rgba(10, 8, 4, 0.18);
    --shadow-gold: 0 8px 32px rgba(201, 146, 42, 0.2);
    --shadow-red: 0 8px 32px rgba(200, 16, 46, 0.25);

    /* Andean geometric pattern — subtle gold diamond */
    --bg-peruvian-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Crect x='38' y='2' width='4' height='4' fill='%23C9922A' fill-opacity='0.06'/%3E%3Crect x='38' y='74' width='4' height='4' fill='%23C9922A' fill-opacity='0.06'/%3E%3Crect x='2' y='38' width='4' height='4' fill='%23C9922A' fill-opacity='0.06'/%3E%3Crect x='74' y='38' width='4' height='4' fill='%23C9922A' fill-opacity='0.06'/%3E%3C/svg%3E");
}

/* ==========================================================================
   CUSTOM SCROLLBAR
   ========================================================================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-800); }
::-webkit-scrollbar-thumb { background: var(--color-accent); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-gold); }

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    background-color: var(--bg-main);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
}

h4, h5, h6 { font-family: var(--font-body); letter-spacing: 0; }

/* White text overrides in dark sections */
.hero-section h1,
.hero-section h2,
.hero-section h3,
.main-footer h4,
.chatbot-title { color: #ffffff; }

a { color: inherit; text-decoration: none; transition: var(--transition-fast); }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea {
    font-family: inherit; font-size: inherit; color: inherit;
    background: none; border: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.text-green { color: var(--color-green); }
.text-blue { color: var(--color-blue); }
.bg-green { background-color: var(--color-green); }
.bg-orange { background-color: var(--color-accent); }
.bg-blue { background-color: var(--color-blue); }

/* ==========================================================================
   GLASS CARD — Context-aware
   ========================================================================== */
.glass-card {
    background: var(--bg-card);
    border: var(--border-normal);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.glass-card-solid {
    background: var(--bg-solid-card);
    border: var(--border-normal);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   BUTTONS — Premium with shimmer
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 1px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Shimmer sweep on hover */
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}
.btn:hover::after { left: 150%; }

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, #A30D25 100%);
    color: #ffffff;
    border: 1px solid var(--color-accent);
    box-shadow: 0 4px 20px rgba(var(--color-accent-rgb), 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--color-accent-rgb), 0.45);
}

.btn-accent {
    background: linear-gradient(135deg, var(--color-accent) 0%, #A30D25 100%);
    color: #ffffff;
    border: 1px solid var(--color-accent);
    box-shadow: 0 4px 20px rgba(var(--color-accent-rgb), 0.25);
}
.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
    background: linear-gradient(135deg, #D91230 0%, var(--color-accent) 100%);
}

.btn-secondary {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-secondary:hover {
    border-color: rgba(201, 146, 42, 0.7);
    color: var(--color-gold-light);
    transform: translateY(-1px);
}

/* Light-section secondary */
.why-us-section .btn-secondary,
.catalog-section .btn-secondary,
.calculator-section .btn-secondary,
.contact-section .btn-secondary {
    color: var(--color-text-primary);
    border-color: #C8C0B4;
}
.why-us-section .btn-secondary:hover,
.catalog-section .btn-secondary:hover,
.calculator-section .btn-secondary:hover,
.contact-section .btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: transparent;
}

.btn-sm { padding: 10px 20px; font-size: 0.73rem; }
.btn-lg { padding: 17px 40px; font-size: 0.84rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   ANNOUNCEMENT BAR — Gold gradient marquee strip
   ========================================================================== */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #0C0C12 0%, #1A0A06 35%, #0C0C12 70%, #1A0A06 100%);
    border-bottom: 1px solid rgba(201, 146, 42, 0.3);
    z-index: 1002;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.announcement-container { overflow: hidden; }

.announcement-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-size: 0.77rem;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    overflow: hidden;
    letter-spacing: 0.04em;
}

.ann-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
}

.ann-item i { color: var(--color-gold); }
.ann-item strong { color: var(--color-gold-light); font-weight: 700; }

.ann-sep {
    color: rgba(201, 146, 42, 0.3);
    font-size: 0.6rem;
    flex-shrink: 0;
}

/* ==========================================================================
   HEADER NAVIGATION — Cinematic sticky
   ========================================================================== */
.main-header {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 6, 8, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(201, 146, 42, 0.12);
    height: 72px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

.main-header.scrolled {
    background: rgba(6, 6, 8, 0.98);
    border-bottom-color: rgba(200, 16, 46, 0.2);
    box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    color: #ffffff;
}

.logo-icon {
    color: var(--color-gold);
    filter: drop-shadow(0 0 10px rgba(212, 160, 23, 0.6));
    font-size: 1.5rem;
}

.logo-img {
    width: 36px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(245, 197, 24, 0.45));
    flex-shrink: 0;
}

.accent-color { color: var(--color-gold-light); }

.nav-menu { display: flex; align-items: center; gap: 36px; }

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease;
}
.nav-link:hover { color: var(--color-gold-light); }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-accent));
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 16px; }

.mobile-menu-toggle {
    display: none;
    font-size: 1.4rem;
    color: #ffffff;
    cursor: pointer;
    padding: 4px;
}

/* ==========================================================================
   HERO SECTION — Cinematic animated dark with depth
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 180px 0 120px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--dark-900);
    background-image: var(--bg-peruvian-pattern);
}

/* Animated gradient mesh background */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 80% 50%, rgba(200, 16, 46, 0.13) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 15% 60%, rgba(201, 146, 42, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 100% 80% at 50% 100%, rgba(6, 6, 8, 0.9) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    animation: heroAmbient 10s ease-in-out infinite alternate;
}

/* Moving light orb */
.hero-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.07) 0%, transparent 70%);
    top: 10%;
    right: -100px;
    animation: orbFloat 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes heroAmbient {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-60px, 40px) scale(1.1); }
    66% { transform: translate(40px, -30px) scale(0.95); }
}

.hero-backdrop-pattern {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
    /* Diagonal gold line accent — Andean textile-inspired */
    background-image:
        linear-gradient(135deg, transparent 48%, rgba(201,146,42,0.04) 49%, rgba(201,146,42,0.04) 51%, transparent 52%),
        linear-gradient(135deg, transparent 58%, rgba(201,146,42,0.025) 59%, rgba(201,146,42,0.025) 61%, transparent 62%);
    background-size: 300px 300px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold));
    flex-shrink: 0;
}

.badge-container { display: none; }
.hero-badge { display: none; }

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    line-height: 1.0;
    color: #ffffff;
    font-style: normal;
}

.hero-title em {
    font-style: italic;
    color: var(--color-gold-light);
    text-shadow: 0 0 40px rgba(201, 146, 42, 0.4);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 44px;
    max-width: 560px;
    line-height: 1.75;
    font-weight: 300;
}
.hero-description strong { color: rgba(255,255,255,0.9); font-weight: 600; }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 64px;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.metric-item { display: flex; flex-direction: column; }

.metric-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.metric-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: rgba(201, 146, 42, 0.2);
}

/* Hero motorcycle visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    width: 100%;
    max-width: 560px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glowing platform ring under the moto */
.hero-image-container::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60px;
    background: radial-gradient(ellipse at center, rgba(200, 16, 46, 0.35) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 1;
    animation: platformGlow 4s ease-in-out infinite alternate;
}

/* Gold arc accent behind moto */
.hero-image-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(201, 146, 42, 0.1);
    box-shadow: inset 0 0 80px rgba(201, 146, 42, 0.05);
    z-index: 1;
    animation: ringPulse 6s ease-in-out infinite;
}

@keyframes platformGlow {
    0% { opacity: 0.6; transform: translateX(-50%) scaleX(0.9); }
    100% { opacity: 1; transform: translateX(-50%) scaleX(1.1); }
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.hero-moto-img {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.7)) drop-shadow(0 0 30px rgba(200,16,46,0.15));
    animation: floating-anim 6s ease-in-out infinite;
}

.floating-moto-tag {
    position: absolute;
    bottom: 24px; right: 24px;
    background: rgba(6, 6, 8, 0.9);
    border: var(--border-gold);
    padding: 10px 16px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    box-shadow: var(--shadow-gold);
}
.floating-moto-tag i { color: var(--color-gold); }
.floating-moto-tag span { font-size: 0.8rem; font-weight: 600; color: #ffffff; }

/* ==========================================================================
   SOCIAL PROOF TRUST STRIP
   ========================================================================== */
.social-proof-strip {
    background: var(--dark-800);
    border-top: 1px solid rgba(201, 146, 42, 0.2);
    border-bottom: 1px solid rgba(201, 146, 42, 0.12);
    padding: 32px 0;
}

.proof-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.proof-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(201,146,42,0.4));
}

.proof-text { display: flex; flex-direction: column; }

.proof-number {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
}

.proof-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 3px;
}

.proof-sep {
    width: 1px;
    height: 40px;
    background: rgba(201, 146, 42, 0.15);
    flex-shrink: 0;
}

/* ==========================================================================
   WHY US SECTION — DARK LUXURY with glass cards (major transformation)
   ========================================================================== */
.why-us-section {
    padding: 140px 0;
    background-color: var(--dark-800);
    background-image:
        var(--bg-peruvian-pattern),
        radial-gradient(ellipse 80% 60% at 10% 80%, rgba(200, 16, 46, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 90% 20%, rgba(201, 146, 42, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

/* Diagonal gold line accent */
.why-us-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201,146,42,0.5) 40%, rgba(200,16,46,0.5) 60%, transparent 100%);
}

.why-us-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201,146,42,0.3) 50%, transparent 100%);
}

/* Override section headers for dark context */
.why-us-section .section-title,
.why-us-section .section-subtitle { color: inherit; }

.why-us-section .section-title { color: #ffffff; }
.why-us-section .section-subtitle { color: var(--color-gold); }

.why-us-section .title-underline {
    background: linear-gradient(90deg, var(--color-gold), var(--color-accent));
}

/* Glass pillar cards on dark */
.why-us-section .glass-card.pillar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
}

.why-us-section .glass-card.pillar-card:hover {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(201, 146, 42, 0.25);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,146,42,0.1), inset 0 1px 0 rgba(255,255,255,0.08);
    transform: translateY(-6px);
}

.why-us-section .pillar-card h3 { color: #ffffff; }
.why-us-section .pillar-card p { color: rgba(255,255,255,0.55); }

/* Icon boxes in dark section */
.why-us-section .pillar-icon-box {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 28px;
    border: 1px solid;
    position: relative;
}

.why-us-section .pillar-icon-box::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-us-section .pillar-card:hover .pillar-icon-box::after { opacity: 1; }

.why-us-section .orange-glow {
    color: var(--color-accent);
    background: rgba(200, 16, 46, 0.12);
    border-color: rgba(200, 16, 46, 0.25);
    box-shadow: 0 0 20px rgba(200, 16, 46, 0.15);
}
.why-us-section .blue-glow {
    color: #60B7FF;
    background: rgba(2, 132, 199, 0.12);
    border-color: rgba(2, 132, 199, 0.25);
    box-shadow: 0 0 20px rgba(2, 132, 199, 0.15);
}
.why-us-section .green-glow {
    color: #4FECAB;
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}
.why-us-section .red-glow {
    color: #FF6B6B;
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.25);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.15);
}

/* ==========================================================================
   SECTION HEADERS — Universal
   ========================================================================== */
.section-header { margin-bottom: 72px; }

.section-subtitle {
    display: block;
    color: var(--color-accent);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.title-underline {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
    margin: 24px auto 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.pillar-card {
    padding: 48px 36px;
    transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.pillar-icon-box {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 28px;
}

.orange-glow { color: var(--color-accent); }
.blue-glow { color: var(--color-blue); }
.green-glow { color: var(--color-green); }
.red-glow { color: var(--color-red); }

.pillar-card h3 { font-size: 1.3rem; margin-bottom: 14px; }
.pillar-card p { font-size: 0.9375rem; color: var(--color-text-secondary); line-height: 1.7; }
.pillar-card h3 { color: var(--color-text-primary); }

/* ==========================================================================
   MOTORCYCLE CATALOG
   ========================================================================== */
.catalog-section {
    padding: 140px 0;
    background-color: var(--bg-main);
    background-image: var(--bg-peruvian-pattern);
    position: relative;
}

.catalog-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
}

.catalog-tabs {
    display: flex;
    background-color: var(--dark-700);
    padding: 4px;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.08);
    gap: 2px;
}

.tab-btn {
    padding: 10px 18px;
    border-radius: 1px;
    font-size: 0.77rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.25s ease;
    color: rgba(255,255,255,0.45);
}
.tab-btn:hover { color: rgba(255,255,255,0.8); }
.tab-btn.active {
    background: linear-gradient(135deg, var(--color-accent) 0%, #A30D25 100%);
    color: #ffffff;
    box-shadow: 0 2px 12px rgba(200,16,46,0.35);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.moto-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border: var(--border-normal);
    box-shadow: var(--shadow-sm);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Gold shimmer border on hover */
.moto-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(201,146,42,0), rgba(200,16,46,0)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 3;
}

.moto-card:hover::before {
    background: linear-gradient(135deg, rgba(201,146,42,0.6), rgba(200,16,46,0.4)) border-box;
}

.moto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(10, 8, 4, 0.14);
}

.moto-img-wrapper {
    position: relative;
    padding: 32px 24px 24px;
    background: linear-gradient(160deg, #F4F1EC 0%, #EDE8E0 100%);
    border-bottom: var(--border-normal);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 240px;
    overflow: hidden;
}

/* Subtle glow backdrop for moto image */
.moto-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(200,16,46,0.12) 0%, transparent 70%);
    filter: blur(8px);
    pointer-events: none;
}

.moto-card-img {
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.35));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}
.moto-card:hover .moto-card-img { transform: scale(1.07) translateY(-4px); }

.card-badge {
    position: absolute;
    top: 16px; left: 16px;
    padding: 4px 12px;
    border-radius: 0;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    z-index: 4;
}

.moto-info {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.card-title-row h3 { font-size: 1.3rem; letter-spacing: -0.02em; }

.engine-cc {
    background: linear-gradient(135deg, var(--dark-700), var(--dark-600));
    border: 1px solid rgba(255,255,255,0.08);
    padding: 3px 10px;
    border-radius: 2px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-body);
}

.card-tagline {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: 22px;
    line-height: 1.6;
}

.specs-list {
    list-style: none;
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: var(--border-normal);
}

.specs-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: 9px;
}
.specs-list li i {
    color: var(--color-gold);
    width: 16px;
    text-align: center;
}

.pricing-panel {
    background: linear-gradient(135deg, #F7F4EF 0%, #EDE8E0 100%);
    border: var(--border-normal);
    border-radius: 2px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.price-cash, .price-finance { display: flex; flex-direction: column; }

.price-label {
    font-size: 0.68rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.price-value.text-accent { color: var(--color-accent); }

.price-divider {
    width: 1px; height: 32px;
    background: var(--border-normal);
}

.card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
}

/* ==========================================================================
   FINANCING CALCULATOR — Deep dark luxury
   ========================================================================== */
.calculator-section {
    padding: 140px 0;
    background: var(--dark-900);
    background-image:
        var(--bg-peruvian-pattern),
        radial-gradient(ellipse 60% 80% at 0% 50%, rgba(201, 146, 42, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 40% 60% at 100% 30%, rgba(200, 16, 46, 0.06) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,146,42,0.4) 50%, transparent);
}

.calculator-section .section-title { color: #ffffff; }
.calculator-section .section-subtitle { color: var(--color-gold); }
.calculator-section .title-underline {
    background: linear-gradient(90deg, var(--color-gold), var(--color-accent));
}

.calculator-bg-mesh { display: none; }

.calculator-box {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
    background: transparent;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    padding: 52px 48px;
    border-right: 1px solid rgba(255,255,255,0.06);
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(10px);
}

.form-group { display: flex; flex-direction: column; gap: 10px; }

.input-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.form-control {
    width: 100%;
    background-color: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2px;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.85);
    transition: var(--transition-normal);
}
.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: rgba(255,255,255,0.06);
    box-shadow: 0 0 0 3px rgba(201, 146, 42, 0.1);
}
.form-control option { background: var(--dark-700); color: #fff; }

/* Select dropdown */
.custom-select-wrapper { position: relative; }
.custom-select-wrapper select { appearance: none; cursor: pointer; padding-right: 48px; }
.custom-select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 18px; top: 50%;
    transform: translateY(-50%);
    color: var(--color-gold);
    pointer-events: none;
    font-size: 0.75rem;
}

/* Range slider */
.slider-label-row { display: flex; justify-content: space-between; align-items: center; }

.slider-display-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--color-gold-light);
}

.form-range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.08);
    outline: none;
    margin: 14px 0;
    cursor: pointer;
}
.form-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    cursor: pointer;
    border: 2px solid var(--dark-900);
    box-shadow: 0 0 12px rgba(201, 146, 42, 0.6);
    transition: transform 0.2s ease;
}
.form-range-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

.slider-range-limits {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
}

/* Radio tabs */
.radio-tabs-container {
    display: flex;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 2px;
    padding: 4px;
    gap: 2px;
}

.radio-tab { flex: 1; text-align: center; position: relative; cursor: pointer; }

.radio-tab input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

.radio-tab-label {
    display: block;
    padding: 12px 0;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 1px;
    color: rgba(255,255,255,0.35);
    transition: all 0.25s ease;
}

.radio-tab input[type="radio"]:checked + .radio-tab-label {
    background: linear-gradient(135deg, var(--color-accent) 0%, #A30D25 100%);
    color: #ffffff;
    box-shadow: 0 2px 12px rgba(200, 16, 46, 0.4);
}

/* Results panel */
.calculator-results {
    padding: 52px 44px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, #0A0510 0%, #120408 60%, #0A0510 100%);
    color: #ffffff;
    border-left: 1px solid rgba(200,16,46,0.15);
    position: relative;
    overflow: hidden;
}

/* Gold accent corner decoration */
.calculator-results::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 80px;
    background: linear-gradient(225deg, rgba(201,146,42,0.12) 0%, transparent 70%);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.results-header h4 {
    font-size: 0.65rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.results-tag {
    background: rgba(201, 146, 42, 0.1);
    color: var(--color-gold-light);
    border: 1px solid rgba(201, 146, 42, 0.25);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.results-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}
.detail-row span:last-child { font-weight: 500; color: rgba(255, 255, 255, 0.8); }
.detail-row span.text-green { color: #5EE89F; }

.detail-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 6px 0; }

.main-result-box {
    border-top: 1px solid rgba(201,146,42,0.15);
    padding: 28px 0 20px;
}

.payment-frequency-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
}

.payment-value {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: #ffffff;
    display: block;
    line-height: 1;
    letter-spacing: -0.03em;
}

.alternative-result-box { padding: 14px 0 0; }

.payment-value-small {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgba(255,255,255,0.45);
}

.results-disclaimer {
    display: flex;
    gap: 8px;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.2);
    margin-bottom: 24px;
    line-height: 1.55;
}
.results-disclaimer i { color: rgba(201,146,42,0.5); margin-top: 2px; flex-shrink: 0; }

/* ==========================================================================
   CONTACT SECTION — Warm & rich
   ========================================================================== */
.contact-section {
    padding: 140px 0;
    background: var(--bg-main);
    background-image: var(--bg-peruvian-pattern);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
    align-items: start;
}

.contact-info-panel .section-subtitle { margin-bottom: 12px; }

.contact-intro {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    line-height: 1.75;
}

.contact-details { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }

.contact-item { display: flex; gap: 20px; align-items: flex-start; }

.contact-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, rgba(200,16,46,0.08), rgba(200,16,46,0.04));
    border: 1px solid rgba(200,16,46,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-accent);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, rgba(200,16,46,0.15), rgba(200,16,46,0.08));
    border-color: rgba(200,16,46,0.3);
    box-shadow: 0 4px 16px rgba(200,16,46,0.15);
    transform: scale(1.05);
}

.contact-item h4 { font-size: 1rem; margin-bottom: 4px; font-family: var(--font-body); font-weight: 700; }
.contact-item p { font-size: 0.9375rem; color: var(--color-text-secondary); }

/* Payment badges */
.local-payments-trust { border-top: var(--border-normal); padding-top: 32px; }

.trust-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.payment-badges-row { display: flex; flex-wrap: wrap; gap: 10px; }

.pay-badge {
    background: #FFFFFF;
    border: var(--border-normal);
    padding: 7px 14px;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}
.pay-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.yupe i { color: #8a3ab9; }
.yape i { color: #8a3ab9; }
.plin i { color: #00bfaf; }
.efectivo i { color: var(--color-accent); }
.transfer i { color: var(--color-blue); }

/* Contact form */
.contact-form-panel {
    padding: 44px;
    background: #FFFFFF;
    border: var(--border-normal);
    box-shadow: var(--shadow-lg);
    border-radius: 2px;
}

.contact-form-panel h3 { font-size: 1.7rem; margin-bottom: 16px; }

.card-bar {
    width: 40px; height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
    border-radius: 2px;
    margin-bottom: 32px;
}

.lead-form { display: flex; flex-direction: column; gap: 20px; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-label { font-size: 0.82rem; font-weight: 600; color: var(--color-text-secondary); }

/* Light-context form controls */
.contact-section .form-control {
    background: #FAFAF8;
    border: var(--border-normal);
    color: var(--color-text-primary);
}
.contact-section .form-control:focus {
    background: #FFFFFF;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(200,16,46,0.08);
}
.contact-section .form-control option { background: #fff; color: var(--color-text-primary); }

.input-prefix-wrapper {
    display: flex;
    border: var(--border-normal);
    border-radius: 2px;
    background: #FAFAF8;
    overflow: hidden;
    transition: var(--transition-normal);
}
.input-prefix-wrapper:focus-within {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(200,16,46,0.08);
}

.input-prefix {
    background: #F0ECE5;
    border-right: var(--border-normal);
    padding: 14px 16px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
}

.input-prefix-wrapper .form-control {
    border: none;
    background: none;
    border-radius: 0;
    color: var(--color-text-primary);
}
.input-prefix-wrapper .form-control:focus {
    border: none; background: none; box-shadow: none;
}

.contact-checkboxes { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }

.radio-checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FAFAF8;
    border: var(--border-normal);
    padding: 10px 16px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    transition: all 0.25s ease;
}
.radio-checkbox-option:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(200,16,46,0.03);
}
.radio-checkbox-option input { accent-color: var(--color-accent); }

/* Validation */
.field-error-msg {
    display: none;
    font-size: 0.75rem;
    color: var(--color-accent);
    margin-top: 4px;
    font-weight: 500;
}
.form-control.is-invalid { border-color: var(--color-accent); background: rgba(200,16,46,0.04); }
.form-control.is-invalid + .field-error-msg { display: block; }
.input-prefix-wrapper.is-invalid { border-color: var(--color-accent); }
.input-prefix-wrapper.is-invalid + .field-error-msg { display: block; }

/* ==========================================================================
   FOOTER — Deep navy with gold top accent
   ========================================================================== */
.main-footer {
    background: var(--dark-800);
    border-top: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    padding: 90px 0 0;
    color: rgba(255, 255, 255, 0.5);
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-accent) 50%, var(--color-gold));
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand .logo { margin-bottom: 20px; }

.footer-desc { font-size: 0.875rem; line-height: 1.7; margin-bottom: 28px; }

.social-links { display: flex; gap: 12px; }

.social-links a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: var(--color-accent);
    color: #ffffff;
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(200,16,46,0.35);
}

.footer-links h4, .footer-legal h4 {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 24px;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a, .footer-legal a {
    font-size: 0.875rem;
    transition: all 0.25s ease;
}
.footer-links a:hover, .footer-legal a:hover {
    color: var(--color-gold-light);
    padding-left: 6px;
}

/* Complaints book */
.libro-reclamaciones-footer-box { margin-top: 24px; }

.libro-reclamaciones-link {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 16px;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.libro-reclamaciones-link:hover {
    border-color: rgba(201,146,42,0.3);
    background: rgba(255,255,255,0.04);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.libro-rec-img-placeholder {
    width: 60px; height: 40px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.1);
}

.libro-rec-text-box { display: flex; flex-direction: column; }

.libro-rec-title {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.libro-rec-subtitle { font-size: 0.68rem; color: rgba(255,255,255,0.3); margin-top: 2px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    font-size: 0.75rem;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.3);
}

/* ==========================================================================
   DIALOG / MODAL
   ========================================================================== */
.reclamaciones-dialog {
    width: 100%;
    max-width: 720px;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.08);
    background: var(--dark-700);
    padding: 0;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1100;
    box-shadow: 0 40px 100px rgba(0,0,0,0.7);
    overflow: hidden;
    outline: none;
    max-height: 90vh;
    display: none;
    color: rgba(255,255,255,0.8);
}

.reclamaciones-dialog[open] {
    display: flex;
    flex-direction: column;
    animation: zoom-in-anim 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reclamaciones-dialog::backdrop {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.dialog-header {
    background: var(--dark-800);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
}

.dialog-header-title { display: flex; align-items: center; gap: 16px; }
.dialog-icon-rec { font-size: 1.8rem; color: var(--color-gold); }

.dialog-header h3 { font-size: 1.15rem; color: #ffffff; }
.dialog-header p { font-size: 0.72rem; color: rgba(255,255,255,0.3); }

.dialog-close-btn { font-size: 1.8rem; line-height: 1; color: rgba(255,255,255,0.4); cursor: pointer; }
.dialog-close-btn:hover { color: #ffffff; }

.dialog-body { padding: 28px; overflow-y: auto; flex-grow: 1; }

.dialog-info-alert {
    background: rgba(201,146,42,0.08);
    border: 1px solid rgba(201,146,42,0.2);
    border-radius: 2px;
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}
.dialog-info-alert i { color: var(--color-gold); font-size: 1.1rem; margin-top: 2px; }

.form-section-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 24px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(201,146,42,0.15);
}
.form-section-title:first-of-type { margin-top: 0; }

.reclamaciones-form { display: flex; flex-direction: column; gap: 16px; }

.reclamaciones-dialog .form-control {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
}
.reclamaciones-dialog .form-control:focus {
    border-color: var(--color-gold);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 0 3px rgba(201,146,42,0.1);
}
.reclamaciones-dialog .form-control option { background: var(--dark-700); }

.reclamaciones-dialog .radio-checkbox-option {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.6);
}
.reclamaciones-dialog .radio-checkbox-option:hover {
    border-color: var(--color-gold);
    color: var(--color-gold-light);
    background: rgba(201,146,42,0.06);
}

.dialog-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
}

/* ==========================================================================
   FLOATING WHATSAPP WIDGET
   ========================================================================== */
.floating-whatsapp-widget {
    position: fixed;
    bottom: 110px;
    right: 32px;
    width: 58px; height: 58px;
    background: linear-gradient(135deg, #25d366, #128C7E);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-spring);
}
.floating-whatsapp-widget:hover {
    transform: scale(1.12) rotate(8deg);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.5;
    z-index: -1;
    animation: pulse-anim 2s infinite;
}

.whatsapp-tooltip {
    position: absolute;
    right: 76px; bottom: 6px;
    background: var(--dark-700);
    border: var(--border-gold);
    padding: 10px 16px;
    border-radius: 2px;
    width: 185px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-gold);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -5px; top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 9px; height: 9px;
    background: var(--dark-700);
    border-top: var(--border-gold);
    border-right: var(--border-gold);
}

.floating-whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1; visibility: visible; transform: translateX(0);
}

.tooltip-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.84rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}
.tooltip-text { font-size: 0.72rem; color: rgba(255,255,255,0.45); }

/* ==========================================================================
   FLOATING CHATBOT
   ========================================================================== */
.floating-chatbot-container {
    position: fixed;
    bottom: 32px; right: 32px;
    z-index: 1000;
}

.floating-chatbot-launcher {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark-600), var(--dark-700));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
    position: relative;
}
.floating-chatbot-launcher:hover {
    background: linear-gradient(135deg, var(--color-accent), #A30D25);
    transform: scale(1.08);
    box-shadow: var(--shadow-red);
    border-color: var(--color-accent);
}

.chatbot-pulse {
    position: absolute; inset: 0;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.4;
    z-index: -1;
    animation: pulse-anim 2.5s infinite;
}

.chatbot-window {
    position: absolute;
    bottom: 78px; right: 0;
    width: 380px; height: 520px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(16px) scale(0.97);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
    z-index: 1001;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 4px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    background: var(--dark-800);
}
.chatbot-window.active {
    transform: translateY(0) scale(1);
    opacity: 1; visibility: visible;
}

.chatbot-header {
    background: linear-gradient(135deg, var(--dark-900), var(--dark-800));
    border-bottom: 1px solid rgba(201,146,42,0.1);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-bot-info { display: flex; align-items: center; gap: 12px; }

.chatbot-avatar-container {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(201,146,42,0.12);
    border: 1px solid rgba(201,146,42,0.3);
    display: flex; align-items: center; justify-content: center;
    position: relative;
}

.chatbot-avatar-icon { color: var(--color-gold); font-size: 1.15rem; }

.chatbot-status-dot {
    position: absolute;
    bottom: 0; right: 0;
    width: 9px; height: 9px;
    background: var(--color-green);
    border-radius: 50%;
    border: 2px solid var(--dark-900);
}

.chatbot-title { font-size: 0.9375rem; font-weight: 700; color: #ffffff; line-height: 1.2; }
.chatbot-subtitle { font-size: 0.72rem; color: rgba(255,255,255,0.35); }

.chatbot-close-btn {
    font-size: 1.5rem; line-height: 1;
    color: rgba(255,255,255,0.3);
    cursor: pointer; background: none; border: none; padding: 4px;
    transition: color 0.2s;
}
.chatbot-close-btn:hover { color: #ffffff; }

.chatbot-body {
    padding: 16px;
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scroll-behavior: smooth;
    background: var(--dark-700);
}

.chat-message {
    display: flex;
    flex-direction: column;
    max-width: 85%;
    animation: slide-up-keyframes 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.chat-message.bot { align-self: flex-start; }
.chat-message.user { align-self: flex-end; }

.chat-message .message-bubble {
    padding: 12px 16px;
    border-radius: 2px;
    font-size: 0.84rem;
    line-height: 1.5;
}
.chat-message.bot .message-bubble {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.85);
}
.chat-message.user .message-bubble {
    background: linear-gradient(135deg, var(--color-accent), #A30D25);
    color: #ffffff;
}

.chat-message.bot .en-msg {
    margin-top: 8px;
    border-top: 1px dashed rgba(255,255,255,0.08);
    padding-top: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
}

.chatbot-quick-replies {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 8px; margin-bottom: 4px;
    animation: fade-in-keyframes 0.4s ease-out 0.2s forwards;
}

.quick-reply-btn {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    cursor: pointer;
    transition: all 0.2s ease;
}
.quick-reply-btn:hover {
    background: rgba(201,146,42,0.12);
    border-color: var(--color-gold);
    color: var(--color-gold-light);
}

/* Typing indicator */
.typing-indicator { display: inline-flex; align-items: center; gap: 4px; padding: 6px 12px; }
.typing-indicator span {
    width: 6px; height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: typing-anim 1.4s infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-anim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.chatbot-input-area {
    background: var(--dark-800);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-input {
    flex-grow: 1;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    outline: none; border: none; background: none;
    font-family: var(--font-body);
}
.chatbot-input::placeholder { color: rgba(255,255,255,0.2); }

.chatbot-send-btn {
    color: var(--color-gold);
    cursor: pointer;
    font-size: 1.05rem;
    background: none; border: none;
    padding: 4px;
    transition: all 0.2s ease;
}
.chatbot-send-btn:hover { color: var(--color-gold-light); transform: scale(1.15); }

/* Launcher tooltip */
.chatbot-tooltip-bubble {
    position: absolute;
    right: 76px; top: 6px;
    background: var(--dark-700);
    border: var(--border-gold);
    padding: 10px 16px;
    border-radius: 2px;
    width: 195px;
    opacity: 0; visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-gold);
    pointer-events: none;
}
.chatbot-tooltip-bubble::after {
    content: '';
    position: absolute;
    right: -5px; top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 9px; height: 9px;
    background: var(--dark-700);
    border-top: var(--border-gold);
    border-right: var(--border-gold);
}
.floating-chatbot-launcher:hover .chatbot-tooltip-bubble {
    opacity: 1; visibility: visible; transform: translateX(0);
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.custom-toast {
    position: fixed;
    bottom: 32px; left: 32px;
    background: var(--dark-700);
    border: 1px solid var(--color-green);
    border-radius: 2px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 1200;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: translateY(100px);
    opacity: 0; visibility: hidden;
    transition: var(--transition-normal);
    width: 320px;
}
.custom-toast.show { transform: translateY(0); opacity: 1; visibility: visible; }
.custom-toast.error { border-color: var(--color-red); }

.toast-content { display: flex; align-items: center; gap: 16px; }
.toast-icon { font-size: 1.5rem; color: var(--color-green); }
.custom-toast.error .toast-icon { color: var(--color-red); }
.toast-text { display: flex; flex-direction: column; }
.toast-title { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: #ffffff; }
.toast-desc { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.toast-close { font-size: 1.2rem; color: rgba(255,255,255,0.3); cursor: pointer; }
.toast-close:hover { color: #ffffff; }

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal="delay-1"] { transition-delay: 0.12s; }
[data-reveal="delay-2"] { transition-delay: 0.24s; }
[data-reveal="delay-3"] { transition-delay: 0.36s; }

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes floating-anim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes pulse-anim {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes zoom-in-anim {
    from { transform: translate(-50%, -45%) scale(0.93); opacity: 0; }
    to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.animate-fade-in { animation: fade-in-keyframes 0.9s ease-out forwards; }

.animate-slide-up {
    opacity: 0;
    animation: slide-up-keyframes 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.animate-slide-up-delay {
    opacity: 0;
    animation: slide-up-keyframes 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.animate-slide-up-delay-2 {
    opacity: 0;
    animation: slide-up-keyframes 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@keyframes fade-in-keyframes {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
    .container { padding: 0 32px; }
    .hero-title { font-size: 3.2rem; }
}

@media (max-width: 1024px) {
    .proof-grid { gap: 24px; }
    .proof-sep { display: none; }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 56px;
        text-align: center;
        padding-top: 40px;
    }
    .hero-actions, .hero-metrics { justify-content: center; }
    .hero-eyebrow { justify-content: center; }
    .hero-description { margin: 0 auto 44px; }
    .hero-visual { order: -1; }

    .catalog-section .section-header {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        text-align: center;
    }

    .calculator-box { grid-template-columns: 1fr; }
    .calculator-inputs { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }

    .contact-grid { grid-template-columns: 1fr; gap: 48px; }

    .footer-container {
        grid-template-columns: 1.5fr 1fr;
        gap: 40px;
    }
    .footer-legal { grid-column: span 2; }
}

@media (max-width: 768px) {
    .announcement-bar { display: none; }
    .main-header { top: 0; }
    .hero-section { padding-top: 100px; }

    .social-proof-strip { padding: 20px 0; }
    .proof-grid { gap: 16px; justify-content: space-around; }
    .proof-item { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
    .proof-icon { font-size: 1.25rem; }
    .proof-number { font-size: 1.15rem; }

    .mobile-menu-toggle { display: block; z-index: 1001; }

    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: var(--dark-900);
        border-left: 1px solid rgba(201,146,42,0.15);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        z-index: 1000;
        transition: var(--transition-normal);
    }
    .nav-menu.active { right: 0; }

    .header-whatsapp-btn { display: none; }

    .hero-title { font-size: 2.6rem; }
    .pillars-grid { grid-template-columns: 1fr; }

    .catalog-tabs {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
    }
    .tab-btn { flex: 0 0 auto; }
    .catalog-grid { grid-template-columns: 1fr; }

    .form-row-2 { grid-template-columns: 1fr; }

    .footer-container { grid-template-columns: 1fr; }
    .footer-legal { grid-column: span 1; }
    .footer-bottom-container { flex-direction: column; gap: 12px; text-align: center; }

    .floating-whatsapp-widget { bottom: 96px; right: 24px; }
    .whatsapp-tooltip { display: none !important; }

    .floating-chatbot-container { bottom: 24px; right: 24px; }
    .chatbot-window {
        position: fixed;
        top: 0; left: 0;
        width: 100vw; height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        bottom: 0; z-index: 10002;
        transform: translateY(100vh);
    }
    .chatbot-window.active { transform: translateY(0); }
    .chatbot-tooltip-bubble { display: none !important; }

    .custom-toast { width: calc(100% - 48px); left: 24px; bottom: 24px; }
    .reclamaciones-dialog { height: 100vh; max-height: 100vh; border-radius: 0; }
}

