.home-page {
    background: #fff;
    color: #1a1a1a;
    min-height: 100vh;
}

.home-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fff;
    border-bottom: 1px solid #ececea;
}

.home-nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.home-logo:hover,
.home-logo:focus {
    opacity: 0.85;
    text-decoration: none;
}

.home-logo-badge {
    width: 58px;
    height: 58px;
    transition: transform 0.15s ease;
}

.home-logo:hover .home-logo-badge {
    transform: rotate(-4deg);
}

.home-logo-text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #1a1a1a;
}

.home-logo-text-accent {
    color: #e0b400;
}

.home-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.home-nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #5f5e5a;
    text-decoration: none;
}

.home-nav-link:hover,
.home-nav-link:focus {
    color: #1a1a1a;
    text-decoration: none;
}

.home-nav-cta {
    background: #f5c518;
    color: #1a1a1a;
    border-radius: 6px;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.home-nav-cta:hover,
.home-nav-cta:focus {
    background: #e0b400;
    color: #1a1a1a;
    text-decoration: none;
}

.home-nav-cta-secondary {
    background: transparent;
    border: 1px solid #dcdcd6;
    color: #1a1a1a;
    border-radius: 6px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.home-nav-cta-secondary:hover,
.home-nav-cta-secondary:focus {
    background: #f5f5f3;
    color: #1a1a1a;
    text-decoration: none;
}

.home-hero {
    background: #1a1a1a;
    color: #fff;
    padding: 72px 24px 60px;
}

.home-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.home-hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #f5c518;
    background: rgba(245, 197, 24, 0.12);
    border-radius: 20px;
    padding: 6px 14px;
    margin-bottom: 20px;
}

.home-hero-title {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 16px;
}

.home-hero-title span {
    color: #f5c518;
}

.home-hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #c9c9c3;
    margin: 0 auto 32px;
    max-width: 560px;
}

.home-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 44px;
}

.home-hero-btn-primary {
    background: #f5c518;
    color: #1a1a1a;
    border-radius: 6px;
    padding: 13px 26px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.home-hero-btn-primary:hover,
.home-hero-btn-primary:focus {
    background: #e0b400;
    color: #1a1a1a;
    text-decoration: none;
}

.home-hero-btn-secondary {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
}

.home-hero-btn-secondary:hover,
.home-hero-btn-secondary:focus {
    color: #f5c518;
    border-color: #f5c518;
    text-decoration: none;
}

.home-hero-highlights {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
}

.home-hero-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #d6d6d0;
}

.home-hero-highlight i {
    color: #f5c518;
    font-size: 14px;
}

.home-section {
    padding: 64px 24px;
    max-width: 1120px;
    margin: 0 auto;
}

.home-section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 40px;
}

.home-section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #b0891f;
    margin: 0 0 10px;
}

.home-section-title {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.home-section-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: #7a7a76;
    margin: 0;
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.home-feature-card {
    background: #fff;
    border: 1px solid #ececea;
    border-radius: 10px;
    padding: 24px;
}

.home-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #fbf2d5;
    color: #b0891f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-bottom: 14px;
}

.home-contact-bar {
    background: #1a1a1a;
    padding: 40px 24px;
}

.home-contact-bar-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    padding: 0 24px;
    text-decoration: none;
}

a.home-contact-item:hover .home-contact-icon,
a.home-contact-item:focus .home-contact-icon {
    background: #e0b400;
}

a.home-contact-item:hover .home-contact-value,
a.home-contact-item:focus .home-contact-value {
    color: #f5c518;
}

.home-contact-icon {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f5c518;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: background 0.15s ease;
}

.home-contact-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #9a9a94;
    margin: 0 0 3px;
}

.home-contact-value {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    transition: color 0.15s ease;
}

.home-contact-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.12);
}

.home-feature-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 6px;
}

.home-feature-text {
    font-size: 13px;
    line-height: 1.6;
    color: #7a7a76;
    margin: 0;
}

.home-about {
    background: #f9f9f8;
}

.home-about-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.home-about-text {
    font-size: 15px;
    line-height: 1.75;
    color: #5f5e5a;
    margin: 0 0 16px;
}

.home-cta {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 56px 24px;
}

.home-cta-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px;
}

.home-cta-text {
    font-size: 14px;
    color: #c9c9c3;
    margin: 0 0 26px;
}

.home-cta-btn {
    display: inline-block;
    background: #f5c518;
    color: #1a1a1a;
    border-radius: 6px;
    padding: 13px 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.home-cta-btn:hover,
.home-cta-btn:focus {
    background: #e0b400;
    color: #1a1a1a;
    text-decoration: none;
}

.home-cta-footnote {
    font-size: 12px;
    color: #9a9a94;
    margin: 18px 0 0;
}

.home-cta-footnote a {
    color: #f5c518;
    text-decoration: underline;
}

.home-cta-footnote a:hover,
.home-cta-footnote a:focus {
    color: #fff;
}

.home-footer {
    background: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 24px;
}

.home-footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.home-footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.home-footer-brand img {
    width: 20px;
    height: 20px;
}

.home-footer-copy {
    font-size: 12px;
    color: #9a9a94;
    margin: 0;
}

@media (max-width: 767px) {
    .home-nav-links {
        display: none;
    }

    .home-hero-title {
        font-size: 28px;
    }

    .home-features-grid {
        grid-template-columns: 1fr;
    }

    .home-contact-bar-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .home-contact-item {
        padding: 0;
    }

    .home-contact-divider {
        display: none;
    }

    .home-footer-inner {
        justify-content: center;
        text-align: center;
    }
}
