:root {
    --bg: #f5f7fb;
    --bg-soft: #edf2ff;
    --surface: rgba(255, 255, 255, 0.84);
    --surface-strong: #ffffff;
    --text: #0f172a;
    --muted: #52607a;
    --line: rgba(15, 23, 42, 0.08);
    --primary: #2563eb;
    --primary-strong: #1d4ed8;
    --accent: #8b5cf6;
    --success: #0f9d58;
    --shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 24%),
        radial-gradient(circle at top right, rgba(139, 92, 246, 0.10), transparent 20%),
        var(--bg);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.site-wrap {
    min-height: 100vh;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.section {
    padding: 92px 0;
}

.section--flush {
    padding-top: 56px;
    padding-bottom: 56px;
}

.section--muted {
    background: rgba(255, 255, 255, 0.45);
}

.section--gradient {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.05), rgba(139, 92, 246, 0.05));
}

.surface-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    border-radius: var(--radius-xl);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-strong);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}

.lead {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--muted);
}

.pill,
.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
}

.tag {
    background: rgba(15, 23, 42, 0.08);
    color: var(--text);
}

.tag--soft,
.pill {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-strong);
}

.text-link {
    color: var(--primary-strong);
    font-weight: 700;
}

.text-link:hover {
    color: var(--accent);
}

.topbar {
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
}

.topbar__inner,
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header__actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.topbar__inner {
    min-height: 48px;
}

.topbar__links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--muted);
    font-size: 0.92rem;
}

