@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --bg-primary: #030a1c;
    --bg-secondary: #07122b;
    --bg-tertiary: #0b1a3b;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    
    /* Azul del Logo */
    --accent-blue-light: #47b0ea;
    --accent-blue: #1d76c3;
    --accent-blue-dark: #0d4a7c;
    
    /* Naranja del Logo */
    --accent-orange-light: #ffa64d;
    --accent-orange: #ff7a00;
    --accent-orange-dark: #cc5c00;
    
    --card-border: rgba(71, 176, 234, 0.15);
    --card-bg-glass: rgba(11, 26, 59, 0.5);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 25px rgba(29, 118, 195, 0.2);
    --shadow-glow-orange: 0 0 25px rgba(255, 122, 0, 0.35);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Layout & Utilities
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-bg-alt {
    background-color: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-blue-light);
    font-weight: 600;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Grids */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .section {
        padding: 80px 0;
    }
    .section-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 28px;
    }
}

/* Flex Alignments */
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Highlight text */
.highlight-blue {
    color: var(--accent-blue-light);
}

.highlight-orange {
    color: var(--accent-orange);
}

/* Decorative Background Elements */
.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29, 118, 195, 0.1) 0%, rgba(3, 10, 28, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.glow-orb-orange {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.08) 0%, rgba(3, 10, 28, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: rgba(3, 10, 28, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--card-border);
    padding: 12px 0;
    box-shadow: var(--shadow-premium);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 42px;
    width: auto;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 8px 0;
    position: relative;
    color: var(--text-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-blue-light);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-orange-light) 100%);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    z-index: 1100;
}

@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-secondary);
        border-left: 1px solid var(--card-border);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: var(--transition-smooth);
        z-index: 1050;
    }
    .nav-menu.open {
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    .nav-link {
        font-size: 20px;
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-orange);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--accent-blue);
    box-shadow: 0 4px 15px rgba(29, 118, 195, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(29, 118, 195, 0.1);
    border-color: var(--accent-blue-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-glass {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-icon {
    margin-left: 8px;
    transition: var(--transition-fast);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    padding: 180px 0 100px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(29, 118, 195, 0.08) 0%, rgba(3, 10, 28, 0) 60%),
                radial-gradient(circle at 20% 80%, rgba(255, 122, 0, 0.04) 0%, rgba(3, 10, 28, 0) 50%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    z-index: 10;
}

.hero-tagline {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(29, 118, 195, 0.15);
    border: 1px solid rgba(71, 176, 234, 0.3);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-blue-light);
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.hero-title {
    font-size: 58px;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent-blue-light) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

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

.hero-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(29, 118, 195, 0.25) 0%, rgba(3, 10, 28, 0) 70%);
    border-radius: 50%;
    filter: blur(20px);
}

.hero-image {
    width: 90%;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 992px) {
    .hero {
        padding: 140px 0 80px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-title {
        font-size: 42px;
    }
}

/* ==========================================================================
   Cards & Elements
   ========================================================================== */
.card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 35px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(71, 176, 234, 0.4);
    box-shadow: var(--shadow-glow);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.card:hover::before {
    opacity: 1;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: rgba(29, 118, 195, 0.1);
    color: var(--accent-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(71, 176, 234, 0.15);
    transition: var(--transition-smooth);
}

.card:hover .card-icon-wrapper {
    background-color: var(--accent-blue);
    color: var(--text-primary);
    transform: scale(1.05);
}

.card-title {
    font-size: 22px;
    margin-bottom: 14px;
}

.card-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 300;
}

.card-link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-blue-light);
    font-family: var(--font-heading);
}

.card-link i {
    margin-left: 6px;
    transition: var(--transition-fast);
}

.card:hover .card-link i {
    transform: translateX(4px);
}

/* Premium Orange Accent Card */
.card-premium-orange::before {
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-orange-light) 100%);
}
.card-premium-orange:hover {
    border-color: rgba(255, 122, 0, 0.4);
    box-shadow: var(--shadow-glow-orange);
}
.card-premium-orange .card-icon-wrapper {
    background-color: rgba(255, 122, 0, 0.1);
    color: var(--accent-orange-light);
    border-color: rgba(255, 122, 0, 0.15);
}
.card-premium-orange:hover .card-icon-wrapper {
    background-color: var(--accent-orange);
    color: var(--text-primary);
}
.card-premium-orange .card-link {
    color: var(--accent-orange-light);
}

/* Glass Card */
.card-glass {
    background-color: var(--card-bg-glass);
    backdrop-filter: blur(15px);
}

/* ==========================================================================
   Highlight / Showcase Sections
   ========================================================================== */
.showcase-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.showcase-row-reverse {
    direction: rtl;
}

.showcase-row-reverse > * {
    direction: ltr;
}

.showcase-img-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-premium);
}

.showcase-img-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(3, 10, 28, 0) 50%, rgba(3, 10, 28, 0.8) 100%);
}

.showcase-img {
    width: 100%;
    transition: var(--transition-smooth);
}

.showcase-img-container:hover .showcase-img {
    transform: scale(1.05);
}

