:root {
    --brand-navy: #422774;
    --brand-blue: #5a3699;
    --brand-orange: #ff8a1e;
    --brand-light: #f5f7fb;
    --brand-white: rgba(255, 255, 255, 0.72);
    --brand-border: rgba(148, 163, 184, 0.18);
    --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.08);
    --shadow-hover: 0 24px 70px rgba(15, 23, 42, 0.14);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background:
        radial-gradient(circle at top left, rgba(255, 138, 30, 0.12), transparent 22%),
        radial-gradient(circle at bottom right, rgba(66, 39, 116, 0.1), transparent 24%),
        linear-gradient(180deg, #f4f7fb 0%, #ffffff 50%, #f6f9fc 100%);
    color: #0f172a;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

.site-container {
    margin: 0 auto;
    max-width: 80rem;
    width: min(100%, 80rem);
    padding: 0 1rem;
    overflow-x: clip;
}

main,
section,
header,
footer {
    max-width: 100%;
}

img,
iframe,
video,
svg {
    max-width: 100%;
}

a,
p,
h1,
h2,
h3 {
    overflow-wrap: anywhere;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 138, 30, 0.18), transparent 24%),
        linear-gradient(135deg, rgba(43, 24, 80, 0.98), rgba(66, 39, 116, 0.95)),
        linear-gradient(180deg, #2b1850 0%, #422774 100%);
    padding: 5.5rem 0 5rem;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -4rem;
    right: -4rem;
    height: 14rem;
    width: 14rem;
    border-radius: 9999px;
    background: rgba(255, 138, 30, 0.18);
    filter: blur(16px);
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: -5rem;
    left: -4rem;
    height: 16rem;
    width: 16rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    filter: blur(18px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.5rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #dbeafe;
    backdrop-filter: blur(10px);
}

.hero-title,
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero-title {
    margin-top: 1.5rem;
    color: #fff;
}

.hero-copy,
.section-copy {
    margin-top: 1rem;
    max-width: 42rem;
    line-height: 1.8;
    animation: fade-up 0.7s ease both;
    text-wrap: pretty;
}

.hero-copy {
    color: #cbd5e1;
}

.section-block {
    padding: 5rem 0;
}

.section-muted {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 250, 252, 0.94));
}

.section-intro {
    max-width: 42rem;
}

.section-intro > * + * {
    margin-top: 1rem;
}

.section-intro .eyebrow {
    border-color: rgba(255, 138, 30, 0.2);
    background: rgba(255, 138, 30, 0.08);
    color: var(--brand-orange);
}

#about .eyebrow {
    border-color: rgba(66, 39, 116, 0.22);
    background: rgba(66, 39, 116, 0.08);
    color: var(--brand-navy);
}

#about .section-title {
    color: #1f1438;
}

#about .section-copy {
    color: #334155;
}

#about p {
    color: #475569;
}

#about .panel h3 {
    color: #1e293b;
}

#about .panel p {
    color: #475569;
}

.section-title {
    margin-top: 1rem;
    color: #0f172a;
}

.section-copy {
    color: #475569;
}

img {
    display: block;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 9999px;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-orange), #ffab58);
    color: #0f172a;
    box-shadow: 0 14px 35px rgba(255, 138, 30, 0.28);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    box-shadow: 0 18px 42px rgba(255, 138, 30, 0.34);
}

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

.panel {
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    backdrop-filter: blur(14px);
}

.panel-accent {
    background:
        linear-gradient(180deg, rgba(255, 138, 30, 0.12), rgba(255, 255, 255, 0.05)),
        rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 80px rgba(2, 6, 23, 0.22);
}

.panel-placeholder {
    display: grid;
    min-height: inherit;
    place-items: center;
    padding: 2rem;
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.panel:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 138, 30, 0.18);
}

.service-premium-grid,
.trust-premium-grid {
    display: grid;
    gap: 1.25rem;
}

.service-showcase-card {
    position: relative;
    display: flex;
    min-height: 100%;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border-radius: 1.6rem;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.94));
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-showcase-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 138, 30, 0.1), transparent 30%),
        linear-gradient(180deg, rgba(66, 39, 116, 0.04), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.service-showcase-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 138, 30, 0.24);
    box-shadow: 0 28px 72px rgba(15, 23, 42, 0.14);
}

.service-showcase-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    overflow: hidden;
    padding: 1.35rem 1.35rem 1rem;
}

.service-showcase-media::after {
    content: "";
    position: absolute;
    inset: auto -12% -55% auto;
    height: 9rem;
    width: 9rem;
    border-radius: 9999px;
    background: radial-gradient(circle, rgba(255, 138, 30, 0.18), rgba(255, 138, 30, 0));
    pointer-events: none;
}

.service-showcase-icon {
    position: relative;
    display: inline-flex;
    height: 4rem;
    width: 4rem;
    align-items: center;
    justify-content: center;
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(43, 24, 80, 0.98), rgba(66, 39, 116, 0.9));
    color: var(--brand-orange);
    font-size: 1.15rem;
    box-shadow: 0 18px 30px rgba(43, 24, 80, 0.24);
}

