/* ============================================
   FUENTES GROUP — GLOBAL STYLES
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

:root {
    --bg: #000000;
    --bg-elevated: #0a0a0a;
    --bg-card: #111111;
    --accent: #ffffff;
    --accent-muted: rgba(255, 255, 255, 0.7);
    --accent-dim: rgba(255, 255, 255, 0.4);
    --border: rgba(255, 255, 255, 0.08);
    --blue: #3b82f6;
    --gold: #d4a537;
    --gold-light: #e8c05a;
}

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--accent);
    line-height: 1.5;
    font-size: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

/* === FADE IN ANIMATION === */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HEADER
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #000000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
    padding: 0 48px;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-muted);
    transition: all 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

nav a:hover,
nav a.active {
    color: var(--accent);
}

nav a:hover::after,
nav a.active::after {
    width: 80%;
}

nav a.btn {
    margin-left: 16px;
    padding: 10px 24px;
    background: var(--gold);
    color: #000;
    font-weight: 600;
    border-radius: 4px;
}

nav a.btn::after {
    display: none;
}

nav a.btn:hover {
    background: var(--gold-light);
}

/* === HAMBURGER === */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: rgba(212, 165, 55, 0.15);
    border: 2px solid var(--gold);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--gold);
    margin: 3px 0;
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    padding: 32px 24px;
    z-index: 1000;
    display: none;
    flex-direction: column;
    gap: 8px;
    transform: translateY(-100%);
    transition: transform 0.3s;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    display: block;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--accent-muted);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--gold);
    background: rgba(212, 165, 55, 0.1);
}

.mobile-menu a.btn {
    margin-top: 16px;
    background: var(--gold);
    color: #000;
    text-align: center;
    border-radius: 6px;
    border: none;
    font-weight: 600;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 165, 55, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-white {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 120px 0 80px;
    position: relative;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%),
        url('https://images.unsplash.com/photo-1524813686514-a57563d77965?w=1600&h=900&fit=crop') center/cover no-repeat;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero h1 em {
    display: block;
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.hero-desc {
    font-size: 16px;
    color: var(--accent-muted);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-desc strong {
    color: var(--accent);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--accent-muted);
}

.hero-badge-icon {
    width: 28px;
    height: 28px;
    background: rgba(212, 165, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--accent-muted);
    font-size: 12px;
    animation: bounce 2s infinite;
}

.scroll-indicator-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--accent-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator-icon::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-muted);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-6px);
    }
}

@keyframes scroll {

    0%,
    100% {
        opacity: 1;
        top: 6px;
    }

    50% {
        opacity: 0.3;
        top: 14px;
    }
}

/* ============================================
   TRUST BANNER
   ============================================ */
.trust-banner {
    background: linear-gradient(90deg, rgba(212, 165, 55, 0.1), transparent 50%, rgba(212, 165, 55, 0.1));
    border-top: 1px solid rgba(212, 165, 55, 0.2);
    border-bottom: 1px solid rgba(212, 165, 55, 0.2);
    padding: 16px 0;
}

.trust-banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-banner-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--accent-muted);
}

.trust-banner-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.trust-banner-item strong {
    color: var(--gold);
}

/* ============================================
   ★ STAR SERVICE SECTION
   ============================================ */
.star-service {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1628 0%, #0d0d1a 50%, #000 100%);
    position: relative;
    overflow: hidden;
}

.star-service::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.star-service-inner {
    position: relative;
    z-index: 2;
}

.star-service-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    padding: 8px 24px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 40px;
    animation: pulse-glow 2s infinite;
}

.star-service-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.star-service-text h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.star-service-text h2 em {
    display: block;
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.star-service-desc {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: var(--accent);
}

.star-service-subdesc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--accent-muted);
    margin-bottom: 28px;
}

.star-service-list {
    list-style: none;
    margin-bottom: 32px;
}

.star-service-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.star-service-list li:last-child {
    border-bottom: none;
}