.showcase-heading {
    font-size: 32px;
    margin-bottom: 20px;
}

.showcase-text {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.showcase-points {
    list-style: none;
    margin-bottom: 35px;
}

.showcase-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
}

.showcase-point-icon {
    color: var(--accent-blue-light);
    font-size: 18px;
    margin-top: 3px;
}

@media (max-width: 992px) {
    .showcase-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   Clients & Testimonials
   ========================================================================== */
.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

.client-logo-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 160px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.client-logo-card:hover {
    border-color: rgba(71, 176, 234, 0.3);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.client-logo-img {
    max-height: 60px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%) brightness(120%);
    opacity: 0.6;
    transition: var(--transition-smooth);
    margin-bottom: 15px;
}

.client-logo-card:hover .client-logo-img {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
}

.client-meta {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.client-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 4px;
}

@media (max-width: 992px) {
    .client-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .client-logo-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonial slider / cards */
.testimonial-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 10px;
}

.testimonial-card {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-premium);
}

.testimonial-stars {
    color: #febd2e;
    font-size: 20px;
    margin-bottom: 24px;
}

.testimonial-quote {
    font-size: 18px;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 300;
}

.testimonial-author-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-blue-light);
}

.testimonial-author {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-title {
    font-size: 13px;
    color: var(--accent-blue-light);
    display: block;
    margin-top: 2px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--card-border);
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.testimonial-btn:hover {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue-light);
}

/* Counters section */
.counter-box {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(11, 26, 59, 0.4);
    border: 1px solid var(--card-border);
    border-radius: 12px;
}

.counter-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--accent-blue-light);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.counter-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ==========================================================================
   Forms & Controls
   ========================================================================== */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.form-control {
    width: 100%;
    background-color: var(--bg-secondary);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-blue-light);
    box-shadow: var(--shadow-glow);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.newsletter-box {
    background-color: var(--bg-secondary);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.newsletter-title {
    font-size: 32px;
    margin-bottom: 12px;
}

.newsletter-desc {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary);
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form .form-control {
    flex-grow: 1;
}

@media (max-width: 768px) {
    .newsletter-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .newsletter-form {
        flex-direction: column;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #010612;
    border-top: 1px solid var(--card-border);
    padding: 80px 0 30px;
    font-size: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-info-desc {
    margin-top: 20px;
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent-blue-light);
}

.footer-links {
    list-style: none;
}

.footer-link-item {
    margin-bottom: 12px;
}

.footer-link {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--accent-blue-light);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 300;
}

.footer-contact-icon {
    color: var(--accent-blue-light);
    font-size: 16px;
    margin-top: 4px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(29, 118, 195, 0.1);
    color: var(--accent-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition-fast);
    border: 1px solid rgba(71, 176, 234, 0.1);
}

.footer-social-link:hover {
    background-color: var(--accent-blue);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-social-link-whatsapp:hover {
    background-color: #25d366;
    border-color: #25d366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ==========================================================================
   Page Specific Components
   ========================================================================== */

/* Subpage Header Banner */
.page-header {
    padding: 160px 0 80px;
    background: radial-gradient(circle at 50% -20%, rgba(29, 118, 195, 0.12) 0%, rgba(3, 10, 28, 0) 70%),
                var(--bg-secondary);
    border-bottom: 1px solid var(--card-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-title {
    font-size: 48px;
    margin-bottom: 16px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.2);
}

.breadcrumb-active {
    color: var(--accent-blue-light);
    font-weight: 500;
}

/* Blog / Articles */
.blog-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(71, 176, 234, 0.3);
    box-shadow: var(--shadow-glow);
}

.blog-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-img {
    transform: scale(1.04);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    background-color: var(--accent-blue);
    color: var(--text-primary);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-premium);
}

.blog-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-weight: 500;
}

.blog-title {
    font-size: 22px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card:hover .blog-title {
    color: var(--accent-blue-light);
}

.blog-excerpt {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Plan / Pricing Table */
.pricing-card {
    position: relative;
}

.pricing-popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    color: var(--text-primary);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-glow-orange);
}

.pricing-header {
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 25px;
    margin-bottom: 30px;
}

.pricing-name {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.pricing-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 35px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 300;
}

.pricing-feature i {
    color: var(--accent-blue-light);
    font-size: 16px;
}

.pricing-feature.disabled {
    color: var(--text-muted);
}

.pricing-feature.disabled i {
    color: var(--text-muted);
    opacity: 0.5;
}

/* Contact Info Box */
.contact-info-card {
    display: flex;
    gap: 20px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-premium);
    align-items: center;
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background-color: rgba(29, 118, 195, 0.1);
    color: var(--accent-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid rgba(71, 176, 234, 0.1);
}

.contact-info-details h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.contact-info-details p {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary);
}

/* Language Selector */
.nav-lang {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-muted);
}

.nav-link-lang {
    color: var(--text-muted);
    transition: var(--transition-fast);
    padding: 2px 4px;
}

.nav-link-lang:hover {
    color: var(--text-primary);
}

.nav-link-lang.active {
    color: var(--accent-orange-light);
}

