/* ================================================
   FRESH & MODERN LANDING PAGE - 2025 Light Design
   ================================================ */

:root {
    /* Fresh Primary Colors */
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-invert: #ffffff;

    /* Secondary - Emerald Accent */
    --accent: #10b981;
    --accent-light: #34d399;
    --accent-dark: #059669;

    /* Neutral Colors - Clean & Light */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-subtle: #f1f5f9;

    /* Fresh Gradients */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --gradient-accent: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    --gradient-hero: linear-gradient(180deg, #f0f9ff 0%, #ffffff 50%, #f8fafc 100%);
    --gradient-soft: linear-gradient(135deg, #f0f9ff 0%, #faf5ff 50%, #f0fdf4 100%);

    /* Spacing */
    --space-section: 7rem;
    --space-section-sm: 4rem;

    /* Border Radius - Softer */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
    --radius-full: 9999px;

    /* Shadows - Lighter & Softer */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    --shadow-soft: 0 2px 40px rgba(37, 99, 235, 0.08);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 16px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* ================================================
   BASE STYLES
   ================================================ */

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media only screen and (min-width: 992px) {
    .container {
        max-width: 1200px !important;
    }
}

.space-between-blocks {
    padding-top: var(--space-section-sm);
    padding-bottom: var(--space-section-sm);
}

@media (min-width: 992px) {
    .space-between-blocks {
        padding-top: var(--space-section);
        padding-bottom: var(--space-section);
    }
}

/* ================================================
   TYPOGRAPHY
   ================================================ */

.block__title {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.block__title--big {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

@media (min-width: 992px) {
    .block__title {
        font-size: 2.5rem;
    }

    .block__title--big {
        font-size: 3rem;
    }
}

.block__paragraph {
    font-weight: 400;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.block__paragraph--big {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-secondary);
}

@media (min-width: 992px) {
    .block__paragraph--big {
        font-size: 1.25rem;
        line-height: 1.75;
    }
}

/* ================================================
   BUTTONS - Fresh & Clean
   ================================================ */

button {
    color: inherit;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

button:focus {
    outline: none;
}

.btn {
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-invert);
    box-shadow: 0 1px 2px rgba(37, 99, 235, 0.1), 0 4px 12px rgba(37, 99, 235, 0.15);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-dark);
    color: var(--primary-invert);
    box-shadow: 0 1px 2px rgba(37, 99, 235, 0.1), 0 8px 20px rgba(37, 99, 235, 0.2);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-primary);
    border: 1.5px solid var(--border-color);
    box-shadow: var(--shadow-xs);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--bg-light);
    color: var(--text-primary);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    border-radius: var(--radius-xl);
}

/* ================================================
   HERO SECTION - Fresh & Light
   ================================================ */

.hero {
    --hero-nav-height: 72px;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--gradient-hero);
    overflow: hidden;
}

/* Subtle Background Pattern */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(139, 92, 246, 0.02) 0%, transparent 40%);
    z-index: 0;
}

/* Navigation */
.fixed-nav-container {
    height: var(--hero-nav-height);
    position: relative;
    z-index: 100;
}

.hero-nav {
    width: 95%;
    max-width: 1200px;
    height: var(--hero-nav-height);
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-nav__logo {
    height: 40px;
    transition: var(--transition-base);
}

.hero-nav__item {
    margin: 0 0.5rem;
    font-size: 0.9375rem;
}

@media (min-width: 992px) {
    .hero-nav__item {
        margin: 0 1rem;
    }
}

.hero-nav__link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    padding: 0.5rem 0;
}

.hero-nav__link:hover,
.hero-nav__link:focus {
    color: var(--primary);
    text-decoration: none;
}

/* Sticky Navigation */
.hero-nav--is-sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border-color);
    padding: 0 2rem !important;
    height: 64px;
    animation: slideDown 0.3s ease;
    z-index: 1000;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Hero Content */
.hero__content {
    position: relative;
    z-index: 1;
    text-align: left;
}

.hero__body {
    padding-top: 2rem;
    padding-bottom: 3rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .hero__body {
        padding-top: 4rem;
        padding-bottom: 6rem;
    }
}

.hero__title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

@media (min-width: 576px) {
    .hero__title {
        font-size: 2.75rem;
    }
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 3.25rem;
    }
}

@media (min-width: 992px) {
    .hero__title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1200px) {
    .hero__title {
        font-size: 3.75rem;
    }
}

.hero__paragraph {
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 520px;
}

@media (min-width: 992px) {
    .hero__paragraph {
        font-size: 1.125rem;
    }
}

.hero__btns-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

/* Hero Image */
.hero__row {
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .hero__row {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        margin: 0;
        pointer-events: none;
    }
}

.hero__image-column {
    height: 320px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

@media (min-width: 992px) {
    .hero__image-column {
        height: 100%;
        background-position: center right;
    }
}

/* ================================================
   MOBILE MENU
   ================================================ */

.ft-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2000;
    animation: fadeOut 0.25s ease forwards;
    pointer-events: none;
}

