* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f5f5;
}

.site-header {
    background-color: #ffffff;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 100px;
    height: auto;
    display: block;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-list > li {
    position: static;
}

.nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #1a3a5c;
    transition: color 0.2s ease;
}

.nav-list > li > a:hover {
    color: #f47b20;
}

.nav-list > li > a.active {
    color: #f47b20;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.nav-list > li > a svg {
    width: 10px;
    height: 6px;
}

.dropdown-arrow {
    transition: transform 0.2s ease;
}

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

.has-dropdown .dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    transform: translateY(-8px);
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    width: 100%;
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
}

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

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

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    color: #1a3a5c;
    transition: background-color 0.2s ease;
}

.mega-item:hover {
    background-color: #fff5ed;
}

.mega-item:hover .mega-icon {
    background-color: #f47b20;
    color: #ffffff;
}

.mega-item:hover .mega-text strong {
    color: #f47b20;
}

.mega-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background-color: #f2f4f7;
    border-radius: 10px;
    color: #1a3a5c;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mega-icon svg {
    width: 22px;
    height: 22px;
}

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

.mega-text strong {
    font-size: 14px;
    font-weight: 600;
    color: #1a3a5c;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.mega-text span {
    font-size: 13px;
    color: #7a8ba1;
    font-weight: 400;
}

.mega-footer {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #f0f0f0;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #f47b20;
    transition: gap 0.2s ease;
}

.view-all:hover {
    gap: 10px;
}

.view-all svg {
    width: 14px;
    height: 14px;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #0a2a4a;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 50px;
    margin-left: 40px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-book:hover {
    background-color: #0d3358;
    transform: translateY(-1px);
}

.btn-book svg {
    width: 16px;
    height: 16px;
}

.hero {
    background-color: #ffffff;
    padding: 20px 0 80px;
    overflow: hidden;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
}

.hero-left {
    order: 1;
}

.hero-visual {
    order: 2;
    position: relative;
}

.hero-heading {
    font-size: clamp(2.25rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #0F2A4A;
    margin: 0 0 1.25rem;
}

.hero-highlight {
    color: #f47b20;
}

.hero-subheading {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6d85;
    margin-bottom: 40px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #0a2a4a;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0d3358;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #ffffff;
    color: #0a2a4a;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    border-color: #0a2a4a;
    transform: translateY(-2px);
}

.btn-arrow {
    width: 18px;
    height: 18px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-stat strong {
    font-size: 34px;
    font-weight: 800;
    color: #0a2a4a;
}

.hero-stat span {
    font-size: 14px;
    color: #5a6d85;
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background-color: #e2e8f0;
}

.orbit-scene {
    position: relative;
    width: 620px;
    height: 620px;
    margin: 0 auto;
}

.orbit-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 150, 80, 0.22) 0%, rgba(255, 200, 150, 0.1) 40%, rgba(255, 255, 255, 0) 70%);
    filter: blur(60px);
    z-index: 1;
}

.orbit-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 2;
}

.orbit-ring-track {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed #e2e8f0;
}

.orbit-ring-track--outer {
    width: 520px;
    height: 520px;
}

.orbit-ring-track--inner {
    width: 360px;
    height: 360px;
}

.orbit-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 3;
}

.orbit-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(var(--radius)) rotate(calc(-1 * var(--angle)));
    animation: orbit-float 4s ease-in-out infinite;
    animation-delay: var(--float-delay);
}

.orbit-icon--outer {
    --radius: 260px;
}

.orbit-icon--inner {
    --radius: 180px;
}

.icon-chip {
    width: 56px;
    height: 56px;
    background-color: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-chip img {
    width: 32px;
    height: 32px;
    display: block;
}

.chart-visual-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    z-index: 4;
}

.chart-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@keyframes orbit-float {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateX(var(--radius)) rotate(calc(-1 * var(--angle))) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateX(var(--radius)) rotate(calc(-1 * var(--angle))) translateY(-12px);
    }
}

.logo-slider {
    background-color: #ffffff;
    padding: 80px 0 100px;
    overflow: hidden;
}

.logo-slider__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    margin-bottom: 48px;
}

.logo-slider__header {
    max-width: 700px;
    margin: 0 auto;
}

