/* Main Stylesheet - F/S Digital - Sharp & Professional */

/* ===== BASE ===== */

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    color: var(--color-text-dark);
    background: var(--color-black);
    line-height: var(--leading-normal);
    font-weight: var(--font-weight-normal);
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

p {
    font-weight: var(--font-weight-normal);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.subheading {
    font-weight: var(--font-weight-medium);
}

small,
.caption {
    font-weight: var(--font-weight-normal);
}

/* ===== NAVIGATION ===== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-lg) 0;
    transition: all var(--transition-base);
    z-index: 1000;
    /* Ensure it's on top */
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: #ffffff !important;
    /* Force white hex */
    border-bottom-color: var(--border-subtle);
    padding: var(--space-md) 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    /* Explicit shadow */
}

.navbar.scrolled .navbar__link {
    color: var(--color-text-dark) !important;
}

.navbar.scrolled .menu-toggle__bar {
    background: var(--color-text-dark) !important;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar__logo {
    height: 40px;
    width: auto;
    transition: opacity var(--transition-base);
}

.navbar__logo--default {
    display: block;
}

.navbar__logo--invert {
    display: none;
}

.navbar.scrolled .navbar__logo--default {
    display: none;
}

.navbar.scrolled .navbar__logo--invert {
    display: block;
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.navbar__links {
    display: none;
    gap: var(--space-xl);
}

.navbar__link {
    color: var(--color-text-light);
    font-weight: var(--font-weight-medium);
    font-size: var(--text-sm);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    position: relative;
    transition: color var(--transition-fast);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-grey-olive);
    transition: width var(--transition-base);
}

.navbar__link:hover::after,
.navbar__link.active::after {
    width: 100%;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--overlay-light);
    padding: var(--space-xs);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--color-text-light);
    transition: all var(--transition-base);
}

/* Language Toggle */
.language-toggle {
    display: none;
    /* Hidden by default on mobile (desktop version) */
    align-items: center;
    gap: var(--space-xs);
    background: var(--overlay-light);
    padding: var(--space-xs);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--color-text-light);
    transition: all var(--transition-base);
}

.language-toggle:hover {
    border-color: var(--color-grey-olive);
}

.language-toggle__option {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.language-toggle__option.active {
    background: var(--color-grey-olive);
    color: var(--color-black);
}

/* Mobile Toggle Specifics */
.language-toggle--mobile {
    display: flex;
    /* Always visible inside mobile menu */
    margin-top: var(--space-2xl);
    width: fit-content;
}

/* Desktop Toggle Visibility (in media query later) */

/* Mobile Menu */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: calc(var(--z-navbar) + 10);
    margin-left: auto;
    /* Push to right if needed */
}

.menu-toggle__bar {
    width: 24px;
    height: 2px;
    background: var(--color-text-light);
    border-radius: 0;
    transition: all var(--transition-base);
}