.ft-menu--js-show {
    animation: fadeIn 0.25s ease forwards;
    pointer-events: auto;
}

.ft-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: -1;
}

@media (min-width: 992px) {
    .ft-menu {
        animation: none;
        position: static;
        z-index: auto;
        pointer-events: auto;
    }

    .ft-menu::before {
        content: none;
    }
}

.ft-menu__slider {
    background: var(--bg-white);
    width: 85%;
    max-width: 300px;
    height: 100%;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    box-shadow: var(--shadow-xl);
}

@media (min-width: 992px) {
    .ft-menu__slider {
        background: transparent;
        width: auto;
        max-width: none;
        height: auto;
        transform: none;
        display: flex;
        align-items: center;
        box-shadow: none;
    }
}

.ft-menu--js-show .ft-menu__slider {
    transform: translateX(0);
}

.ft-menu__close-btn {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    padding: 1rem;
    color: var(--text-primary);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    background: var(--bg-white);
    border-radius: 0 0 0 var(--radius-md);
}

.ft-menu--js-show .ft-menu__close-btn {
    transform: translateX(0);
}

@media (min-width: 992px) {
    .ft-menu__close-btn {
        display: none;
    }
}

.ft-menu .hero-nav__item {
    width: 100%;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
}

@media (min-width: 992px) {
    .ft-menu .hero-nav__item {
        width: auto;
        padding: 0;
        border: none;
    }
}

@keyframes fadeIn {
    from { visibility: hidden; opacity: 0; }
    to { visibility: visible; opacity: 1; }
}

@keyframes fadeOut {
    from { visibility: visible; opacity: 1; }
    to { visibility: hidden; opacity: 0; }
}

/* Dropdown Menu */
.hero-nav__item--with-dropdown {
    position: relative;
}

.hero-nav__dropdown {
    position: static;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.25s ease;
    background: var(--bg-white);
}

@media (min-width: 992px) {
    .hero-nav__dropdown {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        min-width: 200px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        padding: 0.5rem;
        margin-top: 0.5rem;
        border: 1px solid var(--border-light);
    }
}

.hero-nav__item--show-dropdown .hero-nav__dropdown {
    max-height: 500px;
    opacity: 1;
    padding: 0.75rem;
}

@media (min-width: 992px) {
    .hero-nav__item--show-dropdown .hero-nav__dropdown {
        padding: 0.5rem;
    }
}

.dropdown__link {
    display: block;
    padding: 0.625rem 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    font-size: 0.9375rem;
}

.dropdown__link:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.dropdown__item-title {
    font-weight: 500;
}

/* ================================================
   FEATURES SECTION - Clean Cards
   ================================================ */

.block-1 {
    background: var(--bg-white);
    position: relative;
}

.card-1 {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    height: 100%;
    transition: all var(--transition-base);
}

