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

:root {
    --color-cyan-900: #0c4a6e;
    --color-cyan-800: #0e7490;
    --color-cyan-600: #0891b2;
    --color-cyan-500: #06b6d4;
    --color-orange-600: #ea580c;
    --color-orange-500: #f97316;
    --color-amber-400: #fbbf24;
    --color-amber-200: #fed7aa;
    --color-amber-100: #fef3c7;
    --color-slate-900: #0f172a;
    --color-slate-800: #1e293b;
    --color-slate-500: #64748b;
    --color-slate-100: #f1f5f9;
    --color-slate-50: #f8fafc;
    --color-blue-900: #1e3a8a;
    --color-blue-50: #eff6ff;
    --color-cream: #fef9f5;
    --color-white: #ffffff;

    --font-heading: 'Sora', sans-serif;
    --font-body: 'Geist', sans-serif;
    --font-quote: 'Outfit', sans-serif;

    --shadow-sm: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-cyan: 0px 10px 15px -3px rgba(8, 145, 178, 0.3), 0px 4px 6px -4px rgba(8, 145, 178, 0.3);

    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    --container-max: 1216px;
    --section-padding: 128px;
}

.homepage {
    font-family: var(--font-body);
    color: var(--color-slate-800);
    line-height: 1.6;
}

.homepage__hero {
    position: relative;
    background: linear-gradient(180deg, var(--color-cyan-600) 0%, var(--color-cyan-800) 50%, var(--color-cyan-900) 100%);
    padding: 64px 0 128px;
    overflow: hidden;
}

.homepage__hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(249, 115, 22, 0.3) 0%, rgba(251, 191, 36, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.homepage__hero::after {
    content: '';
    position: absolute;
    width: 384px;
    height: 384px;
    background: rgba(251, 191, 36, 0.2);
    border-radius: var(--radius-full);
    filter: blur(64px);
    top: 200px;
    right: 15%;
    pointer-events: none;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    z-index: 1;
}

.hero__content {
    max-width: 584px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid var(--color-amber-400);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    margin-bottom: 32px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-amber-400);
    border-radius: var(--radius-full);
}

.hero__badge-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.224px;
    color: var(--color-white);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 400;
    line-height: 75px;
    letter-spacing: -1.8px;
    color: var(--color-white);
    margin: 0 0 32px;
}

.hero__description {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 32.5px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.hero__description p {
    margin: 0;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.224px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hero__button--primary {
    background: linear-gradient(180deg, var(--color-orange-500) 0%, var(--color-orange-600) 100%);
    color: var(--color-white);
}

.hero__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero__button--secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

.hero__button--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.hero__stat-value {
    font-family: var(--font-body);
    font-size: 36px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.576px;
    color: var(--color-amber-400);
    margin-bottom: 4px;
}

.hero__stat-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.224px;
    color: rgba(255, 255, 255, 0.9);
}

.hero__media {
    position: relative;
}

.hero__image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero__approval-badge {
    position: absolute;
    bottom: 24px;
    left: -24px;
    background: var(--color-white);
    border-left: 4px solid var(--color-amber-400);
    border-radius: var(--radius-lg);
    padding: 24px 24px 24px 28px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero__approval-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(180deg, var(--color-cyan-600) 0%, var(--color-cyan-800) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__approval-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-slate-500);
}

.hero__approval-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-slate-800);
}

/* ================================================
   PARTNERS LOGO CAROUSEL
   ================================================ */

.homepage__partners {
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-slate-50) 100%);
    padding: 60px 0;
    overflow: hidden;
}

.partners {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.partners__label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-slate-500);
    text-align: center;
    margin: 0;
}

.partners__carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Gradient fade effect on edges */
.partners__carousel::before,
.partners__carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.partners__carousel::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-white) 0%, rgba(255, 255, 255, 0) 100%);
}

.partners__carousel::after {
    right: 0;
    background: linear-gradient(270deg, var(--color-white) 0%, rgba(255, 255, 255, 0) 100%);
}

.partners__track {
    display: flex;
    gap: 60px;
    animation: scroll-logos 40s linear infinite;
    width: fit-content;
}

/* Pause animation on hover */
.partners__carousel:hover .partners__track {
    animation-play-state: paused;
}

.partners__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 60px;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: grayscale(100%);
}

.partners__logo:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: grayscale(0%);
}

.partners__logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Keyframe animation for infinite scroll */
@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .homepage__partners {
        padding: 40px 0;
    }

    .partners {
        gap: 24px;
    }

    .partners__track {
        gap: 40px;
        animation-duration: 30s;
    }

    .partners__logo {
        min-width: 100px;
        height: 45px;
    }

    .partners__carousel::before,
    .partners__carousel::after {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .partners__track {
        gap: 30px;
        animation-duration: 25s;
    }

    .partners__logo {
        min-width: 80px;
        height: 40px;
    }
}

/* ================================================
   FEATURES SECTION
   ================================================ */