.logo-slider__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f47b20;
    margin-bottom: 14px;
}

.logo-slider__title {
    font-size: 36px;
    font-weight: 700;
    color: #0a2a4a;
    margin-bottom: 16px;
}

.logo-slider__subline {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6d85;
}

.logo-slider__viewport {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.logo-slider__fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    z-index: 2;
}

.logo-slider__fade--left {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-slider__fade--right {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-slider__track {
    display: flex;
    width: max-content;
    animation: logo-scroll 35s linear infinite;
}

.logo-slider__track:hover {
    animation-play-state: paused;
}

.logo-slider__group {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
    flex-shrink: 0;
}

.logo-slider__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    filter: grayscale(0);
    transition: filter 0.2s ease, transform 0.2s ease;
}

.logo-slider__logo:hover {
    transform: scale(1.05);
}

.logo-slider__logo img {
    max-width: 140px;
    max-height: 50px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

@keyframes logo-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.services {
    background-color: #ffffff;
    padding: 80px 0 100px;
}

.services__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.services__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f47b20;
    margin-bottom: 14px;
}

.services__title {
    font-size: 36px;
    font-weight: 700;
    color: #0a2a4a;
    margin-bottom: 16px;
}

.services__subline {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6d85;
}

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

.service-card {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.service-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.service-card__index {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 14px;
    font-weight: 600;
    color: #c8d0dc;
}

.service-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f4f7;
    border-radius: 12px;
    color: #0a2a4a;
    font-size: 22px;
    margin-bottom: 20px;
    transition: all 0.25s ease;
}

.service-card:hover .service-card__icon {
    background-color: #f47b20;
    color: #ffffff;
}

.service-card__title {
    font-size: 19px;
    font-weight: 700;
    color: #0a2a4a;
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6d85;
    margin-bottom: 20px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #f47b20;
    transition: gap 0.2s ease;
}

.service-card:hover .service-card__link {
    gap: 10px;
}

.stats-counter {
    background-color: #ffffff;
    padding: 60px 0 80px;
}

.stats-counter__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-counter__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stats-counter__item {
    position: relative;
    text-align: center;
    padding: 0 40px;
}

.stats-counter__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background-color: #e2e8f0;
}

.stats-counter__value {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.stats-counter__number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: #f47b20;
}

.stats-counter__suffix {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: #f47b20;
}

.stats-counter__label {
    font-size: 14px;
    color: #0a2a4a;
    font-weight: 500;
}

.portfolio {
    background-color: #ffffff;
    padding: 80px 0 100px;
}

.portfolio__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.portfolio__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 36px;
}

.portfolio__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f47b20;
    margin-bottom: 14px;
}

.portfolio__title {
    font-size: 36px;
    font-weight: 700;
    color: #0a2a4a;
    margin-bottom: 16px;
}

.portfolio__subline {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6d85;
    margin-bottom: 16px;
}

.portfolio__view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #f47b20;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.portfolio__view-all:hover {
    gap: 10px;
}

.portfolio__filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.portfolio-filter {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    color: #0a2a4a;
    cursor: pointer;
    transition: all 0.2s ease;
}

.portfolio-filter:hover {
    border-color: #0a2a4a;
}

.portfolio-filter.is-active {
    background-color: #0a2a4a;
    border-color: #0a2a4a;
    color: #ffffff;
}

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

.portfolio-card {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.portfolio-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.portfolio-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #f8f9fb;
}

.portfolio-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-card__media img {
    transform: scale(1.03);
}

.portfolio-card__body {
    padding: 20px 24px 24px;
}

.portfolio-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.portfolio-card__name {
    font-size: 17px;
    font-weight: 700;
    color: #0a2a4a;
}

.portfolio-tag {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 10px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    color: #5a6d85;
}

.portfolio-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #f47b20;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: gap 0.2s ease;
}

.portfolio-card__link:hover {
    gap: 10px;
}

.product-launch {
    background-color: #f8f9fb;
    padding: 80px 0 100px;
}

.product-launch__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-launch__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.product-launch__badge {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 50px;
    background-color: #f47b20;
    color: #ffffff;
    margin-bottom: 18px;
}

