/* ==========================================
   VIDAYOUNG - ESTILOS EXACTOS DEL EJEMPLO
   Fondos y colores idénticos al documento
========================================== */

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0D1117;
    color: #F0F6FC;
    line-height: 1.6;
}

/* Global link reset — kills browser blue/underline */
a {
    color: inherit;
    text-decoration: none;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* ==========================================
   HEADER - EXACTO DEL EJEMPLO
========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 17, 23, 0.95);
    border-bottom: 1px solid #30363D;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 105;
}

.logo img { 
    width: auto; 
    height: 40px; 
}

/* Header actions - botón login + menú */
.header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__login {
    margin: 0;
}

.header__login .btn {
    padding: 8px 12px;
    font-size: 12px;
}

/* Mobile menu button */
.menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1E2329;
    color: #F0F6FC;
    border: 1px solid #30363D;
    border-radius: 8px;
    cursor: pointer;
    z-index: 105;
    -webkit-tap-highlight-color: transparent;
    font-size: 22px;
    line-height: 1;
}

/* Desktop */
@media (min-width: 992px) {
    .header__inner {
        padding: 16px 20px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .header__login .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .menu-btn {
        display: none;
    }
}

/* Navigation - Mobile */
.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: #1E2329;
    border-left: 1px solid #30363D;
    padding: 24px 16px;
    transition: right 0.3s ease;
    z-index: 103;
    overflow-y: auto;
}

.nav.active {
    right: 0;
}

.nav__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F0F6FC;
    background: #2D3748;
    border: 1px solid #30363D;
    border-radius: 8px;
    cursor: pointer;
    z-index: 106;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    padding: 0;
}

.nav__close svg {
    width: 22px;
    height: 22px;
    pointer-events: none;
}

.nav__list {
    margin-top: 48px;
    list-style: none;
}

.nav__list li {
    margin-bottom: 4px;
}