.menu-toggle.active .menu-toggle__bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .menu-toggle__bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-toggle__bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-black);
    border-left: 1px solid var(--border-subtle);
    padding: var(--space-5xl) var(--space-xl);
    transition: right var(--transition-slow);
    z-index: calc(var(--z-navbar) + 5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.mobile-menu__link {
    color: var(--color-text-light);
    font-size: var(--text-lg);
    font-weight: 500;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    transition: all var(--transition-base);
    padding-left: 0;
    border-left: 2px solid transparent;
}

.mobile-menu__link:hover,
.mobile-menu__link.active {
    color: var(--color-grey-olive);
    border-left-color: var(--color-grey-olive);
    padding-left: var(--space-md);
}

/* ===== HERO ===== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--section-padding-mobile) 0;
    background: var(--color-black);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            #cacebd 0%,
            var(--color-black) 100%);
    opacity: 0.8;
    z-index: 0;
    transition: opacity var(--transition-slow);
}

/* Desktop Hover Gradient */
@media (min-width: 1024px) {
    .hero::before {
        opacity: 0.1;
        /* Weak by default on desktop */
    }

    .hero:hover::before {
        opacity: 0.3;
        /* Stronger on hover */
    }
}

.hero__content {
    position: relative;
    text-align: left;
    z-index: var(--z-elevated);
    max-width: 900px;
}

.hero__mouse-follower {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, #cacebd 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    /* Let clicks pass through */
    z-index: 1;
    /* Above background, below content */
    transform: translate(-50%, -50%);
    /* Center on coordinates */
    transition: transform 0.15s cubic-bezier(0.2, 0, 0.2, 1);
    /* Smooth lag */
    left: 50%;
    top: 50%;
    display: none;
    /* Hidden by default (mobile), shown via JS/CSS on desktop */
}

@media (min-width: 1024px) {
    .hero__mouse-follower {
        display: block;
    }
}

.hero__card {
    padding: 0;
}

.hero__headline {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
}

.hero__tagline {
    font-size: var(--text-lg);
    color: var(--color-ash-grey);
    margin-bottom: var(--space-3xl);
    font-weight: 400;
    letter-spacing: var(--tracking-wide);
}

.hero__mouse-follower {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, #cacebd 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    /* Behind content */
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.1s linear;
    /* Smooth fade, fast move */
    left: 0;
    top: 0;
    will-change: transform, opacity;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--color-black);
    background: var(--color-ash-grey-light);
    border: 1px solid var(--color-ash-grey-light);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

@media (min-width: 768px) {
    .hero__cta {
        padding: var(--space-lg) var(--space-3xl);
        font-size: var(--text-base);
    }
}

.hero__cta:hover {
    background: transparent;
    color: var(--color-ash-grey-light);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-grey-olive);
    opacity: 0.5;
}

/* ===== SECTIONS ===== */

.section {
    padding: var(--section-padding-mobile) 0;
    border-top: 1px solid var(--border-subtle);
}

.section--dark {
    background: var(--color-black);
    color: var(--color-text-light);
}

.section--light {
    background: var(--color-ash-grey-light);
    color: var(--color-text-dark);
}

.section__header {
    margin-bottom: var(--space-4xl);
}

.section__title {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
}

.section__subtitle {
    font-size: var(--text-base);
    opacity: 0.7;
    max-width: 600px;
    letter-spacing: var(--tracking-wide);
}

/* ===== SERVICES ===== */

/* Scrollable Container */
/* Scrollable Container */
.services__scroller {
    display: flex;
    gap: var(--space-xl);
    overflow-x: auto;
    padding-bottom: var(--space-xl);
    /* Space for scrollbar/shadow */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none;
    /* Firefox */

    /* Mobile Breakout - Negative Margin Technique */
    margin-left: calc(var(--container-padding) * -1);
    margin-right: calc(var(--container-padding) * -1);
    padding-left: var(--container-padding);
    padding-right: 20%;
    /* Peek next card */
    width: auto;
    /* Let content dictate width */
}

.services__scroller::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.service-card {
    min-width: 300px;
    /* Fixed width for scroll items */
    max-width: 300px;
    scroll-snap-align: center;
    background: var(--overlay-light);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-3xl) var(--space-2xl);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.service-card__icon {
    width: 60px;
    height: 60px;
    background: var(--color-grey-olive);
    border-radius: 50%;
    /* Circular icons look better in scroll */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xl);
    font-size: 1.5rem;
}

.service-card__title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--color-white);
    letter-spacing: var(--tracking-tight);
}

.service-card__list {
    list-style: none;
    padding: 0;
}

.service-card__item {
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
    color: var(--color-ash-grey);
    font-size: var(--text-sm);
    letter-spacing: var(--tracking-wide);
}

.service-card__item::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-grey-olive);
}

/* ===== BENEFITS ===== */

.benefits__grid {
    display: grid;
    gap: var(--space-3xl);
    grid-template-columns: 1fr;
}

.benefit-card {
    text-align: left;
    padding: 0;
}

