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

:root {
    /* Paleta Oficial Manual de Marca */
    --color-navy: #071226;          /* Razón y Estructura */
    --color-navy-deep: #011240;
    --color-orange: #F37451;        /* Emoción y Acción */
    --color-terracotta: #C95236;    /* Dinamismo */
    --color-peach: #FFEEEB;         /* Balance / Aire */
    --color-blue-light: #E8EFF9;    /* Claridad */
    --color-blue-accent: #466BBC;
    
    --color-gray: #555c68;
    --color-gray-light: #f4f6f9;
    --color-white: #ffffff;
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Spacing */
    --section-gap: 120px;
    --container-max: 1280px;
    
    /* Animation */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --transition-slow: 0.8s var(--ease-out-expo);
    --transition-fast: 0.3s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --pattern-opacity: 0.05;
}

/* Identidad Visual: Patrón Industrial Dinámico */
.bg-pattern {
    position: relative;
    overflow: hidden;
}

.bg-pattern::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(var(--color-orange) 1px, transparent 1px),
        radial-gradient(var(--color-navy) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: var(--pattern-opacity);
    pointer-events: none;
    z-index: 0;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-navy-deep);
}

body {
    font-family: var(--font-main);
    background-color: var(--color-white);
    color: var(--color-navy);
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3 {
    text-transform: uppercase;
    line-height: 1;
    font-weight: 800;
}

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

ul {
    list-style: none;
}

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

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

/* ================== UTILITIES ================== */
.text-orange { color: var(--color-orange); }
.bg-navy { background-color: var(--color-navy); color: var(--color-white); }
.bg-orange { background-color: var(--color-orange); color: var(--color-white); }

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--color-navy);
    border-bottom: 2px solid var(--color-orange);
    padding-bottom: 4px;
    margin-top: 20px;
}

.btn-more:hover {
    color: var(--color-orange);
}

form .btn-more {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: 24px;
    padding: 16px 24px;
    background: var(--color-navy) !important;
    color: var(--color-white) !important;
    border: 1px solid var(--color-navy) !important;
    border-bottom: 1px solid var(--color-navy) !important;
    letter-spacing: 1.8px;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
    min-height: 56px;
}

form .btn-more:hover {
    background: var(--color-navy-deep) !important;
    color: var(--color-white) !important;
}

/* ================== NAVIGATION ================== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    background: transparent;
    transition: var(--transition-fast);
}

.navbar.scrolled {
    position: fixed;
    background: rgba(7, 18, 38, 0.95);
    backdrop-filter: blur(10px);
    padding: 14px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-navy);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.navbar.scrolled .logo img {
    height: 64px;
}

.logo span {
    color: var(--color-orange);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-fast);
}

.nav-links a {
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--color-orange);
}

/* ================== HERO (Section 01) ================== */
.header-content {
    position: relative;
    z-index: 2;
}

.hero {
    background: var(--color-navy);
    background-image: 
        linear-gradient(rgba(7, 18, 38, 0.8), rgba(7, 18, 38, 0.9)),
        url('images/home-hero-bg.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 160px 0 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(243, 116, 81, 0.15), transparent 40%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
}

.hero-tag {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    display: block;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--color-white);
    margin-bottom: 30px;
    font-weight: 200;
}

.hero h1 b {
    font-weight: 900;
    color: var(--color-orange);
}

.hero-title-associatividad {
    font-size: clamp(3rem, 7vw, 5.4rem) !important;
    line-height: 0.92;
}

.hero-title-associatividad .hero-line {
    display: inline-block;
    white-space: nowrap;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin-bottom: 40px;
}

.section-number {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.5;
}

.number-circle {
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.number-line {
    width: 2px;
    height: 150px;
    background: linear-gradient(var(--color-orange), transparent);
}

/* ================== SERVICES (Section 02) ================== */
.service-intro {
    padding: 150px 0 100px;
    position: relative;
    z-index: 10;
}

.floating-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.floating-img {
    position: relative;
    margin-top: -200px; /* Overlaps Hero */
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}

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

.floating-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--color-navy);
}

.floating-content p {
    color: var(--color-gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.logo-marquee-section {
    padding: 20px 0 80px;
    overflow: hidden;
}

.logo-marquee-header {
    text-align: center;
    margin-bottom: 35px;
}

.logo-marquee-header span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--color-orange);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.logo-marquee-header h2 {
    font-size: 2.3rem;
    color: var(--color-navy);
}

.logo-marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    width: max-content;
    gap: 24px;
    animation: marquee-scroll 28s linear infinite;
}

.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

