:root {
    --premium-primary: #047857;
    --premium-primary-dark: #064e3b;
    --premium-primary-deep: #022c22;
    --premium-navy: #0f172a;
    --premium-gold: #facc15;
    --premium-surface: #f8fafc;
    --premium-border: rgba(148, 163, 184, 0.22);
}

* {
    box-sizing: border-box;
}

html {
    scroll-padding-top: 96px;
}

body {
    background:
        radial-gradient(circle at 10% 5%, rgba(16, 185, 129, 0.06), transparent 26rem),
        #f8fafc;
}

::selection {
    background: rgba(16, 185, 129, 0.24);
    color: #022c22;
}

.premium-skip-link {
    position: fixed;
    left: 1rem;
    top: -5rem;
    z-index: 9999;
    border-radius: 999px;
    background: #fff;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: #064e3b;
    box-shadow: 0 20px 50px rgba(2, 6, 23, 0.22);
    transition: top 0.2s ease;
}

.premium-skip-link:focus {
    top: 1rem;
}

.premium-grid-pattern {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 48px 48px;
}

.premium-topbar {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #022c22 0%, #064e3b 52%, #065f46 100%);
    color: #fff;
}

.premium-topbar::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(250, 204, 21, 0.08), transparent);
}

.premium-navbar {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid rgba(226, 232, 240, 0.82);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.premium-navbar.is-scrolled {
    border-color: transparent;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
}

.premium-brand-logo {
    display: inline-flex;
    height: 3.25rem;
    width: 3.25rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 1rem;
    background: #fff;
    padding: 0.35rem;
    box-shadow: 0 10px 28px rgba(4, 120, 87, 0.11);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.group:hover .premium-brand-logo {
    transform: translateY(-2px) rotate(-1deg);
    box-shadow: 0 16px 34px rgba(4, 120, 87, 0.16);
}

.premium-nav-link {
    position: relative;
    border-radius: 999px;
    padding: 0.7rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 800;
    color: #475569;
    transition: color 0.2s ease, background 0.2s ease;
}

.premium-nav-link::after {
    content: '';
    position: absolute;
    right: 0.9rem;
    bottom: 0.38rem;
    left: 0.9rem;
    height: 2px;
    border-radius: 999px;
    background: #10b981;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.premium-nav-link:hover,
.premium-nav-link.is-active {
    background: #ecfdf5;
    color: #047857;
}

.premium-nav-link:hover::after,
.premium-nav-link.is-active::after {
    transform: scaleX(1);
}

.premium-login-button {
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #047857, #064e3b);
    padding: 0.78rem 1.15rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 12px 26px rgba(4, 120, 87, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.premium-login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(4, 120, 87, 0.28);
}

.premium-mobile-toggle {
    display: inline-flex;
    height: 2.75rem;
    width: 2.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    border-radius: 0.85rem;
    background: #fff;
    color: #334155;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.premium-mobile-toggle:hover {
    border-color: #a7f3d0;
    background: #ecfdf5;
    color: #047857;
}

.premium-mega-wrap,
.premium-app-wrap {
    visibility: hidden;
    position: absolute;
    top: 100%;
    z-index: 80;
    padding-top: 1.1rem;
    opacity: 0;
    transform: translateY(12px);
    transition: visibility 0.2s, opacity 0.2s ease, transform 0.2s ease;
}

.premium-mega-wrap {
    left: 50%;
    width: 720px;
    transform: translate(-50%, 12px);
}

.premium-app-wrap {
    right: 0;
    width: 340px;
}

.group:hover > .premium-mega-wrap,
.group:focus-within > .premium-mega-wrap {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.group:hover > .premium-app-wrap,
.group:focus-within > .premium-app-wrap {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.premium-mega-menu {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 1.75rem;
    background: #fff;
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.18);
}

.premium-mega-highlight {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 10%, rgba(250, 204, 21, 0.22), transparent 14rem),
        linear-gradient(145deg, #022c22, #064e3b 58%, #065f46);
    padding: 1.7rem;
}

.premium-mega-highlight::after {
    content: '';
    position: absolute;
    right: -2rem;
    bottom: -2.5rem;
    height: 9rem;
    width: 9rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.premium-mega-item,
.premium-app-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    border-radius: 1rem;
    padding: 0.85rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.premium-mega-item:hover,
.premium-app-item:hover {
    background: #f0fdf4;
    transform: translateY(-1px);
}

.premium-mega-icon {
    display: inline-flex;
    height: 2.65rem;
    width: 2.65rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    background: #ecfdf5;
    color: #047857;
}

.premium-mega-item strong,
.premium-app-item strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: #0f172a;
}

.premium-mega-item small,
.premium-app-item small {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.67rem;
    line-height: 1.25rem;
    color: #64748b;
}

.premium-app-menu {
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 1.5rem;
    background: #fff;
    padding: 0.65rem;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
}

.premium-app-item em {
    border-radius: 999px;
    background: #fef3c7;
    padding: 0.15rem 0.45rem;
    font-size: 0.56rem;
    font-style: normal;
    font-weight: 800;
    color: #b45309;
}

.premium-app-item.is-disabled {
    cursor: default;
    opacity: 0.72;
}

.premium-mobile-menu {
    border-top: 1px solid #e2e8f0;
    background: rgba(248, 250, 252, 0.96);
    backdrop-filter: blur(18px);
}

.premium-mobile-link,
.premium-mobile-accordion {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border-radius: 0.9rem;
    padding: 0.85rem 0.95rem;
    text-align: left;
    font-size: 0.82rem;
    font-weight: 800;
    color: #334155;
    transition: background 0.2s ease, color 0.2s ease;
}

.premium-mobile-link:hover,
.premium-mobile-link.is-active,
.premium-mobile-accordion:hover {
    background: #ecfdf5;
    color: #047857;
}

.premium-mobile-accordion[aria-expanded='true'] svg {
    transform: rotate(180deg);
}

.premium-mobile-subitem {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border-radius: 0.75rem;
    padding: 0.7rem 0.85rem;
    font-size: 0.76rem;
    font-weight: 700;
    color: #64748b;
    transition: background 0.2s ease, color 0.2s ease;
}

.premium-mobile-subitem:hover {
    background: #f8fafc;
    color: #047857;
}

.premium-mobile-cta {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.9rem;
    background: linear-gradient(135deg, #047857, #064e3b);
    padding: 0.9rem 1rem;
    font-size: 0.78rem;
    font-weight: 800;
    color: #fff;
}

.premium-hero {
    position: relative;
    overflow: hidden;
    background: #020617;
    color: #fff;
}

.premium-hero-slide {
    visibility: hidden;
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.85s ease, visibility 0.85s;
}

.premium-hero-slide.is-active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.premium-hero-image {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform 7s ease;
}

.premium-hero-slide.is-active .premium-hero-image {
    transform: scale(1.1);
}

.premium-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 44, 34, 0.88) 45%, rgba(2, 6, 23, 0.35) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.62) 0%, transparent 46%);
}

.premium-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        radial-gradient(circle at 80% 18%, rgba(250, 204, 21, 0.65), transparent 0.15rem),
        linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: auto, 64px 64px, 64px 64px;
    mask-image: linear-gradient(to left, black, transparent 72%);
}

.premium-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    padding: 0.65rem 0.9rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    backdrop-filter: blur(12px);
}