.service-showcase-label {
    display: inline-flex;
    border-radius: 9999px;
    background: rgba(66, 39, 116, 0.08);
    color: var(--brand-navy);
    padding: 0.45rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.service-showcase-body {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 0 1.35rem 1.35rem;
}

.service-showcase-title {
    color: #0f172a;
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.35;
}

.service-showcase-copy {
    margin-top: 0.9rem;
    color: #475569;
    font-size: 0.94rem;
    line-height: 1.8;
}

.service-card-cta {
    margin-top: auto;
    padding-top: 1.35rem;
}

.service-card-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--brand-navy);
    font-size: 0.92rem;
    font-weight: 700;
    transition: color 0.22s ease, transform 0.22s ease;
}

.service-card-cta a:hover {
    color: var(--brand-orange);
    transform: translateX(2px);
}

.trust-stats-grid {
    display: grid;
    gap: 1rem;
}

.trust-stat-card {
    border-radius: 1.45rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 252, 0.88));
    padding: 1.35rem 1rem;
    text-align: center;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.trust-feature-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 1.55rem;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.9));
    padding: 1.45rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.trust-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, rgba(255, 138, 30, 0.06), transparent 40%);
    pointer-events: none;
}

.trust-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 138, 30, 0.22);
    box-shadow: 0 26px 68px rgba(15, 23, 42, 0.12);
}

.trust-feature-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.trust-icon-wrap {
    position: relative;
    display: inline-flex;
    height: 3.6rem;
    width: 3.6rem;
    align-items: center;
    justify-content: center;
    border-radius: 1.2rem;
    border: 1px solid rgba(66, 39, 116, 0.14);
    background:
        linear-gradient(135deg, rgba(43, 24, 80, 0.96), rgba(66, 39, 116, 0.9));
    color: var(--brand-orange);
    font-size: 1rem;
    box-shadow: 0 14px 30px rgba(43, 24, 80, 0.22);
}

.trust-icon-wrap::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.trust-feature-copy h3 {
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
}

.trust-feature-copy p {
    margin-top: 0.7rem;
    color: #475569;
    font-size: 0.94rem;
    line-height: 1.75;
}

.portfolio-card img {
    transition: transform 0.4s ease;
}

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

header {
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.brand-logo-link {
    min-width: 0;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo-mark {
    display: inline-flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

.brand-logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
}

.mega-menu {
    z-index: 70;
    transform: translateY(18px);
    padding-bottom: 1rem;
    will-change: transform, opacity;
}

.mega-menu.mega-menu-open {
    transform: translateY(0);
}

.mega-menu-panel {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    max-width: 100%;
    background: rgba(43, 24, 80, 0.98);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 34px 96px rgba(9, 5, 18, 0.72);
}

.mega-menu-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 138, 30, 0.48), rgba(255, 255, 255, 0.06), rgba(66, 39, 116, 0.45));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.mega-menu-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    min-height: 100%;
}

.mega-menu-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 138, 30, 0.34);
    background: rgba(50, 29, 93, 0.98);
    box-shadow: 0 22px 54px rgba(9, 5, 18, 0.5);
}

.mega-menu-link {
    position: relative;
    min-width: 0;
    border-color: rgba(255, 255, 255, 0.06);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.mega-menu-link::after {
    content: "";
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 138, 30, 0), rgba(255, 138, 30, 0.42), rgba(255, 138, 30, 0));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.mega-menu-link:hover::after,
.mega-menu-link:focus-visible::after {
    opacity: 1;
}

.mega-menu-link:hover,
.mega-menu-link:focus-visible {
    background: rgba(34, 20, 64, 0.9);
    border-color: rgba(255, 138, 30, 0.38);
    box-shadow: 0 12px 28px rgba(9, 5, 18, 0.4), inset 0 0 0 1px rgba(255, 138, 30, 0.18);
    transform: translateY(-2px);
}

.mega-menu-label {
    letter-spacing: 0.18em;
}

.pricing-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 1.75rem;
    padding: 1.9rem;
    min-height: 100%;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.14);
}

.pricing-card-standard {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.96));
}

.pricing-card-featured {
    background:
        linear-gradient(180deg, rgba(43, 24, 80, 0.98), rgba(66, 39, 116, 0.98));
    border-color: rgba(255, 138, 30, 0.3);
    box-shadow: 0 28px 78px rgba(43, 24, 80, 0.32);
}

.pricing-glow {
    position: absolute;
    inset: -20% auto auto 55%;
    height: 14rem;
    width: 14rem;
    border-radius: 9999px;
    background: radial-gradient(circle, rgba(255, 138, 30, 0.24), rgba(255, 138, 30, 0));
    filter: blur(10px);
    pointer-events: none;
}

