/* ==========================================================================
   CSS Variables & Tokens
   ========================================================================== */
:root {
    /* Colors */
    --color-primary-dark: #0A3D5C;
    --color-primary-dark-hover: #072b42;
    --color-accent-blue: #1B7DB5;
    --color-accent-blue-hover: #15628e;
    --color-cta-red: #E74C3C;
    --color-cta-red-hover: #c0392b;
    --color-white: #FFFFFF;
    --color-bg-light: #F5F7FA;
    --color-text-gray: #6B7280;
    --color-text-main: #1A1A2E;
    --color-whatsapp: #25D366;

    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing & Layout */
    --container-max-width: 1200px;
    --container-padding: 0 24px;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-navbar: 0 2px 20px rgba(0, 0, 0, 0.08);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease-out;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 9999px;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: var(--font-main);
    color: var(--color-text-main);
    scroll-behavior: smooth;
    line-height: 1.5;
}

body {
    background-color: var(--color-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.text-center {
    text-align: center;
}

.bold {
    font-weight: 700;
}

.text-gray {
    color: var(--color-text-gray);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.btn:hover {
    transform: scale(1.02);
}

.btn-primary {
    background-color: var(--color-accent-blue);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-accent-blue-hover);
}

.btn-cta {
    background-color: var(--color-cta-red);
    color: var(--color-white);
}

.btn-cta:hover {
    background-color: var(--color-cta-red-hover);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-text-gray);
    color: var(--color-text-main);
}

.btn-outline:hover {
    border-color: var(--color-text-main);
    background-color: var(--color-bg-light);
}

/* Animations Classes (for JS Intersection Observer) */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.anim-slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.anim-slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.is-visible {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* ==========================================================================
   Components
   ========================================================================== */

/* Top Bar */
.top-bar {
    background-color: #0A3D5C;
    color: #FFFFFF;
    padding: 8px 0;
    font-size: 13px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    transition: color 0.2s ease;
}

.top-bar-item:hover {
    color: #FFFFFF;
}

.top-bar-item i {
    font-size: 14px;
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 4px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-social {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    transition: all 0.2s ease;
}

.top-bar-social:hover {
    color: #FFFFFF;
    transform: scale(1.15);
}

/* Responsive */
@media (max-width: 768px) {

    .top-bar-left span,
    .top-bar-divider {
        display: none;
    }

    .top-bar-left .top-bar-item i {
        font-size: 16px;
    }

    .top-bar-content {
        justify-content: space-between;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    padding: 20px 0;
    z-index: 1000;
    transition: box-shadow var(--transition-base), padding var(--transition-base);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-navbar);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary-dark);
    letter-spacing: -0.5px;
}

.navbar-logo {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 38px;
    }
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-main);
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--color-accent-blue);
}

.hamburger-menu {
    display: none;
    font-size: 24px;
    color: var(--color-text-main);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: transform var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    /* Mobile Menu Active State */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        padding: 20px;
        box-shadow: var(--shadow-md);
        text-align: center;
    }

    .nav-cta.active {
        display: flex;
        position: absolute;
        top: calc(100% + 180px);
        /* Adjust based on menu height */
        left: 0;
        width: 100%;
        justify-content: center;
        padding-bottom: 20px;
        background-color: var(--color-white);
        box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.1);
    }
}

/* ==========================================================================
   Sections
   ========================================================================== */
.bg-light {
    background-color: var(--color-bg-light);
}

.border-radius-sm {
    border-radius: var(--radius-sm);
}

.border-radius-lg {
    border-radius: var(--radius-lg);
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    background-image: url('../images/Gemini_Generated_Image_54otsh54otsh54ot.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* Overlay oscuro semitransparente para que el texto sea legible */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(235, 248, 255, 0.75) 100%);
    z-index: 0;
}

.hero h1 {
    animation: blink-cursor 0.6s step-end infinite;
}

@keyframes blink-cursor {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: #0A3D5C;
    }
}

/* Asegurar que el contenido quede encima del overlay */
.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 0 0 60%;
    max-width: 60%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #EBF8FF;
    /* Light blue */
    color: var(--color-primary-dark);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge i {
    font-size: 16px;
    color: var(--color-accent-blue);
}

.hero h1 {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-text-main);
    letter-spacing: -1px;
}