.topbar__links a:hover {
    color: var(--primary-strong);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(245, 247, 251, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.header__inner {
    min-height: 82px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand__mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 18px 30px rgba(37, 99, 235, 0.28);
}

.brand__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand__text strong {
    font-size: 1rem;
}

.brand__text small {
    color: var(--muted);
    font-size: 0.84rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.main-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 600;
}

.main-nav a:hover,
.main-nav a.is-active {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-strong);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    padding: 15px 22px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    box-shadow: 0 18px 32px rgba(37, 99, 235, 0.24);
}

.btn--primary:hover {
    box-shadow: 0 22px 40px rgba(37, 99, 235, 0.3);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.btn--small {
    padding: 12px 18px;
    font-size: 0.92rem;
}

.theme-toggle {
    width: 50px;
    min-width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 16px;
}

.theme-toggle__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.theme-toggle__icon svg {
    width: 20px;
    height: 20px;
}

.theme-toggle__icon--moon {
    display: none;
}

html[data-theme='light'] .theme-toggle__icon--sun {
    display: none;
}

html[data-theme='light'] .theme-toggle__icon--moon {
    display: inline-flex;
}

.btn--block {
    width: 100%;
}

.hero {
    padding-top: 70px;
}

.hero__grid,
.two-column,
.contact-layout,
.faq-grid,
.comparison-grid,
.footer__grid,
.page-hero__inner {
    display: grid;
    gap: 28px;
}

.hero__grid,
.two-column,
.contact-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
    align-items: center;
}

.hero h1,
.page-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero__actions,
.cta-panel__actions,
.package-card__actions,
.featured-post__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__actions {
    margin-top: 28px;
}

.metrics-grid,
.feature-grid,
.package-grid,
.timeline-grid,
.hosting-grid,
.testimonial-grid,
.blog-grid,
.category-grid,
.numbers-band {
    display: grid;
    gap: 22px;
}

.metrics-grid {
    margin-top: 34px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card {
    padding: 18px 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.metric-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.25rem;
}

.metric-card span {
    color: var(--muted);
    font-size: 0.96rem;
}

.hero__panel {
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.hero__panel::before {
    content: '';
    position: absolute;
    inset: auto -60px -60px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 68%);
}

.panel-badge {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: var(--text);
    font-weight: 700;
    margin-bottom: 18px;
}

.hero__panel-stack {
    display: grid;
    gap: 16px;
}

.mini-package {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.mini-package h3 {
    margin: 10px 0 8px;
    font-size: 1.1rem;
}

.mini-package p,
.package-card p,
.feature-card p,
.timeline-card p,
.hosting-card p,
.blog-card p,
.comparison-card p,
.faq-item p,
.testimonial-card p,
.footer__text,
.contact-note,
.contact-points span {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.mini-package__meta {
    min-width: 136px;
    text-align: right;
}

.mini-package__meta strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.2rem;
}

.mini-package__meta span,
.package-card__price span,
.hosting-card__price span,
.number-card span,
.testimonial-card__meta span,
.blog-card__meta span,
.footer__contact-list span,
.contact-points strong,
.field-error {
    color: var(--muted);
}

.hero__panel-note {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hero__panel-note strong {
    font-size: 1rem;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    line-height: 1.74;
}

.section-heading--split,
.section-heading--left {
    max-width: none;
    margin-bottom: 32px;
    text-align: left;
}

.section-heading--split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

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

.feature-card,
.package-card,
.hosting-card,
.blog-card,
.testimonial-card,
.comparison-card,
.faq-item,
.contact-card,
.form-card,
.hosting-summary,
.featured-post {
    padding: 28px;
}

.icon-chip {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(139, 92, 246, 0.14));
    color: var(--primary-strong);
    font-weight: 800;
}

.feature-card h3,
.package-card h3,
.timeline-card h3,
.hosting-card h3,
.number-card strong,
.blog-card h3,
.faq-item h3,
.featured-post h2,
.featured-post h3,
.contact-card h2,
.form-card h2,
.comparison-card h2 {
    margin: 0 0 12px;
}

.category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--text);
    font-weight: 700;
    min-height: 76px;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.category-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
}

.category-chip--static:hover {
    transform: none;
}

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

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

.package-card__top,
.blog-card__meta,
.testimonial-card__meta,
.footer__bottom,
.contact-points {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.package-card__category {
    font-size: 0.92rem;
    color: var(--muted);
    font-weight: 600;
}

.package-card__price,
.hosting-card__price {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
}

.package-card__price strong,
.hosting-card__price strong,
.number-card strong {
    font-size: 2rem;
    line-height: 1;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--muted);
    line-height: 1.55;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.timeline-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-card {
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.timeline-card__step {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--primary-strong);
    font-weight: 800;
    font-size: 1.3rem;
}

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

.hosting-grid--compact {
    align-content: start;
}

.hosting-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.hosting-card__price-box {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.hosting-summary h3 {
    margin: 0 0 18px;
}

.numbers-band {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.number-card {
    padding: 24px;
    text-align: center;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--shadow);
}

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

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

.testimonial-card__meta strong,
.contact-points strong,
.footer__grid h3 {
    font-size: 1rem;
}

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

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.page-hero {
    padding-top: 72px;
}

.page-hero__inner {
    grid-template-columns: 1fr;
    max-width: 880px;
}

.page-hero .lead {
    max-width: 760px;
}

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

.faq-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 18px;
}

.faq-item h3 {
    font-size: 1.05rem;
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 34px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(37, 99, 235, 0.92));
    color: #ffffff;
    box-shadow: 0 30px 64px rgba(15, 23, 42, 0.2);
}

.cta-panel h2,
.cta-panel p {
    margin: 0;
}

.cta-panel h2 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.cta-panel p,
.cta-panel .eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.cta-panel .eyebrow {
    background: rgba(255, 255, 255, 0.12);
}

.site-footer {
    margin-top: 88px;
    padding: 72px 0 28px;
    background: #0f172a;
    color: rgba(255, 255, 255, 0.88);
}

.footer__grid {
    grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
    align-items: start;
}

.brand--footer {
    margin-bottom: 18px;
}

.footer__text {
    margin-bottom: 18px;
    max-width: 340px;
    color: rgba(255, 255, 255, 0.68);
}

.footer__contact-list {
    display: grid;
    gap: 8px;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 12px;
}

.footer__list a,
.newsletter input,
.contact-form input,
.contact-form textarea {
    color: inherit;
}

.footer__list a:hover {
    color: #ffffff;
}

.newsletter {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.newsletter input,
.contact-form input,
.contact-form textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    outline: none;
}

.newsletter input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.footer__bottom {
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
}

.featured-post {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 24px;
    align-items: start;
}

.featured-post__content {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.contact-layout {
    align-items: start;
}

.contact-points {
    margin-top: 20px;
    display: grid;
    gap: 18px;
}

.contact-points div {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.contact-note {
    margin-top: 24px;
}

.contact-form {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form span {
    font-weight: 700;
}

.contact-form textarea {
    resize: vertical;
    min-height: 148px;
}

.alert {
    padding: 16px 18px;
    border-radius: 16px;
    margin-top: 16px;
    margin-bottom: 18px;
    font-weight: 600;
}

.alert--success {
    background: rgba(15, 157, 88, 0.12);
    color: var(--success);
}

.field-error {
    font-size: 0.88rem;
    color: #b91c1c;
}

@media (max-width: 1080px) {
    .hero__grid,
    .two-column,
    .contact-layout,
    .featured-post,
    .footer__grid,
    .faq-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .package-grid,
    .feature-grid,
    .hosting-grid,
    .testimonial-grid,
    .blog-grid,
    .timeline-grid,
    .numbers-band,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-panel {
        grid-template-columns: 1fr;
    }

    .header__inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 16px 0;
    }

    .header__actions {
        order: 2;
        justify-content: center;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 720px) {
    .section {
        padding: 72px 0;
    }

    .topbar {
        display: none;
    }

    .main-nav {
        gap: 6px;
        padding: 6px;
        overflow-x: auto;
    }

    .header__actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .header__actions .btn--primary {
        flex: 1 1 220px;
    }

    .theme-toggle {
        flex: 0 0 50px;
    }

    .main-nav a {
        white-space: nowrap;
    }

    .metrics-grid,
    .package-grid,
    .feature-grid,
    .hosting-grid,
    .testimonial-grid,
    .blog-grid,
    .timeline-grid,
    .numbers-band,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .section-heading--split,
    .package-card__top,
    .package-card__price,
    .hosting-card__price,
    .blog-card__meta,
    .testimonial-card__meta,
    .footer__bottom,
    .hero__panel-note {
        align-items: start;
        justify-content: start;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(2.3rem, 12vw, 3.3rem);
    }

    .surface-card,
    .timeline-card,
    .number-card,
    .cta-panel {
        border-radius: 22px;
    }

    .feature-card,
    .package-card,
    .hosting-card,
    .blog-card,
    .testimonial-card,
    .comparison-card,
    .faq-item,
    .contact-card,
    .form-card,
    .hosting-summary,
    .featured-post,
    .hero__panel,
    .cta-panel {
        padding: 22px;
    }

    .mini-package {
        grid-template-columns: 1fr;
    }

    .mini-package__meta {
        text-align: left;
    }
}

:root {
    --bg: #f3f7fd;
    --bg-soft: #e9f0ff;
    --surface: rgba(255, 255, 255, 0.72);
    --surface-strong: #ffffff;
    --text: #0b1324;
    --muted: #5a6780;
    --line: rgba(148, 163, 184, 0.20);
    --primary: #2563eb;
    --primary-strong: #1d4ed8;
    --accent: #7c3aed;
    --success: #0f9d58;
    --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

body {
    position: relative;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 12% 12%, rgba(37, 99, 235, 0.16), transparent 22%),
        radial-gradient(circle at 88% 10%, rgba(124, 58, 237, 0.16), transparent 18%),
        linear-gradient(180deg, #f8fbff 0%, #eef4ff 38%, #f8fbff 100%);
}

body::before,
body::after {
    content: '';
    position: fixed;
    z-index: -1;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(14px);
}

body::before {
    top: -120px;
    left: -60px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 68%);
}

body::after {
    right: -80px;
    bottom: 8%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.16), transparent 70%);
}

.site-wrap {
    position: relative;
    overflow: hidden;
}

.section {
    position: relative;
    padding: 104px 0;
}

.section--muted {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.38));
}

