html {
    box-sizing: border-box;
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #1a1a1a;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

::selection {
    background: #481B9E;
    color: #fff
}

:focus {
    outline: none;
    box-shadow: 0 0 0 3px #fec64566
}

.site-header {
    background: linear-gradient(135deg, #fec64514 0%, #fbcfdf1f 100%);
    border-bottom: 2px solid #481b9e26;
    box-shadow: 0 3px 5px -2px #481b9e12
}

.header-wrap {
    max-width: 1170px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap
}

.brand-zone {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-right: 32px;
    border-right: 4px solid #FEC645
}

.logo-holder {
    background: #ffffffe6;
    padding: 8px;
    border-radius: 2px;
    box-shadow: 0 3px 5px -2px #481b9e12 0 5px 25px -2px #481b9e1a
}

.logo-holder img {
    display: block;
    width: 45px;
    height: 45px;
    object-fit: contain
}

.nav-zone {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.nav-item {
    position: relative
}

.nav-item a {
    display: block;
    padding: 16px;
    font-size: 15px;
    font-weight: 400;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 2px;
    transition: background-color .3s cubic-bezier(0.4, 0, 0.2, 1), color .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.nav-item a:hover {
    background-color: #fec64533;
    color: #481B9E
}

.nav-item.has-submenu:hover .sub-list {
    display: block
}

.sub-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 5px 25px -2px #481b9e1a 0 9px 36px -2px #481b9e1f;
    padding: 8px 0;
    margin-top: 4px;
    z-index: 100
}

.sub-list:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 8px
}

.sub-list a {
    display: block;
    padding: 16px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    transition: background-color .32s cubic-bezier(0.4, 0, 0.2, 1), padding-left .27s cubic-bezier(0.4, 0, 0.2, 1)
}

.sub-list a:hover {
    background-color: #fbcfdf4d;
    padding-left: 32px
}

.secondary-nav {
    display: flex;
    align-items: center;
    gap: 8px
}

.utility-link {
    display: block;
    padding: 16px;
    font-size: 15px;
    color: #481B9E;
    text-decoration: none;
    background: #481b9e14;
    border-radius: 42px;
    font-weight: 700;
    transition: background-color .26s cubic-bezier(0.4, 0, 0.2, 1), transform .29s cubic-bezier(0.4, 0, 0.2, 1)
}

.utility-link:hover {
    background-color: #481b9e29;
    transform: translateY(-2px)
}

.site-footer {
    background: linear-gradient(180deg, #fff 0%, #fbcfdf26 100%);
    border-top: 2px solid #481b9e1f;
    margin-top: 32px
}

.footer-main {
    max-width: 1170px;
    margin: 0 auto;
    padding: 32px
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    margin-bottom: 32px
}

.footer-col h3 {
    font-size: 19px;
    font-weight: 700;
    color: #481B9E;
    margin: 0 0 16px;
    line-height: 1.2
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-col ul li {
    margin-bottom: 8px
}

.footer-col a {
    display: inline-block;
    padding: 8px 0;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    transition: color .25s cubic-bezier(0.4, 0, 0.2, 1), padding-left .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.footer-col a:hover {
    color: #481B9E;
    padding-left: 8px
}

.footer-contact p {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.75;
    color: #333
}

.footer-contact a {
    color: #481B9E;
    text-decoration: none;
    transition: color .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.footer-contact a:hover {
    color: #FEC645
}

.footer-bottom {
    background: #481b9e0d;
    padding: 32px;
    text-align: center
}

.footer-logo-area {
    margin-bottom: 16px
}

.footer-logo-holder {
    display: inline-block;
    background: #ffffffe6;
    padding: 8px;
    border-radius: 2px;
    box-shadow: 0 3px 5px -2px #481b9e12
}

.footer-logo-holder img {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain
}

.copyright {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.5
}

.consent-placeholder {
    display: none
}

.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #fec645f7 0%, #fbcfdff7 100%);
    box-shadow: 0 5px 25px -2px #481b9e1a 0 9px 36px -2px #481b9e1f;
    z-index: 1500;
    border-bottom: 4px solid #481B9E
}

.consent-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 32px
}

.consent-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 16px
}

.consent-top h2 {
    font-size: 19px;
    font-weight: 700;
    color: #481B9E;
    margin: 0 0 8px;
    line-height: 1.2
}

.consent-top p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #1a1a1a
}

.tab-switcher {
    display: flex;
    gap: 8px;
    background: #ffffff80;
    padding: 4px;
    border-radius: 42px
}

.tab-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: #481B9E;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    border-radius: 42px;
    transition: background-color .27s cubic-bezier(0.4, 0, 0.2, 1)
}

.tab-btn.is-active {
    background: #481B9E;
    color: #fff;
    font-weight: 700
}

.consent-mid {
    margin-bottom: 16px
}

.view-panel {
    display: none
}

.view-panel.is-visible {
    display: block
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 16px
}

.category-card {
    background: #ffffffb3;
    padding: 16px;
    border-radius: 2px;
    box-shadow: 0 3px 5px -2px #481b9e12
}

.category-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #481B9E;
    margin: 0 0 8px;
    line-height: 1.2
}

.category-card p {
    font-size: 15px;
    margin: 0 0 8px;
    line-height: 1.5;
    color: #333
}

.category-card label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
    color: #1a1a1a
}

.category-card input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer
}

.category-card input[type="checkbox"]:disabled {
    cursor: not-allowed
}