.product-launch__title {
    font-size: 34px;
    font-weight: 800;
    color: #0a2a4a;
    margin-bottom: 14px;
}

.product-launch__tagline {
    font-size: 17px;
    line-height: 1.6;
    color: #5a6d85;
    margin-bottom: 14px;
}

.product-launch__desc {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6d85;
    margin-bottom: 24px;
}

.product-launch__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
    list-style: none;
}

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

.product-launch__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
}

.product-launch__feature-icon--orange {
    background-color: rgba(244, 123, 32, 0.1);
    color: #f47b20;
}

.product-launch__feature-icon--navy {
    background-color: rgba(10, 42, 74, 0.08);
    color: #0a2a4a;
}

.product-launch__feature-icon svg {
    width: 20px;
    height: 20px;
}

.product-launch__feature-title {
    font-size: 14px;
    font-weight: 600;
    color: #0a2a4a;
    line-height: 1.4;
}

.product-launch__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.product-launch__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.product-launch__btn--primary {
    background-color: #0a2a4a;
    color: #ffffff;
}

.product-launch__btn--primary:hover {
    background-color: #0d3358;
    transform: translateY(-2px);
}

.product-launch__btn--outline {
    background-color: transparent;
    color: #f47b20;
    border: 1px solid #f47b20;
}

.product-launch__btn--outline:hover {
    background-color: #f47b20;
    color: #ffffff;
    transform: translateY(-2px);
}

.product-launch__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-launch__glow {
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 123, 32, 0.15) 0%, rgba(244, 123, 32, 0) 70%);
    filter: blur(50px);
    z-index: 0;
}

.product-launch__frame {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.product-launch__frame img {
    width: 100%;
    height: auto;
    display: block;
}

.partners {
    background-color: #f8f9fb;
    padding: 80px 0 100px;
    overflow: hidden;
}

.partners__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    margin-bottom: 48px;
}

.partners__header {
    max-width: 700px;
    margin: 0 auto;
}

.partners__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f47b20;
    margin-bottom: 14px;
}

.partners__title {
    font-size: 36px;
    font-weight: 700;
    color: #0a2a4a;
    margin-bottom: 16px;
}

.partners__subline {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6d85;
}

.partners__viewport {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.partners__fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    z-index: 2;
}

.partners__fade--left {
    left: 0;
    background: linear-gradient(to right, #f8f9fb 0%, rgba(248, 249, 251, 0) 100%);
}

.partners__fade--right {
    right: 0;
    background: linear-gradient(to left, #f8f9fb 0%, rgba(248, 249, 251, 0) 100%);
}

.partners__track {
    display: flex;
    width: max-content;
    animation: partners-scroll 30s linear infinite;
}

.partners__track:hover {
    animation-play-state: paused;
}

.partners__group {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 0 35px;
    flex-shrink: 0;
}

.partners__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    transition: transform 0.2s ease;
}

.partners__logo:hover {
    transform: scale(1.05);
}

.partners__logo img {
    max-width: 160px;
    max-height: 45px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    filter: grayscale(0);
}

@keyframes partners-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.process {
    background-color: #ffffff;
    padding: 80px 0 100px;
}

.process__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.process__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f47b20;
    margin-bottom: 14px;
}

.process__title {
    font-size: 36px;
    font-weight: 700;
    color: #0a2a4a;
    margin-bottom: 16px;
}

.process__subline {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6d85;
}

.process__timeline {
    position: relative;
    padding: 60px 0;
}

.process__line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e2e8f0;
    transform: translateY(-50%);
    z-index: 0;
}

.process__steps {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    list-style: none;
    margin: 0;
    padding: 0;
}

.process__step {
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    align-items: center;
    justify-items: center;
    text-align: center;
    gap: 20px;
}

.process__step--top .process__card {
    grid-row: 1;
}

.process__step--top .process__marker {
    grid-row: 2;
}

.process__step--top .process__spacer {
    grid-row: 3;
}

.process__step--bottom .process__spacer {
    grid-row: 1;
}

.process__step--bottom .process__marker {
    grid-row: 2;
}

.process__step--bottom .process__card {
    grid-row: 3;
}

.process__card {
    max-width: 220px;
}