.hero .subtitle {
    font-size: clamp(16px, 2vw, 18px);
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-whatsapp-outline {
    border-color: var(--color-text-gray);
    color: var(--color-text-main);
    gap: 8px;
}

.btn-whatsapp-outline i {
    font-size: 20px;
}

.btn-whatsapp-outline:hover {
    border-color: var(--color-whatsapp);
    color: var(--color-whatsapp);
    background-color: #F0FDF4;
    /* Light green bg */
}

.hero-image {
    flex: 0 0 40%;
    max-width: 40%;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(10, 61, 92, 0.2);
}

/* Decorative circles */
.image-placeholder::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.image-placeholder::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.image-placeholder i {
    font-size: 72px;
    margin-bottom: 12px;
    opacity: 0.5;
    position: relative;
    z-index: 1;
}

.image-placeholder p {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.4;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Hero Title Typing
   ========================================================================== */
.hero h1 {
    border-right: 3px solid #0A3D5C;
    animation: blink-cursor 0.7s step-end infinite;
}

@keyframes blink-cursor {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: #0A3D5C;
    }
}

/* ==========================================================================
   Logos Marquee / Carousel
   ========================================================================== */
.logos-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.logos-marquee-wrapper::before,
.logos-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.logos-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-light), transparent);
}

.logos-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-light), transparent);
}

.logos-marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marquee-scroll 35s linear infinite;
    width: max-content;
}

.logos-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Logos Section (Original Adjustments) */
.logos-section {
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logos-title {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
    font-weight: 600;
}

.logos-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.logo-item {
    filter: none;
    opacity: 0.85;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    background-color: transparent;
    border-radius: 0;
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.08);
}

.logo-item img {
    height: 45px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.logo-item.brother img {
    height: 45px;
    max-width: 140px;
}

/* ============================
   NUESTRAS SOLUCIONES
   ============================ */
.solutions-section {
    padding: 100px 0;
    background-color: #EBF8FF;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
    color: #1A1A2E;
    letter-spacing: -0.5px;
}

.section-header .subtitle {
    font-size: 17px;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
    color: #6B7280;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 36px 28px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #1B7DB5;
}

.solution-card>i {
    font-size: 36px;
    color: #1B7DB5;
    margin-bottom: 20px;
    display: block;
}

.solution-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1A1A2E;
    line-height: 1.3;
}

.solution-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #6B7280;
    margin-bottom: 16px;
}

.solution-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.solution-bullets li {
    font-size: 13px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
    color: #6B7280;
}

.solution-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1B7DB5;
    font-weight: 700;
}

/* Card especial azul */
.special-card {
    background-color: #1B7DB5 !important;
    border-color: #1B7DB5 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.special-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.special-card::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.special-card:hover {
    background-color: #15628e !important;
    transform: translateY(-4px);
}