.homepage__features {
    background: var(--color-white);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.homepage__features::before {
    content: '';
    position: absolute;
    width: 879px;
    height: 1303px;
    background: linear-gradient(236deg, rgba(254, 243, 199, 0.24) 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: 0 0 0 var(--radius-full);
    filter: blur(50px);
    top: -543px;
    right: 0;
    pointer-events: none;
}

.section-header {
    max-width: 768px;
    margin-bottom: 48px;
}

.section-header--centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header__label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: var(--color-cyan-600);
    margin-bottom: 16px;
}

.section-header__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: -0.768px;
    color: var(--color-slate-800);
    margin: 0 0 16px;
}

.section-header__description {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--color-slate-500);
}

.section-header__description p {
    margin: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-card__media {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.feature-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card__body {
    padding: 24px;
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.32px;
    color: var(--color-slate-800);
    margin: 0 0 12px;
}

.feature-card__link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.feature-card__link:hover {
    color: var(--color-cyan-600);
}

.feature-card__excerpt {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--color-slate-500);
}

.feature-card__excerpt p {
    margin: 0;
}

.feature-bar {
    height: 4px;
    width: 48px;
    margin-bottom: 20px;
}

.feature-bar--cyan {
    background: var(--color-cyan-600);
}

.feature-bar--orange {
    background: var(--color-orange-500);
}

.feature-bar--gradient {
    background: linear-gradient(90deg, var(--color-cyan-600) 0%, var(--color-orange-500) 100%);
}

.homepage__showcase {
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-cream) 100%);
    padding: var(--section-padding) 0;
    position: relative;
}

.homepage__showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--color-cyan-600) 0%, var(--color-amber-400) 50%, var(--color-orange-500) 100%);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.showcase-item {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.showcase-item__figure {
    margin: 0;
    height: 256px;
    overflow: hidden;
}

.showcase-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-item__image {
    transform: scale(1.05);
}

.showcase-item__content {
    padding: 24px;
}

.showcase-item__date {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.224px;
    color: var(--color-slate-500);
    margin-bottom: 12px;
}

.showcase-item__title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.384px;
    color: var(--color-slate-800);
    margin: 0 0 12px;
}

.showcase-item__link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.showcase-item__link:hover {
    color: var(--color-cyan-600);
}

.showcase-item__excerpt {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--color-slate-500);
    margin-bottom: 16px;
}

.showcase-item__excerpt p {
    margin: 0;
}

.showcase-item__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: var(--color-orange-500);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.showcase-item__more:hover {
    gap: 12px;
}

.showcase-item__more::after {
    content: '→';
}

.homepage__cta {
    background: linear-gradient(140deg, var(--color-slate-50) 0%, var(--color-blue-50) 100%);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.cta-block {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: 64px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.cta-block__content {
    max-width: 576px;
}

.cta-block__label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: var(--color-cyan-600);
    margin-bottom: 16px;
}

.cta-block__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: -0.768px;
    color: var(--color-slate-800);
    margin: 0 0 24px;
}

.cta-block__text {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 32.5px;
    color: var(--color-slate-500);
    margin: 0;
}

.cta-block__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(180deg, var(--color-orange-500) 0%, var(--color-orange-600) 100%);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.cta-block__button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-block__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 48px;
    border-top: 2px solid var(--color-amber-200);
    margin-top: 48px;
}

.cta-block__stat-value {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.384px;
    margin-bottom: 4px;
}

.cta-block__stat-value--blue {
    color: var(--color-blue-900);
}

.cta-block__stat-value--orange {
    color: var(--color-orange-500);
}

.cta-block__stat-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.224px;
    color: var(--color-slate-500);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.contact-info__item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info__icon--cyan {
    background: rgba(8, 145, 178, 0.1);
}

.contact-info__icon--orange {
    background: rgba(249, 115, 22, 0.1);
}

.contact-info__label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.224px;
    color: var(--color-slate-500);
}

.contact-info__value {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: var(--color-slate-800);
}

.process-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.process-card__number {
    width: 64px;
    height: 64px;
    background: linear-gradient(180deg, var(--color-cyan-600) 0%, var(--color-cyan-800) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.32px;
    color: var(--color-white);
    margin: 0 auto 24px;
}

.process-card__phase {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.224px;
    color: var(--color-cyan-600);
    margin-bottom: 8px;
}

.process-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.32px;
    color: var(--color-slate-800);
    margin: 0 0 16px;
}

.process-card__step-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: var(--color-slate-800);
    margin-bottom: 4px;
}

.process-card__step-desc {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-slate-500);
}

.service-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.service-step__number {
    width: 48px;
    height: 48px;
    background: linear-gradient(180deg, var(--color-cyan-600) 0%, var(--color-cyan-800) 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.32px;
    color: var(--color-white);
    flex-shrink: 0;
}

.service-step__content {
    flex: 1;
}

.service-step__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.32px;
    color: var(--color-slate-800);
    margin: 0 0 8px;
}

.service-step__description {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--color-slate-500);
    margin: 0;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.checklist__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.checklist__text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: var(--color-slate-500);
}

.testimonial-card {
    background: linear-gradient(159deg, var(--color-cream) 0%, rgba(254, 243, 199, 0.2) 100%);
    border-radius: var(--radius-2xl);
    padding: 48px 162px;
}