.consent-foot {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.consent-btn {
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 42px;
    cursor: pointer;
    transition: background-color .29s cubic-bezier(0.4, 0, 0.2, 1), transform .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.consent-btn.btn-primary {
    background: #481B9E;
    color: #fff
}

.consent-btn.btn-primary:hover {
    background: #5a24b8;
    transform: translateY(-2px)
}

.consent-btn.btn-secondary {
    background: #481b9e26;
    color: #481B9E
}

.consent-btn.btn-secondary:hover {
    background: #481b9e40;
    transform: translateY(-2px)
}

@media (max-width: 768px) {
    .header-wrap {
        padding: 16px
    }

    .brand-zone {
        width: 100%;
        justify-content: space-between;
        border-right: none;
        border-bottom: 4px solid #FEC645;
        padding-right: 0;
        padding-bottom: 16px
    }

    .nav-zone {
        width: 100%
    }

    .primary-nav {
        width: 100%;
        flex-direction: column;
        align-items: stretch
    }

    .nav-item a {
        padding: 16px
    }

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

    .footer-columns {
        grid-template-columns: 1fr
    }

    .consent-container {
        padding: 16px
    }

    .consent-top {
        flex-direction: column
    }

    .category-grid {
        grid-template-columns: 1fr
    }

    .consent-foot {
        flex-direction: column
    }

    .consent-btn {
        width: 100%
    }
}

.info-legal {
    max-width: 1170px;
    margin: 0 auto;
    padding: 32px 16px
}

.info-legal p {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 16px;
    color: #2a2a2a
}

.info-legal p:last-child {
    margin-bottom: 0
}

.info-legal ul,
.info-legal ol {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 16px;
    padding-left: 32px;
    color: #2a2a2a
}

.info-legal ul {
    list-style-type: disc
}

.info-legal ol {
    list-style-type: decimal
}

.info-legal li {
    margin-bottom: 8px
}

.info-legal li:last-child {
    margin-bottom: 0
}

.info-legal em,
.info-legal i {
    font-style: italic
}

.info-legal a {
    color: #481B9E;
    text-decoration: underline;
    transition: color .28s ease-in-out
}

.info-legal a:hover {
    color: #FEC645;
    text-decoration: none
}

.info-legal a:focus {
    outline: 2px solid #481B9E;
    outline-offset: 2px;
    border-radius: 2px
}

.info-legal hr {
    border: none;
    border-top: 1px solid #481b9e26;
    margin: 32px 0
}

.info-legal div {
    margin-bottom: 16px
}

.info-legal div:last-child {
    margin-bottom: 0
}

@media (min-width: 768px) {
    .info-legal {
        padding: 32px
    }

    .info-legal p {
        font-size: 19px
    }

    .info-legal ul,
    .info-legal ol {
        font-size: 19px
    }
}

.budgetpage {
    background: #fff;
    color: #1a1a1a
}

.budgetpage .hero-wrap {
    position: relative;
    background: linear-gradient(135deg, #fec64514 0%, #fbcfdf1f 100%);
    padding: 56px 16px;
    overflow: hidden
}

.budgetpage .hero-wrap::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #481b9e0f 0%, transparent 70%);
    border-radius: 42px;
    transform: rotate(-15deg);
    animation: lightshift 18s ease-in-out infinite
}

@keyframes lightshift {

    0%,
    100% {
        transform: translate(0, 0) rotate(-15deg)
    }

    50% {
        transform: translate(140px, 80px) rotate(-15deg)
    }
}

.budgetpage .hero-wrap::after {
    content: '';
    position: absolute;
    bottom: 32px;
    right: 16px;
    width: 180px;
    height: 120px;
    background: radial-gradient(circle at 10% 20%, #fec64526 8px, transparent 8px), radial-gradient(circle at 40% 60%, #481b9e1f 5px, transparent 5px), radial-gradient(circle at 75% 35%, #fbcfdf2e 11px, transparent 11px), radial-gradient(circle at 85% 80%, #fec64517 6px, transparent 6px), radial-gradient(circle at 25% 85%, #481b9e14 9px, transparent 9px);
    border-radius: 2px;
    pointer-events: none
}

.budgetpage .hero-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 56px
}

.budgetpage .hero-textside {
    flex: 0 0 58%;
    position: relative;
    z-index: 2
}

.budgetpage .hero-textside h1 {
    font-size: 56px;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #481B9E;
    font-weight: 700
}

.budgetpage .hero-textside .hero-sub {
    font-size: 19px;
    line-height: 1.5;
    margin: 0 0 32px;
    color: #333
}

.budgetpage .hero-imageside {
    flex: 1;
    position: relative
}

.budgetpage .hero-imageside img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 42px;
    box-shadow: 0 9px 36px -2px #481b9e1f;
    position: relative;
    z-index: 1
}

.budgetpage .hero-imageside::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, #481b9e59 100%);
    border-radius: 42px;
    z-index: 2;
    pointer-events: none
}

.budgetpage .hero-imageside svg {
    position: absolute;
    z-index: 0;
    pointer-events: none
}

.budgetpage .hero-imageside .curve-one {
    top: -24px;
    right: -32px;
    width: 140px;
    height: 140px
}

.budgetpage .hero-imageside .curve-two {
    bottom: -16px;
    left: -28px;
    width: 110px;
    height: 110px
}

.budgetpage .numbered-block {
    background: linear-gradient(155deg, #fbcfdf17 0%, #fec6450f 100%);
    padding: 56px 16px;
    position: relative
}

.budgetpage .numbered-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(72deg, #FEC645 0%, #481B9E 100%)
}

.budgetpage .numbered-inner {
    max-width: 1170px;
    margin: 0 auto
}

.budgetpage .numbered-inner h2 {
    font-size: 41px;
    line-height: 1.2;
    margin: 0 0 8px;
    color: #481B9E;
    font-weight: 700
}

.budgetpage .numbered-inner .section-intro {
    font-size: 19px;
    line-height: 1.5;
    margin: 0 0 42px;
    color: #444;
    max-width: 720px
}

.budgetpage .num-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px
}

.budgetpage .num-item {
    background: #fff;
    padding: 32px;
    border-radius: 42px;
    box-shadow: 0 5px 25px -2px #fec6451a;
    position: relative;
    transition: transform .32s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .28s ease-in-out
}

.budgetpage .num-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 9px 36px -2px #481b9e1f
}

.budgetpage .num-item .num-label {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FEC645 0%, #FBCFDF 100%);
    border-radius: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 700;
    color: #481B9E
}

.budgetpage .num-item h3 {
    font-size: 19px;
    line-height: 1.2;
    margin: 0 0 8px;
    color: #481B9E;
    font-weight: 600
}

.budgetpage .num-item p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    color: #555
}

.budgetpage .data-metrics {
    padding: 56px 16px;
    background: #fff
}

.budgetpage .data-metrics-inner {
    max-width: 1170px;
    margin: 0 auto
}

.budgetpage .metrics-holder {
    display: flex;
    gap: 32px;
    align-items: stretch
}

.budgetpage .metrics-text {
    flex: 0 0 45%
}