.section--gradient {
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.10), transparent 28%),
        linear-gradient(180deg, rgba(37, 99, 235, 0.04), rgba(124, 58, 237, 0.06));
}

.surface-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 52px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(18px);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.eyebrow {
    padding: 9px 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.66));
    border: 1px solid rgba(37, 99, 235, 0.10);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.lead {
    max-width: 62ch;
    font-size: 1.12rem;
    line-height: 1.82;
}

.tag,
.pill {
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.tag {
    background: rgba(255, 255, 255, 0.75);
}

.tag--soft,
.pill {
    background: rgba(37, 99, 235, 0.10);
    border-color: rgba(37, 99, 235, 0.12);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.text-link:hover {
    transform: translateX(2px);
}

.topbar {
    padding-top: 18px;
    border-bottom: 0;
    background: transparent;
    backdrop-filter: none;
}

.topbar__inner {
    min-height: auto;
}

.topbar__links {
    gap: 16px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.60);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(16px);
}

.site-header {
    top: 14px;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
}

.header__inner {
    min-height: 88px;
    padding: 14px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(20px);
}

.brand__mark {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(37, 99, 235, 0.26);
}

.brand__text strong {
    font-size: 1.02rem;
    letter-spacing: -0.02em;
}

.main-nav {
    gap: 6px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.80);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.main-nav a {
    padding: 11px 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-strong);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.10);
}