.testimonial-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.testimonial-card__quote {
    font-family: var(--font-quote);
    font-size: 30px;
    font-weight: 400;
    line-height: 48.75px;
    color: var(--color-slate-800);
    margin: 0 0 32px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-card__avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(180deg, var(--color-cyan-600) 0%, var(--color-cyan-500) 100%);
    border-radius: var(--radius-full);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.3);
}

.testimonial-card__name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: var(--color-slate-800);
}

.testimonial-card__location {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.224px;
    color: var(--color-slate-500);
}

.timeline-card {
    background: linear-gradient(164deg, var(--color-cream) 0%, rgba(254, 243, 199, 0.3) 100%);
    border: 1px solid rgba(254, 215, 170, 0.5);
    border-radius: var(--radius-2xl);
    padding: 49px 160px;
}

.timeline-card__title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.384px;
    color: var(--color-slate-800);
    margin: 0 0 32px;
}

.timeline-row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 16px 0;
}

.timeline-row + .timeline-row {
    border-top: 1px solid var(--color-amber-200);
}

.timeline-row__label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: var(--color-slate-500);
    width: 96px;
    flex-shrink: 0;
}

.timeline-row__value {
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: -0.48px;
    color: var(--color-slate-800);
}

.timeline-row__unit {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: var(--color-slate-500);
    margin-left: 8px;
}

.timeline-row__desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-slate-500);
    margin-top: 8px;
}

.blog-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    background: var(--color-slate-50);
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.blog-featured__image {
    position: relative;
}

.blog-featured__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured__badge {
    position: absolute;
    top: 22px;
    left: 24px;
    background: var(--color-orange-500);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.224px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
}

.blog-featured__content {
    padding: 85px 48px;
}

.blog-featured__date {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.224px;
    color: var(--color-slate-500);
    margin-bottom: 12px;
}

.blog-featured__title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 400;
    line-height: 37.5px;
    letter-spacing: -0.48px;
    color: var(--color-slate-800);
    margin: 0 0 16px;
}

.blog-featured__excerpt {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--color-slate-500);
    margin-bottom: 24px;
}

.blog-featured__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: var(--color-orange-500);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.blog-featured__link:hover {
    gap: 16px;
}

.success-rate-card {
    background: linear-gradient(151deg, var(--color-white) 0%, rgba(254, 243, 199, 0.3) 100%);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: var(--radius-xl);
    padding: 34px 50px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.success-rate-card__value {
    font-family: var(--font-body);
    font-size: 48px;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: -0.768px;
    background: linear-gradient(180deg, var(--color-cyan-600) 0%, var(--color-orange-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.success-rate-card__label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: var(--color-slate-800);
    margin-bottom: 4px;
}

.success-rate-card__desc {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-slate-500);
}

.consultation-form {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: 52px 48px;
    box-shadow: var(--shadow-lg);
}

.consultation-form__title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.384px;
    color: var(--color-slate-800);
    margin: 0 0 24px;
}

.consultation-form__placeholder {
    background: var(--color-slate-50);
    border: 2px solid var(--color-amber-200);
    border-radius: var(--radius-xl);
    padding: 112px 24px;
    text-align: center;
    margin-bottom: 24px;
}

.consultation-form__expect {
    margin-top: 24px;
}

.consultation-form__expect-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: var(--color-slate-800);
    margin: 0 0 16px;
}

.consultation-form__expect-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.consultation-form__expect-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.224px;
    color: var(--color-slate-500);
}

.consultation-form__expect-check {
    color: var(--color-orange-500);
}

.quote-block {
    border-left: 4px solid var(--color-cyan-600);
    padding-left: 28px;
}

.quote-block__text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-slate-800);
    margin: 0 0 8px;
}

.quote-block__author {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.224px;
    color: var(--color-slate-500);
}

@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__title {
        font-size: 48px;
        line-height: 56px;
    }

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

    .cta-block {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-block__actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .hero__title {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: -1px;
    }

    .hero__description {
        font-size: 18px;
        line-height: 28px;
    }

    .hero__stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero__stat-value {
        font-size: 28px;
        line-height: 32px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__button {
        width: 100%;
        justify-content: center;
    }

    .section-header__title {
        font-size: 32px;
        line-height: 40px;
    }

    .section-header__description {
        font-size: 18px;
        line-height: 26px;
    }

    .feature-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .cta-block {
        padding: 32px;
    }

    .cta-block__title {
        font-size: 32px;
        line-height: 40px;
    }

    .cta-block__stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-card {
        padding: 32px;
    }

    .testimonial-card__quote {
        font-size: 24px;
        line-height: 36px;
    }

    .timeline-card {
        padding: 32px;
    }

    .timeline-row {
        flex-direction: column;
        gap: 8px;
    }

    .timeline-row__label {
        width: auto;
    }

    .blog-featured {
        grid-template-columns: 1fr;
    }

    .blog-featured__content {
        padding: 32px;
    }

    .blog-featured__title {
        font-size: 24px;
        line-height: 32px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 64px;
    }

    .hero__title {
        font-size: 28px;
        line-height: 36px;
    }

    .hero__badge {
        padding: 6px 12px;
    }

    .hero__badge-text {
        font-size: 12px;
    }

    .section-header__title {
        font-size: 28px;
        line-height: 36px;
    }

    .cta-block__title {
        font-size: 28px;
        line-height: 36px;
    }

    .testimonial-card__quote {
        font-size: 20px;
        line-height: 30px;
    }
}

/* About Section */
.homepage__about {
    background: var(--color-white);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.about__header {
    max-width: 768px;
    margin-bottom: 48px;
}

.about__label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: var(--color-cyan-600);
    margin-bottom: 16px;
}

.about__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: -0.768px;
    color: var(--color-slate-800);
    margin: 0 0 16px;
}