.star-check {
    width: 24px;
    height: 24px;
    background: rgba(212, 165, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.star-service-list li div strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.star-service-list li div span {
    font-size: 13px;
    color: var(--accent-dim);
}

.star-service-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.star-visual-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 165, 55, 0.25);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.star-visual-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.star-visual-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.star-visual-card>p {
    font-size: 14px;
    color: var(--accent-muted);
    line-height: 1.6;
    margin-bottom: 28px;
}

.star-visual-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.star-stat {
    text-align: center;
}

.star-stat-value {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.star-stat-label {
    font-size: 12px;
    color: var(--accent-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.star-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
}

.star-phone-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(212, 165, 55, 0.4);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.trust-item-value {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 4px;
}

.trust-item-label {
    font-size: 13px;
    color: var(--accent-dim);
}

/* ============================================
   SECTIONS SHARED
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.section-header p {
    color: var(--accent-muted);
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
    padding: 80px 0;
    background: #f8f9fa;
    color: #1a1a2e;
}

.features .section-header h2 {
    color: #1a1a2e;
}

.features .section-header p {
    color: #5a5a6e;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 32px 28px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover,
.feature-card.active {
    border-color: #1a1a2e;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--gold);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #6a6a7a;
    line-height: 1.6;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
    padding: 80px 0;
    background: #0a1628;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-badge {
    display: inline-block;
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.3s;
}

.product-card:nth-child(2) .product-badge {
    border-color: #3b82f6;
    color: #3b82f6;
}

.product-card:nth-child(3) .product-badge {
    border-color: #22c55e;
    color: #22c55e;
}

.product-card:nth-child(4) .product-badge {
    border-color: #a855f7;
    color: #a855f7;
}

.product-card:hover .product-badge {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.product-card>p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    line-height: 1.6;
}

.product-details {
    list-style: none;
    margin-bottom: 24px;
}

.product-details li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-details li:last-child {
    border-bottom: none;
}

.product-details .label {
    color: rgba(255, 255, 255, 0.5);
}

.product-details .value {
    font-weight: 600;
    color: var(--gold);
}

.product-card .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 14px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   PROCESS
   ============================================ */
.process {
    padding: 80px 0 60px;
    background: #f8f9fa;
    color: #1a1a2e;
}

.process .section-header h2 {
    color: #1a1a2e;
}

.process .section-header p {
    color: #5a5a6e;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 60px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: #d0d0d0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 12px;
}

.process-num {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.process-step:first-child .process-num {
    background: #1a1a2e;
    color: #fff;
}

.process-step:not(:first-child) .process-num {
    background: #fff;
    border: 2px solid #1a1a2e;
    color: #1a1a2e;
}

.process-step:last-child .process-num {
    background: var(--gold);
    border: none;
    color: #000;
}

.process-step h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: #6a6a7a;
    line-height: 1.5;
    max-width: 180px;
    margin: 0 auto;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 48px 0;
    border-top: 1px solid #e0e0e0;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    color: #1a1a2e;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8a8a9a;
    font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-box {
    background: #0a1628;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cta-text {
    padding: 60px;
    color: #fff;
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-text h2 em {
    display: block;
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.cta-text>p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-list {
    list-style: none;
}

.cta-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-list-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(212, 165, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--gold);
}

.cta-form {
    background: #fff;
    padding: 48px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6a6a7a;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #1a1a2e;
    font-family: inherit;
    font-size: 14px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0a0b0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a2e;
    background: #fff;
}

.form-group select option {
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cta-form .btn-gold {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    padding: 16px;
}

.form-disclaimer {
    margin-top: 16px;
    font-size: 11px;
    color: #8a8a9a;
    line-height: 1.5;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a, #000);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 165, 55, 0.3);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-size: 15px;
    line-height: 1.8;
    color: var(--accent-muted);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-quote::before {
    content: '"';
    font-size: 48px;
    color: var(--gold);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 0;
    display: block;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #000;
}

.testimonial-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 12px;
    color: var(--accent-dim);
}

.testimonial-stars {
    position: absolute;
    top: 32px;
    right: 32px;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 99;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 32px rgba(212, 165, 55, 0.4);
    animation: pulse-glow 2s infinite;
}

.floating-cta a:hover {
    transform: scale(1.05);
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(212, 165, 55, 0.4);
    }

    50% {
        box-shadow: 0 8px 48px rgba(212, 165, 55, 0.6);
    }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 48px 0 24px;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--accent-dim);
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-dim);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 14px;
    color: var(--accent-muted);
    transition: color 0.2s;
    display: block;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-legal {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    font-size: 12px;
    color: var(--accent-dim);
    line-height: 1.7;
}

.footer-legal a {
    color: var(--blue);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--accent-dim);
}

/* ============================================
   PAGE HERO (subpages)
   ============================================ */
.page-hero {
    padding: 160px 0 60px;
    background: linear-gradient(180deg, #0a1628, #000);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 16px;
}

.page-hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.page-hero p {
    font-size: 18px;
    color: var(--accent-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   BLOG
   ============================================ */
.blog-section {
    padding: 80px 0;
}

.featured-post {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.featured-image {
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.featured-post:hover .featured-image img {
    transform: scale(1.03);
}

.featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-tag {
    display: inline-block;
    background: rgba(212, 165, 55, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    width: fit-content;
}

.featured-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
}

.featured-content h2 a:hover {
    color: var(--gold);
}

.post-meta {
    font-size: 13px;
    color: var(--accent-dim);
    margin-bottom: 20px;
}

.featured-content p {
    font-size: 16px;
    color: var(--accent-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.read-more {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    color: var(--gold-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: #0a0a0a;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.blog-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 24px;
}

.blog-card .post-tag {
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card h3 a:hover {
    color: var(--gold);
}

.blog-card p {
    font-size: 14px;
    color: var(--accent-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card .post-meta {
    margin-bottom: 0;
}

/* Categories */
.categories-section {
    padding: 60px 0;
    background: #0a0a0a;
}

.categories-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 32px;
}

.categories-section h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background: #111;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}

.category-card:hover {
    border-color: var(--gold);
    background: rgba(212, 165, 55, 0.05);
}

.category-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.category-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.category-card span {
    font-size: 13px;
    color: var(--accent-dim);
}

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a1628, #000);
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.newsletter-box h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.newsletter-box p {
    color: var(--accent-muted);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--accent);
    font-family: inherit;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: var(--accent-dim);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter-form .btn-gold {
    flex-shrink: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-info h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.contact-info>p {
    color: var(--accent-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.contact-details li:first-child {
    padding-top: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 165, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-text p {
    font-size: 15px;
    color: var(--accent-muted);
}

.contact-text a {
    color: var(--gold);
    transition: color 0.2s;
}

.contact-text a:hover {
    color: var(--gold-light);
}

.contact-form-box {
    background: #0a0a0a;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.contact-form-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-form-box .form-group input,
.contact-form-box .form-group select,
.contact-form-box .form-group textarea {
    background: #111;
    border: 1px solid var(--border);
    color: var(--accent);
}

.contact-form-box .form-group input::placeholder,
.contact-form-box .form-group textarea::placeholder {
    color: var(--accent-dim);
}

.contact-form-box .form-group input:focus,
.contact-form-box .form-group select:focus,
.contact-form-box .form-group textarea:focus {
    border-color: var(--gold);
}

.contact-form-box .form-group select option {
    background: #111;
}

.contact-form-box .form-group label {
    color: var(--accent-dim);
}

.contact-form-box .btn-gold {
    width: 100%;
    justify-content: center;
    padding: 16px;
    margin-top: 8px;
}

.contact-form-box .form-disclaimer {
    color: var(--accent-dim);
}

/* Map */
.map-section {
    padding: 0 0 80px;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    border: 1px solid var(--border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) contrast(1.1);
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
}

.faq-section h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.faq-item {
    background: #111;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.faq-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 14px;
    color: var(--accent-muted);
    line-height: 1.6;
}

/* ============================================
   PRODUCTOS PAGE
   ============================================ */
.product-detail {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.product-detail:nth-child(even) {
    background: #0a0a0a;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.product-badge-large {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-badge-large.blue {
    border-color: #3b82f6;
    color: #3b82f6;
}

.product-badge-large.green {
    border-color: #22c55e;
    color: #22c55e;
}

.product-badge-large.purple {
    border-color: #a855f7;
    color: #a855f7;
}

.product-detail h2 {
    font-size: 36px;
    font-weight: 600;
}

.product-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.product-description p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--accent-muted);
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    margin-top: 24px;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.product-features li:last-child {
    border-bottom: none;
}

.feature-check {
    width: 20px;
    height: 20px;
    background: rgba(212, 165, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text strong {
    display: block;
    margin-bottom: 4px;
}

.feature-text span {
    font-size: 13px;
    color: var(--accent-dim);
}

.product-sidebar {
    background: #111;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}

.sidebar-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-dim);
    margin-bottom: 24px;
}

.sidebar-stat {
    margin-bottom: 24px;
}

.sidebar-stat-value {
    font-size: 32px;
    font-weight: 600;
    color: var(--gold);
}

.sidebar-stat-label {
    font-size: 13px;
    color: var(--accent-dim);
}

.sidebar-list {
    list-style: none;
    margin-bottom: 24px;
}

.sidebar-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

/* ============================================
   NOSOTROS PAGE
   ============================================ */
.about-intro {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.about-text p {
    color: var(--accent-muted);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 16px;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    background: #111;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: rgba(212, 165, 55, 0.3);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: var(--accent-muted);
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: #000;
}

.team-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-card .team-role {
    font-size: 13px;
    color: var(--gold);
    margin-bottom: 8px;
}

.team-card p {
    font-size: 14px;
    color: var(--accent-muted);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    .hero {
        padding: 100px 0 120px;
    }

    .features-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .cta-box {
        grid-template-columns: 1fr;
    }

    .cta-text {
        padding: 40px;
    }

    .footer-top,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .star-service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .star-service-text h2 {
        font-size: 32px;
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* ============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
    header {
        background: #000000 !important;
    }

    .hamburger {
        display: flex;
    }

    nav {
        display: none !important;
    }

    .mobile-menu {
        display: flex;
    }

    .header-inner {
        padding: 0 20px;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .hero-badges {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }

    .trust-banner-content {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .trust-banner-item {
        width: 100%;
        justify-content: flex-start;
    }

    .star-service {
        padding: 60px 0;
    }

    .star-service-text h2 {
        font-size: 26px;
    }

    .star-service-desc {
        font-size: 16px;
    }

    .star-service-buttons {
        flex-direction: column;
    }

    .star-service-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .star-visual-stats {
        gap: 12px;
    }

    .star-stat-value {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .process-timeline {
        flex-direction: column;
        gap: 24px;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        text-align: left;
        display: flex;
        gap: 16px;
        padding: 0;
    }

    .process-num {
        margin: 0;
        flex-shrink: 0;
    }

    .process-step p {
        max-width: 100%;
        margin: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-box {
        grid-template-columns: 1fr;
    }

    .cta-text {
        padding: 32px 24px;
    }

    .cta-text h2 {
        font-size: 28px;
    }

    .cta-form {
        padding: 32px 24px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-top,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .floating-cta {
        bottom: 16px;
        right: 16px;
        left: 16px;
    }

    .floating-cta a {
        justify-content: center;
        width: 100%;
    }

    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .about-image {
        height: 280px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #111;
    border-top: 1px solid rgba(212, 165, 55, 0.3);
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    display: none;
}

.cookie-banner.visible {
    transform: translateY(0);
    display: block;
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
}

.cookie-banner-text p {
    font-size: 13px;
    color: var(--accent-muted);
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn-accept {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212, 165, 55, 0.3);
}

.cookie-btn-reject {
    padding: 10px 24px;
    background: transparent;
    color: var(--accent-muted);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
    }

    .star-service-badge {
        font-size: 10px;
        padding: 6px 16px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 24px;
    }

    .page-hero h1 {
        font-size: 28px;
    }
}

/* ============================================
   MOBILE BOTTOM TAB BAR
   ============================================ */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: #000;
    border-top: 1px solid rgba(212, 165, 55, 0.3);
    padding: 8px 0;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
}

.mobile-bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.mobile-bottom-nav a svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
}

.mobile-bottom-nav a.active {
    color: var(--gold);
}

.mobile-bottom-nav a.nav-call {
    color: #000;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    width: 52px;
    height: 52px;
    margin-top: -20px;
    justify-content: center;
    gap: 0;
    box-shadow: 0 4px 16px rgba(212, 165, 55, 0.4);
    font-size: 0;
}

.mobile-bottom-nav a.nav-call svg {
    width: 26px;
    height: 26px;
    stroke: #000;
    stroke-width: 2.2;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }

    /* Add padding so content isn't hidden behind bottom nav */
    body {
        padding-bottom: 80px;
    }

    /* Move floating CTA above the bottom nav */
    .floating-cta {
        bottom: 90px;
    }

    /* Move cookie banner above the bottom nav */
    .cookie-banner {
        bottom: 70px;
    }
}