.premium-live-dot {
    display: inline-block;
    height: 0.55rem;
    width: 0.55rem;
    border-radius: 999px;
    background: #facc15;
    box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.5);
    animation: premiumPulse 2s infinite;
}

@keyframes premiumPulse {
    0% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(250, 204, 21, 0); }
    100% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0); }
}

.premium-hero-title {
    margin-top: 1.35rem;
    max-width: 64rem;
    font-size: clamp(2.7rem, 7vw, 6.5rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-wrap: balance;
    text-shadow: 0 14px 36px rgba(2, 6, 23, 0.28);
}

.premium-hero-description {
    margin-top: 1.5rem;
    max-width: 48rem;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
    text-wrap: pretty;
}

.premium-button {
    display: inline-flex;
    min-height: 3.2rem;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 999px;
    padding: 0.85rem 1.35rem;
    font-size: 0.78rem;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.premium-button-primary,
.premium-button-light {
    background: #fff;
    color: #064e3b;
    box-shadow: 0 16px 34px rgba(2, 6, 23, 0.2);
}

.premium-button-primary:hover,
.premium-button-light:hover {
    background: #facc15;
    box-shadow: 0 20px 42px rgba(2, 6, 23, 0.28);
}

.premium-button-glass {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    backdrop-filter: blur(12px);
}

.premium-button-glass:hover {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.16);
}

.premium-button-dark {
    background: linear-gradient(135deg, #047857, #064e3b);
    color: #fff;
    box-shadow: 0 14px 28px rgba(4, 120, 87, 0.2);
}

.premium-button-dark:hover {
    box-shadow: 0 20px 36px rgba(4, 120, 87, 0.28);
}

.premium-button-outline {
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #334155;
}

.premium-button-outline:hover {
    border-color: #6ee7b7;
    background: #ecfdf5;
    color: #047857;
}

.premium-hero-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.07);
    padding: 0.8rem;
    backdrop-filter: blur(10px);
}