.about__description {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--color-slate-500);
    margin: 0;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 96px;
}

.about__left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about__block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about__block-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.384px;
    color: var(--color-slate-800);
    margin: 0;
}

.about__block-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--color-slate-500);
    margin: 0;
}

.about__right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about__image-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about__stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.about__stat-card {
    padding: 32px 36px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about__stat-card--cyan {
    background: linear-gradient(150deg, rgba(8, 145, 178, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.about__stat-card--cyan .about__stat-value {
    color: var(--color-cyan-600);
}

.about__stat-card--orange {
    background: linear-gradient(150deg, rgba(249, 115, 22, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
}

.about__stat-card--orange .about__stat-value {
    color: var(--color-orange-500);
}

.about__stat-value {
    font-family: var(--font-body);
    font-size: 36px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.576px;
}

.about__stat-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: var(--color-slate-800);
}

.about__stat-desc {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.224px;
    color: var(--color-slate-500);
}

.about__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 96px;
}

.about__feature {
    display: flex;
    flex-direction: column;
}

.about__feature-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.32px;
    color: var(--color-slate-800);
    margin: 0 0 16px;
}

.about__feature-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--color-slate-500);
    margin: 0;
}

.testimonial-card__info {
    display: flex;
    flex-direction: column;
}

/* Services Section */
.homepage__services {
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-cream) 100%);
    padding: var(--section-padding) 0;
    position: relative;
}

.homepage__services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--color-cyan-600) 0%, var(--color-amber-400) 50%, var(--color-orange-500) 100%);
}

.services__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 32px;
}

.services__intro {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services__label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: var(--color-cyan-600);
}

.services__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: -0.768px;
    color: var(--color-slate-800);
    margin: 0;
}

.services__image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.services__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.services__description {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 32.5px;
    color: var(--color-slate-500);
    margin: 0 0 96px;
    max-width: 576px;
}

.services__columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 96px;
}

.services__column-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.384px;
    color: var(--color-slate-800);
    margin: 0 0 24px;
}

.services__steps {
    margin-bottom: 96px;
}

.services__steps-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: -0.48px;
    color: var(--color-slate-800);
    text-align: center;
    margin: 0 0 48px;
}

.services__steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

/* Process Section */
.homepage__process {
    background: linear-gradient(180deg, var(--color-cream) 0%, rgba(254, 243, 199, 0.2) 100%);
    padding: var(--section-padding) 0;
    position: relative;
}

.homepage__process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-cyan-600) 0%, var(--color-amber-400) 50%, var(--color-orange-500) 100%);
}

.process__header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 64px;
}

.process__label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: var(--color-cyan-600);
    margin-bottom: 16px;
}

.process__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: -0.768px;
    color: var(--color-slate-800);
    margin: 0 0 24px;
}

.process__description {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--color-slate-500);
    margin: 0;
}

.process__phases {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 64px;
    position: relative;
}

.process__phases::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-cyan-600) 0%, var(--color-amber-400) 50%, var(--color-orange-500) 100%);
    z-index: 0;
}

.process-card {
    position: relative;
    z-index: 1;
    text-align: center;
}

.process-card__content {
    padding: 24px 6px;
    text-align: left;
}

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

.process-card__step {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.process__cta {
    text-align: center;
    margin-top: 64px;
}

.process__cta-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-slate-500);
    margin: 0 0 16px;
}

.process__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(180deg, var(--color-orange-500) 0%, var(--color-orange-600) 100%);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.process__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Agents Section */
.homepage__agents {
    background: var(--color-white);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

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

.agents__label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: var(--color-cyan-600);
    margin-bottom: 16px;
}

.agents__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: -0.768px;
    color: var(--color-slate-800);
    margin: 0 0 24px;
}

.agents__description {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--color-slate-500);
    margin: 0 0 32px;
}

.agents__benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.agents__benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.agents__benefit-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.agents__benefit-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.agents__benefit-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: var(--color-slate-800);
}

.agents__benefit-desc {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-slate-500);
}

.agents__button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(180deg, var(--color-orange-500) 0%, var(--color-orange-600) 100%);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.agents__button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.agents__media {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.agents__image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Blog Section */
.homepage__blog {
    background: var(--color-white);
    padding: var(--section-padding) 0;
}

.blog__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}

.blog__intro {
    max-width: 672px;
}

.blog__label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: var(--color-cyan-600);
    margin-bottom: 16px;
}

.blog__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: -0.768px;
    color: var(--color-slate-800);
    margin: 0 0 16px;
}

.blog__description {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--color-slate-500);
    margin: 0;
}

.blog__view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: var(--color-orange-500);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.blog__view-all:hover {
    gap: 16px;
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.blog-card {
    display: flex;
    flex-direction: column;
}

.blog-card__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 256px;
    margin-bottom: 24px;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-card__meta {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.224px;
    color: var(--color-slate-500);
    margin-bottom: 12px;
}

.blog-card__title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.384px;
    color: var(--color-slate-800);
    margin: 0 0 12px;
}