.btn {
    min-height: 52px;
    padding: 15px 24px;
    letter-spacing: -0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

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

.btn--primary {
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 52%, #7c3aed 100%);
    box-shadow: 0 18px 34px rgba(79, 70, 229, 0.24);
}

.btn--primary:hover {
    box-shadow: 0 24px 44px rgba(79, 70, 229, 0.30);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.hero {
    padding-top: 88px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 18px 0 auto;
    height: 640px;
    background:
        radial-gradient(circle at 14% 18%, rgba(37, 99, 235, 0.16), transparent 24%),
        radial-gradient(circle at 82% 14%, rgba(124, 58, 237, 0.18), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.hero__grid {
    position: relative;
    gap: 40px;
    align-items: center;
}

.hero__grid > div:first-child {
    position: relative;
    z-index: 1;
}

.hero h1,
.page-hero h1 {
    font-size: clamp(3rem, 6vw, 5.35rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.hero__actions {
    margin-top: 30px;
}

.metrics-grid {
    gap: 16px;
}

.metric-card {
    padding: 20px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.62));
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.05);
}

.metric-card strong {
    margin-bottom: 8px;
    font-size: 1.45rem;
    letter-spacing: -0.03em;
}

.hero__panel {
    padding: 30px;
    background: linear-gradient(160deg, rgba(11, 19, 36, 0.96), rgba(25, 37, 68, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.24);
    color: #ffffff;
}

.hero__panel::before {
    inset: auto -70px -70px auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.22), transparent 70%);
}

.hero__panel .tag {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.08);
}

.panel-badge {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-package {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.mini-package h3,
.mini-package__meta strong,
.hero__panel-note strong {
    color: #ffffff;
}

.hero__panel .mini-package p,
.hero__panel .mini-package__meta span,
.hero__panel .hero__panel-note span {
    color: rgba(255, 255, 255, 0.70);
}

.hero__panel-note {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.section-heading h2 {
    margin-bottom: 16px;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.feature-card,
.package-card,
.hosting-card,
.blog-card,
.testimonial-card,
.comparison-card,
.faq-item,
.timeline-card,
.category-chip,
.number-card,
.featured-post,
.hosting-summary,
.contact-points div {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-card:hover,
.package-card:hover,
.hosting-card:hover,
.blog-card:hover,
.testimonial-card:hover,
.comparison-card:hover,
.faq-item:hover,
.timeline-card:hover,
.category-chip:hover,
.number-card:hover,
.featured-post:hover,
.hosting-summary:hover,
.contact-points div:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
    border-color: rgba(37, 99, 235, 0.14);
}

.package-card,
.hosting-card,
.blog-card,
.testimonial-card,
.comparison-card,
.faq-item,
.timeline-card,
.contact-points div,
.hosting-summary {
    border: 1px solid rgba(255, 255, 255, 0.80);
}

.feature-card,
.package-card,
.hosting-card,
.blog-card,
.testimonial-card,
.comparison-card,
.faq-item,
.timeline-card,
.featured-post,
.hosting-summary {
    position: relative;
    overflow: hidden;
}

.feature-card::after,
.package-card::after,
.hosting-card::after,
.blog-card::after,
.testimonial-card::after,
.comparison-card::after,
.timeline-card::after,
.featured-post::after,
.hosting-summary::after {
    content: '';
    position: absolute;
    inset: auto -40px -64px auto;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.10), transparent 68%);
    pointer-events: none;
}

.icon-chip {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.12);
}

.category-chip {
    min-height: 88px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.category-chip:hover {
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: 0 24px 46px rgba(15, 23, 42, 0.10);
}

.package-card__price strong,
.hosting-card__price strong,
.number-card strong {
    font-size: 2.2rem;
    letter-spacing: -0.04em;
}

.timeline-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.timeline-card__step {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.10);
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.10);
}

.hosting-card,
.blog-card,
.testimonial-card,
.comparison-card,
.faq-item,
.featured-post,
.hosting-summary {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76));
}

.number-card {
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.18);
}

.number-card span {
    color: rgba(255, 255, 255, 0.72);
}

.testimonial-card p {
    font-size: 1.02rem;
}

.cta-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(29, 78, 216, 0.92));
    box-shadow: 0 34px 70px rgba(15, 23, 42, 0.24);
}

