body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero-bg {
    background:
        linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.92) 31%, rgba(255,255,255,.45) 52%, rgba(255,255,255,0) 72%),
        url("https://images.unsplash.com/photo-1558981806-ec527fa84c39?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center right;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-bg {
        background:
            linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.9) 55%, rgba(255,255,255,.75) 100%),
            url("https://images.unsplash.com/photo-1558981806-ec527fa84c39?auto=format&fit=crop&w=1400&q=80");
        background-size: cover;
        background-position: center;
        position: relative;
        z-index: 1;

    }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #020617;
    overflow-x: hidden;
}

.hero-bg {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,.96) 28%,
            rgba(255,255,255,.75) 45%,
            rgba(255,255,255,.15) 70%,
            rgba(255,255,255,0) 100%
        ),
        url("https://images.unsplash.com/photo-1558981806-ec527fa84c39?auto=format&fit=crop&w=2000&q=80");
    background-size: cover;
    background-position: center right;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(255,196,0,.18), transparent 45%);
    pointer-events: none;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 180px;
    background: linear-gradient(to top, rgba(0,0,0,.18), transparent);
    pointer-events: none;
}
.hero-bg::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,0),
            rgba(255,255,255,.92),
            #fff
        );
    pointer-events: none;
}

header {
    backdrop-filter: blur(12px);
}

input,
select,
textarea {
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background-color .2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #facc15;
    box-shadow: 0 0 0 4px rgba(250,204,21,.15);
}

button,
a {
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background-color .2s ease,
        border-color .2s ease;
}

button:hover,
a:hover {
    transform: translateY(-1px);
}

button:active,
a:active {
    transform: scale(.99);
}

.shadow-soft {
    box-shadow:
        0 10px 40px rgba(15,23,42,.06),
        0 2px 8px rgba(15,23,42,.04);
}

.glass-card {
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.category-card img {
    transition:
        transform .45s ease,
        filter .45s ease;
}

.category-card:hover img {
    transform: scale(1.04);
    filter: brightness(1.03);
}

.category-card {
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item[open] {
    border-color: #facc15;
}

.bottom-cta {
    backdrop-filter: blur(14px);
    background: rgba(250,204,21,.96);
}

footer {
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(250,204,21,.08), transparent 40%);
    pointer-events: none;
}

@media (max-width: 1280px) {

    .hero-bg {
        background-position: 72% center;
    }

}

@media (max-width: 1024px) {

    .hero-bg {
        background:
            linear-gradient(
                180deg,
                rgba(255,255,255,.96) 0%,
                rgba(255,255,255,.92) 35%,
                rgba(255,255,255,.72) 100%
            ),
            url("https://images.unsplash.com/photo-1558981806-ec527fa84c39?auto=format&fit=crop&w=1600&q=80");
        background-size: cover;
        background-position: center;
    }

}

@media (max-width: 768px) {

    h1 {
        line-height: 1.02 !important;
    }

    .hero-bg {
        padding-top: 10px;
    }

    .hero-bg::after {
        height: 90px;
    }

}

@media (max-width: 640px) {

    .hero-bg {
        background-position: 64% center;
    }

}

section {
    position: relative;
}

.soft-pattern::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 9999px;
    background: rgba(250,204,21,.08);
    top: -160px;
    right: -120px;
    filter: blur(30px);
    pointer-events: none;
}

.soft-pattern-left::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 9999px;
    background: rgba(15,23,42,.03);
    bottom: -180px;
    left: -140px;
    filter: blur(40px);
    pointer-events: none;
}

.download-doc-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 74px;
    padding: 18px 20px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    text-align: center;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 500;
    color: #64748b;
    transition:
        all .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
    box-shadow:
        0 4px 12px rgba(15,23,42,.03);
}

.download-doc-link:hover {
    transform: translateY(-4px);
    border-color: #facc15;
    background: #fffef7;
    color: #0f172a;
    box-shadow:
        0 14px 32px rgba(15,23,42,.08);
}

.download-doc-link::after {
    content: 'PDF';
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    color: #ca8a04;
    background: rgba(250,204,21,.14);
    padding: 4px 7px;
    border-radius: 999px;
}

@media (max-width: 768px) {

    .download-doc-link {
        min-height: auto;
        padding: 20px 18px;
        font-size: 16px;
    }

}
.info-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 28px;
    box-shadow:
        0 10px 30px rgba(15,23,42,.04);
}