.blog-card__excerpt {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--color-slate-500);
    margin: 0 0 16px;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: var(--color-orange-500);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.blog-card__link:hover {
    gap: 12px;
}

/* Contact Section */
.homepage__contact {
    background: linear-gradient(140deg, var(--color-slate-50) 0%, var(--color-blue-50) 100%);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact__label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: var(--color-cyan-600);
    margin-bottom: 16px;
}

.contact__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: -0.768px;
    color: var(--color-slate-800);
    margin: 0 0 24px;
}

.contact__description {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 32.5px;
    color: var(--color-slate-500);
    margin: 0 0 32px;
}

.contact__features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.contact__feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact__feature-content {
    flex: 1;
}

.contact__feature-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--color-slate-800);
    margin: 0 0 8px;
}

.contact__feature-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--color-slate-500);
    margin: 0;
}

.contact__info {
    margin-bottom: 48px;
}

.contact__info-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.288px;
    color: var(--color-slate-800);
    margin: 0 0 16px;
}

.contact__info-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact__info-item svg {
    margin-top: 2px;
    flex-shrink: 0;
}

.contact__info-text {
    display: flex;
    flex-direction: column;
}

.contact__info-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.224px;
    color: var(--color-slate-500);
}

.contact__info-value {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.256px;
    color: var(--color-slate-800);
}

.contact__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 48px;
    border-top: 2px solid var(--color-amber-200);
}

.contact__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact__stat-value {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.384px;
}

.contact__stat-value--blue {
    color: var(--color-blue-900);
}

.contact__stat-value--orange {
    color: var(--color-orange-500);
}

.contact__stat-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.224px;
    color: var(--color-slate-500);
}

.consultation-form__placeholder-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: var(--color-slate-500);
    margin: 24px 0 8px;
}

.consultation-form__placeholder-subtext {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-slate-500);
    margin: 0;
}

/* Additional Responsive Styles */
@media (max-width: 1200px) {
    .about__content,
    .services__header,
    .agents,
    .contact {
        grid-template-columns: 1fr;
    }

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

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

    .process__phases::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .about__title,
    .services__title,
    .process__title,
    .agents__title,
    .blog__title,
    .contact__title {
        font-size: 32px;
        line-height: 40px;
    }

    .about__features {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about__stats-row {
        grid-template-columns: 1fr;
    }

    .services__columns {
        grid-template-columns: 1fr;
    }

    .services__steps-grid {
        grid-template-columns: 1fr;
    }

    .process__phases {
        grid-template-columns: 1fr;
    }

    .blog__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .blog__grid {
        grid-template-columns: 1fr;
    }

    .contact__stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .about__stat-card {
        padding: 24px;
    }

    .process-card__content {
        padding: 16px;
    }

    .consultation-form {
        padding: 32px 24px;
    }
}


body.com-homepage #sp-main-body {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* ==========================================================================
   TMP Header Styles - Matching Figma Design
   ========================================================================== */

.tmp-header {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.tmp-header__gradient-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--color-cyan-600) 0%, var(--color-amber-400) 50%, var(--color-orange-500) 100%);
}

.tmp-header__main {
    height: 80px;
    display: flex;
    align-items: center;
}

.tmp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.tmp-header__logo {
    flex-shrink: 0;
}

.tmp-header__logo img {
    height: 80px;
    width: auto;
}

.tmp-header__logo .logo a {
    display: flex;
    align-items: center;
}

.tmp-header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.tmp-header__menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tmp-header__menu-item {
    margin: 0;
    padding: 0;
}

.tmp-header__menu-link {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-slate-500);
    text-decoration: none;
    transition: color 0.2s ease;
}

.tmp-header__menu-link:hover {
    color: var(--color-cyan-600);
}

.tmp-header__divider {
    width: 1px;
    height: 24px;
    background: var(--color-amber-200);
}

.tmp-header__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-slate-500);
    transition: color 0.2s ease;
}

.tmp-header__phone:hover {
    color: var(--color-cyan-600);
}

.tmp-header__phone-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.tmp-header__phone-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.224px;
}

.tmp-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: var(--color-cyan-600);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    text-decoration: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.tmp-header__cta:hover {
    background: var(--color-cyan-800);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.tmp-header__mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.tmp-header__mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-slate-800);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Override default Helix header styles */
#sp-header.tmp-header {
    height: fit-content !important;
    padding: 0;
    background: rgba(255, 255, 255, 0.98);
}

#sp-header.tmp-header .container {
    max-width: var(--container-max);
    padding: 0 16px;
}

/* Hide default Helix elements when using TMP header */
.tmp-header .sp-column,
.tmp-header #sp-logo .sp-column,
.tmp-header #sp-menu {
    all: unset;
}

/* Sticky header support */
.sticky-header-placeholder + .tmp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

/* Header responsive styles */
@media (max-width: 1024px) {
    .tmp-header__nav {
        display: none;
    }

    .tmp-header__cta {
        display: none;
    }

    .tmp-header__mobile-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .tmp-header__main {
        height: 64px;
    }

    .tmp-header__logo img {
        height: 40px;
    }
}