.benefit-card__icon {
    width: 56px;
    height: 56px;
    background: transparent;
    border: 2px solid var(--color-taupe-grey);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    font-size: var(--text-2xl);
    color: var(--color-taupe-grey);
}

.benefit-card__title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    letter-spacing: var(--tracking-tight);
}

.benefit-card__description {
    opacity: 0.7;
    line-height: var(--leading-relaxed);
    font-size: var(--text-sm);
}

/* ===== ABOUT/TEAM ===== */

.about__intro {
    max-width: 700px;
    margin-bottom: var(--space-4xl);
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--color-ash-grey);
    opacity: 0.9;
}

.team__grid {
    display: grid;
    gap: var(--space-2xl);
    grid-template-columns: 1fr;
    max-width: 900px;
}

.team-card {
    /* CLEANER LOOK - Removed background/border */
    /* background: var(--overlay-light); */
    /* border: 1px solid var(--border-subtle); */
    background: transparent;
    border: none;
    padding: 0;
    /* Remove padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    transition: all var(--transition-base);
}

.team-card:hover {
    /* Subtle lift only, no border change */
    transform: translateY(-5px);
}

.team-card__photo {
    width: 150px;
    /* Increased for better visibility */
    height: 150px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 2px solid var(--color-grey-olive);
    flex-shrink: 0;
}

.team-card__name {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--color-white);
    letter-spacing: var(--tracking-tight);
}

.team-card__role {
    color: var(--color-ash-grey);
    font-size: var(--text-sm);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
}

/* ===== CONTACT ===== */

.contact {
    text-align: left;
}

.contact__title {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-xl);
    letter-spacing: var(--tracking-tight);
}

.contact__buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    align-items: flex-start;
    margin-bottom: var(--space-2xl);
}

.contact__btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--color-black);
    background: transparent;
    border: 2px solid var(--color-taupe-grey);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

@media (min-width: 768px) {
    .contact__btn {
        padding: var(--space-lg) var(--space-3xl);
        font-size: var(--text-base);
    }
}

.contact__btn--secondary {
    background: transparent;
    border-color: var(--color-grey-olive);
}

.contact__btn:hover {
    background: var(--color-taupe-grey);
    color: var(--color-white);
    transform: translateX(4px);
}

.contact__btn--secondary:hover {
    background: var(--color-grey-olive);
    color: var(--color-white);
}

.contact__hours {
    font-size: var(--text-sm);
    color: var(--color-taupe-grey);
    opacity: 0.7;
    letter-spacing: var(--tracking-wide);
}

/* ===== FOOTER ===== */

.footer {
    background: var(--color-black);
    color: var(--color-text-light);
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: 1px solid var(--border-subtle);
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2xl);
}

.footer__logo {
    height: 50px;
    width: auto;
    opacity: 0.8;
}

.footer__socials {
    display: flex;
    gap: var(--space-md);
}

.social-icon {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    transition: all var(--transition-base);
    color: var(--color-text-light);
}

.social-icon:hover {
    border-color: var(--color-grey-olive);
    background: var(--color-grey-olive);
    transform: translateY(-2px);
}

.footer__copyright {
    font-size: var(--text-xs);
    opacity: 0.5;
    letter-spacing: var(--tracking-wide);
}

/* ===== RESPONSIVE - TABLET ===== */