.card-1:hover {
    border-color: var(--primary-100);
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.card-1__title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.card-1__paragraph {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

/* Icons - Clean Style */
.fr-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    height: 2.75rem;
    width: 2.75rem;
    border-radius: var(--radius-lg);
    background: var(--primary-50);
    color: var(--primary);
    margin-bottom: 1.25rem;
    transition: all var(--transition-base);
}

.card-1:hover .fr-icon {
    background: var(--primary);
    color: white;
}

.fr-icon--large {
    font-size: 1.25rem;
    height: 3.25rem;
    width: 3.25rem;
}

.mb-2-1rem {
    margin-bottom: 1.25rem;
}

/* ================================================
   INDUSTRIES SECTION
   ================================================ */

.block-2 {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.block-2-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.block-2-card:hover {
    box-shadow: var(--shadow-md);
}

@media (min-width: 992px) {
    .block-2-card {
        padding: 2rem;
    }
}

.block-2-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
}

@media (min-width: 992px) {
    .block-2-card__title {
        font-size: 1.25rem;
    }
}

.block-2-card__paragraph {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

/* Splide Slider */
.block-2-card {
    display: none !important;
}

.block-2-card:first-child {
    display: flex !important;
}

@media (min-width: 992px) {
    .block-2-card:first-child,
    .block-2-card:nth-child(2),
    .block-2-card:nth-child(3) {
        display: flex !important;
    }
}

.splide__track {
    overflow: visible !important;
}

.block-2 .splide__track .splide__slide {
    height: auto !important;
    display: flex !important;
}

.block-2__splide-btn {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 20px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    transform: rotate(90deg);
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.block-2__splide-btn:hover {
    background: var(--primary-dark);
    transform: rotate(90deg) scale(1.05);
}

@media (min-width: 992px) {
    .block-2__splide-btn {
        right: 22%;
        left: auto;
    }
}

.splide__slide.is-active .fr-icon {
    background: var(--primary);
    color: white;
}

/* Decorative Elements */
.block-2__dots-svg--left,
.block-2__dots-svg--right {
    display: none;
}

/* ================================================
   STATISTICS SECTION - Fresh Style
   ================================================ */

.block-38 {
    background: var(--bg-white);
}

.stats {
    background: var(--text-primary);
    color: white;
    border-radius: var(--radius-2xl);
    padding: 2.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.stats__li {
    padding: 1.25rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.stats__li:last-child {
    border-bottom: none;
}

@media (min-width: 992px) {
    .stats__li {
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: 1.5rem !important;
    }

    .stats__li:last-child {
        border-right: none !important;
    }
}

.stats__number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: white;
    margin-bottom: 0.375rem;
    display: block;
}

@media (min-width: 992px) {
    .stats__number {
        font-size: 3rem;
    }
}

.stats__text {
    font-size: 0.875rem;
    opacity: 0.7;
    font-weight: 500;
}

/* ================================================
   TESTIMONIALS SECTION - Clean Design
   ================================================ */

.block-20 {
    background: var(--bg-light);
    position: relative;
}

.testimonial-card-1 {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    position: relative;
    margin-top: 3.5rem;
    transition: all var(--transition-base);
}

.testimonial-card-1:hover {
    box-shadow: var(--shadow-md);
}

@media (min-width: 992px) {
    .testimonial-card-1 {
        height: calc(100% - 3.5rem);
    }
}

.testimonial-card-1__paragraph {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.testimonial-card-1__quote-symbol {
    position: absolute;
    bottom: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    box-shadow: var(--shadow-md);
}

.block-20-person {
    text-align: center;
    transform: translateY(-3.5rem);
    margin-bottom: -2.5rem;
}

.block-20-person__avatar {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    border: 3px solid var(--bg-white);
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.block-20-person__rating {
    font-size: 0.8125rem;
    color: #fbbf24;
    display: block;
    margin: 0.625rem 0 0.25rem;
}

.block-20-person__name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
}

.block-20-person__info {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ================================================
   CTA SECTION - Fresh Look
   ================================================ */

.block-29 {
    background: var(--primary);
    color: white;
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
    padding: 2.5rem 1.5rem;
}

@media (min-width: 992px) {
    .block-29 {
        padding: 3.5rem 2.5rem;
    }
}

.block-29::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.block-29__title {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .block-29__title {
        font-size: 2rem;
    }
}

.block-29__paragraph {
    font-size: 1rem;
    line-height: 1.65;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* ================================================
   FAQ SECTION - Clean Style
   ================================================ */

.block-39 {
    background: var(--bg-white);
}

.content-block {
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    transition: all var(--transition-base);
}

.content-block:hover {
    border-color: var(--primary-100);
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.content-block__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

@media (min-width: 992px) {
    .content-block__title {
        font-size: 1.0625rem;
    }
}

.content-block__paragraph {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* ================================================
   FOOTER - Fresh & Light
   ================================================ */

.block-44 {
    background: var(--bg-light);
    color: var(--text-secondary);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border-color);
}

.block-44__divider {
    display: none;
}

.block-44__extra-links {
    justify-content: center;
}

@media (min-width: 768px) {
    .block-44__extra-links {
        justify-content: flex-start;
    }
}

.block-44__link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.125rem;
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.block-44__link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.block-44__copyrights {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ================================================
   CONTACT PAGE
   ================================================ */

.block-27 {
    background: var(--bg-light);
}

.contact-form__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.contact-form__paragraph {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.contact-form__input {
    color: var(--text-primary);
    font-size: 0.9375rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border-color);
    background: var(--bg-white);
    width: 100%;
    margin-bottom: 0.875rem;
    transition: all var(--transition-fast);
}

textarea.contact-form__input {
    min-height: 130px;
    resize: vertical;
}

.contact-form__input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-50);
}

/* ================================================
   BLOG STYLES
   ================================================ */

.article-block {
    background: var(--bg-white);
}

.article-block__title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

.article-block__info {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.article-block__author {
    color: var(--primary);
    font-weight: 600;
}

.article-block__header-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.article {
    padding: 0 1rem;
}

@media (min-width: 992px) {
    .article {
        padding: 0 2rem;
    }
}

.article p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.article h2,
.article h3,
.article h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

blockquote {
    background: var(--bg-light);
    border-left: 3px solid var(--primary);
    padding: 1.25rem;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-secondary);
}

pre {
    background: var(--text-primary);
    color: white;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    overflow-x: auto;
}

/* ================================================
   UTILITIES
   ================================================ */

.highlight {
    color: var(--primary);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Loading Button */
.btn--loading {
    position: relative;
    pointer-events: none;
}

.btn--loading::after {
    content: '';
    position: absolute;
    width: 1.125rem;
    height: 1.125rem;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Animation utilities */
.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