.nav__link {
    display: block;
    padding: 16px;
    color: #9CA3AF;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav__link:hover,
.nav__link.active {
    color: #FF8500;
    background: rgba(255, 133, 0, 0.1);
}

.nav__cta {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #30363D;
}

.nav__cta .btn {
    width: 100%;
}

/* Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 102;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Desktop nav */
@media (min-width: 992px) {
    .menu-btn { display: none; }
    .nav__close { display: none; }
    .nav-overlay { display: none !important; }
    
    .nav {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        border: none;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 24px;
        overflow: visible;
    }
    
    .nav__list {
        display: flex;
        align-items: center;
        gap: 4px;
        margin: 0;
    }
    
    .nav__list li { margin: 0; }
    
    .nav__link {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .nav__cta {
        margin: 0;
        padding: 0;
        border: none;
    }
    
    .nav__cta .btn { width: auto; }
}

/* ==========================================
   BUTTONS - EXACTOS DEL EJEMPLO
========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn--primary,
.cta-primary {
    background: linear-gradient(135deg, #FFD60A 0%, #FF8500 100%);
    color: #111111;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

.btn--primary:hover,
.cta-primary:hover { 
    transform: translateY(-2px); 
    color: #111111;
}

.btn--secondary {
    background: #1E2329;
    color: #F0F6FC;
    border: 1px solid #30363D;
}

.btn--secondary:hover { 
    background: #30363D; 
    color: #F0F6FC;
}

.btn--outline,
.cta-secondary {
    background: transparent;
    color: #FFD60A;
    padding: 16px 32px;
    border: 2px solid #FFD60A;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
}

.btn--outline:hover,
.cta-secondary:hover {
    background: #FFD60A;
    color: #111111;
}

.btn--sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #FFD60A 0%, #FF8500 100%);
    color: #111111;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    color: #111111;
}

.whatsapp-btn svg {
    width: 20px;
    height: 20px;
}

/* ==========================================
   HERO - EXACTO DEL EJEMPLO
========================================== */
.hero {
    padding: 120px 20px 80px;
    background: radial-gradient(ellipse at center, rgba(255, 214, 10, 0.12) 0%, transparent 70%);
}

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

.hero__content {
    text-align: left;
}

.hero__badge {
    display: inline-block;
    background: linear-gradient(135deg, #0096C7 0%, #FF8500 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 15px;
    font-weight: 600;
    margin-bottom: 32px;
    box-shadow: 0 0 20px rgba(255, 214, 10, 0.30);
}

.hero__title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero__title span,
.hero-highlight {
    background: linear-gradient(135deg, #FFD60A 0%, #FF8500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__text {
    font-size: 20px;
    color: #9CA3AF;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

@media (min-width: 992px) {
    .hero .container {
        display: grid;
        grid-template-columns: 3fr 2fr;
        gap: 48px;
        align-items: center;
    }
}

@media (max-width: 991px) {
    .hero__title { font-size: 32px; }
    .hero .container {
        display: flex;
        flex-direction: column;
    }
    .hero__content { 
        order: 2; 
        text-align: center;
    }
    .hero__image { order: 1; }
    .hero__text {
        margin-left: auto;
        margin-right: auto;
    }
    .hero__actions {
        justify-content: center;
    }
}

/* ==========================================
   SECTIONS
========================================== */
.section {
    padding: 80px 20px;
    background: #0D1117;
}

.section--alt {
    background: #1E2329;
}

.section__header {
    text-align: center;
    margin-bottom: 48px;
}

.section__header h2,
.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section__header p {
    color: #9CA3AF;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #FF8500;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .section__header h2,
    .section-title { font-size: 28px; }
}

/* ==========================================
   BENEFITS BAR
========================================== */
.benefits {
    padding: 48px 20px;
    background: #1E2329;
    border-top: 1px solid #30363D;
    border-bottom: 1px solid #30363D;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit {
    text-align: center;
    padding: 16px;
}

.benefit__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD60A 0%, #FF8500 100%);
    border-radius: 50%;
    color: #111111;
    box-shadow: 0 0 20px rgba(255, 214, 10, 0.30);
}

.benefit__icon svg {
    width: 28px;
    height: 28px;
}

.benefit__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit__text {
    font-size: 14px;
    color: #9CA3AF;
}

/* ==========================================
   PRODUCT CARDS
========================================== */
.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: linear-gradient(135deg, #1E2329 0%, #2D3748 100%);
    border: 1px solid #30363D;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.product-card:hover {
    border-color: #FFD60A;
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(255, 214, 10, 0.30);
}

.product-card__image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #FF8500 0%, #FFD60A 100%);
    color: #111111;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
}

.product-card__body {
    padding: 24px;
}

.product-card__category {
    font-size: 12px;
    font-weight: 600;
    color: #FF8500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-card__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-card__desc {
    font-size: 14px;
    color: #9CA3AF;
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-card__benefits {
    margin-bottom: 16px;
    list-style: none;
}

.product-card__benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #9CA3AF;
    margin-bottom: 4px;
}

.product-card__benefits li svg {
    width: 14px;
    height: 14px;
    color: #238636;
}

.product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #FF8500;
    text-decoration: none;
}

.product-card__link:hover {
    color: #FFD60A;
}

.product-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.product-card__link:hover svg {
    transform: translateX(4px);
}

/* ==========================================
   TESTIMONIALS
========================================== */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 48px auto 0;
}

.testimonial-card {
    background: linear-gradient(135deg, #1E2329 0%, #2D3748 100%);
    border: 1px solid #30363D;
    border-radius: 16px;
    padding: 32px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 48px;
    color: #FF8500;
    opacity: 0.3;
}

.testimonial-card__quote {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #30363D;
    border: 2px solid #FFD60A;
    overflow: hidden;
}

.testimonial-card__name {
    font-weight: 600;
}

.testimonial-card__role {
    color: #FFD60A;
    font-size: 14px;
}

/* ==========================================
   VIDEO SECTION
========================================== */
.video-section .container {
    display: grid;
    gap: 48px;
}

@media (min-width: 992px) {
    .video-section .container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.video-section__content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.video-section__text {
    font-size: 18px;
    color: #9CA3AF;
    margin-bottom: 24px;
    line-height: 1.6;
}

.video-section__list {
    margin-bottom: 24px;
    list-style: none;
}

.video-section__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #9CA3AF;
    font-size: 16px;
}

.video-section__list li svg {
    width: 20px;
    height: 20px;
    color: #238636;
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    background: #1E2329;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #30363D;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================
   STORY / FEATURES (PASOS)
========================================== */
.story__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 48px auto;
}

.story__feature {
    background: linear-gradient(135deg, #1E2329 0%, #2D3748 100%);
    border: 1px solid #30363D;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
}

.story__feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD60A 0%, #FF8500 100%);
    color: #111111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(255, 214, 10, 0.30);
}

.story__feature-icon svg {
    width: 28px;
    height: 28px;
}

.story__feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.story__feature-text {
    color: #9CA3AF;
    font-size: 14px;
    line-height: 1.6;
}

/* ==========================================
   CTA FINAL - EXACTO DEL EJEMPLO
========================================== */
.cta {
    padding: 80px 20px;
    background: radial-gradient(ellipse at center, rgba(255, 214, 10, 0.15) 0%, transparent 70%);
    text-align: center;
}

.cta h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.cta p {
    font-size: 20px;
    color: #9CA3AF;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .cta h2 { font-size: 32px; }
}

/* ==========================================
   PRODUCT DETAIL
========================================== */
.product-detail {
    padding-top: 100px;
}

.product-detail__breadcrumb {
    font-size: 14px;
    color: #9CA3AF;
    margin-bottom: 24px;
}

.product-detail__breadcrumb a {
    color: #9CA3AF;
    text-decoration: none;
}

.product-detail__breadcrumb a:hover {
    color: #FF8500;
}

.product-detail .container {
    display: grid;
    gap: 32px;
}

@media (min-width: 992px) {
    .product-detail .container {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.product-detail__image {
    aspect-ratio: 1/1;
    background: #1E2329;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #30363D;
}

.product-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail__category {
    font-size: 14px;
    font-weight: 600;
    color: #FF8500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-detail__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-detail__subtitle {
    font-size: 18px;
    color: #9CA3AF;
    margin-bottom: 16px;
}

.product-detail__desc {
    color: #9CA3AF;
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-detail__info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #1E2329 0%, #2D3748 100%);
    border: 1px solid #30363D;
    border-radius: 12px;
    margin-bottom: 24px;
}

.product-detail__info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 133, 0, 0.15);
    border-radius: 8px;
    color: #FF8500;
}

.product-detail__info-icon svg {
    width: 24px;
    height: 24px;
}

.product-detail__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ==========================================
   TABS - MOBILE FIX
========================================== */
.tabs {
    margin-top: 48px;
}

.tabs__nav {
    display: flex;
    border-bottom: 1px solid #30363D;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -20px;
    padding: 0 20px;
}

.tabs__nav::-webkit-scrollbar {
    display: none;
}

.tabs__btn {
    padding: 16px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #9CA3AF;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.tabs__btn:hover {
    color: #F0F6FC;
}

.tabs__btn.active {
    color: #FF8500;
    border-bottom-color: #FF8500;
}

.tabs__content {
    display: none;
    padding: 24px 0;
}

.tabs__content.active {
    display: block;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #21262D;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li svg {
    width: 20px;
    height: 20px;
    color: #238636;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================
   CONTACT
========================================== */
.contact__grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 992px) {
    .contact__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact__info,
.contact__form {
    background: linear-gradient(135deg, #1E2329 0%, #2D3748 100%);
    border: 1px solid #30363D;
    border-radius: 16px;
    padding: 32px;
}

.contact__info h3,
.contact__form h3 {
    font-size: 20px;
    margin-bottom: 24px;
}

.contact__item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact__item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 133, 0, 0.15);
    border-radius: 8px;
    color: #FF8500;
    flex-shrink: 0;
}

.contact__item-icon svg {
    width: 20px;
    height: 20px;
}

.contact__item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.contact__item span {
    font-size: 14px;
    color: #9CA3AF;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: #0D1117;
    border: 1px solid #30363D;
    border-radius: 8px;
    color: #F0F6FC;
    font-size: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF8500;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6B7280;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ==========================================
   FAQ - EXACTO DEL EJEMPLO
========================================== */
.faq-container {
    max-width: 800px;
    margin: 48px auto 0;
}

.faq-item {
    background: linear-gradient(135deg, #1E2329 0%, #2D3748 100%);
    border: 1px solid #30363D;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #F0F6FC;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover { 
    color: #FF8500; 
}

.faq-icon {
    font-size: 20px;
    color: #FF8500;
    transition: transform 0.3s;
}

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

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

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

.faq-answer-content {
    padding: 0 24px 24px;
    color: #9CA3AF;
    line-height: 1.6;
}

/* ==========================================
   FOOTER - EXACTO DEL EJEMPLO
========================================== */
.footer {
    background: #1E2329;
    border-top: 1px solid #30363D;
    padding: 40px 20px;
}

.footer__grid {
    display: grid;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.footer__brand .logo {
    margin-bottom: 16px;
}

.footer__brand > p {
    font-size: 14px;
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 8px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2D3748;
    border: 1px solid #30363D;
    border-radius: 8px;
    color: #9CA3AF;
    text-decoration: none;
}

.footer__social a:hover {
    color: #FFD60A;
    border-color: #FFD60A;
}

.footer__social a svg {
    width: 18px;
    height: 18px;
}

.footer__column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 8px;
}

.footer__links a,
.footer__links li {
    font-size: 14px;
    color: #9CA3AF;
    text-decoration: none;
}

.footer__links a:hover {
    color: #FFD60A;
}

.footer__bottom {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #30363D;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 13px;
    color: #6B7280;
}

.footer__bottom a {
    color: #6B7280;
    text-decoration: none;
}

.footer__bottom a:hover {
    color: #FFD60A;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ==========================================
   LEGAL PAGES
========================================== */
.legal-page {
    padding: 100px 20px 48px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 24px;
}

.legal-page p {
    color: #9CA3AF;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page h2 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 16px;
}


/* ==========================================
   BLOG - CARDS (listing page + related)
   Extreme specificity to override ANY defaults
========================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 20px;
}

/* --- Card base --- */
a.blog-card,
a.blog-card:link,
a.blog-card:visited,
a.blog-card:hover,
a.blog-card:active,
a.blog-card:focus {
    display: flex !important;
    flex-direction: column !important;
    background: #161B22 !important;
    border: 1px solid #30363D !important;
    border-radius: 16px !important;
    padding: 32px 28px 28px !important;
    text-decoration: none !important;
    color: inherit !important;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Top accent line */
a.blog-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF8500, #FFD60A);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hover */
a.blog-card:hover {
    border-color: rgba(255, 133, 0, 0.5) !important;
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 24px rgba(255,133,0,0.08);
    background: #1A2030 !important;
}

a.blog-card:hover::before {
    opacity: 1;
}

/* --- Card children — kill ALL inherited link styles --- */
a.blog-card *,
a.blog-card:link *,
a.blog-card:visited *,
a.blog-card:hover *,
a.blog-card:active * {
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
}

/* Category badge */
a.blog-card .blog-card__category {
    display: inline-block !important;
    width: fit-content;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #FF8500 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px;
    padding: 5px 12px;
    background: rgba(255, 133, 0, 0.1);
    border-radius: 6px;
    margin-bottom: 16px;
}

/* Title */
a.blog-card .blog-card__title {
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #F0F6FC !important;
    line-height: 1.35;
    margin-bottom: 12px;
}

/* Description */
a.blog-card .blog-card__desc {
    font-size: 14px !important;
    color: #8B949E !important;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

/* Link CTA */
a.blog-card .blog-card__link {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #FF8500 !important;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-top: auto;
    transition: color 0.2s;
}

a.blog-card:hover .blog-card__link {
    color: #FFD60A !important;
}

a.blog-card .blog-card__link svg {
    width: 16px; height: 16px;
    transition: transform 0.3s;
}

a.blog-card:hover .blog-card__link svg {
    transform: translateX(5px);
}

/* ==========================================
   BLOG - RELATED ARTICLES SECTION
========================================== */
.blog-related-section {
    background: #0F1318;
    border-top: 1px solid #21262D;
    padding: 72px 20px;
}

.blog-related-section .section__header {
    margin-bottom: 40px;
}

/* ==========================================
   BLOG - ARTICLE PAGE
========================================== */
.blog-article {
    padding-top: 120px;
    padding-bottom: 48px;
}

.blog-article > .container {
    max-width: 780px;
}

/* Breadcrumb */
.blog-breadcrumb {
    font-size: 13px;
    color: #484F58;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #21262D;
}

.blog-breadcrumb a {
    color: #8B949E;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-breadcrumb a:hover {
    color: #FF8500;
}

.blog-breadcrumb span {
    color: #484F58;
}

/* Eyebrow inside article */
.blog-article .eyebrow {
    margin-bottom: 16px;
}

/* Title */
.blog-article .hero__title {
    margin-bottom: 28px;
    line-height: 1.2;
}

/* Lead */
.blog-article .lead {
    font-size: 18px;
    color: #8B949E;
    line-height: 1.8;
    margin-bottom: 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid #21262D;
}

/* Headings */
.blog-article h2 {
    font-size: 26px;
    font-weight: 700;
    color: #F0F6FC;
    margin-top: 52px;
    margin-bottom: 18px;
    line-height: 1.3;
}

.blog-article h3 {
    font-size: 20px;
    font-weight: 600;
    color: #E6EDF3;
    margin-top: 32px;
    margin-bottom: 14px;
}

/* Paragraphs */
.blog-article p {
    color: #8B949E;
    line-height: 1.85;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Lists */
.blog-article ul,
section.blog-article ul {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 0 28px 0 !important;
    padding: 0 !important;
}

.blog-article ul li,
section.blog-article ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #8B949E;
    line-height: 1.7;
    list-style: none !important;
    list-style-type: none !important;
}

.blog-article ul li::marker {
    content: '' !important;
    display: none !important;
    font-size: 0 !important;
}

.blog-article ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: #FF8500;
    font-weight: 700;
}

/* Blockquote */
.blog-article blockquote {
    margin: 36px 0;
    padding: 28px 32px;
    background: rgba(255, 133, 0, 0.05);
    border-left: 4px solid #FF8500;
    border-radius: 0 14px 14px 0;
    font-style: italic;
    color: #E6EDF3;
    line-height: 1.75;
    font-size: 17px;
}

/* Strong */
.blog-article strong {
    color: #F0F6FC;
    font-weight: 600;
}

/* Links inside article content — NOT cards, NOT buttons */
.blog-article a:not(.blog-card):not(.btn):not(.whatsapp-btn) {
    color: #FF8500;
    text-decoration: underline;
    text-decoration-color: rgba(255,133,0,0.3);
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.blog-article a:not(.blog-card):not(.btn):not(.whatsapp-btn):hover {
    color: #FFD60A;
}

/* Breadcrumb links override — no underline */
.blog-breadcrumb a {
    text-decoration: none !important;
}

/* CTA button inside article */
.blog-article .btn,
.blog-article .whatsapp-btn {
    text-decoration: none !important;
}

/* ==========================================
   BLOG INTERLINKING SECTION
========================================== */
.interlinking {
    padding: 48px 20px;
    background: #0F1318;
    border-top: 1px solid #21262D;
    border-bottom: 1px solid #21262D;
}

.interlinking .container {
    max-width: 800px;
}

.interlinking h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.interlinking p {
    color: #8B949E;
    line-height: 1.6;
}

.interlinking a {
    color: #FF8500;
    text-decoration: none;
    font-weight: 600;
}

.interlinking a:hover {
    color: #FFD60A;
}

/* ==========================================
   SIGNIN - LOGIN PAGE
========================================== */
.login-section {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.login-card {
    max-width: 460px;
    margin: 0 auto;
    background: #161B22;
    border: 1px solid #30363D;
    border-radius: 20px;
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF8500, #FFD60A);
}

.login-card__header {
    text-align: center;
    margin-bottom: 40px;
}

.login-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 133, 0, 0.1);
    border: 1px solid rgba(255, 133, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #FF8500;
}

.login-card__icon svg {
    width: 28px; height: 28px;
}

.login-card__header h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #F0F6FC;
}

.login-card__header p {
    font-size: 15px;
    color: #8B949E;
}

/* Form fields */
.login-form .form-group {
    margin-bottom: 22px;
}

.login-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #C9D1D9;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.login-form input[type="text"],
.login-form input[type="password"],
.login-form input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    background: #0D1117;
    border: 1px solid #30363D;
    border-radius: 10px;
    color: #F0F6FC;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.login-form input:focus {
    border-color: #FF8500;
    box-shadow: 0 0 0 3px rgba(255, 133, 0, 0.15);
}

.login-form input::placeholder {
    color: #484F58;
}

/* Password field with toggle */
.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 52px;
}

.password-toggle {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6B7280;
    cursor: pointer;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    border-radius: 6px;
}

.password-toggle:hover {
    color: #FF8500;
    background: rgba(255,133,0,0.08);
}

.password-toggle svg {
    width: 20px; height: 20px;
}

/* Forgot + Remember row */
.login-form__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    font-size: 13px;
}

.login-form__checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #8B949E;
}

.login-form__checkbox input[type="checkbox"] {
    width: 16px; height: 16px;
    accent-color: #FF8500;
    cursor: pointer;
}

.login-form__forgot {
    color: #8B949E;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 13px;
}

.login-form__forgot:hover {
    color: #FF8500;
}

/* Submit button */
.login-form__submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #FF8500 0%, #E07000 100%);
    color: #FFF;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.login-form__submit:hover {
    background: linear-gradient(135deg, #FF9520 0%, #FF8500 100%);
    box-shadow: 0 8px 28px rgba(255, 133, 0, 0.35);
    transform: translateY(-2px);
}

.login-form__submit:active {
    transform: translateY(0);
}

.login-form__submit svg {
    width: 18px; height: 18px;
}

/* Alert messages */
.login-alert {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.login-alert--error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #FCA5A5;
}

.login-alert--success {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #86EFAC;
}

/* JS validation inline errors */
.login-field-error {
    padding: 8px 14px;
    margin-top: 8px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    font-size: 13px;
    color: #FCA5A5;
}

/* ==========================================
   UTILITIES
========================================== */
.text-center { text-align: center; }
.text-muted { color: #9CA3AF; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 24px; }
.mt-xl { margin-top: 32px; }
.mt-2xl { margin-top: 48px; }
.mb-md { margin-bottom: 16px; }
.mb-lg { margin-bottom: 24px; }
.btn--block { width: 100%; }

/* ==========================================
   ANIMATIONS
========================================== */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .story__features { grid-template-columns: 1fr; }
    
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .blog-article {
        padding-top: 100px;
    }
    
    .blog-article .hero__title {
        font-size: 26px;
    }
    
    .blog-article h2 {
        font-size: 20px;
        margin-top: 36px;
    }
    
    .blog-related-section {
        padding: 48px 0;
    }
    
    .login-card {
        padding: 40px 24px;
        margin: 0 12px;
        border-radius: 16px;
    }
    
    .login-section {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .login-form__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .footer__grid {
        text-align: center;
    }
    
    .footer__social {
        justify-content: center;
    }
}