.info-card-label {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
}

.info-card-value {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
    color: #0f172a;
}

.price-card {
    position: relative;
    background: white;
    border-radius: 28px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 50px rgba(15,23,42,.08);
}

.price-card.featured {
    border: 2px solid #facc15;
    transform: scale(1.03);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 32px;
    background: #facc15;
    color: #0f172a;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.price-card-title {
    font-size: 24px;
    font-weight: 900;
}

.price-card-price {
    margin-top: 18px;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.price-card-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #475569;
}

@media (max-width: 768px) {

    .price-card.featured {
        transform: none;
    }

}
.nav-dropdown {
    position: relative;
}

.nav-dropdown-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-dropdown-arrow {
    font-size: 10px;
    transition:
        transform .2s ease;
}

.nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    width: 240px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 22px;
    padding: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity .22s ease,
        transform .22s ease,
        visibility .22s ease;
    box-shadow:
        0 24px 60px rgba(15,23,42,.12);
    z-index: 6000;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    color: #334155;
    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.nav-dropdown-item:hover {
    background: rgba(250,204,21,.12);
    color: #0f172a;
    transform: translateX(4px);
}

.mobile-menu-button {
    width: 54px;
    height: 54px;
    border: none;
    background: white;
    border-radius: 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow:
        0 10px 24px rgba(15,23,42,.06);
}

.mobile-menu-button span {
    width: 22px;
    height: 2px;
    background: #0f172a;
    border-radius: 999px;
    transition:
        transform .25s ease,
        opacity .25s ease;
}

.mobile-menu {
    position: fixed;
    top: 81px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226,232,240,.8);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;
    z-index: 55;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-inner {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}

.mobile-nav-link:hover {
    background: rgba(250,204,21,.08);
}

.mobile-submenu-wrapper {
    border-radius: 18px;
    background: rgba(248,250,252,.9);
    overflow: hidden;
}

.mobile-submenu-button {
    width: 100%;
    min-height: 58px;
    border: none;
    background: transparent;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}

.mobile-submenu-arrow {
    font-size: 10px;
    transition:
        transform .25s ease;
}

.mobile-submenu.active + .mobile-submenu-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    padding: 0 0 14px;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 18px 0 34px;
    font-size: 15px;
    font-weight: 700;
    color: #475569;
}

.mobile-submenu-link:hover {
    color: #0f172a;
}

.mobile-phone-button {
    height: 58px;
    border-radius: 18px;
    background: #facc15;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    font-size: 15px;
    font-weight: 900;
    color: #0f172a;
    box-shadow:
        0 10px 24px rgba(250,204,21,.2);
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 5000;
}
.header-phone-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    height: 58px;
    padding: 0 24px 0 14px;
    border-radius: 20px;
    background: #facc15;
    color: #0f172a;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -.01em;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
    box-shadow:
        0 14px 32px rgba(250,204,21,.28);
}

.header-phone-button:hover {
    transform: translateY(-2px);
    background: #fde047;
    box-shadow:
        0 18px 38px rgba(250,204,21,.34);
}

.header-phone-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(255,255,255,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
}
.hero-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 34px;
    border-radius: 22px;
    background: #facc15;
    color: #0f172a;
    font-size: 15px;
    font-weight: 900;
    box-shadow:
        0 20px 40px rgba(250,204,21,.24);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.hero-primary-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 28px 60px rgba(250,204,21,.34);
}

.hero-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 34px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.16);
    color: white;
    font-size: 15px;
    font-weight: 800;
    backdrop-filter: blur(12px);
    transition:
        background .25s ease,
        transform .25s ease;
}

.hero-secondary-button:hover {
    background: rgba(255,255,255,.08);
    transform: translateY(-3px);
}

.hero-stat-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.08);
}

.hero-stat-value {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.hero-stat-label {
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255,255,255,.7);
}

.floating-info-card {
    background: white;
    border-radius: 28px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    box-shadow:
        0 24px 60px rgba(15,23,42,.08);
}

.floating-info-card.featured {
    background: #facc15;
    border-color: #facc15;
}

.floating-info-title {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
}

.floating-info-card.featured .floating-info-title {
    color: rgba(15,23,42,.7);
}