.logo-item {
    flex: 0 0 auto;
    min-width: 260px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 28px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(7,18,38,0.08);
    box-shadow: 0 20px 40px rgba(7,18,38,0.06);
}

.logo-item img {
    max-width: 100%;
    max-height: 48px;
    width: auto;
    height: auto;
    opacity: 0.9;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ================== WHY CHOOSE US (Section 03) ================== */
.why-us {
    background-color: var(--color-navy);
    padding: 100px 0;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
}

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

.why-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.why-icon {
    min-width: 60px;
    height: 60px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
}

.why-text h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-white);
}

.why-text p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.news-box {
    background-color: var(--color-orange);
    padding: 60px;
    position: relative;
    outline: 10px solid var(--color-white);
    outline-offset: -30px;
}

.news-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 15px;
}

.news-box p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ================== OUR BUSINESS / GALLERY ================== */
.business-section {
    padding: 150px 0;
    text-align: center;
}

.business-section h2 {
    font-size: 3rem;
    margin-bottom: 60px;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.business-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    background-color: var(--color-navy);
}

.business-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: var(--transition-slow);
}

.business-card:hover img {
    transform: scale(1.1);
    opacity: 0.3;
}

.business-info {
    position: absolute;
    bottom: 40px;
    left: 30px;
    text-align: left;
    max-width: 200px;
}

.business-info h3 {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 15px;
}

.business-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.business-card:hover .business-btn {
    background-color: var(--color-orange);
    border-color: var(--color-orange);
}

/* ================== FOOTER ================== */
.footer {
    background-color: var(--color-navy-deep);
    padding: 80px 0 20px;
    color: var(--color-white);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-brand h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--color-gray);
    max-width: 400px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-logo {
    height: 104px;
    width: auto;
    margin-bottom: 20px;
}

.footer-contact h3 {
    color: var(--color-orange);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 8px;
}