/* ==========================================================================
   TMP Footer Styles - Matching Figma Design
   ========================================================================== */

/* Hide the default Helix footer inside sp-main */
#sp-main #sp-footer:not(.tmp-footer),
#sp-main footer#sp-footer:not(.tmp-footer) {
    display: none !important;
}

/* Override Helix default footer styles */
#sp-footer.tmp-footer,
footer.tmp-footer,
.tmp-footer {
    background: linear-gradient(180deg, #0891b2 0%, #0e7490 50%, #155e75 100%) !important;
    padding: 80px 0 0 !important;
    color: #ffffff !important;
    margin: 0 !important;
    border: none !important;
}

.tmp-footer,
.tmp-footer * {
    box-sizing: border-box;
}

/* Make all footer text white for visibility */
.tmp-footer,
.tmp-footer p,
.tmp-footer a,
.tmp-footer span,
.tmp-footer h3,
.tmp-footer li,
.tmp-footer .tmp-footer__link,
.tmp-footer .tmp-footer__contact-link,
.tmp-footer .tmp-footer__legal-link,
.tmp-footer .tmp-footer__copyright,
.tmp-footer .tmp-footer__disclaimer {
    color: #ffffff !important;
}

.tmp-footer__main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 48px;
}

/* Brand Column */
.tmp-footer__brand {
    max-width: 353px;
}

.tmp-footer__logo {
    margin-bottom: 16px;
}

.tmp-footer__logo img {
    height: 64px;
    width: auto;
}

.tmp-footer__logo .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tmp-footer__logo .logo-text,
.tmp-footer__logo .site-title,
.tmp-footer__logo-text {
    font-family: 'Helvetica', sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 26px;
    letter-spacing: -1.6px;
    color: #ffffff !important;
    text-decoration: none;
}

.tmp-footer__description {
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #ffffff;
    margin-bottom: 24px;
}

.tmp-footer__social {
    display: flex;
    gap: 12px;
}

.tmp-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.tmp-footer__social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Footer Columns */
.tmp-footer__column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tmp-footer__heading {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.256px;
    color: #ffffff;
    margin: 0;
}

.tmp-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tmp-footer__list li {
    margin: 0;
    padding: 0;
}

.tmp-footer__link {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.224px;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.2s ease;
}

.tmp-footer__link:hover {
    color: #ffffff;
}

/* Contact List */
.tmp-footer__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tmp-footer__contact-link {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.224px;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.2s ease;
}

.tmp-footer__contact-link:hover {
    color: #ffffff;
}

.tmp-footer__contact-link svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.tmp-footer__contact-link span {
    line-height: 1.5;
}

/* CTA Button */
.tmp-footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.224px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 24px;
    width: fit-content;
}

.tmp-footer__cta:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Disclaimer */
.tmp-footer__disclaimer {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.224px;
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
    margin-bottom: 48px;
}

/* Bottom Bar */
.tmp-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 33px 0 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tmp-footer__copyright {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.224px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.tmp-footer__developer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.tmp-footer__developer-link:hover {
    color: #ffffff;
}

.tmp-footer__legal {
    display: flex;
    gap: 24px;
}

.tmp-footer__legal-link {
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.224px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.tmp-footer__legal-link:hover {
    color: #ffffff;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .tmp-footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .tmp-footer__brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .tmp-footer {
        padding: 48px 0 0;
    }

    .tmp-footer__main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tmp-footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 24px 0;
    }

    .tmp-footer__legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .tmp-footer__disclaimer {
        margin-bottom: 32px;
    }
}

/* ================================================
   ARTICLE DETAIL PAGE - Magazine Style
   ================================================ */

.tmp-article {
    font-family: var(--font-body);
    color: var(--color-slate-800);
    line-height: 1.7;
    background: var(--color-slate-50);
}

/* Hero Image - Full Bleed */
.tmp-article__hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.tmp-article__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

/* Content Wrapper - Overlaps Hero */
.tmp-article__wrapper {
    position: relative;
    margin-top: -150px;
    padding-bottom: 80px;
}

/* Layout - Main + Sidebar */
.tmp-article__layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

/* Main Content Area */
.tmp-article__main {
    min-width: 0;
}

/* White Card Header */
.tmp-article__card {
    background: var(--color-white);
    padding: 48px 56px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 0;
}

/* Category Badge */
.tmp-article__category {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--color-cyan-600);
    margin-bottom: 16px;
}

/* Title - Large Serif Style */
.tmp-article__title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-slate-900);
    margin: 0 0 20px 0;
}

/* Subtitle */
.tmp-article__subtitle {
    font-size: 18px;
    color: var(--color-slate-600);
    line-height: 1.6;
    margin: 0 0 24px 0;
    font-style: italic;
}

/* Meta Info */
.tmp-article__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: var(--color-slate-500);
    padding-top: 20px;
    border-top: 1px solid var(--color-slate-100);
}

.tmp-article__meta-divider {
    color: var(--color-slate-300);
}

.tmp-article__author {
    font-weight: 500;
}

.tmp-article__reading-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tmp-article__reading-time svg {
    opacity: 0.7;
}