.budgetpage .metrics-text::before {
    content: '';
    display: block;
    width: 68px;
    height: 4px;
    background: linear-gradient(90deg, #481B9E 0%, #FEC645 100%);
    margin: 0 0 16px
}

.budgetpage .metrics-text h2 {
    font-size: 41px;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #481B9E;
    font-weight: 700
}

.budgetpage .metrics-text p {
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 16px;
    color: #444
}

.budgetpage .metrics-text p:last-of-type {
    margin: 0
}

.budgetpage .metrics-visual {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.budgetpage .metric-box {
    background: linear-gradient(135deg, #fec6451f 0%, #fbcfdf2e 100%);
    padding: 32px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: background .35s ease-in-out
}

.budgetpage .metric-box:hover {
    background: repeating-conic-gradient(from 0deg at 0% 0%, #fec6450d 0deg 90deg, #fbcfdf14 90deg 180deg), linear-gradient(135deg, #fec6451f 0%, #fbcfdf2e 100%);
    background-size: 40px 40px, 100% 100%
}

.budgetpage .metric-box .metric-num {
    font-size: 41px;
    line-height: 1.2;
    font-weight: 700;
    color: #481B9E;
    margin: 0 0 4px
}

.budgetpage .metric-box .metric-label {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    margin: 0
}

.budgetpage .comparison-area {
    padding: 56px 16px;
    background: linear-gradient(135deg, #481b9e0a 0%, #fec64512 100%);
    position: relative
}

.budgetpage .comparison-inner {
    max-width: 1170px;
    margin: 0 auto
}

.budgetpage .comparison-inner h2 {
    font-size: 41px;
    line-height: 1.2;
    margin: 0 0 32px;
    color: #481B9E;
    font-weight: 700;
    text-align: center
}

.budgetpage .compare-holder {
    display: flex;
    gap: 16px;
    justify-content: center
}

.budgetpage .compare-holder input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.budgetpage .compare-tab-label {
    padding: 16px 42px;
    background: #fff;
    border-radius: 42px;
    font-size: 19px;
    font-weight: 600;
    color: #481B9E;
    cursor: pointer;
    transition: background .28s ease-in-out, transform .25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 5px -2px #481b9e12
}

.budgetpage .compare-tab-label:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px -2px #fec6451a
}

.budgetpage .compare-holder input:checked+.compare-tab-label {
    background: linear-gradient(135deg, #FEC645 0%, #FBCFDF 100%);
    color: #481B9E;
    box-shadow: 0 5px 25px -2px #fec6451a
}

.budgetpage .compare-content {
    margin: 32px 0 0 !important;
    display: none
}

.budgetpage #opt-traditional:checked~.compare-content.traditional-view,
.budgetpage #opt-modern:checked~.compare-content.modern-view {
    display: block
}

.budgetpage .compare-content-inner {
    display: flex;
    gap: 32px;
    align-items: center
}

.budgetpage .compare-image {
    flex: 0 0 42%
}

.budgetpage .compare-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 9px 36px -2px #481b9e1f
}

.budgetpage .compare-text {
    flex: 1
}

.budgetpage .compare-text h3 {
    font-size: 31px;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #481B9E;
    font-weight: 700
}

.budgetpage .compare-text p {
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 16px;
    color: #444
}

.budgetpage .compare-text ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.budgetpage .compare-text ul li {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    margin: 0 0 8px;
    padding: 0 0 0 24px;
    position: relative
}

.budgetpage .compare-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background: #FEC645;
    border-radius: 42px
}

.budgetpage .testimonial-zone {
    padding: 56px 16px;
    background: #fff
}

.budgetpage .testimonial-zone-inner {
    max-width: 1170px;
    margin: 0 auto;
    text-align: center
}

.budgetpage .testimonial-zone h2 {
    font-size: 41px;
    line-height: 1.2;
    margin: 0 0 42px;
    color: #481B9E;
    font-weight: 700
}

.budgetpage .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px
}

.budgetpage .testimonial-card {
    background: linear-gradient(135deg, #fbcfdf14 0%, #fec6450d 100%);
    padding: 32px;
    border-radius: 42px;
    text-align: left;
    box-shadow: 0 3px 5px -2px #481b9e12;
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative
}

.budgetpage .testimonial-card:hover {
    transform: scale(1.03)
}

.budgetpage .testimonial-card .cat-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #FEC645;
    border-radius: 42px;
    margin: 0 8px 0 0;
    vertical-align: middle
}

.budgetpage .testimonial-card .cat-label {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #481B9E;
    vertical-align: middle;
    margin: 0 0 16px
}

.budgetpage .testimonial-card p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 16px;
    color: #444
}

.budgetpage .testimonial-card .author-name {
    font-size: 15px;
    font-weight: 600;
    color: #481B9E;
    margin: 0
}

@media (max-width: 768px) {
    .budgetpage .hero-inner {
        flex-direction: column;
        gap: 32px
    }

    .budgetpage .hero-textside {
        flex: none
    }

    .budgetpage .hero-textside h1 {
        font-size: 41px
    }

    .budgetpage .hero-imageside {
        flex: none;
        width: 100%
    }

    .budgetpage .metrics-holder {
        flex-direction: column;
        gap: 32px
    }

    .budgetpage .metrics-text {
        flex: none
    }

    .budgetpage .compare-content-inner {
        flex-direction: column
    }

    .budgetpage .compare-image {
        flex: none;
        width: 100%
    }

    .budgetpage .compare-holder {
        flex-direction: column;
        align-items: stretch
    }

    .budgetpage .compare-tab-label {
        text-align: center
    }
}

.budget-learning-hub {
    background: #FFF;
    color: #1A1A1A
}

.budget-learning-hub .section-wrapper {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 16px
}

.budget-learning-hub .hero-section {
    padding: 56px 0 32px;
    background: linear-gradient(135deg, #fec64514 0%, #fbcfdf1f 100%);
    position: relative;
    overflow: hidden
}

.budget-learning-hub .hero-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap
}

.budget-learning-hub .hero-image-container {
    flex: 0 0 280px;
    position: relative
}

.budget-learning-hub .hero-image-container::before,
.budget-learning-hub .hero-image-container::after {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    border: 3px solid #481B9E
}

.budget-learning-hub .hero-image-container::before {
    top: -8px;
    left: -8px;
    border-right: none;
    border-bottom: none
}

.budget-learning-hub .hero-image-container::after {
    bottom: -8px;
    right: -8px;
    border-left: none;
    border-top: none
}

.budget-learning-hub .hero-main-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 2px;
    filter: grayscale(100%) contrast(1.3);
    box-shadow: 0 5px 25px -2px #481b9e1a
}

.budget-learning-hub .hero-text-zone {
    flex: 1;
    min-width: 280px
}

.budget-learning-hub .main-headline {
    font-size: 56px;
    line-height: 1.2;
    color: #481B9E;
    margin: 0 0 16px;
    font-weight: 700
}

.budget-learning-hub .hero-list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0
}

.budget-learning-hub .hero-list-item {
    font-size: 19px;
    line-height: 1.5;
    padding: 8px 0 8px 32px;
    position: relative;
    color: #2A2A2A
}

.budget-learning-hub .hero-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: conic-gradient(from 135deg, #FEC645, #481B9E);
    border-radius: 42px
}

.budget-learning-hub .curve-divider {
    width: 100%;
    height: 42px;
    margin: 0;
    display: block
}

.budget-learning-hub .modules-section {
    padding: 56px 0;
    background: #FFF
}

.budget-learning-hub .section-title {
    font-size: 41px;
    line-height: 1.2;
    color: #481B9E;
    margin: 0 0 42px;
    text-align: center;
    font-weight: 700
}

.budget-learning-hub .module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px
}

.budget-learning-hub .module-card {
    background: #FFF;
    border-radius: 42px;
    padding: 32px;
    box-shadow: 0 3px 5px -2px #481b9e12;
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .35s ease-in-out;
    border: 2px solid #fbcfdf4d
}

.budget-learning-hub .module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 9px 36px -2px #481b9e1f
}