.premium-hero-stat > span {
    display: inline-flex;
    height: 2.3rem;
    width: 2.3rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(250, 204, 21, 0.16);
    color: #fde047;
}

.premium-hero-stat strong,
.premium-hero-stat small {
    display: block;
}

.premium-hero-stat strong {
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
}

.premium-hero-stat small {
    margin-top: 0.15rem;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.56);
}

.premium-hero-controls {
    position: absolute;
    right: 1rem;
    bottom: 6.6rem;
    left: 1rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.premium-slider-arrow {
    display: inline-flex;
    height: 2.7rem;
    width: 2.7rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.42);
    color: #fff;
    backdrop-filter: blur(10px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.premium-slider-arrow:hover {
    background: #047857;
    transform: scale(1.05);
}

.premium-hero-dot {
    height: 0.55rem;
    width: 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    transition: width 0.25s ease, background 0.25s ease;
}

.premium-hero-dot.is-active {
    width: 2rem;
    background: #facc15;
}

.premium-quick-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 1.75rem;
    background: rgba(255, 255, 255, 0.96);
    padding: 0.5rem;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(18px);
}

.premium-quick-link {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 0.75rem;
    border-radius: 1.15rem;
    padding: 0.85rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.premium-quick-link:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
}

.premium-quick-icon {
    display: inline-flex;
    height: 2.8rem;
    width: 2.8rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 0.9rem;
    background: linear-gradient(145deg, #ecfdf5, #d1fae5);
    color: #047857;
}

.premium-quick-link strong,
.premium-quick-link small {
    display: block;
}

.premium-quick-link strong {
    font-size: 0.78rem;
    font-weight: 800;
    color: #0f172a;
}

.premium-quick-link small {
    margin-top: 0.15rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.64rem;
    font-weight: 600;
    color: #64748b;
}

.premium-announcement {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    border: 1px solid #d1fae5;
    border-radius: 1.2rem;
    background: linear-gradient(90deg, #ecfdf5, #fff);
    padding: 0.85rem 1rem;
    box-shadow: 0 12px 30px rgba(4, 120, 87, 0.08);
}

.premium-announcement-icon {
    display: inline-flex;
    height: 2.6rem;
    width: 2.6rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    background: #047857;
    color: #fff;
}

.premium-section {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.premium-soft-section {
    background:
        radial-gradient(circle at 95% 5%, rgba(16, 185, 129, 0.09), transparent 24rem),
        radial-gradient(circle at 5% 95%, rgba(250, 204, 21, 0.08), transparent 20rem),
        #f8fafc;
}

.premium-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #047857;
}

.premium-section-kicker::before {
    content: '';
    height: 0.42rem;
    width: 0.42rem;
    border-radius: 999px;
    background: #facc15;
    box-shadow: 0 0 0 5px rgba(250, 204, 21, 0.14);
}

.premium-section-title {
    max-width: 54rem;
    font-size: clamp(2rem, 4.3vw, 3.65rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
    color: #0f172a;
    text-wrap: balance;
}

.premium-section-description {
    margin-top: 1.25rem;
    max-width: 46rem;
    font-size: 1rem;
    line-height: 1.9;
    color: #64748b;
    text-wrap: pretty;
}

.premium-profile-visual {
    position: relative;
    height: 35rem;
    overflow: hidden;
    border-radius: 2.2rem;
    background: #e2e8f0;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.premium-profile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 44, 34, 0.72), transparent 58%);
}

.premium-profile-badge {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.48);
    padding: 0.65rem 0.85rem;
    font-size: 0.68rem;
    font-weight: 800;
    color: #fff;
    backdrop-filter: blur(12px);
}

.premium-principal-card {
    position: absolute;
    right: -1.25rem;
    bottom: -1.75rem;
    display: flex;
    width: min(22rem, calc(100% - 1rem));
    align-items: center;
    gap: 0.9rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.97);
    padding: 0.8rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(14px);
}

.premium-principal-card small,
.premium-principal-card strong,
.premium-principal-card span {
    display: block;
}

.premium-principal-card small {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #047857;
}

.premium-principal-card strong {
    margin-top: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 800;
    color: #0f172a;
}

.premium-principal-card span {
    margin-top: 0.18rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: #64748b;
}

.premium-feature-card {
    position: relative;
    overflow: hidden;
    min-height: 22rem;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 1.75rem;
    background: #fff;
    padding: 1.8rem;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.premium-feature-card::after {
    content: '';
    position: absolute;
    right: -3rem;
    bottom: -3rem;
    height: 9rem;
    width: 9rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.07);
    transition: transform 0.35s ease;
}

.premium-feature-card:hover {
    border-color: #a7f3d0;
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(4, 120, 87, 0.13);
}

.premium-feature-card:hover::after {
    transform: scale(1.35);
}

.premium-feature-number {
    position: absolute;
    right: 1.5rem;
    top: 1.25rem;
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1;
    color: #f1f5f9;
}

.premium-feature-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    height: 4rem;
    width: 4rem;
    align-items: center;
    justify-content: center;
    border-radius: 1.2rem;
    background: linear-gradient(145deg, #047857, #064e3b);
    color: #fff;
    box-shadow: 0 16px 30px rgba(4, 120, 87, 0.18);
}

.premium-feature-card h3 {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
}

.premium-feature-card p {
    position: relative;
    z-index: 1;
    margin-top: 0.85rem;
    min-height: 6rem;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #64748b;
}

.premium-feature-card a {
    position: relative;
    z-index: 1;
    margin-top: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 800;
    color: #047857;
}

.premium-service-card {
    position: relative;
    display: flex;
    min-height: 25rem;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 1.75rem;
    background: #fff;
    padding: 1.6rem;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.premium-service-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 0.25rem;
    background: linear-gradient(90deg, #047857, #10b981, #facc15);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.premium-service-card:hover {
    border-color: #a7f3d0;
    transform: translateY(-6px);
    box-shadow: 0 26px 55px rgba(4, 120, 87, 0.12);
}

.premium-service-card:hover::before {
    transform: scaleX(1);
}

.premium-service-card.is-disabled {
    cursor: default;
    opacity: 0.78;
}

.premium-service-icon {
    display: inline-flex;
    height: 4rem;
    width: 4rem;
    align-items: center;
    justify-content: center;
    border-radius: 1.25rem;
    background: #ecfdf5;
    color: #047857;
}

.premium-service-label {
    margin-top: 1.7rem;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #047857;
}

.premium-service-card h3 {
    margin-top: 0.65rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
}

.premium-service-card p {
    margin-top: 0.8rem;
    flex: 1;
    font-size: 0.86rem;
    line-height: 1.8;
    color: #64748b;
}

.premium-service-action {
    margin-top: 1.6rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 800;
    color: #047857;
}

.premium-spmb-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 15%, rgba(250, 204, 21, 0.2), transparent 28rem),
        linear-gradient(135deg, #020617 0%, #022c22 45%, #064e3b 100%);
}

.premium-spmb-card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 1.6rem;
    color: #fff;
    box-shadow: 0 30px 70px rgba(2, 6, 23, 0.28);
    backdrop-filter: blur(16px);
}

.premium-spmb-card small {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.56);
}