.footer-link {
    color: var(--color-white);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-link:hover {
    color: var(--color-orange);
}

.footer-meta {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .floating-wrap, .why-grid {
        grid-template-columns: 1fr;
    }
    .logo-marquee-header h2 {
        font-size: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .floating-img {
        margin-top: 0;
    }
    .business-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .navbar {
        padding: 22px 0;
    }
    .logo img {
        height: 76px;
    }
    .navbar.scrolled {
        padding: 14px 0;
    }
    .logo-marquee-section {
        padding: 0 0 60px;
    }
    .logo-item {
        min-width: 180px;
        height: 76px;
        padding: 14px 18px;
    }
    .navbar.scrolled .logo img {
        height: 64px;
    }
    .footer-logo {
        height: 88px;
    }
    .footer-grid,
    .footer-bottom {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-top {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        left: 20px;
        right: 20px;
        background: rgba(7, 18, 38, 0.98);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255,255,255,0.08);
        padding: 18px 20px;
        flex-direction: column;
        gap: 14px;
        box-shadow: 0 24px 50px rgba(0,0,0,0.28);
    }
    .nav-links a {
        font-size: 0.95rem;
        padding: 6px 0;
    }
    .navbar.menu-open .nav-links {
        display: flex;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .navbar.menu-open .nav-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .navbar.menu-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }
    .navbar.menu-open .nav-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .hero {
        min-height: auto;
        padding: 150px 0 80px;
        clip-path: none !important;
    }
    .service-intro,
    .business-section,
    .why-us {
        padding: 80px 0;
        clip-path: none !important;
    }
    .service-intro + .why-us {
        margin-top: 24px;
    }
    .why-us + .business-section {
        padding-top: 110px;
    }
    .business-grid {
        gap: 18px;
    }
    .floating-content h2,
    .business-section h2,
    .logo-marquee-header h2 {
        font-size: 1.9rem;
    }
    .hero h1 {
        font-size: 2.5rem;
        line-height: 0.95;
    }
    .hero-title-associatividad {
        font-size: 2.15rem !important;
        line-height: 0.95;
    }
    .hero-desc,
    .floating-content p,
    .news-box p,
    .footer-meta,
    .footer-link,
    .footer-brand p {
        font-size: 0.98rem;
    }
    .hero-tag {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
    .section-number {
        display: none;
    }
    .news-box {
        padding: 38px 30px;
        outline-width: 5px;
        outline-offset: -16px;
    }
    .news-box h2 {
        font-size: 1.5rem;
        margin-bottom: 18px;
        padding-bottom: 14px;
    }
    .news-box p {
        line-height: 1.7;
        margin-bottom: 18px;
    }
    .business-grid,
    .form-row,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .business-card,
    .team-card,
    .team-placeholder {
        height: 340px !important;
    }
    .business-info {
        left: 20px;
        right: 20px;
        bottom: 24px;
        max-width: none;
    }
    .why-item {
        gap: 16px;
    }
    .why-icon {
        min-width: 48px;
        height: 48px;
    }
    /* === FORMULARIOS EN MOBILE === */
    input,
    select,
    textarea,
    button {
        font-size: 16px; /* evita zoom de iOS al enfocar */
    }
    form input,
    form select,
    form textarea {
        padding: 16px 18px !important;
        margin-bottom: 14px !important;
        border-radius: 6px !important;
        background: rgba(255,255,255,0.08) !important;
        border: 1px solid rgba(255,255,255,0.35) !important;
        color: white !important;
        box-sizing: border-box;
        width: 100% !important;
    }
    form input::placeholder,
    form textarea::placeholder,
    form select {
        color: rgba(255,255,255,0.75) !important;
    }
    form select option {
        background: var(--color-navy);
        color: white;
    }
    form textarea {
        min-height: 120px !important;
        line-height: 1.5;
    }
    form .form-row {
        gap: 0;
        margin-top: 24px !important;
    }
    form .btn-more {
        width: 100% !important;
        justify-content: center !important;
        text-align: center;
        padding: 20px !important;
        letter-spacing: 1.4px;
        font-size: 0.95rem;
        min-height: 58px;
        margin-top: 8px !important;
    }
    form .btn-more i {
        display: none;
    }
}

/* Animation Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero small variant */
.hero-sm { min-height: 40vh; padding: 120px 0 60px; }

/* News / Blog section */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 60px 0;
}
.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.news-card-top {
  height: 6px;
  background: #ff6b35;
}
.news-card-body { padding: 24px; }
.news-badge {
  display: inline-block;
  background: #fff3ee;
  color: #ff6b35;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.news-card h3 {
  font-size: 1.05rem;
  color: #071226;
  margin: 0 0 8px;
  line-height: 1.4;
}
.news-date {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 12px;
}
.news-excerpt {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.news-link {
  color: #ff6b35;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.news-link:hover { text-decoration: underline; }
.news-placeholder-note {
  text-align: center;
  padding: 20px;
  color: #888;
  font-size: 0.85rem;
  border: 1px dashed #ddd;
  border-radius: 8px;
  margin: 0 0 60px;
}
@media (max-width: 900px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; }
}

/* News section on homepage */
.news-section { padding: 80px 0; background: #f9fafb; }
.news-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .news-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
  }
  .news-slider .news-card {
    min-width: 280px;
    scroll-snap-align: start;
  }
}

/* Breadcrumb navigation */
.breadcrumb-bar {
  background: #f5f7fa;
  padding: 10px 0;
  border-bottom: 1px solid #e8ecf0;
  margin-top: 80px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: #4a6fa5;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: #ff6b35; text-decoration: underline; }
.bc-sep { color: #aaa; }

/* Article / blog post page */
.article-hero {
  background: var(--color-navy);
  background-size: cover;
  background-position: center center;
  min-height: 70vh;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  position: relative;
}
.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(7,18,38,0.85) 0%, rgba(7,18,38,0.45) 100%);
  pointer-events: none;
}
.article-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  color: #999;
  margin-bottom: 24px;
}
.article-breadcrumb a {
  color: #4a6fa5;
  text-decoration: none;
}
.article-breadcrumb a:hover { color: #ff6b35; }
.article-breadcrumb .bc-sep { color: #ccc; }
.btn-cta-white {
  display: inline-block;
  background: #ff6b35;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none !important;
  transition: background 0.2s;
}
.btn-cta-white:hover { background: #e55a26; }
.article-wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.article-body h2 {
  font-size: 1.4rem;
  color: #071226;
  margin: 40px 0 16px;
  font-weight: 700;
}
.article-body h3 {
  font-size: 1.1rem;
  color: #071226;
  margin: 28px 0 12px;
  font-weight: 700;
}
.article-body p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.article-body li {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 8px;
}
.article-body strong { color: #071226; }
.article-highlight {
  background: #fff3ee;
  border-left: 4px solid #ff6b35;
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 32px 0;
}
.article-highlight p {
  margin: 0;
  font-style: italic;
  color: #333;
  font-size: 1.05rem;
}
.article-cta-box {
  background: #071226;
  color: #fff;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
}
.article-cta-box h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.article-cta-box p {
  color: #c5cdd8;
  margin-bottom: 28px;
}
.article-related {
  background: #f9fafb;
  padding: 60px 0;
}
.article-related .section-header {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .article-wrapper { padding: 40px 16px 60px; }
  .article-cta-box { padding: 28px 20px; }
}
.bc-current { color: #333; font-weight: 600; }