.cta-panel::before {
    content: '';
    position: absolute;
    inset: auto -40px -80px auto;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
}

.site-footer {
    position: relative;
    margin-top: 96px;
    background:
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.12), transparent 24%),
        radial-gradient(circle at left bottom, rgba(124, 58, 237, 0.14), transparent 22%),
        #081120;
}

.footer__grid {
    gap: 30px;
}

.footer__text {
    color: rgba(255, 255, 255, 0.70);
}

.footer__list a {
    color: rgba(255, 255, 255, 0.78);
}

.newsletter input {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.54);
}

.newsletter input:focus {
    border-color: rgba(147, 197, 253, 0.50);
    box-shadow: 0 0 0 4px rgba(147, 197, 253, 0.14);
}

.contact-form input,
.contact-form textarea {
    background: rgba(248, 250, 252, 0.96);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.80);
}

.alert {
    border: 1px solid rgba(15, 157, 88, 0.18);
    box-shadow: 0 14px 28px rgba(15, 157, 88, 0.08);
}

@media (max-width: 1080px) {
    .site-header {
        top: 10px;
    }

    .header__inner {
        border-radius: 34px;
    }

    .topbar__inner {
        gap: 14px;
    }

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

    .hero {
        padding-top: 70px;
    }

    .hero__grid {
        gap: 28px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(2.8rem, 7vw, 4.4rem);
    }
}

@media (max-width: 720px) {
    body::after {
        display: none;
    }

    .section {
        padding: 76px 0;
    }

    .site-header {
        top: 0;
    }

    .header__inner {
        padding: 16px;
        border-radius: 28px;
    }

    .main-nav {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .topbar__links {
        padding: 10px 12px;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .hero {
        padding-top: 52px;
    }

    .hero__panel,
    .feature-card,
    .package-card,
    .hosting-card,
    .blog-card,
    .testimonial-card,
    .comparison-card,
    .faq-item,
    .featured-post,
    .hosting-summary,
    .contact-card,
    .form-card,
    .cta-panel {
        padding: 22px;
    }

    .metric-card {
        padding: 18px 16px;
    }
}

:root {
    --bg: #07111f;
    --bg-soft: #0b1729;
    --surface: rgba(15, 23, 42, 0.72);
    --surface-strong: #111c31;
    --text: #e5eefc;
    --muted: #9fb0cb;
    --line: rgba(148, 163, 184, 0.18);
    --primary: #60a5fa;
    --primary-strong: #93c5fd;
    --accent: #a78bfa;
    --success: #22c55e;
    --shadow: 0 22px 68px rgba(2, 6, 23, 0.48);
}

html {
    color-scheme: dark;
}

html[data-theme='light'] {
    color-scheme: light;
}

body {
    background:
        radial-gradient(circle at 12% 10%, rgba(59, 130, 246, 0.16), transparent 22%),
        radial-gradient(circle at 88% 12%, rgba(139, 92, 246, 0.18), transparent 18%),
        linear-gradient(180deg, #030712 0%, #07111f 34%, #0a1428 100%);
    color: var(--text);
}

body::before {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.20), transparent 68%);
}

body::after {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 70%);
}

a {
    color: inherit;
}

.section--muted {
    background: linear-gradient(180deg, rgba(9, 16, 32, 0.82), rgba(9, 16, 32, 0.54));
}

.section--gradient {
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(9, 16, 32, 0.78), rgba(16, 24, 40, 0.94));
}

.surface-card {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.72));
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: 0 20px 54px rgba(2, 6, 23, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.eyebrow {
    background: rgba(96, 165, 250, 0.10);
    color: #bfdbfe;
    border-color: rgba(96, 165, 250, 0.16);
    box-shadow: none;
}

.tag {
    background: rgba(255, 255, 255, 0.04);
    color: #e2e8f0;
    border-color: rgba(148, 163, 184, 0.12);
}

.tag--soft,
.pill {
    background: rgba(96, 165, 250, 0.12);
    color: #bfdbfe;
    border-color: rgba(96, 165, 250, 0.16);
}

.text-link {
    color: #bfdbfe;
}

.site-header {
    top: 12px;
}

.header__inner {
    background: rgba(8, 15, 29, 0.72);
    border-color: rgba(148, 163, 184, 0.12);
    box-shadow: 0 18px 48px rgba(2, 6, 23, 0.38);
}

.brand__text small {
    color: var(--muted);
}

.main-nav {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(148, 163, 184, 0.10);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.main-nav a {
    color: #b6c5dc;
}

.main-nav a:hover,
.main-nav a.is-active {
    background: rgba(96, 165, 250, 0.14);
    color: #eaf2ff;
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.18);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.04);
    color: #e5eefc;
    border-color: rgba(148, 163, 184, 0.14);
    box-shadow: none;
}