.pricing-card-top {
    min-height: 10.5rem;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    background: rgba(66, 39, 116, 0.1);
    color: var(--brand-navy);
    padding: 0.55rem 0.95rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.pricing-badge-featured {
    background: rgba(255, 255, 255, 0.1);
    color: #ffd6ad;
}

.pricing-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #f8fafc;
    padding: 0.45rem 0.85rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pricing-title {
    margin-top: 1.35rem;
    color: #0f172a;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.2;
}

.pricing-title-featured {
    color: #fff;
}

.pricing-copy {
    margin-top: 0.95rem;
    color: #475569;
    font-size: 0.97rem;
    line-height: 1.85;
}

.pricing-copy-featured {
    color: rgba(226, 232, 240, 0.9);
}

.pricing-price-wrap {
    margin-top: 1.8rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.pricing-card-featured .pricing-price-wrap {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.pricing-price {
    color: var(--brand-navy);
    font-size: 2.55rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.pricing-price-featured {
    color: #fff;
}

.pricing-note {
    margin-top: 0.75rem;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.7;
}

.pricing-note-featured {
    color: rgba(226, 232, 240, 0.78);
}

.pricing-list {
    margin-top: 1.7rem;
    display: grid;
    gap: 0.95rem;
    color: #334155;
    font-size: 0.95rem;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    line-height: 1.75;
}

.pricing-list i {
    margin-top: 0.18rem;
    color: var(--brand-orange);
}

.pricing-list-featured {
    color: rgba(248, 250, 252, 0.92);
}

.pricing-button {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0.95rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.pricing-button:hover {
    transform: translateY(-2px);
}

.pricing-button-outline {
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(255, 255, 255, 0.88);
    color: var(--brand-navy);
}

.pricing-button-outline:hover {
    border-color: rgba(255, 138, 30, 0.45);
    color: var(--brand-orange);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.pricing-button-solid {
    background: linear-gradient(135deg, var(--brand-orange), #ffb76e);
    color: #0f172a;
    box-shadow: 0 16px 40px rgba(255, 138, 30, 0.22);
}

.pricing-button-solid:hover {
    box-shadow: 0 20px 44px rgba(255, 138, 30, 0.28);
}

.scroll-mt-28 {
    scroll-margin-top: 7rem;
}

input,
select,
textarea,
button {
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(255, 138, 30, 0.6);
    box-shadow: 0 0 0 4px rgba(255, 138, 30, 0.1);
}

.portfolio-card,
.faq-toggle,
.swiper-slide article {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-toggle:hover {
    background: linear-gradient(90deg, rgba(255, 138, 30, 0.05), rgba(255, 255, 255, 0));
}

.swiper-pagination-bullet {
    background: rgba(66, 39, 116, 0.34);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--brand-orange);
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float-soft {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.panel-accent,
.hero-section::before,
.hero-section::after {
    animation: float-soft 7s ease-in-out infinite;
}

@media (min-width: 640px) {
    .site-container {
        padding: 0 1.5rem;
    }

    .section-block {
        padding: 5.5rem 0;
    }

    .hero-title,
    .section-title {
        font-size: 2.7rem;
    }

    .pricing-card {
        padding: 2.15rem;
    }

    .service-premium-grid,
    .trust-premium-grid {
        gap: 1.5rem;
    }

    .trust-stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .brand-logo-mark {
        height: 2.75rem;
        width: 2.75rem;
    }
}

@media (min-width: 1024px) {
    .site-container {
        padding: 0 2rem;
    }

    .hero-section {
        padding: 7rem 0 6rem;
    }

    .hero-title,
    .section-title {
        font-size: 3.25rem;
    }

    .section-block {
        padding: 6.5rem 0;
    }

    .service-showcase-media {
        padding: 1.45rem 1.45rem 1rem;
    }

    .service-showcase-body {
        padding: 0 1.45rem 1.45rem;
    }

    .mega-menu-panel {
        padding: 1.5rem;
    }

    .brand-logo-mark {
        height: 2.9rem;
        width: 2.9rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 4.8rem 0 4.2rem;
    }

    .hero-title,
    .section-title {
        font-size: 1.95rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .panel {
        border-radius: 1.25rem;
    }

    .hero-copy,
    .section-copy {
        line-height: 1.7;
    }

    .faq-toggle {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .faq-content {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .trust-feature-head {
        align-items: center;
    }

    .service-showcase-title {
        font-size: 1.08rem;
    }

    .brand-logo-link {
        gap: 0.65rem;
    }
}

@media (max-width: 1023px) {
    #mobileMenu {
        max-width: 100%;
        overflow-x: hidden;
    }

    #mobileServicesMenu {
        max-height: min(66vh, 31rem);
        overflow-y: auto;
        overscroll-behavior: contain;
        padding-right: 0.15rem;
    }

    .pricing-card,
    .service-showcase-card,
    .trust-feature-card,
    .panel {
        width: 100%;
    }

    .hero-section::before,
    .hero-section::after {
        opacity: 0.75;
    }
}

@media (max-width: 1279px) {
    .mega-menu-panel {
        padding: 1.25rem;
    }
}

@media (max-width: 1023px) {
    .mega-menu-link {
        min-width: 0;
    }
}