.process__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(244, 123, 32, 0.1);
    border-radius: 10px;
    color: #f47b20;
    margin: 0 auto 14px;
}

.process__icon svg {
    width: 20px;
    height: 20px;
}

.process__step-title {
    font-size: 16px;
    font-weight: 700;
    color: #0a2a4a;
    margin-bottom: 8px;
}

.process__step-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #5a6d85;
}

.process__marker {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f47b20;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 0 0 8px rgba(244, 123, 32, 0.1);
}

.process__spacer {
    height: 60px;
}

.team {
    background-color: #ffffff;
    padding: 80px 0 100px;
}

.team__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.team__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f47b20;
    margin-bottom: 14px;
}

.team__title {
    font-size: 36px;
    font-weight: 700;
    color: #0a2a4a;
    margin-bottom: 16px;
}

.team__subline {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6d85;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.team-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.25s ease;
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-6px);
}

.team-card__photo-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: #f2f4f7;
}

.team-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.team-card:hover .team-card__photo {
    transform: scale(1.03);
}

.team-card__body {
    padding: 18px 20px 22px;
}

.team-card__name {
    font-size: 15px;
    font-weight: 700;
    color: #0a2a4a;
    margin-bottom: 4px;
}

.team-card__role {
    font-size: 13px;
    font-weight: 600;
    color: #f47b20;
}

.reviews {
    background-color: #ffffff;
    padding: 80px 0 100px;
}

.reviews__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews__header {
    text-align: center;
    margin-bottom: 48px;
}

.reviews__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f47b20;
    margin-bottom: 14px;
}

.reviews__title {
    font-size: 36px;
    font-weight: 700;
    color: #0a2a4a;
    margin-bottom: 18px;
}

.reviews__google-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #5a6d85;
}

.reviews__score {
    font-weight: 700;
    color: #0a2a4a;
}

.reviews__stars {
    color: #f4b400;
    letter-spacing: 1px;
}

.reviews__slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviews__arrow {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    color: #0a2a4a;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.reviews__arrow:hover {
    border-color: #0a2a4a;
    background-color: #0a2a4a;
    color: #ffffff;
}

.reviews__arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.reviews__viewport {
    overflow: hidden;
    flex: 1;
}

.reviews__track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.review-card {
    flex: 0 0 calc((100% - 40px) / 3);
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: all 0.25s ease;
}

.review-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.review-card__google {
    position: absolute;
    top: 20px;
    right: 20px;
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.review-card__avatar {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-card__name {
    font-size: 15px;
    font-weight: 700;
    color: #0a2a4a;
    margin-bottom: 2px;
}

.review-card__subtitle {
    font-size: 12px;
    color: #5a6d85;
}

.review-card__stars {
    color: #f4b400;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.review-card__text {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6d85;
}

.contact {
    background-color: #f8f9fb;
    padding: 80px 0 100px;
}

.contact__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

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

.contact__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f47b20;
}

.contact__title {
    font-size: 34px;
    font-weight: 800;
    color: #0a2a4a;
    margin-bottom: 8px;
}

.contact__subline {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6d85;
}

.contact__details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact__details li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact__icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.contact__icon svg {
    width: 22px;
    height: 22px;
}

.contact__icon--navy {
    background-color: rgba(10, 42, 74, 0.08);
    color: #0a2a4a;
}

.contact__icon--green {
    background-color: rgba(37, 211, 102, 0.12);
    color: #25d366;
}

.contact__icon--orange {
    background-color: rgba(244, 123, 32, 0.1);
    color: #f47b20;
}

.contact__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a9ab0;
    margin-bottom: 4px;
}

.contact__details a {
    font-size: 15px;
    font-weight: 600;
    color: #0a2a4a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact__details a:hover {
    color: #f47b20;
}

.contact__link-address {
    line-height: 1.4;
}

.contact__map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.contact__map iframe {
    display: block;
    border: none;
}

.contact__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact__btn--whatsapp {
    background-color: #25d366;
    color: #ffffff;
}

.contact__btn--whatsapp:hover {
    background-color: #1fa855;
    transform: translateY(-2px);
}

.contact__btn--call {
    background-color: #0a2a4a;
    color: #ffffff;
}

.contact__btn--call:hover {
    background-color: #0d3358;
    transform: translateY(-2px);
}