.hero::before {
    background:
        radial-gradient(circle at 16% 16%, rgba(59, 130, 246, 0.16), transparent 24%),
        radial-gradient(circle at 84% 14%, rgba(139, 92, 246, 0.18), transparent 20%),
        linear-gradient(180deg, rgba(7, 17, 31, 0.12), rgba(7, 17, 31, 0));
}

.metric-card {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.68));
    border-color: rgba(148, 163, 184, 0.10);
    box-shadow: 0 12px 28px rgba(2, 6, 23, 0.30);
}

.metric-card strong {
    color: #f8fbff;
}

.metric-card span,
.mini-package p,
.package-card p,
.feature-card p,
.timeline-card p,
.hosting-card p,
.blog-card p,
.comparison-card p,
.faq-item p,
.testimonial-card p,
.footer__text,
.contact-note,
.contact-points span,
.package-card__category,
.mini-package__meta span,
.package-card__price span,
.hosting-card__price span,
.number-card span,
.testimonial-card__meta span,
.blog-card__meta span,
.footer__contact-list span,
.contact-points strong,
.section-heading p,
.lead {
    color: var(--muted);
}

.hero__panel {
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.94), rgba(30, 41, 59, 0.90));
    border-color: rgba(148, 163, 184, 0.12);
    box-shadow: 0 34px 90px rgba(2, 6, 23, 0.46);
}

.panel-badge {
    background: rgba(255, 255, 255, 0.06);
    color: #dbeafe;
    border-color: rgba(148, 163, 184, 0.10);
}

.mini-package {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(148, 163, 184, 0.10);
}

.feature-card::after,
.package-card::after,
.hosting-card::after,
.blog-card::after,
.testimonial-card::after,
.comparison-card::after,
.timeline-card::after,
.featured-post::after,
.hosting-summary::after {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 68%);
}

.feature-card:hover,
.package-card:hover,
.hosting-card:hover,
.blog-card:hover,
.testimonial-card:hover,
.comparison-card:hover,
.faq-item:hover,
.timeline-card:hover,
.category-chip:hover,
.number-card:hover,
.featured-post:hover,
.hosting-summary:hover,
.contact-points div:hover {
    box-shadow: 0 30px 72px rgba(2, 6, 23, 0.38);
    border-color: rgba(96, 165, 250, 0.18);
}

.category-chip {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.70));
    border-color: rgba(148, 163, 184, 0.10);
    box-shadow: 0 14px 32px rgba(2, 6, 23, 0.24);
    color: #edf4ff;
}

.timeline-card,
.hosting-card,
.blog-card,
.testimonial-card,
.comparison-card,
.faq-item,
.featured-post,
.hosting-summary,
.contact-points div {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.90), rgba(15, 23, 42, 0.74));
    border-color: rgba(148, 163, 184, 0.10);
}

.timeline-card__step {
    background: rgba(96, 165, 250, 0.12);
    color: #bfdbfe;
    box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.10);
}

.number-card {
    background: linear-gradient(135deg, #111827 0%, #1d4ed8 100%);
    border-color: rgba(96, 165, 250, 0.16);
    box-shadow: 0 20px 48px rgba(2, 6, 23, 0.38);
}

.cta-panel {
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.98), rgba(30, 41, 59, 0.94));
    border-color: rgba(148, 163, 184, 0.10);
    box-shadow: 0 34px 72px rgba(2, 6, 23, 0.42);
}

.cta-panel::before {
    background: radial-gradient(circle, rgba(96, 165, 250, 0.16), transparent 68%);
}

.cta-panel p,
.cta-panel .eyebrow {
    color: rgba(226, 232, 240, 0.78);
}

.cta-panel .eyebrow {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(148, 163, 184, 0.10);
}

.site-footer {
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.10), transparent 24%),
        radial-gradient(circle at left bottom, rgba(139, 92, 246, 0.12), transparent 22%),
        #030712;
}

.footer__bottom {
    border-top-color: rgba(148, 163, 184, 0.12);
    color: rgba(159, 176, 203, 0.72);
}