.premium-spmb-card h3 {
    margin-top: 0.45rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.premium-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.5rem 0.75rem;
    font-size: 0.64rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.76);
}

.premium-status-badge > span {
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 999px;
    background: #facc15;
}

.premium-status-badge.is-open > span {
    background: #34d399;
    box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.15);
}

.premium-date-box {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.06);
    padding: 1rem;
}

.premium-date-box > span {
    display: inline-flex;
    height: 2.4rem;
    width: 2.4rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.8rem;
    background: rgba(250, 204, 21, 0.15);
    color: #fde047;
}

.premium-date-box small,
.premium-date-box strong {
    display: block;
}

.premium-date-box small {
    margin-top: 0.85rem;
}

.premium-date-box strong {
    margin-top: 0.25rem;
    font-size: 0.82rem;
    font-weight: 800;
    color: #fff;
}

.premium-activity-card {
    border: 1px solid #e2e8f0;
    border-radius: 1.35rem;
    background: #fff;
    padding: 1.2rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.premium-activity-card:hover {
    border-color: #a7f3d0;
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(4, 120, 87, 0.1);
}

.premium-activity-icon {
    display: inline-flex;
    height: 2.7rem;
    width: 2.7rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.9rem;
    background: #ecfdf5;
    color: #047857;
}

.premium-activity-card small {
    display: block;
    margin-top: 1rem;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #047857;
}

.premium-activity-card h3 {
    margin-top: 0.45rem;
    font-size: 0.92rem;
    font-weight: 800;
    color: #0f172a;
}

.premium-activity-card p {
    margin-top: 0.55rem;
    font-size: 0.74rem;
    line-height: 1.65;
    color: #64748b;
}

.premium-information-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 1.75rem;
    background: #fff;
    padding: 1.8rem;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.premium-information-card::after {
    content: '';
    position: absolute;
    right: -3rem;
    top: -3rem;
    height: 10rem;
    width: 10rem;
    border-radius: 999px;
    opacity: 0.08;
    background: currentColor;
}

.premium-information-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
}