.budget-learning-hub .module-number {
    font-size: 31px;
    line-height: 1.2;
    color: #FEC645;
    font-weight: 700;
    margin: 0 0 8px
}

.budget-learning-hub .module-title {
    font-size: 19px;
    line-height: 1.5;
    color: #481B9E;
    margin: 0 0 16px;
    font-weight: 600
}

.budget-learning-hub .module-description {
    font-size: 15px;
    line-height: 1.75;
    color: #4A4A4A;
    margin: 0
}

.budget-learning-hub .process-section {
    padding: 56px 0;
    background: linear-gradient(180deg, #fec6450d 0%, #fbcfdf14 100%);
    position: relative
}

.budget-learning-hub .process-header {
    font-size: 41px;
    line-height: 1.2;
    color: #481B9E;
    margin: 0 0 8px;
    font-weight: 700;
    text-align: left
}

.budget-learning-hub .process-header::before {
    content: '';
    display: block;
    width: 62px;
    height: 4px;
    background: linear-gradient(90deg, #FEC645, #481B9E);
    margin: 0 0 16px;
    border-radius: 2px
}

.budget-learning-hub .process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    margin-top: 42px
}

.budget-learning-hub .process-column-shifted {
    margin-top: 56px
}

.budget-learning-hub .process-step-card {
    background: #FFF;
    padding: 32px;
    border-radius: 2px;
    box-shadow: 0 5px 25px -2px #481b9e1a;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden
}

.budget-learning-hub .process-step-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #fec64526;
    transition: height .28s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0
}

.budget-learning-hub .process-step-card:hover::before {
    height: 100%
}

.budget-learning-hub .process-step-content {
    position: relative;
    z-index: 1
}

.budget-learning-hub .step-label {
    font-size: 15px;
    line-height: 1.5;
    color: #481B9E;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 8px;
    font-weight: 600
}

.budget-learning-hub .step-heading {
    font-size: 19px;
    line-height: 1.5;
    color: #1A1A1A;
    margin: 0 0 16px;
    font-weight: 600
}

.budget-learning-hub .step-text {
    font-size: 15px;
    line-height: 1.75;
    color: #4A4A4A;
    margin: 0
}

.budget-learning-hub .complex-content-section {
    padding: 56px 0;
    background: #FFF
}

.budget-learning-hub .complex-heading {
    font-size: 41px;
    line-height: 1.2;
    color: #481B9E;
    margin: 0 0 32px;
    font-weight: 700
}

.budget-learning-hub .complex-layout {
    display: flex;
    gap: 32px;
    flex-wrap: wrap
}

.budget-learning-hub .complex-main-text {
    flex: 1;
    min-width: 320px
}

.budget-learning-hub .complex-paragraph {
    font-size: 15px;
    line-height: 1.75;
    color: #2A2A2A;
    margin: 0 0 16px
}

.budget-learning-hub .fact-highlight {
    background: linear-gradient(135deg, #fbcfdf33, #fec64526);
    border-left: 4px solid #481B9E;
    padding: 16px;
    margin: 32px 0;
    border-radius: 2px
}

.budget-learning-hub .fact-number {
    font-size: 31px;
    line-height: 1.2;
    color: #481B9E;
    font-weight: 700;
    margin: 0 0 4px
}

.budget-learning-hub .fact-label {
    font-size: 15px;
    line-height: 1.5;
    color: #4A4A4A;
    margin: 0
}

.budget-learning-hub .complex-image-side {
    flex: 0 0 360px
}

.budget-learning-hub .complex-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 2px;
    opacity: .85;
    box-shadow: 0 5px 25px -2px #481b9e1a
}

.budget-learning-hub .outcomes-section {
    padding: 56px 0;
    background: url(./photo_gallery/attachment-6.jpg) center/cover no-repeat;
    position: relative
}

.budget-learning-hub .outcomes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1ae0;
    z-index: 0
}

.budget-learning-hub .outcomes-content {
    position: relative;
    z-index: 1
}

.budget-learning-hub .outcomes-title {
    font-size: 41px;
    line-height: 1.2;
    color: #FEC645;
    margin: 0 0 42px;
    font-weight: 700;
    text-align: center
}

.budget-learning-hub .outcomes-blocks {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center
}

.budget-learning-hub .outcome-box {
    background: #fffffff2;
    padding: 32px;
    border-radius: 42px;
    flex: 0 1 calc(33.333% - 16px);
    min-width: 260px;
    box-shadow: 0 9px 36px -2px #fec6451f
}

.budget-learning-hub .outcome-icon-holder {
    width: 56px;
    height: 56px;
    background: conic-gradient(from 45deg, #FEC645, #481B9E);
    border-radius: 42px;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    justify-content: center
}

.budget-learning-hub .outcome-icon-shape {
    width: 28px;
    height: 28px;
    background: #FFF;
    border-radius: 42px
}

.budget-learning-hub .outcome-subtitle {
    font-size: 19px;
    line-height: 1.5;
    color: #481B9E;
    margin: 0 0 8px;
    font-weight: 600
}

.budget-learning-hub .outcome-text {
    font-size: 15px;
    line-height: 1.75;
    color: #4A4A4A;
    margin: 0
}

.budget-learning-hub .cta-section {
    padding: 56px 0;
    background: linear-gradient(135deg, #fec6451f 0%, #481b9e14 100%)
}

.budget-learning-hub .cta-wrapper {
    text-align: center;
    max-width: 740px;
    margin: 0 auto
}

.budget-learning-hub .cta-heading {
    font-size: 41px;
    line-height: 1.2;
    color: #481B9E;
    margin: 0 0 16px;
    font-weight: 700
}

.budget-learning-hub .cta-subtext {
    font-size: 19px;
    line-height: 1.5;
    color: #2A2A2A;
    margin: 0 0 32px
}

.budget-learning-hub .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FEC645, #481B9E);
    color: #FFF;
    font-size: 19px;
    line-height: 1.5;
    padding: 16px 42px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 25px -2px #481b9e1a;
    transition: transform .26s ease-in-out, box-shadow .32s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden
}

.budget-learning-hub .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff3;
    transition: left .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.budget-learning-hub .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 36px -2px #481b9e1f
}

.budget-learning-hub .cta-button:hover::before {
    left: 100%
}

@media (max-width: 768px) {
    .budget-learning-hub .hero-content-wrapper {
        flex-direction: column
    }

    .budget-learning-hub .hero-image-container {
        flex: 0 0 auto;
        width: 100%
    }

    .budget-learning-hub .main-headline {
        font-size: 41px
    }

    .budget-learning-hub .section-title,
    .budget-learning-hub .process-header,
    .budget-learning-hub .complex-heading,
    .budget-learning-hub .outcomes-title,
    .budget-learning-hub .cta-heading {
        font-size: 31px
    }

    .budget-learning-hub .process-layout {
        grid-template-columns: 1fr
    }

    .budget-learning-hub .process-column-shifted {
        margin-top: 0
    }

    .budget-learning-hub .complex-layout {
        flex-direction: column
    }

    .budget-learning-hub .complex-image-side {
        flex: 0 0 auto;
        width: 100%
    }

    .budget-learning-hub .outcome-box {
        flex: 0 1 100%
    }
}