.newsletter input,
.contact-form input,
.contact-form textarea {
    border-color: rgba(148, 163, 184, 0.12);
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.04);
    color: #f3f7ff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(159, 176, 203, 0.62);
}

.newsletter input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(96, 165, 250, 0.28);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.10);
}

.alert--success {
    background: rgba(34, 197, 94, 0.12);
    color: #86efac;
}

@media (max-width: 1080px) {
    .site-header {
        top: 8px;
    }
}

@media (max-width: 720px) {
    .site-header {
        top: 0;
    }

    .header__inner {
        background: rgba(8, 15, 29, 0.88);
    }
}

html[data-theme='light'] {
    --bg: #f3f7fd;
    --bg-soft: #e9f0ff;
    --surface: rgba(255, 255, 255, 0.72);
    --surface-strong: #ffffff;
    --text: #0b1324;
    --muted: #5a6780;
    --line: rgba(148, 163, 184, 0.20);
    --primary: #2563eb;
    --primary-strong: #1d4ed8;
    --accent: #7c3aed;
    --success: #0f9d58;
    --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

html[data-theme='light'] body {
    background:
        radial-gradient(circle at 12% 12%, rgba(37, 99, 235, 0.16), transparent 22%),
        radial-gradient(circle at 88% 10%, rgba(124, 58, 237, 0.16), transparent 18%),
        linear-gradient(180deg, #f8fbff 0%, #eef4ff 38%, #f8fbff 100%);
    color: var(--text);
}

html[data-theme='light'] body::before {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 68%);
}

html[data-theme='light'] body::after {
    background: radial-gradient(circle, rgba(124, 58, 237, 0.16), transparent 70%);
}

html[data-theme='light'] .section--muted {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.38));
}

html[data-theme='light'] .section--gradient {
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.10), transparent 28%),
        linear-gradient(180deg, rgba(37, 99, 235, 0.04), rgba(124, 58, 237, 0.06));
}

html[data-theme='light'] .surface-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
    border-color: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 52px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

html[data-theme='light'] .eyebrow {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.66));
    color: inherit;
    border-color: rgba(37, 99, 235, 0.10);
}

html[data-theme='light'] .tag {
    background: rgba(255, 255, 255, 0.75);
    color: var(--text);
    border-color: rgba(15, 23, 42, 0.05);
}

html[data-theme='light'] .tag--soft,
html[data-theme='light'] .pill {
    background: rgba(37, 99, 235, 0.10);
    color: var(--primary-strong);
    border-color: rgba(37, 99, 235, 0.12);
}

html[data-theme='light'] .text-link {
    color: var(--primary-strong);
}

html[data-theme='light'] .header__inner {
    background: rgba(255, 255, 255, 0.68);
    border-color: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

html[data-theme='light'] .brand__text small,
html[data-theme='light'] .metric-card span,
html[data-theme='light'] .mini-package p,
html[data-theme='light'] .package-card p,
html[data-theme='light'] .feature-card p,
html[data-theme='light'] .timeline-card p,
html[data-theme='light'] .hosting-card p,
html[data-theme='light'] .blog-card p,
html[data-theme='light'] .comparison-card p,
html[data-theme='light'] .faq-item p,
html[data-theme='light'] .testimonial-card p,
html[data-theme='light'] .footer__text,
html[data-theme='light'] .contact-note,
html[data-theme='light'] .contact-points span,
html[data-theme='light'] .package-card__category,
html[data-theme='light'] .mini-package__meta span,
html[data-theme='light'] .package-card__price span,
html[data-theme='light'] .hosting-card__price span,
html[data-theme='light'] .testimonial-card__meta span,
html[data-theme='light'] .blog-card__meta span,
html[data-theme='light'] .footer__contact-list span,
html[data-theme='light'] .contact-points strong,
html[data-theme='light'] .section-heading p,
html[data-theme='light'] .lead {
    color: var(--muted);
}

html[data-theme='light'] .main-nav {
    background: rgba(255, 255, 255, 0.62);
    border-color: rgba(255, 255, 255, 0.80);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

html[data-theme='light'] .main-nav a {
    color: var(--muted);
}

html[data-theme='light'] .main-nav a:hover,
html[data-theme='light'] .main-nav a.is-active {
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-strong);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.10);
}