.premium-information-emerald { color: #047857; }
.premium-information-amber { color: #b45309; }
.premium-information-blue { color: #1d4ed8; }

.premium-information-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    height: 4rem;
    width: 4rem;
    align-items: center;
    justify-content: center;
    border-radius: 1.2rem;
    background: currentColor;
    color: #fff;
}

.premium-information-card h3 {
    position: relative;
    z-index: 1;
    margin-top: 1.7rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
}

.premium-information-card p {
    position: relative;
    z-index: 1;
    margin-top: 0.8rem;
    min-height: 5rem;
    font-size: 0.86rem;
    line-height: 1.8;
    color: #64748b;
}

.premium-information-card > span:last-child {
    position: relative;
    z-index: 1;
    margin-top: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 800;
}

.premium-contact-cta {
    position: relative;
    overflow: hidden;
    border-radius: 2.2rem;
    background: linear-gradient(135deg, #020617 0%, #022c22 52%, #064e3b 100%);
    box-shadow: 0 30px 80px rgba(2, 44, 34, 0.2);
}

.premium-contact-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(1px);
}

.premium-contact-orb-one {
    right: -5rem;
    top: -7rem;
    height: 18rem;
    width: 18rem;
    background: rgba(250, 204, 21, 0.14);
}

.premium-contact-orb-two {
    bottom: -7rem;
    left: 20%;
    height: 16rem;
    width: 16rem;
    background: rgba(16, 185, 129, 0.15);
}

.premium-footer {
    position: relative;
    overflow: hidden;
    background: #020617;
    color: #fff;
}

.premium-footer-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.28;
}

.premium-footer-glow-one {
    left: -8rem;
    top: 2rem;
    height: 18rem;
    width: 18rem;
    background: #047857;
}

.premium-footer-glow-two {
    right: -7rem;
    bottom: -5rem;
    height: 17rem;
    width: 17rem;
    background: #1d4ed8;
}

.premium-footer-heading {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
}

.premium-footer-link {
    display: block;
    width: fit-content;
    font-size: 0.76rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.58);
    transition: color 0.2s ease, transform 0.2s ease;
}

.premium-footer-link:hover {
    transform: translateX(3px);
    color: #fff;
}

.premium-footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.62);
}

.premium-footer-contact > span {
    color: #6ee7b7;
}

.premium-social-link {
    display: inline-flex;
    height: 2.55rem;
    width: 2.55rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.72);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.premium-social-link:hover {
    transform: translateY(-3px);
    background: #047857;
    color: #fff;
}

.premium-back-to-top {
    visibility: hidden;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 70;
    display: inline-flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #064e3b;
    color: #fff;
    opacity: 0;
    box-shadow: 0 16px 36px rgba(2, 44, 34, 0.28);
    transform: translateY(12px);
    transition: visibility 0.25s, opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

.premium-back-to-top.is-visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.premium-back-to-top:hover {
    background: #047857;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease, transform 0.75s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 640px) {
    .premium-quick-panel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .premium-quick-link {
        padding: 1rem;
    }
}

@media (min-width: 1024px) {
    .premium-quick-panel {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        padding: 0.65rem;
    }

    .premium-quick-link {
        border-right: 1px solid #f1f5f9;
    }

    .premium-quick-link:last-child {
        border-right: 0;
    }

    .premium-hero-controls {
        right: max(2rem, calc((100vw - 80rem) / 2 + 2rem));
        bottom: 7.3rem;
        left: auto;
    }
}

@media (max-width: 767px) {
    .premium-hero-overlay {
        background:
            linear-gradient(0deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 44, 34, 0.83) 58%, rgba(2, 6, 23, 0.35) 100%);
    }

    .premium-hero-title {
        font-size: clamp(2.55rem, 14vw, 4.3rem);
        line-height: 1.02;
    }

    .premium-hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .premium-profile-visual {
        height: 28rem;
        border-radius: 1.6rem;
    }

    .premium-principal-card {
        right: 0.5rem;
        bottom: -2.4rem;
        width: calc(100% - 1rem);
    }

    .premium-section {
        padding-top: 4.8rem;
        padding-bottom: 4.8rem;
    }

    .premium-feature-card,
    .premium-service-card {
        min-height: auto;
    }

    .premium-feature-card p,
    .premium-information-card p {
        min-height: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