.contact__form-wrap {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact__field-label {
    font-size: 13px;
    font-weight: 600;
    color: #0a2a4a;
}

.contact__input {
    font-family: inherit;
    font-size: 15px;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background-color: #ffffff;
    color: #0a2a4a;
    transition: border-color 0.2s ease;
    outline: none;
}

.contact__input:focus {
    border-color: #f47b20;
}

.contact__input::placeholder {
    color: #a0aec0;
}

.contact__textarea {
    min-height: 140px;
    resize: vertical;
}

.contact__submit {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    background-color: #0a2a4a;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact__submit:hover {
    background-color: #0d3358;
    transform: translateY(-2px);
}

.site-footer {
    background-color: #0a2a4a;
    color: #ffffff;
    padding: 64px 0 0;
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 48px;
}

.site-footer__logo-wrap {
    display: inline-block;
    margin-bottom: 18px;
}

.site-footer__logo {
    width: 120px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.site-footer__tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #a8b8cc;
    margin-bottom: 20px;
    max-width: 280px;
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer__social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.site-footer__social-link:hover {
    background-color: #f47b20;
    transform: translateY(-2px);
}

.site-footer__heading {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.site-footer__links,
.site-footer__contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__links a,
.site-footer__contact a {
    font-size: 14px;
    color: #a8b8cc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__contact a:hover {
    color: #f47b20;
}

.site-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.site-footer__contact li svg {
    width: 18px;
    height: 18px;
    color: #f47b20;
    flex-shrink: 0;
    margin-top: 2px;
}

.site-footer__bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-footer__copy {
    font-size: 13px;
    color: #a8b8cc;
}

.site-footer__legal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-footer__legal a {
    font-size: 13px;
    color: #a8b8cc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__legal a:hover {
    color: #f47b20;
}

.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    text-decoration: none;
}

.wa-float__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0a2a4a;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(10, 42, 74, 0.3);
    transition: all 0.2s ease;
}

.wa-float:hover .wa-float__inner {
    background-color: #25d366;
    transform: scale(1.05);
}

.wa-float__icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-float__icon svg {
    width: 28px;
    height: 28px;
}

.wa-float__pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #0a2a4a;
    z-index: 1;
    animation: wa-pulse 2s infinite;
}

.wa-float:hover .wa-float__pulse {
    background-color: #25d366;
}