html[data-theme='light'] .btn--ghost,
html[data-theme='light'] .theme-toggle {
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    border-color: rgba(148, 163, 184, 0.22);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

html[data-theme='light'] .hero::before {
    background:
        radial-gradient(circle at 14% 18%, rgba(37, 99, 235, 0.16), transparent 24%),
        radial-gradient(circle at 82% 14%, rgba(124, 58, 237, 0.18), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
}

html[data-theme='light'] .metric-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.62));
    border-color: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.05);
}

html[data-theme='light'] .metric-card strong {
    color: var(--text);
}

html[data-theme='light'] .hero__panel {
    background: linear-gradient(160deg, rgba(11, 19, 36, 0.96), rgba(25, 37, 68, 0.94));
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.24);
}

html[data-theme='light'] .panel-badge {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.90);
    border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme='light'] .mini-package {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme='light'] .feature-card::after,
html[data-theme='light'] .package-card::after,
html[data-theme='light'] .hosting-card::after,
html[data-theme='light'] .blog-card::after,
html[data-theme='light'] .testimonial-card::after,
html[data-theme='light'] .comparison-card::after,
html[data-theme='light'] .timeline-card::after,
html[data-theme='light'] .featured-post::after,
html[data-theme='light'] .hosting-summary::after {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.10), transparent 68%);
}

html[data-theme='light'] .feature-card:hover,
html[data-theme='light'] .package-card:hover,
html[data-theme='light'] .hosting-card:hover,
html[data-theme='light'] .blog-card:hover,
html[data-theme='light'] .testimonial-card:hover,
html[data-theme='light'] .comparison-card:hover,
html[data-theme='light'] .faq-item:hover,
html[data-theme='light'] .timeline-card:hover,
html[data-theme='light'] .category-chip:hover,
html[data-theme='light'] .number-card:hover,
html[data-theme='light'] .featured-post:hover,
html[data-theme='light'] .hosting-summary:hover,
html[data-theme='light'] .contact-points div:hover {
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
    border-color: rgba(37, 99, 235, 0.14);
}

html[data-theme='light'] .category-chip {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72));
    border-color: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
    color: var(--text);
}

html[data-theme='light'] .timeline-card,
html[data-theme='light'] .hosting-card,
html[data-theme='light'] .blog-card,
html[data-theme='light'] .testimonial-card,
html[data-theme='light'] .comparison-card,
html[data-theme='light'] .faq-item,
html[data-theme='light'] .featured-post,
html[data-theme='light'] .hosting-summary,
html[data-theme='light'] .contact-points div {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76));
    border-color: rgba(255, 255, 255, 0.80);
}

html[data-theme='light'] .timeline-card__step {
    background: rgba(37, 99, 235, 0.10);
    color: var(--primary-strong);
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.10);
}

html[data-theme='light'] .number-card {
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
    border-color: rgba(255, 255, 255, 0.10);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.18);
}

html[data-theme='light'] .cta-panel {
    background: linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(29, 78, 216, 0.92));
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 34px 70px rgba(15, 23, 42, 0.24);
}

html[data-theme='light'] .cta-panel::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
}

html[data-theme='light'] .cta-panel p,
html[data-theme='light'] .cta-panel .eyebrow {
    color: rgba(226, 232, 240, 0.78);
}

html[data-theme='light'] .cta-panel .eyebrow {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(148, 163, 184, 0.10);
}

html[data-theme='light'] .site-footer {
    background:
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.12), transparent 24%),
        radial-gradient(circle at left bottom, rgba(124, 58, 237, 0.14), transparent 22%),
        #081120;
}

html[data-theme='light'] .footer__bottom {
    border-top-color: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.72);
}

html[data-theme='light'] .newsletter input {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

html[data-theme='light'] .newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.54);
}

html[data-theme='light'] .newsletter input:focus {
    border-color: rgba(147, 197, 253, 0.50);
    box-shadow: 0 0 0 4px rgba(147, 197, 253, 0.14);
}

html[data-theme='light'] .contact-form input,
html[data-theme='light'] .contact-form textarea {
    background: rgba(248, 250, 252, 0.96);
    color: var(--text);
    border-color: rgba(148, 163, 184, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.80);
}

html[data-theme='light'] .contact-form input::placeholder,
html[data-theme='light'] .contact-form textarea::placeholder {
    color: rgba(90, 103, 128, 0.62);
}

html[data-theme='light'] .contact-form input:focus,
html[data-theme='light'] .contact-form textarea:focus {
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

html[data-theme='light'] .alert--success {
    background: rgba(15, 157, 88, 0.12);
    color: #0f9d58;
}