.floating-info-value {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
    color: #0f172a;
}

@media (max-width: 768px) {

    .hero-stat-card {
        padding: 18px;
    }

    .hero-stat-value {
        font-size: 28px;
    }

    .floating-info-card {
        border-radius: 24px;
        padding: 24px;
    }

}
.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(250,204,21,.16);
    color: #ca8a04;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
}

.training-timeline {
    position: relative;
    display: grid;
    gap: 28px;
}

.training-timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 31px;
    width: 2px;
    background: linear-gradient(
        to bottom,
        rgba(250,204,21,.2),
        rgba(250,204,21,.9),
        rgba(250,204,21,.2)
    );
}

.training-step {
    position: relative;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    align-items: stretch;
}

.training-step-marker {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    border-radius: 22px;
    background: #facc15;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 18px 34px rgba(250,204,21,.28);
}

.training-step-marker span {
    font-size: 22px;
    font-weight: 900;
}

.training-step-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 22px;
    align-items: start;
    padding: 30px;
    border-radius: 30px;
    background: white;
    border: 1px solid #e2e8f0;
    box-shadow:
        0 14px 40px rgba(15,23,42,.05);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.training-step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(250,204,21,.7);
    box-shadow:
        0 24px 60px rgba(15,23,42,.09);
}

.training-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    background: rgba(250,204,21,.14);
    color: #ca8a04;
    display: flex;
    align-items: center;
    justify-content: center;
}

.training-step-icon svg {
    width: 34px;
    height: 34px;
    stroke-width: 2.2;
}

.training-step-card h3 {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -.02em;
    color: #0f172a;
    margin-bottom: 10px;
}

.training-step-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
}

@media (min-width: 1024px) {

    .training-timeline {
        gap: 34px;
    }

    .training-step:nth-child(even) .training-step-card {
        margin-left: 80px;
    }

}

@media (max-width: 768px) {

    .training-timeline::before {
        left: 24px;
    }

    .training-step {
        grid-template-columns: 50px 1fr;
        gap: 16px;
    }

    .training-step-marker {
        width: 50px;
        height: 50px;
        border-radius: 17px;
    }

    .training-step-marker span {
        font-size: 18px;
    }

    .training-step-card {
        grid-template-columns: 1fr;
        padding: 24px;
        border-radius: 24px;
    }

    .training-step-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
    }

    .training-step-icon svg {
        width: 28px;
        height: 28px;
    }

    .training-step-card h3 {
        font-size: 21px;
    }

}
.pricing-table-wrapper {
    display: grid;
    gap: 24px;
}

.pricing-table-card {
    background: white;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow:
        0 18px 50px rgba(15,23,42,.05);
}

.pricing-table-card.featured {
    border: 2px solid #facc15;
    box-shadow:
        0 24px 60px rgba(250,204,21,.18);
}

.pricing-table-header {
    min-height: 72px;
    display: flex;
    align-items: center;
    padding: 0 34px;
    background: linear-gradient(
        to right,
        rgba(250,204,21,.16),
        rgba(250,204,21,.06)
    );
    border-bottom: 1px solid #e2e8f0;
    font-size: 22px;
    font-weight: 900;
    color: #0f172a;
}

.pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 82px;
    padding: 0 34px;
    border-bottom: 1px solid #eef2f7;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row.total {
    background: rgba(248,250,252,.7);
}

.pricing-label {
    font-size: 17px;
    line-height: 1.6;
    color: #475569;
}

.pricing-value {
    text-align: right;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}

.pricing-value.highlight {
    color: #ca8a04;
}

.pricing-summary-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 38px 42px;
    border-radius: 34px;
    background: #0f172a;
    color: white;
    box-shadow:
        0 28px 80px rgba(15,23,42,.18);
}

.pricing-summary-label {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
}

.pricing-summary-subtitle {
    margin-top: 10px;
    font-size: 15px;
    color: rgba(255,255,255,.7);
}

.pricing-summary-price {
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    color: #facc15;
    white-space: nowrap;
}

@media (max-width: 768px) {

    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 22px 24px;
    }

    .pricing-value {
        text-align: left;
        font-size: 18px;
    }

    .pricing-summary-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }

    .pricing-summary-price {
        font-size: 38px;
    }

    .pricing-summary-label {
        font-size: 22px;
    }

}