.wa-float__label {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0a2a4a;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 50px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wa-float:hover .wa-float__label {
    opacity: 1;
    visibility: visible;
    right: 74px;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Responsive styles */
body.is-menu-open {
    overflow: hidden;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1002;
}

.mobile-menu__bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #0a2a4a;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.mobile-menu-toggle.is-active .mobile-menu__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active .mobile-menu__bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active .mobile-menu__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
    .header-inner {
        position: relative;
        z-index: 1001;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 92px 24px 24px;
        background-color: #ffffff;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        visibility: visible;
        opacity: 1;
        z-index: 999;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        overflow-y: auto;
    }

    .nav-list > li {
        width: 100%;
        position: static;
    }

    .nav-list > li > a {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 16px;
        justify-content: space-between;
    }

    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
        padding: 0;
        border: none;
        box-shadow: none;
    }

    .has-dropdown.is-open .dropdown {
        display: block;
        padding: 0 0 16px;
    }

    .has-dropdown.is-open .dropdown-arrow {
        transform: rotate(180deg);
    }

    .mega-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mega-item {
        padding: 12px;
    }

    .mega-icon {
        width: 40px;
        height: 40px;
    }

    .mega-text strong {
        white-space: normal;
    }

    .mega-footer {
        display: none;
    }

    .btn-book {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-left {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .hero-subheading {
        max-width: 600px;
    }

    .orbit-scene {
        width: 460px;
        height: 460px;
    }

    .orbit-ring-track--outer {
        width: 380px;
        height: 380px;
    }

    .orbit-ring-track--inner {
        width: 270px;
        height: 270px;
    }

    .orbit-icon--outer {
        --radius: 190px;
    }

    .orbit-icon--inner {
        --radius: 135px;
    }

    .chart-visual-wrapper {
        width: 280px;
        height: 280px;
    }

    .orbit-glow {
        width: 360px;
        height: 360px;
    }

    .icon-chip {
        width: 48px;
        height: 48px;
    }

    .icon-chip img {
        width: 26px;
        height: 26px;
    }

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

    .product-launch__card {
        grid-template-columns: 1fr;
    }

    .product-launch__visual {
        order: -1;
    }

    .process__steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .team__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact__inner,
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-counter__grid {
        flex-wrap: nowrap;
        gap: 24px;
    }

    .stats-counter__item {
        flex: 1 1 0;
        min-width: 0;
        padding: 0;
    }

    .stats-counter__item:not(:last-child)::after {
        display: none;
    }

    .stats-counter__number,
    .stats-counter__suffix {
        font-size: 36px;
    }

    .site-footer__grid {
        gap: 32px;
    }
}

@media (max-width: 767px) {
    .hero-heading {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero-subheading {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-stats {
        flex-wrap: nowrap;
        gap: 16px;
    }

    .hero-stat {
        flex: 1 1 0;
        min-width: 0;
    }

    .hero-stat strong {
        font-size: 24px;
    }

    .hero-stat-divider {
        display: none;
    }

    .logo-slider__title,
    .services__title,
    .portfolio__title,
    .product-launch__title,
    .partners__title,
    .process__title,
    .team__title,
    .reviews__title,
    .contact__title {
        font-size: 26px;
    }

    .services__grid,
    .portfolio__grid {
        grid-template-columns: 1fr;
    }

    .portfolio__filters {
        flex-wrap: wrap;
    }

    .process__timeline {
        padding: 0;
    }

    .process__line {
        display: none;
    }

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

    .process__step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        padding: 16px 0;
    }

    .process__spacer {
        display: none;
    }

    .process__card {
        max-width: none;
        width: 100%;
    }

    .process__icon {
        margin: 0 auto 14px;
    }

    .process__step-title {
        font-size: 17px;
    }

    .process__step-desc {
        font-size: 14px;
    }

    .process__marker {
        order: -1;
        margin-bottom: 14px;
    }

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

    .review-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .contact__inner,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .contact__actions {
        flex-wrap: wrap;
    }

    .product-launch__features {
        grid-template-columns: 1fr;
    }

    .product-launch__actions {
        flex-direction: column;
        width: 100%;
    }

    .product-launch__actions .btn {
        width: 100%;
    }

    .site-footer__bar {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 575px) {
    .hero-heading {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .hero-actions .btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    .hero-stats {
        flex-wrap: nowrap;
        gap: 12px;
    }

    .hero-stat {
        flex: 1 1 0;
        min-width: 0;
    }

    .hero-stat strong {
        font-size: 20px;
    }

    .orbit-scene {
        width: 300px;
        height: 300px;
    }

    .orbit-ring-track--outer {
        width: 250px;
        height: 250px;
    }

    .orbit-ring-track--inner {
        width: 180px;
        height: 180px;
    }

    .orbit-icon--outer {
        --radius: 125px;
    }

    .orbit-icon--inner {
        --radius: 90px;
    }

    .chart-visual-wrapper {
        width: 180px;
        height: 180px;
    }

    .orbit-glow {
        width: 240px;
        height: 240px;
    }

    .icon-chip {
        width: 40px;
        height: 40px;
    }

    .icon-chip img {
        width: 22px;
        height: 22px;
    }

    .stats-counter__grid {
        gap: 12px;
    }

    .stats-counter__item {
        flex: 1 1 0;
        min-width: 0;
        padding: 0;
    }

    .stats-counter__number,
    .stats-counter__suffix {
        font-size: 22px;
    }

    .stats-counter__label {
        font-size: 11px;
    }

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

    .review-card {
        flex: 0 0 100%;
    }

    .reviews__arrow {
        display: none;
    }

    .product-launch__card {
        padding: 28px;
    }

    .contact__form-wrap {
        padding: 24px;
    }

    .wa-float {
        bottom: 16px;
        right: 16px;
    }

    .wa-float__inner {
        width: 52px;
        height: 52px;
    }

    .wa-float__icon svg {
        width: 24px;
        height: 24px;
    }

    .wa-float__label {
        display: none;
    }
}