::selection {
    background: #481B9E;
    color: #FFF
}

.budget-learning-hub input::placeholder,
.budget-learning-hub textarea::placeholder {
    transition: opacity .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.budget-learning-hub input:focus::placeholder,
.budget-learning-hub textarea:focus::placeholder {
    opacity: 0
}

.kontakt-stranka {
    background: #fff;
    color: #1a1a1a
}

.kontakt-stranka .hlavicka-sekce {
    max-width: 1170px;
    margin: 0 auto;
    padding: 32px 16px 96px;
    display: flex;
    gap: 32px;
    align-items: flex-start
}

.kontakt-stranka .obrazek-sloupec {
    flex: 0 0 280px;
    position: relative
}

.kontakt-stranka .foto-obal {
    width: 100%;
    height: 380px;
    position: relative;
    overflow: hidden;
    border-radius: 42px;
    box-shadow: 0 5px 25px -2px #fec6451a 0 9px 36px -2px #fec6451f
}

.kontakt-stranka .foto-obal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, #fec64566 0%, transparent 70%);
    pointer-events: none
}

.kontakt-stranka .hlavni-foto {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.kontakt-stranka .textova-zona {
    flex: 1;
    padding-top: 8px
}

.kontakt-stranka .nadpis-animovany {
    font-size: 56px;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #481B9E;
    font-weight: 700;
    animation: pozvednutiNadpisu .35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0
}

@keyframes pozvednutiNadpisu {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.kontakt-stranka .popis-text {
    font-size: 19px;
    line-height: 1.5;
    color: #2a2a2a;
    margin: 0
}

.kontakt-stranka .dekorativni-tvar {
    position: absolute;
    pointer-events: none;
    z-index: 1
}

.kontakt-stranka .tvar-prvni {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FEC645 0%, #FBCFDF 100%);
    border-radius: 2px;
    top: 16px;
    right: -16px;
    transform: rotate(15deg)
}

.kontakt-stranka .tvar-druhy {
    width: 32px;
    height: 32px;
    background: #fbcfdf99;
    border-radius: 42px;
    bottom: 32px;
    left: -8px
}

.kontakt-stranka .formular-sekce {
    background: linear-gradient(180deg, #fbcfdf14 0%, #fec6450f 100%);
    padding: 96px 16px 64px
}

.kontakt-stranka .formular-obal {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: start
}

.kontakt-stranka .levy-obsah {
    padding: 32px 0
}

.kontakt-stranka .nadpis-leve {
    font-size: 41px;
    line-height: 1.2;
    margin: 0 0 8px;
    color: #481B9E;
    font-weight: 700
}

.kontakt-stranka .carka-zvyrazneni {
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, #FEC645 0%, #481B9E 100%);
    margin: 0 0 32px;
    border-radius: 2px
}

.kontakt-stranka .statistiky-box {
    display: flex;
    gap: 16px;
    margin: 32px 0
}

.kontakt-stranka .stat-item {
    flex: 1;
    background: #fff;
    padding: 16px;
    border-radius: 42px;
    box-shadow: 0 3px 5px -2px #481b9e12;
    transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.kontakt-stranka .stat-item:hover {
    transform: translateY(-4px)
}

.kontakt-stranka .velke-cislo {
    font-size: 70px;
    line-height: 1;
    color: #FEC645;
    font-weight: 700;
    margin: 0 0 4px
}

.kontakt-stranka .male-cislo {
    font-size: 15px;
    line-height: 1.2;
    color: #666
}

.kontakt-stranka .kontaktni-pole {
    margin: 32px 0 0
}

.kontakt-stranka .kontakt-radek {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.5;
    color: #2a2a2a
}

.kontakt-stranka .kontakt-ikona {
    width: 20px;
    height: 20px;
    fill: #481B9E
}

.kontakt-stranka .pravy-formular {
    background: #fff;
    padding: 32px;
    border-radius: 42px;
    box-shadow: 0 5px 25px -2px #481b9e1a 0 9px 36px -2px #481b9e1f
}

.kontakt-stranka .formular-nadpis {
    font-size: 31px;
    line-height: 1.2;
    margin: 0 0 32px;
    color: #481B9E;
    font-weight: 700
}

.kontakt-stranka .formular-skupina {
    margin: 0 0 16px
}

.kontakt-stranka .label-text {
    display: block;
    font-size: 15px;
    line-height: 1.5;
    color: #2a2a2a;
    margin: 0 0 8px;
    font-weight: 600
}

.kontakt-stranka .vstupni-pole {
    width: 100%;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 2px;
    font-size: 15px;
    line-height: 1.5;
    background: #fff;
    transition: border-color .26s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .26s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.kontakt-stranka .vstupni-pole::placeholder {
    color: #999;
    transition: opacity .32s cubic-bezier(0.4, 0, 0.2, 1)
}

.kontakt-stranka .vstupni-pole:focus::placeholder {
    opacity: 0
}

.kontakt-stranka .vstupni-pole:focus {
    outline: none;
    border-color: #FEC645;
    box-shadow: 0 0 0 3px #fec64526
}

.kontakt-stranka .textarea-pole {
    min-height: 120px;
    resize: vertical
}

.kontakt-stranka .predmet-obal {
    position: relative
}

.kontakt-stranka .select-pole {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23481B9E' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
    cursor: pointer
}

.kontakt-stranka .checkbox-obal {
    margin: 32px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px
}

.kontakt-stranka .checkbox-vstup {
    margin: 4px 0 0;
    flex-shrink: 0;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: #481B9E
}

.kontakt-stranka .checkbox-label {
    font-size: 15px;
    line-height: 1.5;
    color: #2a2a2a;
    cursor: pointer
}

.kontakt-stranka .checkbox-label a {
    color: #481B9E;
    text-decoration: underline;
    transition: color .27s cubic-bezier(0.4, 0, 0.2, 1)
}

.kontakt-stranka .checkbox-label a:hover {
    color: #FEC645
}

.kontakt-stranka .odeslat-tlacitko {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #481B9E 0%, #FEC645 100%);
    color: #fff;
    border: none;
    border-radius: 42px;
    font-size: 19px;
    line-height: 1.5;
    font-weight: 600;
    cursor: pointer;
    transition: transform .29s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .29s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 25px -2px #481b9e1a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.kontakt-stranka .odeslat-tlacitko:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 36px -2px #481b9e1f
}

.kontakt-stranka .odeslat-tlacitko:active {
    transform: translateY(0)
}

.kontakt-stranka .porovnani-sekce {
    max-width: 1170px;
    margin: 0 auto;
    padding: 96px 16px 64px
}

.kontakt-stranka .porovnani-nadpis {
    font-size: 41px;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #481B9E;
    font-weight: 700;
    text-align: center
}

.kontakt-stranka .porovnani-podnapis {
    font-size: 19px;
    line-height: 1.5;
    color: #2a2a2a;
    margin: 0 0 32px;
    text-align: center
}

.kontakt-stranka .porovnani-mrizka {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 32px 0 0
}

.kontakt-stranka .porovnani-karta {
    background: #fff;
    padding: 32px;
    border-radius: 42px;
    box-shadow: 0 3px 5px -2px #fec64512;
    border: 2px solid transparent;
    transition: border-color .3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.kontakt-stranka .porovnani-karta:hover {
    border-color: #FEC645;
    box-shadow: 0 5px 25px -2px #fec6451a
}

.kontakt-stranka .karta-hlavicka {
    font-size: 31px;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #481B9E;
    font-weight: 700
}

.kontakt-stranka .metoda-popis {
    font-size: 15px;
    line-height: 1.75;
    color: #2a2a2a;
    margin: 0 0 32px
}

.kontakt-stranka .foto-metoda {
    width: 100%;
    height: 220px;
    border-radius: 2px;
    object-fit: cover;
    margin: 0 0 32px;
    box-shadow: 0 5px 25px -2px #481b9e1a
}

.kontakt-stranka .vlastnosti-seznam {
    list-style: none;
    padding: 0;
    margin: 0
}

.kontakt-stranka .vlastnost-polozka {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.5;
    color: #2a2a2a
}

.kontakt-stranka .checkmark-ikona {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px
}

.kontakt-stranka .delici-sekce {
    padding: 32px 16px;
    text-align: center
}

.kontakt-stranka .delici-kontejner {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px
}

.kontakt-stranka .trojuhelnik-svg {
    width: 16px;
    height: 16px;
    fill: #481B9E
}

@media (max-width: 768px) {
    .kontakt-stranka .hlavicka-sekce {
        flex-direction: column;
        padding: 32px 16px 64px
    }

    .kontakt-stranka .obrazek-sloupec {
        flex: 0 0 auto;
        width: 100%
    }

    .kontakt-stranka .foto-obal {
        height: 280px
    }

    .kontakt-stranka .nadpis-animovany {
        font-size: 41px
    }

    .kontakt-stranka .popis-text {
        font-size: 15px
    }

    .kontakt-stranka .formular-obal {
        grid-template-columns: 1fr
    }

    .kontakt-stranka .statistiky-box {
        flex-direction: column
    }

    .kontakt-stranka .porovnani-mrizka {
        grid-template-columns: 1fr
    }

    .kontakt-stranka .nadpis-leve,
    .kontakt-stranka .porovnani-nadpis,
    .kontakt-stranka .formular-nadpis {
        font-size: 31px
    }

    .kontakt-stranka .velke-cislo {
        font-size: 56px
    }
}

::selection {
    background: #481B9E;
    color: #fff
}

.intl-students-hub {
    background: #FFF;
    color: #1a1a1a;
    overflow-x: clip
}

.intl-students-hub .tophero {
    background: linear-gradient(135deg, #fec6451f 0%, #fbcfdf2e 100%);
    padding: 56px 16px 104px;
    position: relative
}

.tophero .wrapper-main {
    max-width: 1170px;
    margin: 0 auto
}

.tophero .title-primary {
    font-size: 56px;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #481B9E;
    letter-spacing: -.02em
}

.tophero .intro-text {
    font-size: 19px;
    line-height: 1.5;
    max-width: 680px;
    margin: 0;
    color: #333
}

.tophero .deco-back {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: conic-gradient(from 67deg at 50% 50%, #fec64514, #481b9e0f, #fbcfdf17);
    z-index: -1;
    pointer-events: none
}

.intl-students-hub .asymmetric-zone {
    display: grid;
    grid-template-columns: 1fr 3px 1fr;
    max-width: 1170px;
    margin: 0 auto;
    padding: 56px 16px;
    gap: 32px
}

.asymmetric-zone .border-divider {
    width: 3px;
    background: linear-gradient(180deg, #FEC645 0%, #481B9E 100%);
    border-radius: 2px
}

.asymmetric-zone .left-zone {
    padding: 32px;
    background: #fbcfdf24;
    border-radius: 42px;
    box-shadow: 0 5px 25px -2px #481b9e1a;
    transition: transform .32s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .28s ease-in-out
}

.asymmetric-zone .left-zone:hover {
    transform: translateY(-6px);
    box-shadow: 0 9px 36px -2px #481b9e1f
}

.asymmetric-zone .zone-title {
    font-size: 31px;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #481B9E
}

.asymmetric-zone .zone-desc {
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 16px;
    color: #2a2a2a
}

.asymmetric-zone .num-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0
}

.asymmetric-zone .num-circle {
    width: 18px;
    height: 18px;
    background: #FEC645;
    border-radius: 999px;
    flex-shrink: 0
}

.asymmetric-zone .num-label {
    font-size: 15px;
    line-height: 1.5;
    color: #333
}

.asymmetric-zone .right-zone {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.right-zone .img-holder {
    width: 100%;
    height: 340px;
    border-radius: 42px;
    overflow: hidden;
    box-shadow: 0 5px 25px -2px #481b9e1a;
    position: relative
}

.right-zone .img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.08) saturate(1.1) contrast(0.95);
    transition: filter .35s ease-in-out
}

.right-zone .img-holder:hover img {
    filter: sepia(0) saturate(1) contrast(1)
}

.right-zone .caption-txt {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    padding: 0 16px
}

@keyframes word-reveal {
    0% {
        opacity: 0;
        transform: translateY(12px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.tophero .title-primary span {
    display: inline-block;
    animation: word-reveal .6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0
}

.tophero .title-primary span:nth-child(1) {
    animation-delay: .1s
}

.tophero .title-primary span:nth-child(2) {
    animation-delay: .2s
}

.tophero .title-primary span:nth-child(3) {
    animation-delay: .3s
}

.tophero .title-primary span:nth-child(4) {
    animation-delay: .4s
}

.intl-students-hub .metrics-grid {
    background: linear-gradient(165deg, #fec64517 0%, #481b9e12 100%);
    padding: 56px 16px
}

.metrics-grid .content-wrapper {
    max-width: 1170px;
    margin: 0 auto
}

.metrics-grid .overline {
    width: 64px;
    height: 4px;
    background: #481B9E;
    margin: 0 0 16px;
    border-radius: 2px
}

.metrics-grid .section-heading {
    font-size: 41px;
    line-height: 1.2;
    margin: 0 0 32px;
    color: #481B9E
}

.metrics-grid .grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px
}

.metrics-grid .grid-layout .col-double {
    grid-column: span 2
}

.metrics-grid .metric-card {
    background: #FFF;
    padding: 32px;
    border-radius: 42px;
    box-shadow: 0 3px 5px -2px #fec64512;
    transition: background .3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .26s ease-in-out;
    position: relative
}

.metrics-grid .metric-card:hover {
    background: #fbcfdf38;
    box-shadow: 0 9px 36px -2px #481b9e1f
}

.metric-card .card-label {
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 8px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: .06em
}

.metric-card .card-value {
    font-size: 41px;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #481B9E;
    font-weight: 600
}

.metric-card .card-text {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    color: #444
}

.intl-students-hub .testimonial-section {
    padding: 56px 16px;
    background: #FFF
}

.testimonial-section .holder-content {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    align-items: center
}

.testimonial-section .photo-zone {
    flex: 0 0 380px;
    position: relative
}

.photo-zone .photo-frame {
    width: 100%;
    height: 460px;
    border-radius: 42px;
    overflow: hidden;
    box-shadow: 0 5px 25px -2px #fec6451a
}

.photo-zone .photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.06) saturate(1.08)
}

.testimonial-section .content-zone {
    flex: 1;
    padding: 32px
}

.content-zone .quote-mark {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #FEC645 0%, #481B9E 100%);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 16px;
    position: relative
}

.quote-mark::before {
    content: '';
    width: 24px;
    height: 24px;
    border: 3px solid #FFF;
    border-radius: 42px 2px 2px 2px;
    transform: rotate(-15deg)
}

.content-zone .testimonial-title {
    font-size: 31px;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #481B9E
}

.content-zone .testimonial-body {
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 16px;
    color: #2a2a2a
}

.content-zone .author-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0 0
}

.author-info .author-name {
    font-size: 15px;
    line-height: 1.5;
    color: #481B9E;
    font-weight: 600
}

.author-info .author-origin {
    font-size: 15px;
    line-height: 1.5;
    color: #666
}

.intl-students-hub .zigzag-divider {
    width: 100%;
    height: 32px;
    overflow: hidden;
    position: relative
}

.zigzag-divider svg {
    width: 100%;
    height: 100%;
    display: block
}

@media (max-width: 768px) {
    .intl-students-hub .asymmetric-zone {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .asymmetric-zone .border-divider {
        display: none
    }

    .metrics-grid .grid-layout {
        grid-template-columns: 1fr
    }

    .metrics-grid .grid-layout .col-double {
        grid-column: span 1
    }

    .testimonial-section .holder-content {
        flex-direction: column
    }

    .testimonial-section .photo-zone {
        flex: 0 0 auto;
        width: 100%
    }

    .tophero .title-primary {
        font-size: 41px
    }

    .metrics-grid .section-heading {
        font-size: 31px
    }
}

.about-hub {
    background: #fff;
    color: #1a1a1a;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.about-hub .intro-visual {
    background: linear-gradient(165deg, #fec64526 0%, #fbcfdf40 100%);
    padding: 128px 16px 64px;
    position: relative;
    overflow: hidden
}

.intro-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, #FEC645 0%, #481B9E 100%)
}

.about-hub .intro-content-holder {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center
}

.about-hub .intro-text-zone {
    padding: 32px
}

.about-hub .intro-year-mark {
    font-size: 70px;
    line-height: 1.2;
    color: #481B9E;
    font-weight: 700;
    margin: 0 0 16px;
    letter-spacing: -.02em
}

.about-hub .intro-headline {
    font-size: 41px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 32px;
    font-weight: 600
}

.about-hub .intro-description {
    font-size: 19px;
    line-height: 1.75;
    color: #3a3a3a;
    margin: 0 0 16px
}

.about-hub .intro-photo-holder {
    position: relative;
    border-radius: 42px;
    overflow: hidden;
    box-shadow: 0 9px 36px -2px #481b9e1f
}

.about-hub .intro-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.intro-photo-holder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, #0003 100%);
    pointer-events: none
}

.intro-photo-holder:hover .intro-img {
    transform: scale(1.03)
}

.about-hub .story-segment {
    max-width: 1170px;
    margin: 0 auto;
    padding: 64px 16px
}

.about-hub .story-grid-holder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px
}

.about-hub .story-card {
    background: linear-gradient(135deg, #fbcfdf14 0%, #fec64514 100%);
    padding: 32px;
    border-radius: 42px;
    box-shadow: 0 3px 5px -2px #481b9e12;
    transition: box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1), transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.about-hub .story-card.is-feature {
    grid-column: span 2;
    background: linear-gradient(135deg, #fec6451f 0%, #fbcfdf1f 100%)
}

.about-hub .story-card:hover {
    box-shadow: 0 9px 36px -2px #481b9e1f;
    transform: translateY(-4px)
}

.about-hub .card-icon-shape {
    width: 56px;
    height: 56px;
    border-radius: 2px;
    background: linear-gradient(165deg, #FEC645 0%, #481B9E 100%);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.card-icon-shape svg {
    width: 32px;
    height: 32px;
    fill: #fff
}

.about-hub .card-title-text {
    font-size: 31px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 16px;
    font-weight: 600
}

.about-hub .card-body-text {
    font-size: 15px;
    line-height: 1.75;
    color: #4a4a4a;
    margin: 0
}

.about-hub .card-photo-wrapper {
    width: 100%;
    height: 220px;
    border-radius: 42px;
    overflow: hidden;
    margin: 0 0 16px;
    box-shadow: 0 5px 25px -2px #481b9e1a
}

.about-hub .card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .38s cubic-bezier(0.4, 0, 0.2, 1)
}

.story-card:hover .card-photo {
    transform: scale(1.05)
}

.about-hub .divider-row {
    max-width: 1170px;
    margin: 32px auto;
    padding: 0 16px;
    display: flex;
    gap: 8px;
    align-items: center
}

.divider-row::before,
.divider-row::after {
    content: '';
    flex: 1;
    height: 2px;
    background-image: repeating-linear-gradient(90deg, #481B9E 0, #481B9E 4px, transparent 4px, transparent 8px)
}

.about-hub .values-region {
    background: #fbcfdf0f;
    padding: 64px 16px;
    position: relative
}

.about-hub .values-content-holder {
    max-width: 1170px;
    margin: 0 auto
}

.about-hub .values-heading {
    font-size: 56px;
    line-height: 1.2;
    color: #481B9E;
    text-align: center;
    margin: 0 0 64px;
    font-weight: 700
}

.about-hub .values-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px
}

.about-hub .value-box {
    background: #fff;
    padding: 32px;
    border-radius: 42px;
    box-shadow: 0 5px 25px -2px #481b9e1a;
    position: relative;
    transition: transform .32s cubic-bezier(0.4, 0, 0.2, 1)
}

.about-hub .value-box:hover {
    transform: translateY(-6px)
}

.about-hub .value-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 2px 0 0 2px;
    background: linear-gradient(180deg, #FEC645 0%, #481B9E 100%);
    transition: width .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.about-hub .value-box:hover::before {
    width: 8px
}

.about-hub .value-label {
    font-size: 15px;
    line-height: 1.2;
    color: #481B9E;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 0 0 8px;
    font-weight: 600
}

.about-hub .value-title {
    font-size: 31px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 16px;
    font-weight: 600
}

.about-hub .value-detail {
    font-size: 15px;
    line-height: 1.75;
    color: #4a4a4a;
    margin: 0
}

.about-hub .value-photo-frame {
    width: 100%;
    height: 320px;
    border-radius: 42px;
    overflow: hidden;
    margin: 0 0 16px;
    box-shadow: 0 5px 25px -2px #481b9e1a
}

.about-hub .value-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.about-hub ::selection {
    background: #481B9E;
    color: #fff
}

@media (max-width: 768px) {
    .about-hub .intro-content-holder {
        grid-template-columns: 1fr
    }

    .about-hub .intro-photo-holder {
        order: -1
    }

    .about-hub .intro-img {
        height: 320px
    }

    .about-hub .intro-year-mark {
        font-size: 56px
    }

    .about-hub .intro-headline {
        font-size: 31px
    }

    .about-hub .story-card.is-feature {
        grid-column: span 1
    }

    .about-hub .values-columns {
        grid-template-columns: 1fr
    }

    .about-hub .values-heading {
        font-size: 41px;
        margin: 0 0 32px
    }
}

.success-wrapper {
    background: linear-gradient(135deg, #fff 0%, #fec64514 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    position: relative;
    overflow: hidden
}

.success-wrapper::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 340px;
    height: 340px;
    background: conic-gradient(from 45deg, #fec64526, #481b9e1f, #fbcfdf2e, #fec64526);
    border-radius: 42px;
    transform: rotate(25deg);
    pointer-events: none
}

.success-wrapper::after {
    content: '';
    position: absolute;
    bottom: -160px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: conic-gradient(from 135deg, #481b9e1a, #fbcfdf26, #fec6451f);
    border-radius: 42px;
    transform: rotate(-15deg);
    pointer-events: none
}

.success-container {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.confirmation-box {
    background: #fff;
    border-radius: 42px;
    padding: 32px;
    box-shadow: 0 9px 36px -2px #481b9e1f 0 5px 25px -2px #481b9e1a 0 3px 5px -2px #481b9e12;
    max-width: 680px;
    margin: 0 auto 32px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.confirmation-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FEC645 0%, #481B9E 50%, #FBCFDF 100%)
}

.icon-holder {
    width: 96px;
    height: 96px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fec64526, #481b9e14);
    border-radius: 42px;
    position: relative;
    animation: pulse-scale 2.1s cubic-bezier(0.4, 0, 0.2, 1) infinite
}

@keyframes pulse-scale {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }
}

.icon-holder svg {
    width: 52px;
    height: 52px;
    stroke: #481B9E;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: draw-check .65s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

@keyframes draw-check {
    0% {
        stroke-dasharray: 100;
        stroke-dashoffset: 100
    }

    100% {
        stroke-dasharray: 100;
        stroke-dashoffset: 0
    }
}

.main-heading {
    font-size: 41px;
    line-height: 1.2;
    color: #481B9E;
    margin: 0 0 8px;
    font-weight: 700
}

.sub-heading {
    font-size: 19px;
    line-height: 1.5;
    color: #333;
    margin: 0 0 16px
}

.confirmation-box p {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin: 0 0 32px
}

.confirmation-box p:last-of-type {
    margin-bottom: 0
}

.detail-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 32px 0 0
}

.detail-item {
    background: linear-gradient(135deg, #fbcfdf40, #fec64526);
    padding: 16px;
    border-radius: 2px;
    text-align: left;
    transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px -2px #fec6451a
}

.detail-label {
    font-size: 15px;
    line-height: 1.5;
    color: #666;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600
}

.detail-value {
    font-size: 19px;
    line-height: 1.2;
    color: #481B9E;
    margin: 0;
    font-weight: 700
}

.action-section {
    background: linear-gradient(180deg, #fec6450f 0%, #fbcfdf14 100%);
    border-radius: 42px;
    padding: 32px;
    max-width: 920px;
    margin: 0 auto;
    position: relative
}

.action-section::before {
    content: '';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 140px;
    height: 140px;
    background: conic-gradient(from 90deg, #481b9e14, transparent);
    border-radius: 42px;
    pointer-events: none
}

.what-happens {
    font-size: 31px;
    line-height: 1.2;
    color: #333;
    margin: 0 0 16px;
    font-weight: 700
}

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

.step-card {
    background: #fff;
    padding: 16px;
    border-radius: 2px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 3px 5px -2px #fec64512;
    transition: transform .32s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .32s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative
}

.step-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #FEC645, #481B9E);
    opacity: 0;
    transition: opacity .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.step-card:hover {
    transform: translateX(4px);
    box-shadow: 0 5px 25px -2px #481b9e1a
}

.step-card:hover::after {
    opacity: 1
}

.step-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #FEC645, #481B9E);
    border-radius: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1
}

.step-content {
    flex: 1
}

.step-title {
    font-size: 19px;
    line-height: 1.2;
    color: #481B9E;
    margin: 0 0 4px;
    font-weight: 700
}

.step-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin: 0
}

.btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #481B9E;
    color: #fff;
    text-decoration: none;
    border-radius: 42px;
    font-size: 19px;
    font-weight: 700;
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 5px -2px #481b9e12;
    position: relative;
    overflow: hidden
}

.btn-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #ffffff26, transparent);
    transition: left .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 36px -2px #481b9e1f
}

.btn-main:hover::before {
    left: 100%
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: #481B9E;
    text-decoration: none;
    border-radius: 42px;
    font-size: 19px;
    font-weight: 700;
    border: 2px solid #481B9E;
    transition: background .27s cubic-bezier(0.4, 0, 0.2, 1), color .27s cubic-bezier(0.4, 0, 0.2, 1), transform .27s cubic-bezier(0.4, 0, 0.2, 1)
}

.btn-secondary:hover {
    background: #481B9E;
    color: #fff;
    transform: translateY(-2px)
}

@media (max-width: 768px) {
    .success-wrapper {
        padding: 16px
    }

    .confirmation-box {
        padding: 32px 16px
    }

    .main-heading {
        font-size: 31px
    }

    .sub-heading {
        font-size: 19px
    }

    .detail-row {
        grid-template-columns: 1fr
    }

    .action-section {
        padding: 32px 16px
    }

    .what-happens {
        font-size: 31px
    }

    .step-card {
        flex-direction: column;
        text-align: center
    }

    .btn-group {
        flex-direction: column
    }

    .btn-main,
    .btn-secondary {
        width: 100%;
        justify-content: center
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 31px
    }

    .what-happens {
        font-size: 19px
    }

    .icon-holder {
        width: 72px;
        height: 72px
    }

    .icon-holder svg {
        width: 38px;
        height: 38px
    }
}