/* Article Content */
.tmp-article__content {
    background: var(--color-white);
    padding: 48px 56px;
    font-size: 17px;
    line-height: 1.8;
    border-top: 1px solid var(--color-slate-100);
}

.tmp-article__content p {
    margin-bottom: 24px;
}

.tmp-article__content p:first-of-type::first-letter {
    font-size: 3.5em;
    float: left;
    line-height: 0.8;
    margin: 8px 12px 0 0;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-cyan-600);
}

.tmp-article__content h2,
.tmp-article__content h3,
.tmp-article__content h4 {
    font-family: var(--font-heading);
    color: var(--color-slate-900);
    margin: 40px 0 16px;
}

.tmp-article__content h2 {
    font-size: 28px;
}

.tmp-article__content h3 {
    font-size: 22px;
}

.tmp-article__content ul,
.tmp-article__content ol {
    margin: 24px 0;
    padding-left: 24px;
}

.tmp-article__content li {
    margin-bottom: 12px;
}

.tmp-article__content blockquote {
    border-left: 4px solid var(--color-cyan-600);
    margin: 32px 0;
    padding: 20px 32px;
    background: var(--color-cyan-600);
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.05) 0%, rgba(8, 145, 178, 0.02) 100%);
    font-style: italic;
    font-size: 18px;
    color: var(--color-slate-700);
}

.tmp-article__content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 32px 0;
}

/* Tags */
.tmp-article__tags {
    background: var(--color-white);
    padding: 24px 56px;
    border-top: 1px solid var(--color-slate-100);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.tmp-article__tags-label {
    font-weight: 600;
    color: var(--color-slate-700);
    margin-right: 8px;
}

.tmp-article__tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--color-slate-100);
    color: var(--color-slate-600);
    font-size: 13px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.2s ease;
}

.tmp-article__tag:hover {
    background: var(--color-cyan-600);
    color: var(--color-white);
}

/* Share Section */
.tmp-article__share {
    background: var(--color-white);
    padding: 24px 56px;
    border-top: 1px solid var(--color-slate-100);
    display: flex;
    align-items: center;
    gap: 16px;
}

.tmp-article__share-label {
    font-weight: 600;
    color: var(--color-slate-700);
}

.tmp-article__share-buttons {
    display: flex;
    gap: 12px;
}

.tmp-article__share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--color-slate-100);
    color: var(--color-slate-600);
    transition: all 0.2s ease;
}

.tmp-article__share-btn:hover {
    background: var(--color-cyan-600);
    color: var(--color-white);
}

/* Navigation */
.tmp-article__navigation {
    background: var(--color-white);
    padding: 24px 56px;
    border-top: 1px solid var(--color-slate-100);
}

.tmp-article__back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-cyan-600);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tmp-article__back-link:hover {
    color: var(--color-cyan-800);
    gap: 12px;
}

/* Sidebar */
.tmp-article__sidebar {
    position: sticky;
    top: 100px;
    background: var(--color-white);
    padding: 32px;
    box-shadow: var(--shadow-md);
    margin-top: 150px;
}

.tmp-article__sidebar-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-slate-400);
    text-transform: uppercase;
    margin: 0 0 24px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-slate-100);
}

/* Related Articles */
.tmp-article__related {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tmp-article__related-item {
    display: block;
    text-decoration: none;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-slate-100);
    transition: all 0.2s ease;
}

.tmp-article__related-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tmp-article__related-item:hover .tmp-article__related-title {
    color: var(--color-cyan-600);
}

.tmp-article__related-category {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-cyan-600);
    margin-bottom: 8px;
}

.tmp-article__related-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-slate-800);
    line-height: 1.4;
    margin: 0;
    transition: color 0.2s ease;
}

/* Responsive - Article Page */
@media (max-width: 1024px) {
    .tmp-article__layout {
        grid-template-columns: 1fr;
    }

    .tmp-article__sidebar {
        margin-top: 48px;
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .tmp-article__hero {
        height: 350px;
    }

    .tmp-article__wrapper {
        margin-top: -100px;
    }

    .tmp-article__card,
    .tmp-article__content,
    .tmp-article__tags,
    .tmp-article__share,
    .tmp-article__navigation {
        padding-left: 24px;
        padding-right: 24px;
    }

    .tmp-article__title {
        font-size: 28px;
    }

    .tmp-article__subtitle {
        font-size: 16px;
    }

    .tmp-article__content {
        font-size: 16px;
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .tmp-article__content p:first-of-type::first-letter {
        font-size: 2.5em;
    }

    .tmp-article__meta {
        font-size: 13px;
    }

    .tmp-article__share {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ================================================
   BLOG CATEGORY PAGE - Enhanced Design
   ================================================ */

/* Hero Section */
.tmp-blog-hero {
    position: relative;
    background: linear-gradient(135deg, #0e7490 0%, #0891b2 50%, #06b6d4 100%) !important;
    padding: 80px 0 100px;
    overflow: hidden;
    min-height: 300px;
}

.tmp-blog-hero__bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.tmp-blog-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--color-slate-50) 0%, transparent 100%);
    pointer-events: none;
}

.tmp-blog-hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.tmp-blog-hero__title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    color: #ffffff !important;
    margin: 0 0 20px;
    line-height: 1.1;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.tmp-blog-hero__description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 24px;
}

.tmp-blog-hero__description p {
    margin: 0;
}

.tmp-blog-hero__stats {
    display: flex;
    gap: 24px;
}

.tmp-blog-hero__stat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
}