.special-card h3 {
    color: #FFFFFF;
    font-size: 22px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.special-card p {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.special-card .btn {
    position: relative;
    z-index: 1;
}

/* Utilidades necesarias */
.text-white {
    color: #FFFFFF;
}

.text-gray {
    color: #6B7280;
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

.mt-4 {
    margin-top: 24px;
}

.bold {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 60px 0;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

/* Comparative Table */
.comparative-section {
    padding: 100px 0;
}

.table-container {
    background-color: var(--color-white);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparative-table {
    width: 100%;
    border-collapse: collapse;
}

.comparative-table th,
.comparative-table td {
    padding: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparative-table th {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--color-white);
}

.comparative-table td {
    font-size: 15px;
}

.comparative-table tbody tr:nth-child(even) {
    background-color: #FAFAFB;
}

.comparative-table .highlight-col {
    background-color: #EBF8FF;
    color: var(--color-primary-dark);
}

.text-left {
    text-align: left;
}

@media (max-width: 768px) {
    .table-container {
        overflow-x: auto;
    }

    .comparative-table {
        min-width: 600px;
    }
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-number {
    font-size: clamp(40px, 4vw, 56px);
    color: var(--color-primary-dark);
    margin-bottom: 8px;
    line-height: 1;
}

@media (max-width: 768px) {
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
    align-items: start;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-3 {
    margin-bottom: 16px;
}

.mb-4 {
    margin-bottom: 24px;
}

.mt-3 {
    margin-top: 16px;
}

.map-link {
    text-decoration: none;
    transition: color 0.2s ease;
}

.map-link:hover {
    color: #1B7DB5;
    text-decoration: underline;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    transition: all var(--transition-fast);
    background-color: var(--color-bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-blue);
    box-shadow: 0 0 0 3px rgba(27, 125, 181, 0.1);
    background-color: var(--color-white);
}

/* Contact Info Cards */
.info-card,
.support-card {
    padding: 32px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-list li i {
    font-size: 24px;
    color: var(--color-accent-blue);
    margin-top: 2px;
}

.text-sm {
    font-size: 14px;
}

.support-card {
    background-color: var(--color-accent-blue);
    position: relative;
    overflow: hidden;
}

.support-card>i {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 120px;
    opacity: 0.1;
}

.border-white {
    border-color: rgba(255, 255, 255, 0.4);
}

.border-white:hover {
    background-color: var(--color-white);
    color: var(--color-accent-blue) !important;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer Section */
.footer {
    background-color: #1A1A2E;
    color: var(--color-white);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    display: block;
    margin-bottom: 20px;
    object-fit: contain;
}

.footer-logo-link {
    display: inline-block;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--color-accent-blue);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #9CA3AF;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent-blue);
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    padding: 0 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 20px;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    padding: 32px 24px;
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(27, 125, 181, 0.2);
    /* Accent blue subtle */
}

.benefit-card .icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: #EBF8FF;
    color: var(--color-accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 24px;
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Brother Section */
.bg-primary-dark {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

.brother-section {
    padding: 100px 0;
    overflow: hidden;
}

.brother-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.brother-text {
    flex: 0 0 55%;
    max-width: 55%;
}

.brother-logo-sm {
    width: auto;
    height: 48px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 24px;
    overflow: hidden;
}

.brother-logo-sm img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.brother-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.brother-text .subtitle {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 36px;
}

.brother-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.brother-grid-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
}

.brother-grid-item i {
    color: var(--color-accent-blue);
    font-size: 22px;
}

.brother-grid-item span {
    font-size: 15px;
    font-weight: 500;
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
}

.btn-white:hover {
    background-color: var(--color-bg-light);
}

.mt-4 {
    margin-top: 16px;
}

.brother-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.brother-real-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background-color: var(--color-accent-blue);
    color: var(--color-white);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-md);
}

@media (max-width: 1024px) {
    .brother-content {
        flex-direction: column;
        gap: 40px;
    }

    .brother-text,
    .brother-image {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .brother-real-img {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .brother-grid {
        grid-template-columns: 1fr;
    }
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 36px 28px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #1B7DB5;
}

.solution-card>i {
    font-size: 36px;
    color: #1B7DB5;
    margin-bottom: 20px;
    display: block;
}

.solution-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1A1A2E;
    line-height: 1.3;
}

.solution-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #6B7280;
    margin-bottom: 16px;
}

.solution-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.solution-bullets li {
    font-size: 13px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
    color: #6B7280;
}

.solution-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1B7DB5;
    font-weight: 700;
}

/* Card especial azul */
.special-card {
    background-color: #1B7DB5 !important;
    border-color: #1B7DB5 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.special-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.special-card::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.special-card:hover {
    background-color: #15628e !important;
    transform: translateY(-4px);
}

.special-card h3 {
    color: #FFFFFF;
    font-size: 22px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.special-card p {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.special-card .btn {
    position: relative;
    z-index: 1;
}

/* Section header */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
    color: #1A1A2E;
    letter-spacing: -0.5px;
}

.section-header .subtitle {
    font-size: 17px;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
    color: #6B7280;
}

/* Responsive */
@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 60px 0;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

/* ==========================================================================
   Section Background Overrides
   ========================================================================== */
.solutions-section {
    background-color: #EBF8FF;
}

.comparative-section {
    background-color: #FFFFFF;
}

.stats-section {
    background: linear-gradient(135deg, #0A3D5C 0%, #1B7DB5 100%);
    border-top: none;
    border-bottom: none;
}

.stats-section .stat-number {
    color: #FFFFFF;
}

.stats-section .text-gray {
    color: rgba(255, 255, 255, 0.8);
}

.contact-section {
    background-color: #F5F7FA;
}

.info-card {
    background-color: #FFFFFF;
}

/* Map Container */
.map-container {
    width: 100%;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 8px;
}

/* Spinner Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   PREMIUM BROTHER HERO
   ========================================================================== */
.brother-premium-hero {
    padding-top: 160px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e2eaf2 50%, #d4e0eb 100%);
    position: relative;
    overflow: hidden;
}

.brother-hero-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    min-height: 60vh;
}

.brother-left-content {
    flex: 1;
    max-width: 480px;
    z-index: 3;
}

.stars-rating {
    color: #F7941D;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.brother-left-content h1 {
    font-size: clamp(40px, 4.5vw, 60px);
    font-weight: 800;
    line-height: 1.05;
    color: #0A3D5C;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.brother-left-content .subtitle {
    font-size: 18px;
    color: #4B5563;
    line-height: 1.6;
}

.brother-center-image-container {
    flex: 1.3;
    width: 100%;
    max-width: 550px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 30px;
    position: relative;
}

.main-printer-img {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.floating-anim {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    font-weight: 600;
    color: #0A3D5C;
    font-size: 14px;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.badge-left {
    top: -30px;
    left: 10%;
    animation: floating 5s ease-in-out infinite 1s;
}

.badge-right {
    bottom: -30px;
    right: 10%;
    animation: floating 7s ease-in-out infinite 0.5s;
}

.float-badge i {
    font-size: 20px;
    color: #1B7DB5;
}

.brother-right-card {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    z-index: 3;
}

.trust-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 24px;
    max-width: 250px;
}

.trust-card-img {
    border-radius: 8px;
    margin-bottom: 16px;
    width: 100%;
    object-fit: contain;
    height: auto;
    max-height: 140px;
}

.brother-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    margin-top: 40px;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(10, 61, 92, 0.2);
}

.action-bar-left {
    display: flex;
    align-items: center;
}

.avatars-group {
    display: flex;
}

.avatars-group img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid #0A3D5C;
    margin-left: -20px;
    background: white;
}

.avatars-group img:first-child {
    margin-left: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .brother-hero-main {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .brother-left-content {
        margin-bottom: 60px;
    }

    .stars-rating {
        justify-content: center;
    }

    .brother-center-image-container {
        position: relative;
        left: 0;
        transform: none;
        margin-bottom: 60px;
    }

    .badge-left {
        top: 10%;
        left: 0;
    }

    .badge-right {
        bottom: 10%;
        right: 0;
    }

    .brother-action-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 32px 20px;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .float-badge {
        display: none;
    }
}

/* Responsive Overrides */
@media (max-width: 1024px) {}

/* ==========================================================================
   BROTHER PREMIUM SECTION ENHANCEMENTS
   ========================================================================== */
.brother-sub-services {
    background-color: #F8FAFC !important;
    padding-top: 100px;
    padding-bottom: 100px;
}

.brother-services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.premium-service-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.premium-service-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #FFFFFF;
    border: 1px solid rgba(10, 61, 92, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.premium-service-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(10, 61, 92, 0.1);
    border-color: rgba(247, 148, 29, 0.3);
}

.service-shape-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(247, 148, 29, 0.1);
    color: #F7941D;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 28px;
    transition: all 0.3s ease;
}

.premium-service-card:hover .service-shape-icon {
    transform: scale(1.1) rotate(5deg);
}

.organic-shape-container {
    position: relative;
    width: 100%;
    padding-bottom: 120%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(10, 61, 92, 0.2);
    animation: organicMorph 10s ease-in-out infinite;
}

@keyframes organicMorph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.premium-services-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.decor-circle-1 {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #F7941D;
    z-index: -1;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .brother-services-layout {
        grid-template-columns: 1fr;
    }

    .organic-shape-container {
        padding-bottom: 80%;
        max-width: 600px;
        margin: 40px auto 0;
    }
}

.vcloud-logo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 900px;
    opacity: 0.18;
    z-index: 5;
    pointer-events: none;
    object-fit: contain;
}

.warranty-hours-section {
    background: linear-gradient(135deg, #0A3D5C 0%, #004B87 100%) !important;
    border-radius: 24px;
    padding: 60px 0;
    box-shadow: 0 20px 50px rgba(0, 75, 135, 0.15);
    margin: 60px auto 100px auto;
    max-width: 1200px;
    width: 95%;
}

.warranty-list li,
.steps-list li {
    color: #FFFFFF;
}

.warranty-list li i {
    color: #F7941D;
}

.steps-list li span {
    color: #F7941D;
    font-weight: bold;
}

.warranty-steps h3 {
    color: #FFFFFF !important;
}

@media (max-width: 768px) {
    .warranty-hours-section {
        padding: 40px 0;
        border-radius: 16px;
    }
}

.faq-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.faq-accordion-item {
    background: #FFFFFF;
    border: 1px solid rgba(10, 61, 92, 0.08);
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-header {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 24px 30px;
    font-size: 18px;
    font-weight: 700;
    color: #0A3D5C;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-accordion-header:hover {
    color: #1B7DB5;
}

.faq-icon {
    font-size: 20px;
    color: #F7941D;
    transition: transform 0.3s ease;
    border-radius: 50%;
    background: rgba(247, 148, 29, 0.1);
    padding: 8px;
}

.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #FAFAFC;
}

.faq-accordion-body p {
    padding: 0 30px 24px 30px;
    margin: 0;
    color: #6B7280;
    line-height: 1.7;
}

/* Active State */
.faq-accordion-item.active {
    border-color: rgba(247, 148, 29, 0.3);
    box-shadow: 0 10px 25px rgba(10, 61, 92, 0.05);
}

.faq-accordion-item.active .faq-icon {
    transform: rotate(45deg);
    background: #F7941D;
    color: #FFFFFF;
}


/* ==========================================================================
   vCloudPoint Subpage Styles
   ========================================================================== */
.vcloud-hero {
    padding-top: 180px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #0A3D5C 0%, #1A1A2E 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.vcloud-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: radial-gradient(#F7941D 1px, transparent 1px);
    background-size: 30px 30px;
}

.vcloud-hero-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.vcloud-hero-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vcloud-hero-text h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: white;
}

.vcloud-hero-text .subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.vcloud-btn {
    background-color: #F7941D;
    color: white;
    border: none;
}

.vcloud-info-section,
.vcloud-comparison-section,
.vcloud-use-cases,
.calculator-section,
#contacto-vcloud {
    padding-top: 120px;
    padding-bottom: 120px;
}

.vcloud-btn:hover {
    background-color: #E0851A;
    transform: translateY(-2px);
    color: white;
}

.vcloud-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vcloud-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.vcloud-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.vcloud-feature-item i {
    font-size: 32px;
    color: #F7941D;
    background: rgba(247, 148, 29, 0.1);
    padding: 12px;
    border-radius: 12px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.use-case-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: #1B7DB5;
}

.use-case-icon {
    font-size: 40px;
    color: #F7941D;
}

.use-case-badge {
    display: inline-block;
    background: rgba(27, 125, 181, 0.1);
    color: #1B7DB5;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: auto;
}

/* Calculator specific overrides */
.calculator-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A3D5C 0%, #1B7DB5 100%);
    color: #FFFFFF;
}

.calc-input-wrapper {
    text-align: center;
    margin-bottom: 48px;
}

.calc-input-wrapper label {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
}

.calc-input-wrapper input[type="number"] {
    width: 200px;
    padding: 16px 24px;
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    outline: none;
}

.calc-input-wrapper input[type="number"]:focus {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.15);
}

.calc-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.calc-result-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
}

.calc-result-card h4 {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 8px;
}

.calc-result-card .result-number {
    font-size: 28px;
    font-weight: 800;
}

.calc-total-card {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 36px;
    text-align: center;
}

.calc-total-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calc-total-card .result-number {
    font-size: 48px;
    font-weight: 800;
    color: #5BC0EB;
}

@media (max-width: 768px) {
    .vcloud-info-grid {
        grid-template-columns: 1fr;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .calc-results-grid {
        grid-template-columns: 1fr;
    }

    .calc-total-card .result-number {
        font-size: 36px;
    }
}

.solution-link {
    margin-top: 20px;
    font-size: 14px;
    padding: 10px 20px;
    display: inline-flex;
}

/* ============================
   POR QUÉ KEYTECH
   ============================ */
.why-keytech-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A3D5C 0%, #0d2d42 50%, #1A1A2E 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Patrón decorativo de fondo */
.why-keytech-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.why-keytech-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #F7941D;
    margin-bottom: 20px;
}

.why-keytech-header h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.why-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
}

.why-keytech-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
}

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.why-card:last-child {
    border-bottom: none;
}

.why-card:hover {
    padding-left: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.why-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 12px;
    background: rgba(247, 148, 29, 0.15);
    border: 1px solid rgba(247, 148, 29, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.why-card:hover .why-card-icon {
    background: rgba(247, 148, 29, 0.25);
    transform: scale(1.05);
}

.why-card-icon i {
    font-size: 26px;
    color: #F7941D;
}

.why-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.why-card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

/* Responsive */
@media (max-width: 768px) {
    .why-keytech-section {
        padding: 60px 0;
    }

    .why-card {
        flex-direction: column;
        gap: 16px;
        padding: 28px 0;
    }

    .why-card:hover {
        padding-left: 12px;
    }

    .why-keytech-header {
        margin-bottom: 40px;
    }
}

/* -------------------------------------
   BROTHER CAROUSEL COMPONENT
-------------------------------------- */
.brother-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: 12px;
}
.brother-carousel {
    width: 100%;
    height: 100%;
}
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
}
.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}
.carousel-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.carousel-indicators .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.carousel-indicators .dot.active {
    background: #F7941D;
    transform: scale(1.2);
    border-color: rgba(255,255,255,0.8);
}