@media (min-width: 768px) {
    .navbar__links {
        display: flex;
    }

    /* Show desktop toggle, hide mobile toggle logic handled by DOM structure, 
       but here we enable the header one */
    .language-toggle {
        display: flex;
    }

    .language-toggle--mobile {
        display: none;
        /* Hide mobile specific one if menu is ever visible on larger screens */
    }

    .menu-toggle {
        display: none;
    }

    .services__scroller {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        /* 3 Columns for Desktop */
        gap: var(--space-xl);
        overflow: visible;
        margin: 0;
        padding: 0;
        justify-content: unset;
        width: auto;
        /* Reset mobile width */
        position: static;
        /* Reset mobile position */
        left: auto;
        right: auto;
    }

    .service-card {
        min-width: unset;
        width: auto;
        /* Let grid control width */
        max-width: unset;
        /* Remove 300px limit */
        flex-shrink: 1;
        height: 100%;
        /* Equal height */
    }

    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-card {
        flex-direction: row;
        /* Restore horizontal on larger screens */
        text-align: left;
        padding: var(--space-2xl);
        align-items: center;
    }

    .team-card__photo {
        width: 200px;
        height: 200px;
    }

    .contact__buttons {
        flex-direction: row;
    }

    .section {
        padding: var(--section-padding-desktop) 0;
    }

    .hero {
        padding: var(--section-padding-desktop) 0;
    }

    .footer__content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ===== RESPONSIVE - DESKTOP ===== */

@media (min-width: 1024px) {
    .benefits__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .section__header {
        max-width: 800px;
    }
}

/* ===== TEAM SECTION ===== */
.team__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: transform 0.3s, background 0.3s;
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.team-card__photo {
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-primary);
}

.team-card__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.team-card__role {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .team__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        /* More room to breathe */
    }

    .team-card {
        flex-direction: row;
        align-items: flex-start;
        /* Start at the same level */
        text-align: left;
        padding: 2.5rem;
    }

    .team-card__photo {
        width: 140px;
        /* Slightly larger on desktop */
        height: 140px;
        flex-shrink: 0;
        /* Don't squash the photo */
    }

    .team-card>div {
        padding-top: 0.5rem;
        /* Optical alignment with the top of the photo circle */
    }
}

/* ============================================================
   SUBPAGE STYLES - FAQ, Blog, Articles
   ============================================================ */

/* --- Subpage Navbar --- */
.navbar--subpage {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
}

/* --- Page Hero (Subpages) --- */
.page-hero {
    padding: 120px 0 48px;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
}

.page-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.page-hero__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.page-hero__meta {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
}

/* --- Breadcrumb --- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--accent-primary);
}

.breadcrumb__separator {
    color: var(--text-secondary);
    opacity: 0.5;
}

.breadcrumb span:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

/* --- Dark Link Style for Subpage Nav --- */
.navbar__link--dark {
    color: var(--text-primary) !important;
}

.navbar__link--dark:hover,
.navbar__link--dark.active {
    color: var(--accent-primary) !important;
}

.menu-toggle--dark .menu-toggle__bar {
    background: var(--text-primary);
}

.language-toggle--subpage {
    border-color: var(--border-light);
    color: var(--text-primary);
}

/* ===== FAQ STYLES ===== */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--bg-primary);
}

.faq-item:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    gap: 1rem;
    font-family: inherit;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--text-secondary);
}

.faq-item--open .faq-icon {
    transform: rotate(180deg);
    color: var(--accent-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item--open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* --- FAQ CTA --- */
.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.faq-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* ===== BLOG STYLES ===== */

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 2rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.blog-card:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.blog-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
}

.blog-card__date {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.blog-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.blog-card__excerpt {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

.blog-card__read-more {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-primary);
    transition: color 0.2s;
}

.blog-card:hover .blog-card__read-more {
    color: var(--text-primary);
}

/* ===== ARTICLE STYLES ===== */

.article-content {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.article-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-content p {
    margin-bottom: 1.25rem;
}

.article-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.article-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    text-align: center;
}

.article-cta p {
    margin-bottom: 1rem;
}

.article-back {
    display: inline-block;
    margin-top: 2.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.article-back:hover {
    color: var(--text-primary);
}

/* ===== PRICING TABLE ===== */

.pricing-table {
    margin: 1.5rem 0 2rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9375rem;
    align-items: center;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row--header {
    background: rgba(0, 0, 0, 0.03);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 600px) {
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
        padding: 0.75rem 1rem;
    }

    .pricing-row--header {
        display: none;
    }

    .pricing-row span:last-child {
        font-weight: 700;
        color: var(--accent-primary);
    }
}