/* Blog Content Area */
.tmp-blog {
    font-family: var(--font-body);
    background: var(--color-slate-50);
    padding: 80px 0 80px;
    min-height: 40vh;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.tmp-blog__empty {
    text-align: center;
    padding: 80px 24px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.tmp-blog__empty svg {
    opacity: 0.5;
}

.tmp-blog__empty p {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-slate-700);
    margin: 0;
}

.tmp-blog__empty span {
    font-size: 14px;
    color: var(--color-slate-500);
}

/* Featured Article */
.tmp-blog__featured {
    margin-bottom: 48px;
}

.tmp-blog-featured {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tmp-blog-featured__link {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    text-decoration: none;
    color: inherit;
}

.tmp-blog-featured__image {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.tmp-blog-featured__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tmp-blog-featured:hover .tmp-blog-featured__image img {
    transform: scale(1.05);
}

.tmp-blog-featured__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.tmp-blog-featured__badge {
    position: absolute;
    top: 22px;
    left: 24px;
    background: var(--color-orange-500);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.224px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.tmp-blog-featured__content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tmp-blog-featured__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-slate-500);
    margin-bottom: 16px;
}

.tmp-blog-featured__dot {
    width: 4px;
    height: 4px;
    background: var(--color-slate-400);
    border-radius: 50%;
}

.tmp-blog-featured__title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-slate-900);
    margin: 0 0 16px;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.tmp-blog-featured:hover .tmp-blog-featured__title {
    color: var(--color-cyan-600);
}

.tmp-blog-featured__excerpt {
    font-size: 16px;
    color: var(--color-slate-600);
    line-height: 1.7;
    margin: 0 0 24px;
}

.tmp-blog-featured__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.tmp-blog-featured__category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-cyan-600);
    background: rgba(8, 145, 178, 0.1);
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.tmp-blog-featured__read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-orange-500);
    transition: gap 0.2s ease;
}

.tmp-blog-featured:hover .tmp-blog-featured__read-more {
    gap: 12px;
}

/* Blog Grid */
.tmp-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Blog Card */
.tmp-blog-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.tmp-blog-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.tmp-blog-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.tmp-blog-card__image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-slate-100) 0%, var(--color-slate-200) 100%);
}

.tmp-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tmp-blog-card:hover .tmp-blog-card__image img {
    transform: scale(1.08);
}

.tmp-blog-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-slate-400);
}

.tmp-blog-card__body {
    padding: 24px;
}

.tmp-blog-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--color-slate-500);
    margin-bottom: 12px;
}

.tmp-blog-card__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-slate-900);
    margin: 0 0 12px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.tmp-blog-card:hover .tmp-blog-card__title {
    color: var(--color-cyan-600);
}

.tmp-blog-card__excerpt {
    font-size: 14px;
    color: var(--color-slate-600);
    line-height: 1.6;
    margin: 0 0 16px;
}

.tmp-blog-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--color-slate-100);
}

.tmp-blog-card__category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-cyan-600);
    background: rgba(8, 145, 178, 0.1);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.tmp-blog-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-orange-500);
    transition: gap 0.2s ease;
}

.tmp-blog-card:hover .tmp-blog-card__read-more {
    gap: 10px;
}

/* Links Section */
.tmp-blog__links {
    margin-top: 48px;
    padding: 32px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.tmp-blog__links-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-slate-800);
    margin: 0 0 24px;
}

/* Pagination */
.tmp-blog__pagination {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.tmp-blog__pagination-counter {
    font-size: 14px;
    color: var(--color-slate-500);
    margin: 0;
}

.tmp-blog__pagination-links {
    display: flex;
    gap: 8px;
}

.tmp-blog__pagination-links .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    background: var(--color-white);
    color: var(--color-slate-700);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.tmp-blog__pagination-links .page-link:hover,
.tmp-blog__pagination-links .page-item.active .page-link {
    background: var(--color-cyan-600);
    color: var(--color-white);
    box-shadow: var(--shadow-cyan);
}

/* Responsive - Blog Page */
@media (max-width: 1024px) {
    .tmp-blog-hero__title {
        font-size: 42px;
    }

    .tmp-blog-featured__link {
        grid-template-columns: 1fr;
    }

    .tmp-blog-featured__image {
        min-height: 300px;
    }

    .tmp-blog-featured__content {
        padding: 32px;
    }

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

@media (max-width: 768px) {
    .tmp-blog-hero {
        padding: 60px 0 80px;
    }

    .tmp-blog-hero__title {
        font-size: 32px;
    }

    .tmp-blog-hero__description {
        font-size: 16px;
    }

    .tmp-blog {
        padding: 0 0 48px;
        margin-top: -30px;
    }

    .tmp-blog-featured__content {
        padding: 24px;
    }

    .tmp-blog-featured__title {
        font-size: 22px;
    }

    .tmp-blog__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tmp-blog-card__title {
        font-size: 16px;
    }
}