.topbar {
    background: var(--color-primary);
    color: #fff;
}

.topbar__inner {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
}

.topbar__text {
    margin: 0;
    color: #fff;
    text-align: center;
    font-size: 0.95rem;
}

.topbar__button {
    min-width: 136px;
    min-height: 46px;
    padding: 0 var(--space-4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: #7d7d7d;
    color: #fff;
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #dbe4ef;
    box-shadow: 0 2px 0 rgba(17, 44, 84, 0.02);
}

.site-header .nav-wrap {
    width: min(1840px, calc(100% - 32px));
}

.nav-wrap {
    min-height: 86px;
    display: grid;
    grid-template-columns: minmax(220px, 286px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
}

.brand {
    flex-shrink: 0;
    justify-self: start;
}

.brand img {
    width: min(268px, 100%);
    height: auto;
}

.desktop-nav {
    display: none;
    min-width: 0;
    justify-content: center;
}

.desktop-nav > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 1.15vw, 30px);
    position: relative;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    list-style: none;
}

.desktop-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 30px 0;
    font-size: 0.92rem;
    font-weight: 500;
    color: #111111;
    white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: var(--color-primary);
}

.nav-submenu {
    position: absolute;
    left: 0;
    top: calc(100% - 1px);
    min-width: 274px;
    padding: 10px 0;
    border: 1px solid #dbe4ef;
    border-radius: 0 0 12px 12px;
    background: #fff;
    box-shadow: 0 18px 36px rgba(17, 44, 84, 0.12);
    display: none;
    z-index: 40;
    margin: 0;
    list-style: none;
}

.nav-submenu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -16px;
    height: 16px;
}

.nav-submenu .nav-item {
    width: 100%;
}

.nav-submenu .nav-item + .nav-item {
    margin-top: 0;
}

.nav-submenu .nav-item > a {
    width: 100%;
    justify-content: space-between;
    padding: 14px 18px;
    color: #173a5d;
    font-size: 0.92rem;
    font-weight: 500;
}

.nav-submenu .nav-item > a:hover,
.nav-submenu .nav-item > a.is-active {
    background: #dfeafb;
    color: var(--color-primary);
}

.nav-item--has-children:hover > .nav-submenu {
    display: block;
}

.nav-item--has-children:focus-within > .nav-submenu {
    display: block;
}

.nav-submenu--nested {
    left: calc(100% - 10px);
    top: -10px;
    border-radius: 12px;
}

.nav-submenu--nested::before {
    top: 0;
    bottom: 0;
    left: -16px;
    right: auto;
    width: 16px;
    height: auto;
}

.nav-caret {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
}

.nav-tools {
    display: flex;
    align-items: center;
    justify-self: end;
    flex-shrink: 0;
    gap: 8px;
}

.nav-phone,
.nav-link-button {
    display: none;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
}

.nav-link-button {
    padding-left: 16px;
    border-left: 1px solid #ccd7e5;
}

.nav-tool-icon {
    font-size: 1rem;
    line-height: 1;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #fff;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 10px;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: #173a5f;
    border-radius: 999px;
}

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #dde5ef;
    box-shadow: var(--shadow-sm);
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu ul {
    padding: var(--space-4);
    border-bottom: 1px solid #ebf0f7;
}

.mobile-menu li + li {
    margin-top: var(--space-2);
}

.mobile-menu a {
    display: block;
    padding: 10px 0;
    font-weight: 600;
    color: #16385d;
}

.mobile-menu__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mobile-menu__row > a {
    flex: 1 1 auto;
}

.mobile-menu__toggle {
    width: 34px;
    height: 34px;
    border: 1px solid #d9e4f0;
    border-radius: 999px;
    background: #fff;
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 700;
    flex: 0 0 auto;
}

.mobile-submenu-wrap {
    padding-left: 16px;
}

.mobile-submenu {
    padding: 4px 0 0 !important;
    border-bottom: 0 !important;
}

.mobile-submenu li + li {
    margin-top: 2px;
}

.mobile-submenu .mobile-menu__row > a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 6px 0;
    font-size: 0.95rem;
}

.mobile-submenu .mobile-menu__row > a::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 2px;
    border-top: 2px solid var(--color-primary);
    border-right: 2px solid var(--color-primary);
    transform: rotate(45deg);
    flex: 0 0 auto;
}

.mobile-submenu-wrap.is-open + .mobile-menu__toggle,
.mobile-menu__toggle[aria-expanded="true"] {
    background: #eef4fb;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-primary-strong);
}

.btn-secondary {
    background: #616b79;
    color: #fff;
}

.btn-secondary:hover {
    background: #4d5663;
}

.btn-outline {
    background: #fff;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-light {
    background: #fff;
    color: var(--color-primary);
}

.btn-login {
    background: #6a7380;
    color: #fff;
    gap: 6px;
    min-width: 106px;
    padding: 0 16px;
    flex-shrink: 0;
}

.btn-login__arrow {
    font-size: 1rem;
    line-height: 1;
}

.btn-block {
    width: 100%;
}

.card,
.product-card,
.highlight-card,
.ops-card,
.review-card,
.pricing-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.card,
.pricing-card,
.product-card,
.highlight-card,
.ops-card,
.review-card {
    padding: var(--space-5);
}

.feature-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
}

.feature-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--color-primary);
}

.pricing-card .price {
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 1.35rem;
    font-weight: 800;
}

.pricing-card .billing {
    font-size: 0.9rem;
}

.pricing-card ul {
    margin: var(--space-4) 0;
}

.pricing-card li + li {
    margin-top: 10px;
}

.faq-list {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
}

.faq-item + .faq-item {
    border-top: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    padding: var(--space-4);
    border: 0;
    background: transparent;
    text-align: left;
    font-weight: 700;
    color: var(--color-text);
}

.faq-answer {
    display: none;
    padding: 0 var(--space-4) var(--space-4);
}

.faq-item.is-open .faq-answer {
    display: block;
}

.section-cta {
    background: transparent;
}

.cta-box {
    padding: var(--space-7);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #0f4a89, #1d64a8);
    text-align: center;
}

.cta-box h2,
.cta-box p {
    color: #fff;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}

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

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

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #fff;
}

.contact-form textarea {
    min-height: 140px;
    padding-top: 12px;
    resize: vertical;
}

.field-error {
    color: #b42318;
    font-size: 0.84rem;
}

.alert {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-4);
}

.alert-success {
    background: #edfdf4;
    border: 1px solid #abefc6;
    color: #027a48;
}

.alert-error {
    background: #fef3f2;
    border: 1px solid #fecdca;
    color: #b42318;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.home-hero {
    padding: 30px 0 36px;
    background: linear-gradient(180deg, #f2f6fd 0%, #ffffff 100%);
}

.home-hero__grid {
    display: grid;
    gap: var(--space-6);
    align-items: center;
}

.home-hero__content {
    max-width: 560px;
}

.home-hero__content h1 {
    color: #034083;
}

.home-hero__lead {
    font-size: 1rem;
}

.home-hero__list {
    margin: var(--space-4) 0;
}

.home-hero__list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    color: #45617f;
}

.home-hero__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #f59a23;
}

.home-hero__actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin: var(--space-5) 0 var(--space-3);
}

.hero-price {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero-price span {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-muted);
    text-transform: uppercase;
}

.hero-price strong {
    font-size: 1.55rem;
    color: var(--color-primary);
}

.hero-footnote {
    color: #173a5d;
    font-weight: 700;
}

.home-domain {
    margin-top: -8px;
}

.domain-box {
    padding: var(--space-6);
    border-radius: 14px;
    background: linear-gradient(135deg, #0f4a89 0%, #124d91 100%);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.domain-box h2,
.domain-box p,
.domain-box__link {
    color: #fff;
}

.domain-search {
    display: flex;
    gap: var(--space-2);
    margin: var(--space-4) auto var(--space-3);
    max-width: 760px;
}

.domain-search input {
    flex: 1 1 auto;
    min-height: 48px;
    border: 0;
    border-radius: var(--radius-sm);
    padding: 0 16px;
}

.support-strip {
    padding: 26px 0 20px;
}

.support-strip__grid,
.home-services__grid,
.home-products__grid,
.highlight-grid,
.reviews-grid {
    display: grid;
    gap: var(--space-4);
}

.support-card {
    padding: 18px 20px;
    border-radius: 12px;
    background: #0f4a89;
    color: #fff;
    display: grid;
    align-content: center;
    gap: 6px;
    min-height: 116px;
    box-shadow: var(--shadow-sm);
}

.support-card--intro {
    align-content: stretch;
    background: #0d447e;
}

.support-card--intro strong {
    font-size: 1.08rem;
}

.support-card__meta {
    display: grid;
    gap: 4px;
    margin-top: 4px;
}

.support-card__meta li {
    position: relative;
    padding-left: 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.support-card__meta li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #f4c15e;
}

.support-card img {
    width: 26px;
    height: 26px;
}

.support-card strong {
    font-size: 1rem;
}

.support-card span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.home-promo-card {
    min-height: 172px;
    padding: 30px 24px;
    border-radius: 12px;
    text-align: center;
    display: grid;
    align-content: start;
    justify-items: center;
    border: 1px solid rgba(17, 44, 84, 0.08);
    box-shadow: 0 18px 38px rgba(17, 44, 84, 0.07);
}

.home-promo-card__icon {
    margin-bottom: 14px;
    color: #6b7280;
    font-size: 2.45rem;
    line-height: 1;
}

.home-promo-card h3 {
    margin-bottom: 8px;
}

.home-promo-card--soft-blue {
    background: #dceef5;
}

.home-promo-card--soft-green {
    background: #e6f4c9;
}

.home-promo-card--soft-gold {
    background: #fbd696;
}

.home-products__grid {
    margin-top: var(--space-5);
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 22px 24px;
    border-radius: 10px;
    border: 1px solid #dde6f1;
    box-shadow: 0 16px 36px rgba(17, 44, 84, 0.08);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: linear-gradient(90deg, #124d91, #3e79bf);
}

.home-products__grid .product-card:nth-child(2)::before {
    background: linear-gradient(90deg, #d24a43, #ef7a6d);
}

.home-products__grid .product-card:nth-child(3)::before {
    background: linear-gradient(90deg, #f39a1f, #f6ba57);
}

.home-products__grid .product-card:nth-child(4)::before {
    background: linear-gradient(90deg, #5d6473, #8a94a6);
}

.product-card__icon {
    width: auto;
    height: auto;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #124d91;
    font-size: 1.2rem;
    font-weight: 800;
}

.product-card__icon i {
    font-size: 1.95rem;
}

.product-card__tagline {
    margin-bottom: 6px;
    color: #1f466d;
    font-weight: 700;
    font-size: 0.92rem;
}

.product-card__price {
    color: var(--color-primary);
    font-weight: 800;
    font-size: 1.12rem;
}

.product-card .btn {
    margin-top: auto;
    min-width: 118px;
}

.logo-cloud {
    padding: 8px 0 28px;
}

.logo-cloud__viewport {
    overflow: hidden;
    position: relative;
}

.logo-cloud__track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    animation: logo-marquee 28s linear infinite;
}

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

.logo-cloud__item {
    flex: 0 0 auto;
    min-width: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-cloud__item img {
    max-height: 38px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.9;
}

.story-section {
    padding-top: 30px;
}

.story-row {
    display: grid;
    gap: var(--space-6);
    align-items: center;
}

.story-row + .story-row {
    margin-top: var(--space-9);
}

.story-copy .btn {
    margin-top: var(--space-2);
}

.story-visual__frame {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.story-visual__badge {
    position: absolute;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
}

.story-visual__badge--primary {
    left: -6px;
    top: 16px;
    width: 108px;
    min-height: 108px;
    padding: 18px 14px;
    background: #124d91;
    color: #fff;
    display: grid;
    align-content: center;
    gap: 4px;
    text-align: center;
}

.story-visual__badge--primary strong {
    font-size: 2rem;
    line-height: 1;
}

.story-visual__badge--primary span {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.story-row:first-child .story-visual img {
    width: min(100%, 560px);
}

.story-visual__badge--review {
    left: -24px;
    top: 20px;
    background: #fff;
    padding: 10px;
}

.story-visual__badge--customers {
    right: -18px;
    top: 18px;
    min-width: 118px;
    padding: 16px 14px;
    background: #124d91;
    color: #fff;
    display: grid;
    gap: 4px;
    text-align: center;
}

.story-visual__badge--customers strong {
    font-size: 1.5rem;
    line-height: 1;
}

.story-visual__badge--customers span {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ops-visual__frame {
    padding: 8px;
    border-radius: 16px;
    background: transparent;
    border: 0;
    box-shadow: 0 18px 40px rgba(17, 44, 84, 0.12);
}

.highlight-section {
    background: var(--color-bg-soft);
}

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

.highlight-card img {
    width: 42px;
    height: 42px;
    margin-bottom: var(--space-3);
    border-radius: 10px;
}

.growth-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.growth-grid {
    display: grid;
    gap: var(--space-6);
    align-items: stretch;
}

.growth-copy {
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid #dde6f1;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 16px 38px rgba(17, 44, 84, 0.07);
    height: 100%;
}

.growth-aside {
    display: grid;
    gap: var(--space-3);
    align-content: start;
}

.growth-aside__visual {
    padding: 20px;
    border: 1px solid #dde6f1;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(17, 44, 84, 0.07);
}

.growth-perk {
    padding: 22px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    position: relative;
    padding-left: 64px;
    min-height: 86px;
}

.growth-perk h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.growth-perk::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 20px;
    top: 20px;
    width: 28px;
    height: 28px;
    color: #124d91;
    font-size: 1.28rem;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}

.growth-perk:nth-child(1)::before {
    content: "\f232";
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
}

.growth-perk:nth-child(2)::before {
    content: "\f53d";
}

.growth-perk:nth-child(3)::before {
    content: "\f0ac";
}

.growth-perk:nth-child(4)::before {
    content: "\f362";
}

.ops-grid {
    display: grid;
    gap: var(--space-5);
    align-items: start;
}

.ops-visual {
    align-self: start;
}

.ops-cards {
    display: grid;
    gap: var(--space-3);
}

.ops-card h3 {
    margin-bottom: 8px;
}

.reviews-section {
    background: #f6f8fc;
}

.review-card {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.subpage-hero {
    padding: 28px 0 34px;
    background: linear-gradient(135deg, #0f4a89 0%, #11457d 100%);
}

.subpage-hero__grid {
    display: grid;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}

.subpage-hero__content h1,
.subpage-hero__content p {
    color: #fff;
}

.subpage-hero__content p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.9);
}

.subpage-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.subpage-hero__visual {
    display: flex;
    justify-content: center;
}

.subpage-hero__visual img {
    width: min(100%, 420px);
    height: auto;
}

.service-card-grid {
    align-items: start;
}

.service-card {
    min-height: 100%;
    box-shadow: 0 14px 30px rgba(17, 44, 84, 0.06);
}

.review-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: var(--space-4);
}

.review-brand img {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    object-fit: cover;
}

.footer-cta {
    padding: 18px 0 0;
    background: #fff;
}

.footer-cta__box {
    padding: 32px clamp(24px, 4vw, 60px);
    border-radius: 16px;
    background: linear-gradient(135deg, #1c5a9f 0%, #315f96 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
}

.footer-cta__box h2 {
    color: #fff;
    max-width: 700px;
}

.site-footer {
    margin-top: 12px;
    background: #dfeafb;
    color: #19314f;
}

.footer-grid--site {
    padding: var(--space-9) 0 var(--space-8);
}

.footer-heading {
    margin-bottom: var(--space-4);
    color: var(--color-primary);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links li + li,
.footer-contact li + li {
    margin-top: 14px;
}

.footer-links a {
    color: #19314f;
    font-weight: 500;
}

.footer-links a::before {
    content: "â€º";
    margin-right: 10px;
    color: var(--color-primary);
}

.footer-contact li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    align-items: start;
}

.footer-contact__icon {
    color: var(--color-primary);
    font-weight: 700;
}

.footer-social {
    margin-top: var(--space-5);
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-bottom {
    background: var(--color-primary);
    color: #fff;
}

.footer-bottom__row {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
}

.footer-bottom p,
.footer-policy-links a {
    color: #fff;
    margin: 0;
    font-size: 0.9rem;
}

.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.whatsapp-float {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 60;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff;
    color: var(--color-text);
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.whatsapp-float::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--color-success);
    box-shadow: 0 0 0 8px rgba(28, 166, 107, 0.18);
}

/* Shared footer overrides kept at the end so they win over earlier fallback rules. */
.footer-links a {
    font-size: 0.95rem;
}

.footer-links a::before {
    content: ">";
}

.footer-social a {
    font-size: 0.82rem;
}

.footer-social a:nth-child(1) {
    background: #2f5ea8;
}

.footer-social a:nth-child(2) {
    background: #2e2e2e;
}

.footer-social a:nth-child(3) {
    background: #2da6f0;
}

.footer-social a:nth-child(4) {
    background: #d93025;
}

@keyframes logo-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.section-heading--center,
.section-heading.center {
    text-align: center;
}

.wp-hero {
    padding: 26px 0 30px;
    background: linear-gradient(135deg, #0f4a89 0%, #11457d 100%);
}

.wp-hero__grid,
.wp-featured__grid,
.wp-story__grid {
    display: grid;
    gap: clamp(28px, 5vw, 56px);
    align-items: center;
}

.wp-hero__lead {
    max-width: 720px;
    font-size: 1.03rem;
    color: rgba(255, 255, 255, 0.92);
}

.wp-hero .section-kicker,
.wp-hero h1,
.wp-hero__list li,
.wp-hero__content p {
    color: #fff;
}

.wp-hero .section-kicker {
    margin-bottom: 10px;
    color: #f5c36d;
}

.wp-hero h1 {
    margin-bottom: 14px;
}

.wp-hero__list {
    margin: var(--space-4) 0 22px;
    display: grid;
    gap: 10px;
}

.wp-hero__list li {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.9);
}

.wp-hero__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #f5c36d;
}

.wp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.wp-hero__visual {
    display: flex;
    justify-content: center;
}

.wp-hero__visual img {
    width: min(100%, 360px);
    height: auto;
}

.wp-pricing {
    background: #f7f9fc;
}

.wp-pricing__tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: var(--space-6);
}

.wp-pricing__intro {
    width: min(960px, 80%);
    margin-inline: auto;
}

.wp-pricing__tab {
    min-width: 118px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid #cbd8e7;
    border-radius: 999px;
    background: #fff;
    color: #24405e;
    font-weight: 700;
}

.wp-pricing__tab.is-active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.wp-pricing__panel[hidden] {
    display: none;
}

.wp-pricing__grid,
.wp-features__grid,
.wp-alternatives__grid {
    display: grid;
    gap: var(--space-4);
}

.wp-pricing__grid {
    padding-top: 34px;
}

.wp-plan {
    position: relative;
    padding: 28px 24px 24px;
    background: #fff;
    border: 1px solid #dbe4ef;
    border-radius: 16px;
    box-shadow: 0 16px 34px rgba(17, 44, 84, 0.08);
    text-align: center;
    overflow: visible;
}

.wp-plan--featured {
    border-color: #aac4e6;
    border-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: 0 20px 42px rgba(17, 44, 84, 0.11);
}

.wp-plan__badge {
    position: absolute;
    left: -1px;
    right: -1px;
    top: -34px;
    min-height: 34px;
    margin: 0;
    padding: 8px 12px;
    border-radius: 16px 16px 0 0;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wp-plan h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.wp-plan__divider {
    display: block;
    width: 90%;
    height: 1px;
    margin: 0 auto 16px;
    background: #d8e0ec;
}

.wp-plan__discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin: 0 auto 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eef4fb;
    color: #56667e;
    font-size: 0.92rem;
    text-align: center;
}

.wp-plan__discount strong {
    color: var(--color-primary);
}

.wp-plan__price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
    color: var(--color-primary);
    text-align: center;
}

.wp-plan__currency {
    padding-bottom: 10px;
    font-size: 1rem;
    font-weight: 800;
}

.wp-plan__price strong {
    font-size: 2.5rem;
    line-height: 0.95;
}

.wp-plan__term {
    padding-bottom: 9px;
    color: #4e6078;
    font-weight: 700;
}

.wp-plan__renewal {
    margin-bottom: 18px;
    color: #66758b;
    font-size: 0.92rem;
}

.wp-plan__features {
    margin-top: 20px;
    display: grid;
    gap: 10px;
    text-align: left;
}

.wp-plan__features li {
    position: relative;
    padding-left: 24px;
    color: #111111;
}

.wp-plan__features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
}

.wp-featured__visual img,
.wp-story__visual img {
    width: 100%;
    height: auto;
}

.wp-featured__visual {
    align-self: start;
}

.wp-featured__list {
    display: grid;
    gap: 18px;
}

.wp-featured-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #dbe4ef;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(17, 44, 84, 0.07);
}

.wp-featured-item__icon,
.wp-feature-card__icon,
.wp-alternative-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.wp-featured-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #edf4fb;
    font-size: 1.2rem;
}

.wp-featured-item h3,
.wp-feature-card h3,
.wp-alternative-card h3 {
    margin-bottom: 8px;
}

.wp-story--soft {
    background: #f7f9fc;
}

.wp-story__grid--reverse .wp-story__visual {
    order: 1;
}

.wp-story__grid--reverse .wp-story__copy {
    order: 2;
}

.wp-story__visual--compact img {
    width: min(100%, 400px);
    margin-left: auto;
}

.jsp-hero {
    padding: 0;
    background: #034083;
}

.jsp-hero .container,
.jsp-intro .container,
.jsp-pricing .container,
.jsp-story .container,
.jsp-features .container,
.jsp-faq .container {
    width: min(1140px, calc(100% - 32px));
}

.jsp-hero .wp-hero__grid {
    grid-template-columns: 60% 40%;
    gap: 0;
    min-height: 300px;
    align-items: center;
}

.jsp-hero .wp-hero__content {
    max-width: none;
    padding: 2em;
}

.jsp-hero__content {
    margin-inline: 0;
    text-align: left;
}

.jsp-hero h1 {
    margin-bottom: 12px;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.1;
}

.jsp-hero .wp-hero__lead {
    max-width: 100%;
    color: #f7f2f2;
    font-size: 1rem;
    line-height: 1.55;
}

.jsp-hero .wp-hero__visual {
    justify-content: center;
    align-items: center;
    padding: 0 0 20px;
}

.jsp-hero .wp-hero__visual img {
    width: 54%;
    max-width: none;
}

.jsp-intro {
    padding-top: 50px;
    padding-bottom: 10px;
    background: #ededed;
}

.jsp-intro__heading h2 {
    color: #034083;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1;
}

.jsp-pricing {
    padding-top: 50px;
    padding-bottom: 50px;
    background: #f6f6f6;
}

.jsp-pricing__container {
    max-width: 1140px;
}

.jsp-pricing__tabs-shell {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.jsp-pricing__tabs {
    gap: 0;
    margin-bottom: 0;
    padding: 4px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.jsp-pricing__tab {
    min-width: 146px;
    min-height: auto;
    padding: 14px 10px;
    border: 0;
    border-radius: 39px;
    background: transparent;
    color: #24405e;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
}

.jsp-pricing__tab.is-active {
    background: #034083;
    color: #fff;
}

.jsp-pricing__grid,
.jsp-pricing__grid--spaced {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 34px;
    gap: 24px;
}

.jsp-plan {
    padding: 2.25rem;
    border: 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.125);
    text-align: left;
}

.jsp-plan__heading {
    margin-bottom: 32px;
    text-align: center;
}

.jsp-plan h3 {
    display: inline-block;
    margin-bottom: 0;
    font-size: 24px;
    line-height: 1.22;
    color: #1f2c3f;
    position: relative;
}

.jsp-plan h3::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    width: 70px;
    height: 4px;
    margin: 0 auto;
    background: #034083;
}

.jsp-plan .wp-plan__divider {
    display: none;
}

.jsp-plan__price {
    justify-content: flex-start;
    align-items: flex-end;
    gap: 0;
    margin-bottom: 0;
    color: #21267b;
}

.jsp-plan .wp-plan__currency {
    padding-bottom: 2px;
    margin-right: 2px;
    font-size: 1rem;
    font-weight: 600;
    color: #21267b;
}

.jsp-plan .wp-plan__price strong {
    font-size: 35px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0;
}

.jsp-plan .wp-plan__term {
    padding-bottom: 2px;
    margin-left: 2px;
    font-size: 15px;
    font-weight: 400;
    color: #2a2d38;
}

.jsp-plan__actions {
    margin-top: 30px;
}

.jsp-plan__button {
    width: 100%;
    padding: 15px 30px;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    font-weight: 400;
}

.jsp-plan__features {
    margin-top: 30px;
    gap: 0;
}

.jsp-plan__features li {
    padding: 0 0 12px;
    color: #2a2d38;
    font-size: 14px;
}

.jsp-plan__features li::before {
    content: none;
}

.jsp-plan__features li strong {
    font-weight: 700;
}

.jsp-story {
    padding-top: 6em;
    padding-bottom: 7em;
    background: #fff;
}

.jsp-story .wp-story__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
}

.jsp-story .wp-story__visual--compact img {
    width: 100%;
    max-width: none;
    height: 435px;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
    margin-left: 0;
}

.jsp-story__copy {
    padding: 3em;
}

.jsp-story .section-kicker {
    margin-bottom: 12px;
    color: #6d6d6d;
    font-size: 20px;
    font-weight: 600;
}

.jsp-story h2 {
    color: #034083;
    font-size: 40px;
    font-weight: 600;
    line-height: 45px;
}

.jsp-story .wp-story__copy p:last-child {
    line-height: 24px;
}

.jsp-features {
    padding-top: 20px;
    padding-bottom: 50px;
}

.jsp-features .section-heading h2 {
    color: #034083;
    font-size: 40px;
    font-weight: 600;
}

.jsp-detail-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px 28px;
}

.jsp-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.jsp-detail-item__icon {
    flex: 0 0 auto;
    color: #034083;
    font-size: 30px;
    line-height: 1;
}

.jsp-detail-item h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: #2a2d38;
}

.pk-domain-hero,
.unlimited-hero {
    background: #034083;
}

.pk-domain-hero__grid,
.unlimited-hero__grid {
    display: grid;
    align-items: center;
    min-height: 300px;
}

.pk-domain-hero__grid {
    grid-template-columns: 65% 35%;
}

.unlimited-hero__grid {
    grid-template-columns: 60% 40%;
}

.pk-domain-hero__content,
.unlimited-hero__content {
    padding: 2em;
}

.pk-domain-hero__content h1,
.unlimited-hero__content h1 {
    color: #fff;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.1;
}

.unlimited-hero__content h1 {
    font-weight: 700;
}

.pk-domain-hero__lead,
.unlimited-hero__lead {
    color: #f7f2f2;
    margin: 0;
}

.pk-domain-hero__visual,
.unlimited-hero__visual {
    display: flex;
    justify-content: center;
}

.pk-domain-hero--linux .pk-domain-hero__visual img {
    width: 75%;
}

.pk-domain-hero--windows .pk-domain-hero__visual img {
    width: 74%;
}

.unlimited-hero__visual img {
    width: 66%;
}

.pk-domain-intro,
.unlimited-intro {
    padding-top: 50px;
    padding-bottom: 0;
    background: #ededed;
}

.pk-domain-intro .section-heading,
.unlimited-intro .section-heading {
    margin-bottom: 0;
}

.pk-domain-intro--flush,
.pk-domain-pricing--flush,
.unlimited-intro--flush,
.unlimited-pricing--flush {
    display: flow-root;
}

.pk-domain-intro__heading h2,
.unlimited-intro__heading h2 {
    color: #034083;
    font-size: 40px;
    font-weight: 600;
    margin: 0;
}

.pk-domain-intro__heading h2 {
    line-height: 49px;
}

.unlimited-intro__heading h2 {
    line-height: 50px;
}

.pk-domain-pricing,
.unlimited-pricing {
    padding-top: 50px;
    padding-bottom: 50px;
    background: #ededed;
}

.pk-domain-pricing__container,
.unlimited-pricing__container {
    max-width: 1300px;
}

.pk-domain-plan-grid,
.unlimited-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.pk-domain-plan-grid--spaced,
.unlimited-plan-grid--spaced {
    padding-top: 52px;
}

.pk-domain-plan,
.unlimited-plan {
    background: #fff;
    padding: 2.25rem;
    border-radius: 8px;
    box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.125);
    text-align: left;
}

.pk-domain-plan__heading,
.unlimited-plan__heading {
    margin-bottom: 32px;
}

.pk-domain-plan__heading h3,
.unlimited-plan__heading h3 {
    display: inline-block;
    margin: 0;
    font-size: 24px;
    color: #1f2c3f;
    position: relative;
}

.pk-domain-plan__heading h3::after,
.unlimited-plan__heading h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 70px;
    height: 4px;
    background: #034083;
}

.pk-domain-plan__price,
.unlimited-plan__price {
    color: #21267b;
    font-size: 35px;
    font-weight: 600;
    line-height: 1;
}

.pk-domain-plan__price .wp-plan__currency,
.unlimited-plan__price .wp-plan__currency {
    font-size: 1rem;
    font-weight: 600;
}

.pk-domain-plan__price .wp-plan__term,
.unlimited-plan__price .wp-plan__term {
    font-size: 15px;
    font-weight: 400;
    color: #2a2d38;
}

.pk-domain-plan__actions,
.unlimited-plan__actions {
    margin-top: 30px;
}

.pk-domain-plan__button,
.unlimited-plan__button {
    border-radius: 0;
}

.pk-domain-plan__features,
.unlimited-plan__features {
    margin-top: 30px;
    padding: 0;
    list-style: none;
}

.pk-domain-plan__features li,
.unlimited-plan__features li {
    padding: 0 0 12px;
    font-size: 14px;
    border: 0;
}

.pk-domain-plan__features li strong,
.unlimited-plan__features li strong {
    font-weight: 700;
}

.pk-domain-story {
    background: #fff;
}

.pk-domain-levels {
    padding: 72px 0 78px;
    background: #fff;
}

.pk-domain-levels__container {
    width: min(90%, 1280px);
}

.pk-domain-levels__intro {
    max-width: none;
    margin: 0 0 46px;
}

.pk-domain-levels__intro p + p {
    margin-top: 14px;
}

.pk-domain-levels__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 52px;
    margin-bottom: 36px;
}

.pk-domain-level-card {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 28px;
    align-items: flex-start;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.pk-domain-level-card__icon {
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 74px;
    height: 74px;
    border-radius: 0;
    background: transparent;
    color: #7f8895;
    font-size: 3.15rem;
    line-height: 1;
}

.pk-domain-level-card__copy h3 {
    margin-bottom: 12px;
    color: #1f2c3f;
    font-size: 29px;
    font-weight: 600;
    line-height: 1.2;
}

.pk-domain-level-card__copy p {
    line-height: 24px;
}

.pk-domain-level-card__example {
    margin-top: 12px;
    color: #24405e;
    font-weight: 600;
}

.pk-domain-extension-list {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.pk-domain-extension-list p {
    margin-bottom: 16px;
}

.pk-domain-extension-list ul {
    margin: 0;
    padding-left: 20px;
}

.pk-domain-extension-list li + li {
    margin-top: 10px;
}

.pk-domain-story .section-kicker {
    margin-bottom: 12px;
    color: #6d6d6d;
    font-size: 20px;
    font-weight: 600;
}

.pk-domain-story--discover {
    padding-top: 6em;
    padding-bottom: 7em;
}

.pk-domain-story--adopt {
    padding-top: 0;
    padding-bottom: 4em;
}

.pk-domain-story__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
}

.pk-domain-story__grid--reverse {
    grid-template-columns: 49.49% 50.091%;
}

.pk-domain-story__visual img {
    width: 90%;
    height: 500px;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
}

.pk-domain-story__visual--center {
    display: flex;
    justify-content: center;
}

.pk-domain-story__visual--center img {
    width: 73%;
}

.pk-domain-story__copy--padded {
    padding: 3em;
}

.pk-domain-story__copy h2,
.pk-domain-faq__heading h2,
.pk-windows-story__copy h2,
.pk-windows-alternatives__heading h2,
.unlimited-unique__copy h2 {
    color: #034083;
    font-size: 40px;
    font-weight: 600;
    line-height: 45px;
}

.pk-domain-story__copy p,
.pk-windows-story__copy p {
    line-height: 24px;
}

.pk-domain-faq {
    padding-top: 50px;
    padding-bottom: 50px;
}

.pk-windows-story {
    padding: 50px 0;
}

.pk-windows-story__grid {
    display: grid;
    grid-template-columns: 49.49% 50.091%;
    gap: 10px;
    align-items: center;
}

.pk-windows-story--reverse .pk-windows-story__grid {
    grid-template-columns: 50.091% 49.49%;
}

.pk-windows-story__copy--padded {
    padding: 3em 2em 3em 0;
}

.pk-windows-story__copy--left {
    padding: 3em 0 3em 3em;
}

.pk-windows-story__visual {
    display: flex;
    justify-content: center;
}

.pk-windows-story__visual img {
    width: 65%;
    max-width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
}

.pk-windows-alternatives {
    padding: 50px 0 0;
}

.pk-windows-alternatives__heading h2 {
    font-size: 32px;
    line-height: 1.2;
}

.pk-windows-alternatives__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.pk-windows-alt-card {
    padding: 2em;
    border: 1px solid #dbe4ef;
    border-radius: 8px;
    background: #fff;
}

.pk-windows-alt-card h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.pk-windows-alt-card__label {
    display: block;
    margin-top: 16px;
    color: #24405e;
    font-weight: 600;
}

.pk-windows-alt-card__price {
    display: block;
    margin-top: 6px;
    color: #034083;
}

.unlimited-pricing__tabs-shell {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.unlimited-pricing__tabs {
    gap: 0;
    margin-bottom: 0;
    padding: 4px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 2px 2px rgba(0,0,0,.2);
    text-transform: uppercase;
}

.unlimited-pricing__tab {
    min-width: 146px;
    padding: 14px 10px;
    border: 0;
    border-radius: 39px;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    color: #24405e;
}

.unlimited-pricing__tab.is-active {
    color: #fff;
    background: #034083;
}

.unlimited-plan-grid {
    padding-top: 16px;
}

.unlimited-plan-grid.unlimited-plan-grid--spaced {
    padding-top: 52px;
}

.unlimited-story {
    padding: 50px 0;
}

.unlimited-story__grid,
.unlimited-unique__grid {
    display: grid;
    grid-template-columns: 49.49% 50.091%;
    gap: 10px;
    align-items: center;
}

.unlimited-story__copy--left {
    padding: 3em 2em 3em 0;
}

.unlimited-story__copy--right {
    padding: 3em 0 3em 3em;
}

.unlimited-story__copy h2 {
    font-size: 40px;
    font-weight: 600;
}

.unlimited-story__visual {
    display: flex;
    justify-content: center;
}

.unlimited-story__visual--dots img,
.unlimited-unique__visual img {
    border-radius: 10px;
}

.unlimited-story--first .unlimited-story__visual img {
    width: 65%;
    max-width: 100%;
    height: 350px;
    object-fit: cover;
}

.unlimited-story--second .unlimited-story__visual img {
    width: 65%;
    max-width: 100%;
    height: 350px;
    object-fit: cover;
}

.unlimited-tech-carousel {
    margin: 50px 0;
}

.unlimited-tech-carousel__track {
    overflow: hidden;
}

.unlimited-tech-carousel__items {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    animation: unlimited-tech-scroll 28s linear infinite;
}

.unlimited-tech-carousel__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    min-height: 56px;
}

.unlimited-tech-carousel__item img {
    max-width: 100px;
    max-height: 42px;
    object-fit: contain;
}

@keyframes unlimited-tech-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.unlimited-unique {
    background: #034083;
    padding: 0;
}

.unlimited-unique__copy {
    padding: 3em 2em 3em 0;
}

.unlimited-unique__copy h2,
.unlimited-unique__copy p {
    color: #fff;
}

.unlimited-unique__visual {
    display: flex;
    justify-content: center;
}

.unlimited-unique__visual img {
    width: 74%;
    max-width: 100%;
    height: 350px;
    object-fit: cover;
}

.domain-register-hero {
    background: #034083;
}

.domain-register-hero--strict {
    padding-bottom: 34px;
}

.domain-register-hero__grid {
    display: grid;
    grid-template-columns: 65% 35%;
    align-items: center;
    min-height: 340px;
}

.domain-register-hero__content {
    padding: 2em;
}

.domain-register-hero__content h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 54px;
}

.domain-register-hero__lead {
    color: #f7f2f2;
    margin: 0;
    max-width: 760px;
}

.domain-register-hero__visual--strict {
    align-self: end;
}

.domain-register-hero__visual {
    display: flex;
    justify-content: center;
}

.domain-register-hero__visual img {
    width: 75%;
    max-width: 370px;
}

.domain-search-panel {
    padding: 0 0 30px;
}

.domain-search-panel__wrap {
    position: relative;
    z-index: 2;
}

.domain-search-panel__card {
    max-width: 1048px;
    margin: -66px auto 36px;
    padding: 10px 24px 24px;
    border: 1px solid #fff;
    border-radius: 10px;
    background: #034083;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.22);
    text-align: center;
}

.domain-search-panel__card h2,
.domain-search-panel__card p {
    color: #fff;
}

.domain-search-panel__card h2 {
    font-size: 2rem;
    font-weight: 600;
}

.domain-search-panel__card p {
    margin: 8px 0 0;
    color: #dbdbdb;
}

.domain-search-panel__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    max-width: 900px;
    margin: 18px auto 0;
}

.domain-search-panel__form input {
    min-height: 52px;
    padding: 0 16px;
    border: 0;
    border-radius: 6px;
}

.domain-guide {
    padding: 0 0 30px;
}

.domain-guide__heading h2,
.domain-addons__heading h2,
.domain-register-faq .section-heading h2 {
    color: #1e1e1e;
    font-size: 40px;
    font-weight: 600;
}

.domain-guide__heading p,
.domain-addons__heading p {
    color: #6d6d6d;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
}

.domain-guide__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.domain-guide-card {
    min-height: 179px;
    padding: 24px 22px;
    background: #f2f3f4;
}

.domain-guide-card__icon,
.domain-addon-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 15px;
    color: #034083;
    font-size: 30px;
}

.domain-guide-card h3,
.domain-addon-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
}

.domain-story {
    padding: 2em 0 1em;
}

.domain-story--reverse {
    padding: 0 0 5em;
}

.domain-story__grid {
    display: grid;
    grid-template-columns: 62.115% 37.885%;
    align-items: center;
}

.domain-story__grid--reverse {
    grid-template-columns: 1fr 1fr;
}

.domain-story__visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
}

.domain-story__visual {
    padding: 1em;
}

.domain-story__visual--domain-list img,
.domain-story__visual--extensions img,
.domain-addons__visual img {
    height: 400px;
}

.domain-story__copy {
    padding: 3em;
}

.domain-story__copy h2 {
    font-size: 26px;
    font-weight: 600;
}

.domain-story__table-shell {
    margin-top: 22px;
}

.domain-story__cta {
    margin-top: 18px;
    border-radius: 0;
}

.domain-addons {
    padding: 0;
}

.domain-addons__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 37.885%;
    gap: 0;
    padding: 0 0 50px 54px;
}

.domain-addons__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.domain-addon-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    align-items: flex-start;
}

.domain-addon-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    font-size: 28px;
}

.domain-addons__visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
}

.domain-register-faq {
    padding: 50px 0;
    background: #f6f6f6;
}

.domain-register-faq .faq-question {
    padding: 25px;
}

.reseller-hero {
    background: #034083;
}

.reseller-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    min-height: 300px;
}

.reseller-hero__content {
    padding: 2em;
}

.reseller-hero__content h1 {
    color: #fff;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.15;
}

.reseller-hero__eyebrow {
    margin-bottom: 12px;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}

.reseller-hero__lead,
.reseller-hero__subheading,
.reseller-hero__note {
    color: #f7f2f2;
}

.reseller-hero__note {
    margin-top: 14px;
    font-weight: 500;
}

.reseller-hero__visual {
    display: flex;
    justify-content: center;
    padding: 1.5rem 1rem;
}

.reseller-hero__visual img {
    max-width: 100%;
    height: auto;
}

.reseller-hero__visual--linux img {
    width: 393px;
}

.reseller-hero__visual--windows img {
    width: 70%;
}

.reseller-section {
    padding: 50px 0;
}

.reseller-section--intro {
    background: #f6f6f6;
    padding-bottom: 0;
}

.reseller-section--plans {
    background: #f6f6f6;
}

.reseller-tabs {
    justify-content: center;
    margin-top: 20px;
}

.reseller-plan-grid {
    display: grid;
    gap: 24px;
}

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

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

.reseller-plan-grid--linux-top {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 24px;
}

.reseller-plan-grid--linux-bottom {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reseller-plan {
    position: relative;
    border: 1px solid #dbe4ef;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(17, 44, 84, 0.08);
    overflow: hidden;
}

.reseller-plan__flag {
    position: relative;
    z-index: 2;
    padding: 12px 18px;
    background: #034083;
    color: #fff;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
}

.reseller-plan__body {
    padding: 28px 24px 24px;
}

.reseller-plan h3 {
    margin: 0;
    color: #1f2c3f;
    font-size: 2rem;
    text-align: center;
}

.reseller-section--plans-linux .reseller-plan h3 {
    font-size: 20px;
    line-height: 1.2;
    white-space: nowrap;
}

.reseller-plan__divider {
    width: 90%;
    height: 1px;
    margin: 18px auto 20px;
    background: #d8e1eb;
}

.reseller-plan__price-stack {
    display: grid;
    gap: 12px;
}

.reseller-plan__price-row {
    display: grid;
    gap: 6px;
}

.reseller-plan__price-row--single {
    margin-bottom: 12px;
}

.reseller-plan__label {
    color: #6d7684;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

.reseller-plan__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    color: #034083;
}

.reseller-plan__price span,
.reseller-plan__price em {
    font-style: normal;
    font-weight: 600;
}

.reseller-plan__price strong {
    font-size: 2.7rem;
    line-height: 1;
}

.reseller-plan__actions {
    display: grid;
    gap: 10px;
    margin: 22px 0;
}

.reseller-plan__actions .btn {
    border-radius: 0;
}

.reseller-plan__features {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.reseller-plan__features li {
    color: #2a2d38;
    line-height: 1.45;
}

.reseller-plan__features strong {
    color: #1f2c3f;
}

.reseller-detail-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.reseller-split {
    display: grid;
    grid-template-columns: minmax(0, 55%) minmax(0, 60%);
    align-items: start;
    gap: 20px;
}

.reseller-split__visual img {
    display: block;
    width: 92%;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.18);
}

.reseller-split__visual--sticky {
    position: sticky;
    top: 70px;
}

.reseller-split__cards {
    display: grid;
    gap: 20px;
    margin-top: 50px;
}

.reseller-detail-card {
    padding: 24px 20px;
    border: 1px solid #dbe4ef;
    background: #fff;
    box-shadow: 0 14px 30px rgba(17, 44, 84, 0.06);
    border-radius: 7px;
}

.reseller-detail-card--stacked {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.21);
}

.reseller-detail-card__row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    align-items: start;
}

.reseller-detail-card__copy h3 {
    margin: 0 0 10px;
}

.reseller-detail-card__icon {
    display: inline-flex;
    color: var(--color-accent);
    font-size: 35px;
}

.reseller-story__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 30px;
}

.reseller-story__copy h2 {
    font-size: 40px;
    line-height: 1.15;
}

.reseller-story__copy--light h2,
.reseller-story__copy--light p {
    color: #fff;
}

.reseller-story__visual img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.reseller-business {
    background: #0a0a0a;
    padding: 0;
}

.reseller-story__grid--business {
    min-height: 300px;
}

.reseller-story__grid--business .reseller-story__copy {
    padding: 3em 2em 3em 0;
}

.reseller-story__visual--business img {
    width: 95%;
    max-width: 100%;
    height: 438px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.reseller-feature-band {
    background: #f1f1f1;
    padding: 50px 0;
}

.reseller-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 20px;
    padding: 50px 0;
}

.reseller-icon-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    align-items: start;
}

.reseller-icon-box__icon {
    color: #830319;
    font-size: 30px;
}

.reseller-icon-box__content h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
}

.reseller-check-band {
    background: #f1f1f1;
    padding: 0 0 50px;
}

.reseller-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.reseller-check-panel {
    padding: 10px 18px 18px;
    background: #fff;
    border-radius: 0;
}

.reseller-check-panel__head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 10px;
}

.reseller-check-panel__icon {
    color: #383838;
    font-size: 30px;
}

.reseller-check-panel__head h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

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

.reseller-check-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
}

.reseller-check-list li::before {
    content: "\2713";
    color: #034083;
    font-weight: 700;
}

.reseller-story__grid--platforms {
    align-items: start;
}

.reseller-section--platforms {
    background: #034083;
}

.reseller-section--platforms .reseller-story__copy h2,
.reseller-section--platforms .reseller-story__copy p {
    color: #fff;
}

.reseller-platforms {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.reseller-platforms--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-self: center;
}

.reseller-platform {
    padding: 18px 12px;
    background: #fff;
    border: 1px solid #e6ebf2;
    text-align: center;
}

.reseller-platform a {
    color: inherit;
    text-decoration: none;
}

.reseller-platform img {
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.reseller-platform h3 {
    margin-top: 12px;
    font-size: 1rem;
}

.reseller-platform--dark {
    background: #034083;
    border-color: #034083;
}

.reseller-platform--dark h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

.reseller-addon-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.reseller-addon-layout {
    display: grid;
    grid-template-columns: minmax(280px, 41%) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.reseller-section--addons-linux {
    background: #f1f1f1;
    padding-top: 50px;
    padding-bottom: 50px;
}

.reseller-addon-nav {
    display: grid;
    gap: 9px;
}

.reseller-addon-nav__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px 18px 14px 35px;
    color: #034083;
    background: #fff;
    border: 1px solid #034083;
    text-align: left;
    cursor: pointer;
}

.reseller-addon-nav__item img {
    width: 46px;
    height: 43px;
    object-fit: contain;
}

.reseller-addon-nav__item.is-active {
    color: #fff;
    background: #034083;
}

.reseller-addon-content {
    min-width: 0;
}

.reseller-addon-panel {
    padding: 20px;
    color: #656565;
    background: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 12px;
}

.reseller-addon-panel h3 {
    margin: 0 0 14px;
    color: #034083;
    font-size: 1.5rem;
    font-weight: 600;
}

.reseller-addon-panel__image {
    display: block;
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 18px auto 0;
}

.reseller-addon-card {
    padding: 24px;
    border: 1px solid #dbe4ef;
    background: #fff;
    box-shadow: 0 14px 30px rgba(17, 44, 84, 0.06);
}

.reseller-addon-card__head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 14px;
}

.reseller-addon-card__head img {
    width: 50px;
    height: 48px;
    object-fit: contain;
}

.reseller-addon-card__image {
    display: block;
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 18px auto 0;
}

.reseller-story__visual--migration img {
    width: 65%;
    max-width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
}

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

.wp-feature-card {
    padding: 24px 20px;
    background: #fff;
    border: 1px solid #dbe4ef;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(17, 44, 84, 0.06);
    text-align: center;
}

.wp-detail-grid {
    display: grid;
    gap: var(--space-4);
}

.wp-detail-card {
    padding: 26px 22px;
    background: #fff;
    border: 1px solid #dbe4ef;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(17, 44, 84, 0.07);
    text-align: center;
}

.wp-detail-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: #edf4fb;
    color: var(--color-primary);
    font-size: 1.45rem;
}

.wp-feature-card__icon,
.wp-alternative-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 14px;
    background: #eef4fb;
    font-size: 1.8rem;
}

.wp-feature-card h3 {
    margin-bottom: 0;
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.45;
}

.wp-detail-card h3 {
    margin-bottom: 10px;
}

.wp-detail-card p,
.wp-feature-card p {
    margin-bottom: 0;
    color: #607086;
    font-size: 0.94rem;
    line-height: 1.75;
}

.strict-plan-group + .strict-plan-group {
    margin-top: 54px;
}

.strict-plan-grid {
    padding-top: 0;
}

.strict-plan__subtitle {
    margin: -2px 0 14px;
    color: #607086;
    font-size: 0.92rem;
    font-weight: 600;
}

.comparison-table-shell {
    overflow-x: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.comparison-table-shell table {
    width: 100%;
    min-width: 1460px;
    border-collapse: collapse;
    background: #fff;
}

.comparison-table-shell th,
.comparison-table-shell td {
    padding: 14px 12px;
    border: 1px solid #d6d6d6;
    vertical-align: middle;
    text-align: center;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
}

.comparison-table-shell th {
    background: #2c79bd;
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
}

.comparison-table-shell td:first-child,
.comparison-table-shell th:first-child {
    min-width: 192px;
}

.comparison-table-shell th:first-child {
    text-align: left;
}

.comparison-table-shell tbody td:first-child {
    text-align: center;
}

.comparison-table-shell tbody tr:nth-child(odd) td {
    background: #fff;
}

.comparison-table-shell tr:nth-child(even) td {
    background: #ececec;
}

.comparison-table-shell tr.is-highlighted td {
    color: #111;
    font-weight: 600;
}

.comparison-table__muted {
    color: #9aa5b4;
}

.comparison-table__company-name,
.comparison-table__company-link {
    font-size: 15px;
    font-weight: 700;
}

.comparison-table__company-stack {
    display: grid;
    gap: 4px;
    justify-items: center;
}

.comparison-table__company-meta {
    color: #111;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.comparison-table__company-link {
    color: #4e8fe8;
    text-decoration: underline;
}

.comparison-table-shell tr.is-highlighted .comparison-table__company-link,
.comparison-table-shell tr.is-highlighted .comparison-table__company-name {
    color: #4e8fe8;
}

.comparison-table__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
}

.comparison-table__status-note {
    display: inline-block;
    max-width: 84px;
    color: #9d9d9d;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.comparison-table__subnote {
    display: inline-block;
    margin-top: 4px;
    color: #444;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
}

.comparison-table__empty {
    display: inline-block;
    min-width: 10px;
}

.comparison-table-shell .is-yes {
    color: #4f850f;
    font-weight: 900;
}

.comparison-table-shell .is-no {
    color: #d10f26;
    font-weight: 900;
}

.wp-plan__price-stack {
    display: grid;
    gap: 10px;
    margin: 0 0 18px;
}

.wp-plan__price-row {
    display: grid;
    gap: 8px;
    padding: 12px 14px;
    border: 1px solid #dbe4ef;
    border-radius: 14px;
    background: #f8fbff;
    text-align: left;
}

.wp-plan__price-label {
    color: #4e6078;
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.wp-plan__price-row .wp-plan__price {
    justify-content: flex-start;
    margin-bottom: 0;
}

.wp-plan__price-row .wp-plan__currency,
.wp-plan__price-row .wp-plan__term {
    padding-bottom: 0;
}

.wp-plan__price-row .wp-plan__price strong {
    font-size: 1.8rem;
}

.wp-plan__actions {
    display: grid;
    gap: 10px;
    margin: 0 0 18px;
}

.wp-plan__actions .btn {
    width: 100%;
}

.faq-question {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.faq-question::before {
    content: "+";
    flex: 0 0 auto;
    color: var(--color-primary);
    font-size: 1.35rem;
    line-height: 1;
}

.faq-item.is-open .faq-question::before {
    content: "-";
}

.faq-answer ul {
    margin-top: 12px;
    padding-left: 20px;
}

.faq-answer li + li {
    margin-top: 8px;
}

.wp-alternative-card {
    padding: 28px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dbe4ef;
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(17, 44, 84, 0.07);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.wp-alternative-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #124d91, #4c88d1);
}

.wp-alternative-card:hover {
    transform: translateY(-4px);
    border-color: #bfd0e5;
    box-shadow: 0 20px 38px rgba(17, 44, 84, 0.11);
}

.wp-alternative-card__accent {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #edf4fb;
    color: #4a6482;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wp-alternative-card__label {
    display: block;
    margin-top: 12px;
    color: #607086;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wp-alternative-card__price {
    display: block;
    margin-top: 8px;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.wp-alternative-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--color-primary);
    font-weight: 700;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.reviews-carousel__control {
    width: 42px;
    height: 42px;
    border: 1px solid #cdd8e6;
    border-radius: 999px;
    background: #fff;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.reviews-carousel__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.reviews-carousel__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: var(--space-4);
}

.reviews-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.reviews-carousel__slide {
    min-height: 100%;
}

.vps-hero {
    padding: 32px 0 38px;
    background: #034083;
}

.vps-hero__grid {
    display: grid;
    align-items: center;
    gap: 28px;
    min-height: 300px;
}

.vps-hero__content {
    padding: 2em;
}

.vps-hero__content h1,
.vps-hero__content h2,
.vps-hero__content p {
    color: #fff;
}

.vps-hero__content h1 {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.15;
}

.vps-hero__content h2 {
    margin-top: 0;
    font-size: 24px;
    font-weight: 600;
}

.vps-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.vps-hero__visual img {
    display: block;
    max-width: 100%;
    height: auto;
}

.vps-hero__visual--linux img {
    width: 500px;
}

.vps-hero__visual--dedicated img {
    width: 607px;
}

.vps-hero__visual--windows {
    position: relative;
    min-height: 340px;
}

.vps-hero__image-main {
    width: 430px;
}

.vps-hero__image-side {
    position: absolute;
    right: 34px;
    bottom: 28px;
    width: 160px;
    border-radius: 12px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.vps-intro {
    padding: 50px 0;
    background: #f6f6f6;
}

.vps-intro .section-heading h2 {
    font-size: 34px;
    font-weight: 600;
}

.vps-intro__subheading {
    margin: 0;
    color: #2a2d38;
    font-size: 1rem;
    font-weight: 500;
}

.vps-switcher {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding-top: 22px;
}

.vps-switcher__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    background: #034083;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(3, 64, 131, 0.14);
}

.vps-switcher__link i {
    font-size: 1rem;
}

.vps-plan-section,
.dedicated-plan-section {
    padding: 20px 0 40px;
}

.vps-plan-section--managed {
    background: #f8fafc;
}

.vps-plan-grid--five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.vps-plan-card {
    text-align: left;
}

.vps-plan-card h3,
.dedicated-plan-card h3 {
    font-size: 1.45rem;
}

.dedicated-live-hero {
    background: #034083;
}

.dedicated-live-hero__grid {
    min-height: 300px;
    display: grid;
    grid-template-columns: 65% 35%;
    align-items: center;
}

.dedicated-live-hero__content {
    padding: 2em;
}

.dedicated-live-hero__content h1,
.dedicated-live-hero__content p {
    color: #fff;
}

.dedicated-live-hero__content h1 {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.05;
}

.dedicated-live-hero__content p {
    max-width: 760px;
    color: #f7f2f2;
}

.dedicated-live-hero__visual img {
    width: 100%;
    max-width: 607px;
    margin: 0 auto;
}

.dedicated-live-intro {
    margin-top: 50px;
}

.dedicated-live-intro__heading h2,
.dedicated-live-band__heading h2,
.dedicated-pricing-section__heading h2,
.dedicated-specs__heading h2,
.dedicated-support__heading h2,
.dedicated-why__heading h2 {
    font-size: 40px;
    font-weight: 600;
}

.dedicated-live-intro__heading h6,
.dedicated-pricing-section__heading h6,
.dedicated-specs__heading p,
.dedicated-why__copy p {
    color: #6d6d6d;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
}

.dedicated-live-intro__heading h6 {
    max-width: 1000px;
    margin: 0 auto;
}

.dedicated-live-location-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 24px;
}

.dedicated-live-location-links__item,
.dedicated-live-group-links__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 0;
    text-align: center;
}

.dedicated-live-location-links__item {
    background: #0c2c6c;
}

.dedicated-live-group-links__item {
    background: #f3582a;
}

.dedicated-live-band,
.dedicated-pricing-section {
    background: #ededed;
}

.dedicated-live-band {
    margin-top: 50px;
    padding-top: 30px;
    padding-bottom: 50px;
}

.dedicated-live-band + .dedicated-pricing-section {
    margin-top: 0;
    padding-top: 0;
}

.dedicated-live-group-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 20px 0 0;
}

.dedicated-pricing-section {
    padding: 0 0 50px;
}

.dedicated-pricing-section__heading {
    text-align: left;
}

.dedicated-pricing-section__heading h2 {
    color: #1e1e1e;
}

.dedicated-cycle-tabs {
    display: inline-flex;
    gap: 0;
    margin: 10px auto 33px;
    padding: 4px;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.dedicated-cycle-tabs__button {
    min-width: 146px;
    padding: 14px 10px;
    border: 0;
    background: transparent;
    border-radius: 39px;
    color: #2a2d38;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

.dedicated-cycle-tabs__button.is-active {
    color: #fff;
    background: #ffcb08;
}

.dedicated-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.dedicated-plan-card {
    padding: 20px;
    background: #fff;
    text-align: left;
}

.dedicated-plan-card__title h3 {
    margin: 0 0 10px;
    color: #3a679d;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.dedicated-plan-card__price {
    margin-bottom: 18px;
}

.dedicated-plan-card__price-block {
    display: none;
    color: #d05b00;
    font-size: 48px;
    font-weight: 700;
}

.dedicated-plan-card__price-block.is-active {
    display: block;
}

.dedicated-plan-card__currency,
.dedicated-plan-card__term {
    font-size: 16px;
}

.dedicated-plan-card__features {
    margin: 0 0 20px;
    padding: 0 0 20px;
    list-style: none;
    border-bottom: 4px solid #e1e9f1;
}

.dedicated-plan-card__features li {
    margin-bottom: 4px;
    color: #2a2d38;
    font-size: 14px;
    line-height: 20px;
}

.dedicated-plan-card__features strong {
    font-weight: 700;
}

.dedicated-plan-card__buy {
    width: 100%;
    padding: 20px;
    border-radius: 0;
    background: #0ecad4;
    border-color: #0ecad4;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.dedicated-plan-card__buy:hover {
    background: #002838;
    border-color: #002838;
}

.vps-story {
    padding: 50px 0;
}

.vps-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 30px;
    align-items: center;
}

.vps-story__visual img {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
}

.vps-story__copy h2 {
    font-size: 40px;
    line-height: 1.15;
}

.vps-reasons {
    padding: 50px 0;
}

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

.vps-reason-card,
.vps-feature-card {
    text-align: center;
}

.vps-reason-card img,
.vps-feature-card img {
    width: 82px;
    height: 82px;
    margin: 0 auto 14px;
    object-fit: contain;
}

.vps-story-list {
    display: grid;
    gap: 22px;
}

.vps-story-row {
    display: grid;
    grid-template-columns: minmax(260px, 0.46fr) minmax(0, 0.54fr);
    gap: 26px;
    align-items: center;
}

.vps-story-row--reverse .vps-story-row__visual {
    order: 2;
}

.vps-story-row--reverse .vps-story-row__copy {
    order: 1;
}

.vps-story-row__visual img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

.vps-story-row__copy h3 {
    margin-bottom: 10px;
    font-size: 26px;
}

.vps-feature-band {
    padding: 50px 0;
    background: #f1f1f1;
}

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

.vps-includes {
    padding: 50px 0;
}

.vps-includes__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.vps-includes__visual img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

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

.vps-checklist li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
}

.vps-checklist li::before {
    content: "\2713";
    color: #034083;
    font-weight: 700;
}

.dedicated-specs {
    padding: 50px 0;
    background: #fff;
}

.dedicated-spec-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.dedicated-spec-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    padding: 22px 20px;
    background: #f2f3f4;
    border: 1px solid #dbe4ef;
    border-radius: 10px;
    box-shadow: 0 14px 30px rgba(17, 44, 84, 0.06);
}

.dedicated-spec-card__icon {
    color: #034083;
    font-size: 1.35rem;
}

.dedicated-spec-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
}

.dedicated-spec-card p {
    margin: 0;
    color: #2a2d38;
    font-size: 15px;
    line-height: 1.7;
}

.dedicated-support {
    padding: 50px 0;
    background: #fff;
}

.dedicated-support__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 28px;
    align-items: center;
}

.dedicated-support__visual img {
    width: 100%;
    max-width: 446px;
    margin: 0 auto;
}

.dedicated-support__list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.dedicated-support__list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
    font-size: 18px;
}

.dedicated-support__list i {
    color: #292929;
    font-size: 20px;
}

.dedicated-why {
    margin-top: 50px;
    padding: 2em 0;
    background: linear-gradient(180deg, #f8fafa 0%, rgba(248, 250, 250, 0.8) 100%);
}

.dedicated-why__copy {
    max-width: 1040px;
    margin: 0 auto;
}

.dedicated-faq {
    padding-top: 50px;
    background: #fff;
}

.comparison-hero {
    padding: 32px 0 42px;
    background: #034083;
}

.comparison-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 28px;
    align-items: center;
    min-height: 300px;
}

.comparison-hero__content {
    padding: 2em;
}

.comparison-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.comparison-hero__eyebrow i {
    color: #fff;
    font-size: 17px;
}

.comparison-hero__content h1,
.comparison-hero__content h2 {
    color: #fff;
}

.comparison-hero__content h1 {
    margin: 0 0 16px;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.05;
}

.comparison-hero__content h2 {
    margin: 0;
    max-width: 720px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.45;
}

.comparison-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.comparison-hero__visual img {
    width: 100%;
    margin: 0 auto;
}

.comparison-hero--top .comparison-hero__visual img {
    max-width: 847px;
}

.comparison-hero--reseller .comparison-hero__visual img {
    max-width: 620px;
}

.comparison-hero--vps .comparison-hero__visual img {
    max-width: 430px;
}

.comparison-intro {
    background: #62676f;
}

.comparison-intro__container {
    max-width: 1380px;
    padding-top: 74px;
    padding-bottom: 88px;
}

.comparison-intro__container p {
    margin: 0;
    color: #fff;
    font-size: clamp(32px, 2.65vw, 40px);
    font-weight: 400;
    line-height: 1.42;
    text-align: center;
}

.comparison-lead {
    padding: 50px 0 22px;
    background: #fff;
}

.comparison-lead__heading h2 {
    margin-bottom: 10px;
}

.comparison-lead__heading p {
    max-width: 980px;
    margin: 0 auto;
}

.comparison-reasons {
    padding: 0 0 50px;
    background: #fff;
}

.comparison-reasons__stack {
    display: grid;
    gap: 22px;
}

.comparison-reason-row {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 28px 30px;
    background: #f7f8fa;
    border-radius: 10px;
}

.comparison-reason-row__number {
    color: #1e1e1e;
    font-size: 52px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}

.comparison-reason-row__body h3 {
    margin: 0 0 10px;
    color: #23252b;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.22;
}

.comparison-reason-row__body p {
    margin: 0;
    color: #2a2d38;
    font-size: 17px;
    line-height: 1.75;
}

.comparison-reason-row__note {
    margin-top: 12px !important;
    color: #a46b00 !important;
    font-weight: 700;
}

.comparison-section {
    padding: 50px 0;
}

.comparison-section--table {
    background: #f8fafc;
}

.comparison-section--table > .container {
    width: min(1500px, calc(100% - 20px));
    max-width: none;
}

.comparison-close {
    padding: 50px 0;
    background: #fff;
}

.comparison-close__container {
    max-width: 1080px;
}

.comparison-close__sales,
.comparison-close__disclaimer p {
    color: #2a2d38;
    font-size: 16px;
    line-height: 1.8;
}

.comparison-close__sales {
    margin: 0 0 22px;
}

.comparison-close__disclaimer p:first-child {
    margin-bottom: 6px;
}

.vps-live-hero {
    background: #034083;
}

.vps-live-hero__grid {
    min-height: 300px;
    display: grid;
    grid-template-columns: 65% 35%;
    align-items: center;
}

.vps-live-hero__content {
    padding: 2em;
}

.vps-live-hero__content h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.15;
}

.vps-live-hero__content p {
    margin: 0 0 12px;
    color: #f7f2f2;
}

.vps-live-hero__visual {
    display: flex;
    justify-content: center;
}

.vps-live-hero__visual img {
    width: 74%;
    height: auto;
}

.vps-live-intro {
    background: #ededed;
    padding: 50px 0;
}

.vps-live-intro__heading h2 {
    margin-bottom: 10px;
    font-size: 34px;
}

.vps-live-intro__heading h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
}

.vps-live-switcher {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.vps-live-switcher__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 12px 16px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 8px 18px rgba(17, 44, 84, 0.08);
}

.vps-live-switcher__link i {
    color: inherit;
    font-size: 1rem;
}

.vps-live-switcher__link.is-amber {
    background: #efad1f;
}

.vps-live-switcher__link.is-orange {
    background: #e28d12;
}

.vps-live-switcher__link.is-burnt {
    background: #d97706;
}

.vps-live-switcher__link.is-copper {
    background: #c76d08;
}

.vps-live-group {
    padding: 50px 0;
}

.vps-live-group__heading h2 {
    margin-bottom: 10px;
}

.vps-live-group__subtitle {
    max-width: 980px;
    margin: 0 auto;
    color: #2a2d38;
}

.vps-live-group__subtitle strong {
    font-weight: 700;
}

.vps-live-tabs {
    width: fit-content;
    margin: 28px auto 26px;
    padding: 4px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.vps-live-tabs__button {
    min-width: 146px;
    padding: 14px 10px;
    border: 0;
    border-radius: 39px;
    background: transparent;
    color: #2a2d38;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 14px;
}

.vps-live-tabs__button.is-active {
    background: #034083;
    color: #fff;
}

.vps-live-list {
    display: grid;
    gap: 20px;
}

.vps-live-row {
    background: #ededed;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(17, 44, 84, 0.05);
}

.vps-live-row__summary {
    display: grid;
    grid-template-columns: 22% 20% 38% 20%;
    align-items: center;
    padding: 20px 28px 20px 20px;
    gap: 14px;
}

.vps-live-row__name h3 {
    margin: 0;
    padding: 5px;
    background: #ededed;
    border: 2px solid #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
}

.vps-live-row__price {
    text-align: left;
}

.vps-live-row__price-block {
    display: none;
    font-weight: 700;
}

.vps-live-row__price-block.is-active {
    display: block;
}

.vps-live-row__currency {
    font-size: 18px;
}

.vps-live-row__amount {
    font-size: 26px;
}

.vps-live-row__term {
    font-size: 10px;
}

.vps-live-row__features ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vps-live-row__features li {
    width: 32%;
    padding: 0 12px 0 0;
    color: #2a2d38;
    font-size: 15px;
    vertical-align: top;
}

.vps-live-row__actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    align-items: flex-end;
    padding-right: 6px;
}

.vps-live-row__buy {
    min-height: 40px;
    width: 138px;
    max-width: 100%;
    padding: 6px 18px 6px 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.vps-live-row__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
    border: 0;
    background: transparent;
    color: #2a2d38;
    font-size: 13px;
}

.vps-live-row.is-open .vps-live-row__toggle svg {
    transform: rotate(90deg);
}

.vps-live-row__details {
    background: #ededed;
    border-top: 2px solid #ededed;
    padding: 20px;
}

.vps-live-row__details-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 20px;
}

.vps-live-row__detail-item {
    font-size: 1rem;
}

.vps-live-story {
    padding: 50px 0;
}

.vps-live-story__grid {
    display: grid;
    grid-template-columns: 50.091% 49.49%;
    align-items: center;
    gap: 10px;
}

.vps-live-story__visual {
    display: flex;
    justify-content: center;
}

.vps-live-story__visual-frame {
    width: 100%;
    background-image: url("../images/strict/linux-vps/bg-dot-b.png");
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 150px auto;
}

.vps-live-story__visual img {
    width: 74%;
    max-width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.vps-live-story__copy {
    padding: 3em 2em 3em 0;
}

.vps-live-story__copy h6 {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 400;
}

.vps-live-story__copy h2 {
    margin-bottom: 14px;
    font-size: 40px;
}

.vps-live-managed {
    background: #f8fafa;
}

.vps-live-managed__heading h2 {
    margin-bottom: 0;
}

.vps-live-managed__rows {
    display: grid;
    gap: 24px;
    margin-top: 24px;
}

.vps-live-managed__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 32px;
}

.vps-live-managed__row.is-reverse .vps-live-managed__copy {
    order: 2;
}

.vps-live-managed__row.is-reverse .vps-live-managed__visual {
    order: 1;
}

.vps-live-managed__copy h3 {
    margin-bottom: 12px;
    color: #034083;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.15;
}

.vps-live-managed__visual {
    display: flex;
    justify-content: center;
}

.vps-live-managed__visual img {
    max-width: 82%;
    height: auto;
}

.vps-live-scripts__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.vps-live-script-card {
    padding: 18px 14px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(17, 44, 84, 0.08);
    text-align: center;
}

.vps-live-script-card img {
    width: 138px;
    height: 142px;
    object-fit: cover;
}

.vps-live-script-card h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
}

.vps-live-reasons {
    background: #f6f6f6;
}

.vps-live-reasons__heading h2 {
    margin-bottom: 0;
    color: #034083;
}

.vps-live-reasons__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.vps-live-reason-card {
    margin: 10px;
    padding: 2em;
    border-radius: 10px;
}

.vps-live-reason-card.is-blue {
    background: #c6e1ea;
}

.vps-live-reason-card.is-green {
    background: #e6ffc7;
}

.vps-live-reason-card.is-orange {
    background: #ffd89f;
}

.vps-live-switcher--two {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.windows-vps-hero__grid {
    grid-template-columns: 60% 39.959%;
}

.windows-vps-hero__content h1 {
    margin-bottom: 10px;
    font-size: 38px;
    font-weight: 700;
}

.windows-vps-hero__content h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.1;
}

.windows-vps-hero__visual {
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.windows-vps-hero__main {
    width: 69% !important;
}

.windows-vps-hero__badge {
    width: 65% !important;
}

.windows-vps-intro .vps-live-intro__heading h2 {
    color: #034083;
    font-size: 40px;
    font-weight: 600;
}

.windows-vps-intro .vps-live-intro__heading h6 {
    color: #6d6d6d;
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
}

.windows-vps-story .vps-live-story__visual img {
    width: 55%;
    height: 337px;
}

.windows-vps-story__copy {
    padding: 3em 0 3em 3em;
}

.windows-vps-story__copy h6 {
    color: #6d6d6d;
    font-size: 18px;
    font-weight: 600;
}

.windows-vps-story__copy h2 {
    font-size: 40px;
    font-weight: 600;
}

.windows-vps-managed {
    padding: 50px 0;
}

.windows-vps-managed__heading h2:first-child {
    margin-bottom: 0;
    color: #323232;
    font-size: 40px;
    font-weight: 600;
}

.windows-vps-managed__heading h2:last-child {
    margin-bottom: 0;
    color: #034083;
    font-size: 36px;
    font-weight: 600;
}

.windows-vps-managed__rows {
    margin-top: 24px;
}

.windows-vps-managed__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 10px;
}

.windows-vps-managed__row + .windows-vps-managed__row {
    margin-top: 10px;
}

.windows-vps-managed__row.is-reverse .windows-vps-managed__copy {
    order: 2;
}

.windows-vps-managed__row.is-reverse .windows-vps-managed__visual {
    order: 1;
}

.windows-vps-managed__copy {
    padding: 3em 0 3em 3em;
}

.windows-vps-managed__copy h3 {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
}

.windows-vps-managed__copy p {
    margin: 0;
    font-size: 16px;
}

.windows-vps-managed__visual {
    display: flex;
    justify-content: center;
}

.windows-vps-managed__visual-frame {
    width: 100%;
    background-image: url("../images/strict/linux-vps/bg-dot-b.png");
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 150px auto;
}

.windows-vps-managed__visual img {
    max-width: 100%;
    object-fit: cover;
    object-position: center;
}

.windows-vps-managed__row:nth-child(1) .windows-vps-managed__visual img {
    width: 65%;
    height: 350px;
}

.windows-vps-managed__row:nth-child(2) .windows-vps-managed__visual img {
    width: 65%;
    height: 350px;
}

.windows-vps-managed__row:nth-child(3) .windows-vps-managed__visual img {
    width: 65%;
    height: 350px;
}

.windows-vps-managed__row:nth-child(4) .windows-vps-managed__visual img {
    width: 62%;
    height: 345px;
}

.windows-vps-feature-intro {
    padding: 50px 0 30px;
    background: #f6f6f6;
}

.windows-vps-feature-intro__heading {
    max-width: 80%;
    margin: 0 auto;
}

.windows-vps-feature-intro__heading h2 {
    margin-bottom: 8px;
    color: #f3582a;
    font-size: 44px;
    font-weight: 600;
}

.windows-vps-feature-intro__heading h6 {
    margin: 0 auto;
    max-width: 920px;
    color: #6d6d6d;
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
}

.windows-vps-feature-grid {
    padding: 0 0 30px;
    background: #f6f6f6;
}

.windows-vps-feature-grid__items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 18px;
}

.windows-vps-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.windows-vps-feature-card img {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    object-fit: contain;
}

.windows-vps-feature-card__copy h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
}

.windows-vps-feature-card__copy p {
    margin: 0;
    font-size: 16px;
}

.windows-vps-includes-heading {
    padding: 20px 0 0;
}

.windows-vps-includes-heading h2 {
    font-size: 40px;
    font-weight: 600;
}

.windows-vps-includes {
    padding: 24px 0 50px;
    background: #e7f7ff;
}

.windows-vps-includes__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 24px;
}

.windows-vps-includes__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.windows-vps-includes__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
}

.windows-vps-includes__list li + li {
    margin-top: 9px;
}

.windows-vps-includes__list i {
    margin-top: 3px;
    color: #034083;
    font-size: 14px;
}

.windows-vps-includes__visual {
    display: flex;
    justify-content: center;
}

.windows-vps-includes__visual img {
    width: 400px;
    max-width: 100%;
    height: auto;
}

.windows-vps-faq {
    background: #f6f6f6;
}

.vps-live-reason-card.is-violet {
    background: #ead6ff;
}

.vps-live-reason-card img {
    width: 172px;
    height: 153px;
    object-fit: contain;
}

.vps-live-reason-card h3 {
    margin: 10px 0;
    font-size: 22px;
    font-weight: 600;
}

.vps-live-reason-card p {
    color: #414141;
    font-size: 16px;
    font-weight: 600;
}

.domain-matrix-page {
    padding: 50px 0;
    background: #f6f6f6;
}

.domain-matrix-page--light {
    background: #fff;
}

.domain-matrix-intro {
    max-width: 980px;
    margin: 0 auto 24px;
    text-align: center;
}

.domain-matrix-shell {
    padding: 24px;
    background: #fff;
    border: 1px solid #dde6f1;
    border-radius: 12px;
    box-shadow: 0 16px 36px rgba(17, 44, 84, 0.08);
    overflow-x: auto;
}

.domain-matrix-shell .whmpress_price_matrix_header {
    display: grid;
    gap: 18px;
    margin-bottom: 20px;
}

.domain-matrix-shell .whmp_domain_search_container,
.domain-matrix-shell .whmp_domain_special_toggle_container,
.domain-matrix-shell .whmp_domain_type_toggle_container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.domain-matrix-shell label {
    margin: 0;
    color: #2a2d38;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.domain-matrix-shell input[type="search"] {
    min-height: 44px;
    min-width: 220px;
    padding: 0 14px;
    border: 1px solid #d4dfed;
    border-radius: 8px;
}

.domain-matrix-shell .whmp_domain_special_toggle,
.domain-matrix-shell .whmp_domain_type_toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid #d6dfeb;
    border-radius: 999px;
    background: #f7f9fc;
    color: #173a5d;
    font-size: 13px;
    font-weight: 700;
    cursor: default;
}

.domain-matrix-shell .whmpress table,
.domain-matrix-shell table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
}

.domain-matrix-shell th,
.domain-matrix-shell td {
    padding: 12px 14px;
    border: 1px solid #e1e8f1;
    color: #2a2d38;
    font-size: 14px;
    line-height: 1.5;
}

.domain-matrix-shell th {
    background: #0f4a89;
    color: #fff;
    font-weight: 700;
}

.domain-matrix-shell tr:nth-child(even) td {
    background: #f8fbff;
}

.domain-reseller-brand,
.domain-reseller-features,
.domain-reseller-addons {
    padding: 50px 0;
}

.domain-reseller-brand__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
    gap: 30px;
    align-items: center;
}

.domain-reseller-brand__copy h2 + p {
    margin-bottom: 18px;
}

.domain-reseller-brand__visual {
    display: flex;
    justify-content: center;
}

.domain-reseller-brand__visual img {
    width: min(100%, 380px);
    height: auto;
}

.domain-reseller-features {
    background: #f6f6f6;
}

.domain-reseller-features__grid,
.domain-reseller-addons__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.domain-reseller-feature-card,
.domain-reseller-addon-card {
    padding: 24px 20px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #dde6f1;
    box-shadow: 0 14px 30px rgba(17, 44, 84, 0.06);
}

.domain-reseller-feature-card__icon {
    display: inline-flex;
    margin-bottom: 14px;
    color: #034083;
    font-size: 1.55rem;
}

.domain-reseller-feature-card h3,
.domain-reseller-addon-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.3;
}

.domain-reseller-addons__cta {
    margin-top: 28px;
    text-align: center;
}

.seo-live-hero {
    padding: 0;
    background: #034083;
}

.seo-live-hero .comparison-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    min-height: 300px;
}

.seo-live-hero .comparison-hero__content {
    padding: 3em;
}

.seo-live-hero .comparison-hero__content h1 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 35px;
    font-weight: 700;
    line-height: 42px;
}

.seo-live-hero__summary {
    margin: 0;
    color: #f7f2f2;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
}

.seo-live-hero .comparison-hero__visual {
    padding: 0;
}

.seo-live-hero .comparison-hero__visual img {
    width: 80%;
    max-width: 100%;
}

.seo-live-hero__actions {
    margin-top: 26px;
}

.seo-live-hero__actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 0;
    background: #fc7464;
    color: #fff;
}

.seo-live-pricing,
.seo-live-process,
.seo-live-points,
.seo-live-story,
.seo-live-guarantee {
    padding: 50px 0 0;
}

.seo-live-pricing {
    background: #fff;
}

.seo-live-pricing > .container,
.seo-live-process > .container,
.seo-live-points > .container,
.seo-live-story > .container,
.seo-live-guarantee > .container,
.seo-live-cta > .container,
.seo-live-form-section > .container {
    max-width: 1180px;
}

.seo-live-pricing > .container {
    width: calc(100% - 24px);
    max-width: none;
}

.seo-live-pricing .section-heading--center,
.seo-live-process .section-heading--center,
.seo-live-points .section-heading--center,
.seo-live-cta .section-heading--center {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.seo-live-pricing .section-heading--center h2,
.seo-live-process .section-heading--center h2 {
    color: #034083;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
}

.seo-live-pricing .section-heading--center p,
.seo-live-points .section-heading--center p {
    margin: 0;
    color: #2a2d38;
    font-size: 18px;
    line-height: 1.6;
}

.seo-live-pricing__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
    margin-top: 18px;
}

.seo-live-pricing__card .whmpress.whmpress_pricing_table.webworldcenter.normal {
    background: #fff;
    height: 100%;
    padding: 2.25rem;
    border-radius: 8px;
    margin: 3rem 0 0.5rem;
    box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.125);
}

.seo-live-pricing__card .pricing_table_heading h2 {
    margin: 0 0 12px;
    color: #23252b;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
}

.seo-live-pricing__card .pricing_table_heading .holder::after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    margin-top: 12px;
    background: #034083;
}

.seo-live-pricing__card .pricing_table_price {
    margin: 18px 0;
    color: #21267b;
}

.seo-live-pricing__card .currency {
    font-size: 20px;
    font-weight: 700;
}

.seo-live-pricing__card .amount {
    font-size: 35px;
    font-weight: 700;
}

.seo-live-pricing__card .duration {
    color: #2a2d38;
    font-size: 15px;
    font-weight: 500;
}

.seo-live-pricing__card .pricing_table_submit .whmpress_order_button {
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 0;
    background: #13357f;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 15px 30px;
}

.seo-live-pricing__card ul {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.seo-live-pricing__card li {
    padding-bottom: 12px;
    color: #2a2d38;
    font-size: 14px;
    line-height: 1.55;
}

.seo-live-process {
    padding-bottom: 50px;
}

.seo-live-process__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 28px;
    padding-top: 26px;
}

.seo-live-process__card {
    display: grid;
    grid-template-columns: 24px 1fr;
    column-gap: 12px;
    row-gap: 6px;
    min-height: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.seo-live-process__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    min-width: 24px;
    height: 24px;
    margin: 0;
    border-radius: 0;
    background: transparent;
    color: #034083;
    color: #2a2d38;
    font-size: 28px;
    line-height: 1;
}

.seo-live-process__title {
    margin: 0;
    color: #2a2d38;
    font-size: 23px;
    font-weight: 600;
    line-height: 28px;
}

.seo-live-process__text {
    grid-column: 2;
    margin: 0;
    color: #2a2d38;
    font-size: 15px;
    line-height: 1.6;
}

.seo-live-points {
    padding-top: 50px;
    background: #034083;
}

.seo-live-points .section-heading--center h2,
.seo-live-points .section-heading--center p {
    color: #fff;
}

.seo-live-points .section-heading--center h2 {
    font-size: 40px;
    font-weight: 600;
}

.seo-live-points__cards {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding: 5%;
    overflow: visible;
}

.seo-live-points__cards::before {
    content: "";
    position: absolute;
    inset: 5% 0 0;
    background: url("../images/strict/seo-service/Illustration-2.png") top center / contain no-repeat;
    opacity: 0.23;
    pointer-events: none;
}

.seo-live-point {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0;
    min-height: 0;
    padding: 3%;
    border: 1px solid #f0f0f0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.seo-live-point strong {
    display: block;
    margin-bottom: 8px;
    color: #f0f0f0;
    font-size: clamp(48px, 6.2vw, 88px);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.28px;
}

.seo-live-point h3 {
    margin: 0 0 12px;
    color: #f0f0f0;
    font-size: clamp(24px, 2.2vw, 34px);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.28px;
}

.seo-live-point p {
    margin: 0;
    color: #f0f0f0;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 1px;
}

.seo-live-story {
    padding: 64px 0 54px;
    background: #fff;
}

.seo-live-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    gap: 70px;
    align-items: center;
}

.seo-live-points__visual {
    display: flex;
    justify-content: center;
    order: 2;
}

.seo-live-points__visual img {
    width: min(100%, 520px);
    height: auto;
}

.seo-live-story__content {
    order: 1;
}

.seo-live-story__container {
    max-width: 1080px;
}

.seo-live-story h3 {
    max-width: 560px;
    margin: 0 0 18px;
    color: #034083;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.32;
}

.seo-live-story__content p {
    margin: 0 0 22px;
    color: #2a2d38;
    font-size: 18px;
    line-height: 1.5;
}

.seo-live-story__content strong a {
    color: #d7356d;
}

.seo-live-story__list,
.seo-live-guarantee__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.seo-live-story__list {
    display: grid;
    gap: 3px;
    margin-top: 30px;
}

.seo-live-story__list li,
.seo-live-story__note,
.seo-live-guarantee__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.seo-live-story__list i {
    margin-top: 7px;
    color: #2a2d38;
    font-size: 16px;
}

.seo-live-story__notes {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.seo-live-story__note i {
    margin-top: 6px;
    color: #6a717f;
    font-size: 11px;
}

.seo-live-story__list span,
.seo-live-story__note span,
.seo-live-guarantee__list li {
    color: #2a2d38;
    font-size: 18px;
    line-height: 1.5;
}

.seo-live-guarantee {
    padding: 56px 0 66px;
    background: #fff;
}

.seo-live-guarantee__container {
    max-width: 1180px;
}

.seo-live-guarantee h3 {
    margin: 0 0 22px;
    color: #034083;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.seo-live-guarantee__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
    align-items: start;
}

.seo-live-guarantee__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.seo-live-guarantee__list li::before {
    content: "";
    width: 15px;
    min-width: 15px;
    height: 15px;
    margin-top: 7px;
    border-radius: 0;
    background: #2a2d38;
}

.seo-live-guarantee__list--terms li:first-child {
    color: #d7356d;
}

.seo-live-guarantee__list--terms li:first-child::before {
    background: #d7356d;
}

.seo-live-cta {
    padding: 28px 0 20px;
    background: #eaf4ff;
}

.seo-live-cta__container {
    max-width: 980px;
    text-align: center;
}

.seo-live-cta .section-heading--center h2 {
    color: #2a2d38;
    font-size: 32px;
    font-weight: 600;
}

.seo-live-cta .section-heading--center p {
    margin: 20px;
    color: #2a2d38;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
}

.seo-live-form-section {
    background: #eaf4ff;
    padding: 0 0 70px;
}

.seo-live-form-section__container {
    max-width: 980px;
}

.seo-live-form {
    padding: 0;
}

.seo-live-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
}

.seo-live-form__field--full {
    grid-column: 1 / -1;
}

.seo-live-form__field input,
.seo-live-form__field select {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid #d0d0d0;
    border-radius: 0;
    background: #fff;
    color: #292929;
    font: inherit;
}

.seo-live-form__field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #7c8797 50%), linear-gradient(135deg, #7c8797 50%, transparent 50%);
    background-position: calc(100% - 22px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.seo-live-form .btn-block {
    min-height: 54px;
}

.design-showcase,
.portfolio-showcase,
.va-services,
.va-story,
.va-cta,
.offer-callback,
.offer-gallery,
.offer-includes,
.offer-about,
.offer-notes {
    padding: 50px 0;
}

.design-showcase {
    background: #f6f6f6;
}

.design-showcase__grid,
.portfolio-showcase__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.design-showcase-card,
.portfolio-showcase-card,
.offer-gallery-card {
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #dde6f1;
    box-shadow: 0 16px 36px rgba(17, 44, 84, 0.08);
}

.design-showcase-card img,
.portfolio-showcase-card img,
.offer-gallery-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.design-showcase-card__body,
.portfolio-showcase-card__body,
.offer-gallery-card__body {
    padding: 18px 18px 20px;
}

.design-showcase-card h3,
.portfolio-showcase-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
}

.design-showcase--closing {
    background: #fff;
}

.design-showcase__closing-grid {
    display: grid;
    gap: 20px;
}

.design-showcase-closing-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.44fr) minmax(0, 0.56fr);
    gap: 22px;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #dde6f1;
    box-shadow: 0 14px 30px rgba(17, 44, 84, 0.06);
}

.design-showcase-closing-card img {
    width: 100%;
    border-radius: 8px;
}

.portfolio-showcase {
    background: #f6f6f6;
}

.va-hero {
    padding: 36px 0 44px;
    background: #034083;
}

.va-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 32px;
    align-items: center;
}

.va-hero__content h1,
.va-hero__content p {
    color: #fff;
}

.va-hero__eyebrow {
    margin-bottom: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.va-hero__accent {
    margin: 0 0 14px;
    color: #f59a23 !important;
    font-size: 24px;
    font-weight: 700;
}

.va-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.va-hero__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.va-hero__visual img {
    width: min(100%, 430px);
    height: auto;
}

.va-hero__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.va-hero__links a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.va-intro {
    padding: 30px 0;
    background: #f6f6f6;
}

.va-intro .container {
    max-width: 1020px;
    text-align: center;
}

.va-services {
    background: #fff;
}

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

.va-service-card {
    padding: 24px 22px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #dde6f1;
    box-shadow: 0 14px 30px rgba(17, 44, 84, 0.06);
}

.va-service-card h3 {
    margin-bottom: 14px;
    color: #034083;
    font-size: 22px;
}

.va-service-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.va-service-card li {
    position: relative;
    padding-left: 16px;
}

.va-service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #034083;
}

.va-story {
    background: #f6f6f6;
}

.va-story__grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
    gap: 30px;
    align-items: center;
}

.va-story__grid--reverse .va-story__copy {
    order: 1;
}

.va-story__grid--reverse .va-story__visual {
    order: 2;
}

.va-story__visual {
    display: flex;
    justify-content: center;
}

.va-story__visual img {
    width: min(100%, 430px);
    height: auto;
}

.va-cta {
    background: #fff;
}

.va-cta__box {
    max-width: 980px;
    margin: 0 auto;
    padding: 34px;
    border-radius: 12px;
    background: #f6f6f6;
    text-align: center;
}

.va-cta__actions {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.offer-banner {
    padding: 14px 0;
    background: #034083;
    text-align: center;
}

.offer-banner p {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.offer-hero {
    padding: 40px 0;
    background: #fff;
}

.offer-hero__grid,
.offer-callback__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 30px;
    align-items: center;
}

.offer-hero__content h1 {
    color: #034083;
}

.offer-hero__content p {
    color: #2a2d38;
    font-size: 20px;
}

.offer-hero__link {
    display: inline-block;
    margin-top: 6px;
    color: #f3582a;
    font-weight: 700;
}

.offer-hero__actions {
    margin-top: 24px;
}

.offer-hero__visual,
.offer-callback__visual {
    display: flex;
    justify-content: center;
}

.offer-hero__visual img,
.offer-callback__visual img {
    width: min(100%, 430px);
    height: auto;
}

.offer-callback {
    background: #f6f6f6;
}

.offer-callback__copy h2 {
    font-size: 32px;
}

.offer-callback__actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.offer-gallery {
    background: #fff;
}

.offer-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.offer-gallery-card__body {
    text-align: center;
}

.offer-includes {
    background: #f6f6f6;
}

.offer-includes__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.offer-includes__list,
.offer-notes__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.offer-includes__list li,
.offer-notes__list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
}

.offer-includes__list li::before,
.offer-notes__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #034083;
}

.offer-about {
    background: #fff;
}

.offer-about__card {
    overflow: hidden;
    border-radius: 12px;
    background-position: center;
    background-size: cover;
}

.offer-about__overlay {
    padding: 34px;
    background: rgba(3, 64, 131, 0.72);
}

.offer-about__overlay h2,
.offer-about__overlay p {
    color: #fff;
}

.offer-about__overlay .btn {
    margin-top: 14px;
}

.offer-notes {
    background: #f6f6f6;
}

.native-domain-hero {
    min-height: 300px;
    background: #034083;
    padding: 0;
}

.native-domain-hero > .container {
    width: min(1200px, calc(100% - 32px));
}

.native-domain-matrix-section > .container {
    width: min(1420px, calc(100% - 280px));
    max-width: none;
    padding-inline: 0;
    margin-inline: auto;
}

.native-domain-hero__grid {
    display: grid;
    grid-template-columns: 65fr 35fr;
    align-items: center;
    gap: 0;
    min-height: 300px;
}

.native-domain-hero__content {
    padding: 2em;
}

.native-domain-hero__content h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 45px;
    font-weight: 700;
    line-height: 54px;
}

.native-domain-hero__content p {
    margin: 0;
    max-width: 620px;
    color: #f7f2f2;
    font-size: 17px;
    line-height: 1.55;
}

.native-domain-hero__visual {
    text-align: center;
}

.native-domain-hero__visual img {
    width: min(75%, 500px);
    height: auto;
}

.native-domain-matrix-section {
    background: #c6c6c6;
    padding: 22px 0 0;
}

.native-domain-matrix {
    position: relative;
    background: #d4d4d4;
    border-radius: 0;
    padding: 18px 0 0;
    box-shadow: none;
}

.native-domain-matrix__search-row,
.native-domain-matrix__filter-group {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.native-domain-matrix__search-row {
    width: 58%;
    margin: 0 0 16px;
    padding-left: 18px;
}

.native-domain-matrix__search-row label,
.native-domain-matrix__filter-group label {
    margin: 0;
    min-width: 84px;
    color: #111;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.native-domain-matrix__search-row input[type="search"] {
    width: 348px;
    max-width: calc(100vw - 120px);
    height: 36px;
    padding: 6px 14px;
    border: 1px solid #333;
    border-radius: 0;
    background: #fff;
    font: inherit;
}

.native-domain-matrix__filters {
    display: block;
    margin: 0 0 14px;
}

.native-domain-matrix__filters .native-domain-matrix__filter-group:first-child {
    position: absolute;
    top: 18px;
    right: 145px;
}

.native-domain-matrix__filters .native-domain-matrix__filter-group + .native-domain-matrix__filter-group {
    margin-top: 0;
    padding-left: 18px;
}

.native-domain-matrix .whmp_domain_type_toggle,
.native-domain-matrix .whmp_domain_special_toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 7px 10px;
    border-radius: 0;
    background: #2d2d2d;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.native-domain-matrix .whmp_domain_type_toggle.is-active,
.native-domain-matrix .whmp_domain_special_toggle.is-active,
.native-domain-matrix .whmp_domain_type_toggle:hover,
.native-domain-matrix .whmp_domain_special_toggle:hover {
    background: #ff4b18;
    color: #fff;
}

.native-domain-table-wrap {
    overflow-x: auto;
}

.native-domain-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 840px;
    background: #fff;
}

.native-domain-table thead th {
    padding: 11px 42px;
    background: #2e2e2e;
    color: #fff;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
}

.native-domain-table tbody td {
    padding: 14px 42px;
    border-bottom: 0;
    color: #101828;
    font-size: 14px;
    vertical-align: top;
}

.native-domain-table thead th:nth-child(4),
.native-domain-table thead th:nth-child(5),
.native-domain-table thead th:nth-child(6),
.native-domain-table tbody td:nth-child(4),
.native-domain-table tbody td:nth-child(5),
.native-domain-table tbody td:nth-child(6) {
    white-space: nowrap;
}

.native-domain-table thead th:last-child,
.native-domain-table tbody td:last-child {
    width: 170px;
}

.native-domain-table tbody tr:nth-child(odd) {
    background: #e5e5e5;
}

.native-domain-table tbody tr:nth-child(even) {
    background: #fff;
}

.native-domain-table .whmp_domain {
    font-weight: 700;
    color: #114792;
}

.native-domain-table .whmp_domain_matrix_row.is-hidden {
    display: none;
}

.native-domain-matrix .whmp-domain-empty {
    display: none;
    padding: 18px 0 4px;
    color: #7b8192;
    font-weight: 600;
}

.native-domain-matrix .whmp-domain-empty.is-visible {
    display: block;
}

.native-domain-hero--reseller .native-domain-hero__content h1 {
    text-transform: uppercase;
}

.native-domain-hero--reseller .native-domain-hero__subtitle {
    max-width: none;
    color: #f7f2f2;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
}

.native-domain-hero--reseller .native-domain-hero__visual img {
    width: min(52%, 141px);
}

.domain-reseller-intro {
    padding: 50px 0 30px;
    background: #fff;
}

.domain-reseller-intro h2 {
    margin: 0 0 14px;
    color: #034083;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.domain-reseller-intro h3 {
    margin: 0 0 16px;
    color: #1e1e1e;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}

.domain-reseller-intro p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
}

.domain-reseller-panel {
    padding: 30px 0;
    background: #ececec;
}

.domain-reseller-panel__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 30px;
}

.domain-reseller-panel__copy {
    padding: 1em;
}

.domain-reseller-panel__copy h2 {
    margin: 0 0 14px;
    color: #1e1e1e;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.25;
}

.domain-reseller-panel__copy p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.7;
}

.domain-reseller-panel__visual {
    padding: 1em;
    text-align: center;
    background-image: url("../images/strict/domain-name-reseller/bg_dot_b.png");
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 200px auto;
}

.domain-reseller-panel__visual img {
    width: min(66%, 287px);
    height: auto;
    border-radius: 10px;
}

.domain-reseller-quick {
    padding: 50px 0 0;
    background: #fff;
}

.domain-reseller-quick__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.domain-reseller-quick__item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 0 10px 30px;
}

.domain-reseller-quick__item i {
    flex: 0 0 auto;
    color: #034083;
    font-size: 30px;
    line-height: 1;
}

.domain-reseller-quick__item h3 {
    margin: 0;
    color: #1e1e1e;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.15;
}

.domain-reseller-facilities {
    padding: 70px 0 50px;
    background: #f2f3f4;
}

.domain-reseller-facilities h2 {
    max-width: 980px;
    margin: 0 auto 30px;
    color: #1e1e1e;
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.18;
}

.domain-reseller-facilities__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 26px;
}

.domain-reseller-facility {
    min-height: 179px;
    padding: 0 0 20px;
}

.domain-reseller-facility h3 {
    margin: 0 0 30px;
    color: #1e1e1e;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
}

.domain-reseller-facility p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
}

.domain-reseller-control-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 64px;
    margin: 30px auto 0;
    border-radius: 8px;
    background: #034083;
    color: #fff;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
}

.domain-reseller-control-link:hover {
    background: #0b559f;
    color: #fff;
}

/* Native rebuild page suite */
.native-page {
    background: #fff;
    color: #2a2d38;
}

.native-hero {
    background: #f1f5fb;
    padding: 58px 0;
}

.native-hero--blue {
    background: #034083;
    color: #fff;
}

.native-hero--soft {
    background: #f3f2fa;
}

.native-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 54px;
    align-items: center;
}

.native-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #ffb331;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.native-hero h1 {
    margin: 0 0 18px;
    color: #034083;
    font-size: clamp(36px, 4.2vw, 58px);
    font-weight: 800;
    line-height: 1.08;
}

.native-hero--blue h1,
.native-hero--blue .native-hero__lead {
    color: #fff;
}

.native-hero__lead {
    max-width: 720px;
    margin: 0 0 24px;
    color: #2a2d38;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.55;
}

.native-hero__actions,
.native-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.native-hero__visual {
    text-align: center;
}

.native-hero__visual img {
    max-width: 100%;
    height: auto;
}

.native-section {
    padding: 64px 0;
}

.native-section--soft {
    background: #f4f6f9;
}

.native-section--blue {
    background: #034083;
    color: #fff;
}

.native-section--dark {
    background: #59616a;
    color: #fff;
}

.native-section__heading {
    max-width: 980px;
    margin: 0 auto 34px;
    text-align: center;
}

.native-section__heading h2,
.native-split h2 {
    margin: 0 0 12px;
    color: #034083;
    font-size: clamp(30px, 3.2vw, 46px);
    font-weight: 800;
    line-height: 1.18;
}

.native-section--blue .native-section__heading h2,
.native-section--dark .native-section__heading h2,
.native-section--blue .native-section__heading p,
.native-section--dark .native-section__heading p {
    color: #fff;
}

.native-section__heading p {
    margin: 0;
    color: #2a2d38;
    font-size: 18px;
    line-height: 1.65;
}

.native-grid {
    display: grid;
    gap: 24px;
}

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

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

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

.native-card {
    background: #fff;
    border: 1px solid #dde5f0;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(20, 43, 78, 0.09);
}

.native-card__body {
    padding: 28px;
}

.native-card h3 {
    margin: 0 0 12px;
    color: #034083;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.native-card p {
    margin: 0;
    color: #2a2d38;
    font-size: 16px;
    line-height: 1.65;
}

.native-card--center .native-card__body {
    text-align: center;
}

.native-card__action {
    margin-top: 20px;
}

.native-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: #eaf4ff;
    color: #034083;
    font-size: 26px;
}

.native-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 64px;
    align-items: center;
}

.native-split p,
.native-rich p {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.7;
}

.native-check-list,
.native-square-list {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.native-check-list li,
.native-square-list li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    color: #2a2d38;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.45;
}

.native-check-list li::before {
    content: "\f00c";
    color: #034083;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.native-square-list li::before {
    content: "";
    width: 12px;
    height: 12px;
    margin-top: 7px;
    background: #2a2d38;
}

.native-table-wrap {
    overflow-x: auto;
    border: 1px solid #dfe6f0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(20, 43, 78, 0.08);
}

.native-table {
    width: 100%;
    min-width: 780px;
    border-collapse: collapse;
}

.native-table th {
    padding: 16px;
    background: #034083;
    color: #fff;
    text-align: left;
    font-size: 15px;
    font-weight: 800;
}

.native-table td {
    padding: 15px 16px;
    border-bottom: 1px solid #e7ecf5;
    color: #2a2d38;
    font-size: 16px;
}

.native-table tr:nth-child(even) td {
    background: #f8fbff;
}

.native-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    max-width: 720px;
    margin: 0 auto 24px;
}

.native-search input,
.native-form input,
.native-form textarea,
.native-form select {
    width: 100%;
    min-height: 48px;
    border: 1px solid #d9e1ec;
    border-radius: 4px;
    background: #fff;
    color: #2a2d38;
    font: inherit;
    padding: 12px 14px;
}

.native-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 0 auto 42px;
}

.native-tab {
    min-width: 138px;
    min-height: 58px;
    border: 0;
    border-radius: 8px;
    background: #f0f1f3;
    color: #3c4450;
    cursor: pointer;
    font: inherit;
    font-size: 19px;
    font-weight: 600;
    padding: 14px 28px;
}

.native-tab.is-active {
    background: #034083;
    color: #fff;
}

.native-template-grid,
.native-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.native-template-card,
.native-portfolio-card {
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.native-template-card img,
.native-portfolio-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1024 / 682;
    object-fit: cover;
}

.native-template-card__bar,
.native-portfolio-card__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    background: #e9f4ff;
    padding: 16px 28px;
}

.native-template-card__bar h3,
.native-portfolio-card__bar h3 {
    margin: 0;
    color: #2a2d38;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.15;
}

.native-eye {
    border: 0;
    background: transparent;
    color: #6f7b86;
    cursor: pointer;
    font-size: 28px;
}

.native-modal[hidden] {
    display: none;
}

.native-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.78);
    padding: 0;
}

.native-modal__dialog {
    position: relative;
    width: min(93vw, 1780px);
    height: min(93vh, 1040px);
    background: #fff;
    border: 3px solid #fff;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
}

.native-modal__close {
    position: absolute;
    top: -32px;
    right: -52px;
    width: 52px;
    height: 52px;
    border: 0;
    background: #111;
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 44px;
    line-height: 1;
}

.native-modal__content,
.native-modal__content img,
.native-modal__content iframe {
    width: 100%;
    height: 100%;
}

.native-modal__content img {
    object-fit: contain;
    background: #fff;
}

.native-modal__content iframe {
    border: 0;
}

.webdesign-live-hero {
    min-height: 300px;
    background: #034083;
    padding: 0;
}

.webdesign-live-hero > .container,
.webdesign-story > .container {
    width: min(1300px, calc(100% - 32px));
}

.webdesign-template-section > .container {
    width: min(1606px, calc(100% - 220px));
}

.webdesign-live-hero__grid {
    display: grid;
    grid-template-columns: 61.634fr 38.321fr;
    align-items: center;
    min-height: 300px;
}

.webdesign-live-hero__copy {
    padding: 3em;
}

.webdesign-live-hero__copy h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.12;
}

.webdesign-live-hero__copy p {
    margin: 0 0 18px;
    color: #f7f2f2;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.webdesign-live-hero__copy p a {
    color: #fff;
    font-weight: 700;
}

.webdesign-live-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.webdesign-live-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 14px 18px;
    text-decoration: none;
}

.webdesign-live-btn:hover {
    color: #fff;
    filter: brightness(0.95);
}

.webdesign-live-btn--coral {
    background: #fc7464;
}

.webdesign-live-btn--cyan {
    background: #04bcec;
}

.webdesign-live-btn--blue {
    background: #2c5cac;
}

.webdesign-live-hero__visual {
    text-align: center;
}

.webdesign-live-hero__visual img {
    width: 99%;
    height: auto;
}

.webdesign-template-section {
    padding: 30px 0;
    background: #fff;
}

.webdesign-template-section__heading {
    max-width: 1040px;
    margin: 0 auto 66px;
    text-align: center;
}

.webdesign-template-section__heading h2 {
    margin: 0 0 22px;
    color: #2a2d38;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
}

.webdesign-template-section__heading p {
    margin: 0;
    padding: 0 50px;
    color: #2a2d38;
    font-size: 18px;
    line-height: 1.55;
}

.native-page--web-design .native-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    gap: 10px;
    margin-bottom: 48px;
}

.native-page--web-design .native-tab {
    min-width: 0;
    width: auto;
    min-height: 56px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    padding: 9px 34px;
    white-space: nowrap;
}

.native-page--web-design .native-template-grid {
    width: 100%;
    margin: 0 auto 118px;
    gap: 36px;
}

.native-page--web-design .native-template-card {
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.native-page--web-design .native-template-card__bar {
    min-height: 46px;
    padding: 8px 28px;
}

.native-page--web-design .native-template-card__bar h3 {
    font-size: 20px;
    line-height: 1.05;
}

.webdesign-metrics {
    background: #034083;
    padding: 5%;
}

.webdesign-metrics__grid {
    display: grid;
    grid-template-columns: 35fr 60fr;
    gap: 30px;
    align-items: start;
}

.webdesign-metrics__intro {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 25px;
    padding-top: 6px;
    padding-right: 5%;
}

.webdesign-metrics__intro h2 {
    margin: 0;
    color: #f0f0f0;
    font-size: 2.6vw;
    font-weight: 600;
    line-height: 1.1;
}

.webdesign-metrics__intro p {
    margin: 0;
    color: #f0f0f0;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.4;
}

.webdesign-metrics__image {
    width: min(82%, 278px);
    height: auto;
    margin-top: 44px;
    margin-left: 0;
    align-self: flex-start;
    transform: translate(-10px, 0);
}

.webdesign-metrics__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.webdesign-metric-card {
    color: #f0f0f0;
}

.webdesign-metric-card__line {
    display: block;
    width: 75%;
    border-top: 2px solid #f0f0f0;
    margin: 10px 0;
}

.webdesign-metric-card__number {
    display: block;
    margin-bottom: 20px;
    color: #f0f0f0;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1.22px;
}

.webdesign-metric-card h3 {
    margin: 0 0 32px;
    color: #f0f0f0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.webdesign-metric-card p {
    margin: 0;
    color: #f0f0f0;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.5;
}

.webdesign-story {
    padding: 34px 0 64px;
    background: #fff;
}

.webdesign-story__row {
    display: grid;
    grid-template-columns: 59.581fr 40fr;
    align-items: center;
}

.webdesign-story__row + .webdesign-story__row {
    margin-top: 30px;
}

.webdesign-story__row--reverse {
    grid-template-columns: 40fr 60fr;
}

.webdesign-story__copy {
    padding: 2em;
}

.webdesign-story__copy h2 {
    margin: 0 0 18px;
    color: #2a2d38;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.18;
}

.webdesign-story__copy p {
    margin: 0 0 20px;
    color: #2a2d38;
    font-size: 16px;
    line-height: 1.7;
}

.webdesign-story__image {
    padding: 1em;
    text-align: center;
}

.webdesign-story__image img {
    width: 93%;
    height: 355px;
    object-fit: cover;
    border-radius: 18px;
}

.va-landing-hero {
    background: #f3f2fa;
    padding: 30px 0 56px;
}

.va-landing-hero__headline {
    display: inline-block;
    margin: 0 0 28px;
    border-radius: 14px;
    background: #3732aa;
    color: #fff;
    font-size: clamp(28px, 3.4vw, 46px);
    font-weight: 800;
    line-height: 1.35;
    padding: 8px 18px 12px;
    text-transform: uppercase;
}

.va-landing-hero h1 {
    margin: 0 0 12px;
    color: #034083;
    font-size: clamp(36px, 4.6vw, 58px);
    font-weight: 800;
    line-height: 0.98;
}

.va-landing-hero h2 {
    margin: 0 0 14px;
    color: #ff6508;
    font-size: clamp(34px, 4.2vw, 56px);
    font-weight: 800;
}

.va-landing-hero p {
    margin: 0 0 22px;
    color: #034083;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.45;
}

.va-landing-hero__links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
}

.va-landing-hero__links a {
    display: inline-flex;
    min-width: 184px;
    justify-content: center;
    border-radius: 4px;
    background: #df4e4a;
    color: #fff;
    font-weight: 800;
    padding: 16px 26px;
}

.va-statement {
    background: #59616a;
    color: #fff;
    padding: 78px 0;
    text-align: center;
}

.va-statement p {
    max-width: 1380px;
    margin: 0 auto;
    color: #fff;
    font-size: clamp(32px, 3.8vw, 50px);
    line-height: 1.45;
    letter-spacing: 1px;
}

.native-page--va-live {
    background: #fff;
}

.va-live-hero,
.va-live-services-intro,
.va-live-services,
.va-live-cta,
.va-live-form-section,
.va-live-story {
    position: relative;
}

.va-live-hero {
    overflow: hidden;
    background: #dfecfc;
    padding: 14px 0 22px;
}

.va-live-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 1px 1px, rgba(88, 102, 198, 0.1) 1.1px, transparent 0) 0 0 / 28px 28px,
        rgba(243, 242, 249, 0.97);
}

.va-live-hero .container,
.va-live-services-intro .container,
.va-live-services .container,
.va-live-story .container {
    max-width: 1200px;
}

.va-live-hero .container,
.va-live-services-intro .container,
.va-live-services .container,
.va-live-cta .container,
.va-live-form-section .container,
.va-live-story .container {
    position: relative;
    z-index: 1;
}

.va-live-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    align-items: center;
    gap: 30px;
}

.va-live-hero__copy {
    padding: 8px 0 26px;
}

.va-live-hero__eyebrow {
    display: inline-block;
    max-width: 738px;
    margin: 0 0 22px;
    padding: 10px 18px 12px 14px;
    border-radius: 16px;
    background: #3d38b5;
    color: #fff;
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.32;
    text-transform: uppercase;
}

.va-live-hero h1 {
    max-width: 660px;
    margin: 0 0 10px;
    color: #034083;
    font-size: 41px;
    font-weight: 600;
    line-height: 44px;
    text-transform: lowercase;
}

.va-live-hero__accent {
    margin: 0 0 20px;
    color: #ff6600;
    font-size: 43px;
    font-weight: 600;
    line-height: 1;
}

.va-live-hero__copy p {
    max-width: 640px;
    margin: 0;
    color: #034083;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.55;
}

.va-live-hero__actions,
.va-live-hero__portfolio-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
}

.va-live-hero__actions {
    margin-top: 24px;
}

.va-live-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 12px 22px;
    border: 0;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.va-live-btn--primary,
.va-live-btn--secondary,
.va-live-form__submit {
    background: #66717d;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.9px;
}

.va-live-btn--primary:hover,
.va-live-btn--secondary:hover,
.va-live-form__submit:hover {
    background: #4e5761;
    color: #fff;
}

.va-live-btn--primary {
    min-width: 200px;
    padding-inline: 20px;
}

.va-live-btn--secondary {
    min-width: 432px;
    padding-inline: 20px;
}

.va-live-hero__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: end;
    width: 100%;
}

.va-live-hero__visual img {
    width: 81%;
    max-width: 560px;
    height: auto;
}

.va-live-hero__portfolio-links {
    margin-top: 10px;
}

.va-live-btn--small {
    min-height: 40px;
    min-width: 0;
    padding: 10px 16px;
    background: #d8564c;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.va-live-btn--small:hover {
    background: #c64d44;
    color: #fff;
}

.va-live-statement {
    background: #59616a;
}

.va-live-statement .container {
    max-width: 1320px;
}

.va-live-statement p {
    margin: 0;
    padding: 50px;
    color: #fafcff;
    text-align: center;
    font-size: 35px;
    line-height: 1.45;
    letter-spacing: 1.5px;
}

.va-live-services-intro {
    padding: 50px 0;
}

.va-live-services-intro h2 {
    margin: 0 0 14px;
    color: #034083;
    text-align: center;
    font-size: 41px;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.va-live-services-intro p {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 100px;
    color: #59616a;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}

.va-live-services {
    padding-bottom: 38px;
}

.va-live-service-group {
    margin-bottom: 34px;
}

.va-live-service-group__heading {
    margin-bottom: 24px;
    text-align: center;
}

.va-live-service-group__heading h3 {
    margin: 0;
    color: #000;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.25;
}

.va-live-service-group__heading span {
    display: block;
    width: 100px;
    height: 4px;
    margin: 12px auto 0;
    background: #034083;
}

.va-live-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.va-live-service-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    padding: 20px 18px;
    border-radius: 20px 0 20px 0;
    background: #174f94;
    text-align: center;
}

.va-live-service-card h4 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.25;
}

.va-live-cta {
    padding: 22px 0 28px;
    text-align: center;
}

.va-live-cta .container {
    max-width: 1180px;
}

.va-live-cta h2 {
    margin: 0 0 22px;
    color: #034083;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.25;
}

.va-live-cta h2 span {
    color: #ff6600;
}

.va-live-btn--whatsapp {
    min-height: 50px;
    padding: 12px 26px;
    background: #034083;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.va-live-btn--whatsapp:hover {
    background: #2a2d38;
    color: #fff;
}

.va-live-form-section {
    padding: 0 0 36px;
}

.va-live-form-section .container {
    max-width: 1200px;
}

.va-live-form-shell {
    max-width: 840px;
    margin: 0 auto;
    padding: 0 0 10px;
}

.va-live-form-shell h2 {
    margin: 0 0 14px;
    color: #2a2d38;
    text-align: left;
    font-size: 27px;
    font-weight: 500;
    line-height: 1.35;
}

.va-live-form-shell > p {
    margin: 0 0 24px;
    color: #ff2f2f;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
}

.va-live-form-alert {
    margin: 0 0 18px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
}

.va-live-form-alert--success {
    background: #e8f7ec;
    color: #126b31;
}

.va-live-form-alert--error {
    background: #fdecec;
    color: #ae1f1f;
}

.va-live-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 18px;
}

.va-live-form__field {
    display: flex;
    flex-direction: column;
}

.va-live-form__field--full {
    grid-column: 1 / -1;
}

.va-live-form__field label {
    margin: 0 0 10px;
    color: #2a2d38;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
}

.va-live-form__field label span {
    display: block;
    margin-top: 2px;
    font-weight: 600;
}

.va-live-form input,
.va-live-form select,
.va-live-form textarea {
    width: 100%;
    border: 1px solid #9aa6b3;
    background: #fff;
    color: #2a2d38;
    font-size: 15px;
    line-height: 1.5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.va-live-form input,
.va-live-form select {
    min-height: 42px;
    padding: 8px 14px;
}

.va-live-form textarea {
    min-height: 180px;
    padding: 12px 14px;
    resize: vertical;
}

.va-live-form input:focus,
.va-live-form select:focus,
.va-live-form textarea:focus {
    border-color: #034083;
    outline: none;
    box-shadow: 0 0 0 3px rgba(3, 64, 131, 0.12);
}

.va-live-form select[multiple] {
    min-height: 238px;
    padding: 8px 10px;
}

.va-live-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 24px;
    padding: 2px 0 0;
}

.va-live-checklist__column {
    display: grid;
    gap: 4px;
}

.va-live-checklist__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #2a2d38;
    font-size: 14px;
    line-height: 1.45;
    cursor: pointer;
}

.va-live-checklist__item input {
    width: 16px;
    min-height: 16px;
    margin-top: 2px;
    flex: 0 0 16px;
}

.va-live-form__error {
    margin-top: 6px;
    color: #c92525;
    font-size: 12px;
    font-weight: 600;
}

.va-live-form__submit {
    margin-top: 22px;
    width: 100%;
    cursor: pointer;
}

.va-live-story {
    padding: 8px 0 48px;
}

.va-live-story__row {
    display: grid;
    grid-template-columns: 33.3333% 66.6667%;
    align-items: center;
    gap: 0;
}

.va-live-story__row + .va-live-story__row {
    margin-top: 40px;
}

.va-live-story__row--reverse {
    grid-template-columns: 66.6667% 33.3333%;
}

.va-live-story__row--reverse .va-live-story__copy {
    order: 1;
}

.va-live-story__row--reverse .va-live-story__image {
    order: 2;
}

.va-live-story__image {
    display: flex;
    justify-content: center;
}

.va-live-story__image img {
    width: 100%;
    height: auto;
}

.va-live-story__image--proxy img {
    max-width: 377px;
}

.va-live-story__copy {
    padding: 0 22px 0 34px;
}

.va-live-story__row--reverse .va-live-story__copy {
    padding: 0 34px 0 0;
}

.va-live-story__copy h3 {
    margin: 0 0 16px;
    color: #2a2d38;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.35;
}

.va-live-story__copy p {
    margin: 0 0 16px;
    color: #2a2d38;
    font-size: 17px;
    line-height: 1.75;
}

.va-live-story__copy p:last-child {
    margin-bottom: 0;
}

.native-service-pill-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.native-service-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 82px;
    border-radius: 0 0 18px 18px;
    background: #034083;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    padding: 18px;
}

.ssl-feature-tabs {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.ssl-feature-tabs__nav {
    display: grid;
    gap: 12px;
}

.ssl-feature-tabs__button {
    border: 1px solid #dce4f0;
    border-radius: 6px;
    background: #fff;
    color: #034083;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    padding: 15px 18px;
    text-align: left;
}

.ssl-feature-tabs__button.is-active {
    background: #034083;
    color: #fff;
}

.ssl-feature-tabs__panel {
    display: none;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 34px;
    align-items: center;
    min-height: 330px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(20, 43, 78, 0.09);
    padding: 36px;
}

.ssl-feature-tabs__panel.is-active {
    display: grid;
}

.ssl-feature-tabs__panel h3 {
    margin: 0 0 14px;
    color: #034083;
    font-size: 30px;
    font-weight: 800;
}

.ssl-feature-tabs__panel p {
    margin: 0;
    font-size: 18px;
    line-height: 1.65;
}

.ssl-feature-tabs__panel img {
    max-width: 240px;
    height: auto;
    justify-self: center;
}

.portfolio-live-hero {
    background: #034083;
    color: #fff;
    padding: 30px 0 38px;
}

.portfolio-live-hero > .container {
    width: min(1308px, calc(100% - 32px));
}

.portfolio-live-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
    gap: 34px;
    align-items: center;
}

.portfolio-live-hero__copy h1 {
    max-width: 640px;
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(32px, 3.2vw, 42px);
    font-weight: 600;
    line-height: 1.2;
}

.portfolio-live-hero__copy p {
    max-width: 640px;
    margin: 0 0 24px;
    color: #f7f2f2;
    font-size: 16px;
    line-height: 1.75;
}

.portfolio-live-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.portfolio-live-hero__image {
    text-align: center;
}

.portfolio-live-hero__image img {
    width: min(100%, 508px);
    height: auto;
}

.portfolio-client-section {
    background: #fff;
    padding: 48px 0 72px;
}

.portfolio-client-section > .container {
    width: min(1220px, calc(100% - 32px));
}

.portfolio-client-heading {
    margin-bottom: 42px;
    text-align: center;
}

.portfolio-client-heading h2 {
    margin: 0 0 14px;
    color: #2a2d38;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 600;
    line-height: 1.15;
}

.portfolio-client-heading p {
    max-width: 860px;
    margin: 0 auto;
    color: #2a2d38;
    font-size: 18px;
    line-height: 1.65;
}

.portfolio-client-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 30px;
}

.portfolio-client-card {
    overflow: hidden;
    border-radius: 10px;
    background: #eaf4ff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.portfolio-client-card > img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
}

.portfolio-client-card__bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 44px;
    padding: 8px 18px 8px 20px;
    background: #eaf4ff;
}

.portfolio-client-card__bar h3 {
    margin: 0;
    color: #2a2d38;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.portfolio-service-section {
    background: #fff;
    padding: 44px 0 62px;
}

.portfolio-service-section > .container {
    width: min(1308px, calc(100% - 32px));
}

.portfolio-service-kicker {
    margin-bottom: 14px;
    color: #4a4a4a;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
}

.portfolio-service-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    gap: 46px;
    align-items: center;
    padding: 18px 0 30px;
}

.portfolio-service-grid--reverse {
    grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1fr);
    padding-top: 8px;
}

.portfolio-service-grid--reverse .portfolio-service-copy {
    order: 2;
}

.portfolio-service-copy h2 {
    margin: 0 0 18px;
    color: #4a4a4a;
    font-size: clamp(26px, 3vw, 35px);
    font-weight: 600;
    line-height: 1.2;
}

.portfolio-service-copy p {
    margin: 0;
    color: #2a2d38;
    font-size: 18px;
    line-height: 1.7;
}

.portfolio-service-image {
    text-align: center;
}

.portfolio-service-image img {
    width: 100%;
    max-width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.portfolio-service-image--square img {
    height: 350px;
}

.native-page--portfolio .native-eye {
    font-size: 24px;
}

.native-page--portfolio .native-modal {
    background: rgba(0, 0, 0, 0.8);
}

.native-page--portfolio .native-modal__dialog {
    width: min(93vw, 1780px);
    height: min(93vh, 1040px);
    border: 3px solid #fff;
    box-shadow: none;
}

.native-page--portfolio .native-modal__close {
    position: fixed;
    top: 5px;
    right: 5px;
    width: auto;
    height: auto;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    opacity: 0.6;
    padding: 0 10px;
    font-size: 36px;
    line-height: 1;
}

.portfolio-contact-section {
    background: #fff;
    padding: 56px 0 78px;
}

.portfolio-contact-section > .container {
    width: min(1200px, calc(100% - 32px));
}

.portfolio-contact-section__heading {
    margin-bottom: 32px;
    text-align: center;
}

.portfolio-contact-section h2 {
    margin: 0 0 8px;
    color: #2f333a;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
}

.portfolio-contact-section__heading p {
    margin: 0;
    color: #5d6673;
    font-size: 20px;
    line-height: 1.45;
}

.portfolio-contact-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 34px;
    align-items: start;
}

.portfolio-contact-section__form-wrap {
    border: 1px solid #dbe2ed;
    border-radius: 12px;
    background: #fff;
    padding: 28px;
}

.portfolio-contact-alert {
    margin: 0 0 18px;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 15px;
    line-height: 1.5;
}

.portfolio-contact-alert--success {
    background: #ebfff2;
    color: #0e7a3a;
}

.portfolio-contact-alert--error {
    background: #fff0f0;
    color: #b42318;
}

.portfolio-contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}

.portfolio-contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.portfolio-contact-form__field--full {
    grid-column: 1 / -1;
}

.portfolio-contact-form input,
.portfolio-contact-form textarea,
.portfolio-contact-form select {
    width: 100%;
    min-height: 52px;
    border: 1px solid #d8dee9;
    border-radius: 4px;
    background: #fff;
    color: #2a2d38;
    font: inherit;
    font-size: 16px;
    padding: 13px 16px;
}

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

.portfolio-contact-form__error {
    color: #b42318;
    font-size: 13px;
}

.portfolio-contact-form__submit {
    min-width: 150px;
    min-height: 48px;
    margin-top: 18px;
    border: 0;
    border-radius: 6px;
    background: #034083;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 22px;
    transition: background-color 0.2s ease;
}

.portfolio-contact-form__submit:hover {
    background: #0b5db4;
}

.portfolio-contact-section__details {
    padding-top: 10px;
}

.portfolio-contact-list {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.portfolio-contact-list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.portfolio-contact-list__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #eaf4ff;
    color: #034083;
}

.portfolio-contact-list a {
    color: #2a2d38;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    text-decoration: none;
}

.portfolio-contact-list a:hover {
    color: #034083;
}

.native-policy-hero {
    background: #034083;
    padding: 64px 0;
    text-align: center;
}

.native-policy-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.12;
}

.native-policy-section {
    background: #fff;
    padding: 56px 0 70px;
}

.native-policy-content {
    max-width: 1160px;
}

.native-policy-content p,
.native-policy-content li {
    color: #2a2d38;
    font-size: 17px;
    line-height: 1.75;
}

.native-policy-content p {
    margin: 0 0 16px;
}

.native-policy-content h2,
.native-policy-content h3,
.native-policy-content h4 {
    margin: 30px 0 14px;
    color: #034083;
    font-weight: 800;
    line-height: 1.2;
}

.native-policy-content h4 {
    font-size: 24px;
}

.native-policy-content ul,
.native-policy-content ol {
    margin: 0 0 18px 26px;
    padding: 0;
}

.native-policy-content a {
    color: #034083;
    font-weight: 700;
}

.email-directory-hero {
    background: #034083;
    color: #fff;
    padding: 54px 0 58px;
}

.email-directory-hero__grid,
.email-directory-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 46px;
    align-items: center;
}

.email-directory-hero__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #ffbd44;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.email-directory-hero h1 {
    max-width: 820px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(38px, 4vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.email-directory-hero p {
    max-width: 760px;
    margin: 0 0 26px;
    color: #fff;
    font-size: 20px;
    line-height: 1.6;
}

.email-directory-hero__image,
.email-directory-card {
    text-align: center;
}

.email-directory-hero__image img {
    width: min(100%, 520px);
    height: auto;
}

.email-directory-intro,
.email-directory-additions,
.email-directory-note {
    background: #fff;
    padding: 62px 0;
}

.email-directory-intro h2,
.email-directory-additions h2 {
    margin: 0 0 18px;
    color: #034083;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 800;
    line-height: 1.18;
}

.email-directory-intro p,
.email-directory-additions p,
.email-directory-note p {
    color: #2a2d38;
    font-size: 18px;
    line-height: 1.72;
}

.email-directory-card {
    border-radius: 8px;
    background: #eaf4ff;
    box-shadow: 0 18px 40px rgba(20, 43, 78, 0.12);
    padding: 30px;
}

.email-directory-card img {
    width: min(100%, 360px);
    height: auto;
    margin-bottom: 18px;
}

.email-directory-card strong,
.email-directory-card span {
    display: block;
}

.email-directory-card strong {
    color: #034083;
    font-size: 32px;
    font-weight: 800;
}

.email-directory-card span {
    margin-top: 8px;
    color: #2a2d38;
    font-size: 16px;
    line-height: 1.55;
}

.email-directory-features {
    background: #eef2f6;
    padding: 62px 0;
}

.email-directory-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.email-directory-feature-card {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(20, 43, 78, 0.08);
    padding: 22px;
}

.email-directory-feature-card i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: #034083;
    color: #fff;
}

.email-directory-feature-card p {
    margin: 0;
    color: #2a2d38;
    font-size: 16px;
    line-height: 1.55;
}

.email-directory-card--image {
    background: #fff;
}

.email-directory-addition-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.email-directory-addition-list li {
    position: relative;
    margin-bottom: 11px;
    padding-left: 28px;
    color: #2a2d38;
    font-size: 17px;
    line-height: 1.55;
}

.email-directory-addition-list li::before {
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 2px;
    color: #034083;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.email-directory-note {
    background: #eaf4ff;
}

.email-directory-note .container {
    max-width: 1120px;
}

.business-email-page {
    background: #fff;
    color: #2a2d38;
}

.business-email__container {
    width: min(1200px, calc(100% - 32px));
}

.business-email-hero {
    background: #034083;
}

.business-email-hero__grid {
    min-height: 300px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.business-email-hero__copy {
    max-width: 560px;
    padding: 48px;
}

.business-email-hero__copy h1 {
    margin: 0;
    color: #fff;
    font-size: 44px;
    font-weight: 600;
    line-height: 47px;
}

.business-email-hero__copy p {
    margin: 0 0 20px;
    color: #f7f2f2;
    font-size: 16px;
    line-height: 24px;
}

.business-email-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.business-email-button--hero {
    padding: 15px 30px;
    border-radius: 4px;
    background: #535353;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
}

.business-email-button--hero:hover,
.business-email-button--full:hover {
    background: #464646;
    color: #fff;
}

.business-email-button--plan:hover {
    background: #0f2f73;
    color: #fff;
}

.business-email-hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-email-hero__visual img {
    width: min(423px, 100%);
    height: auto;
}

.business-email-section--ash {
    background: #e7e7e7;
}

.business-email-section--note {
    padding: 50px 0 0;
}

.business-email-section--starter {
    padding: 50px 0 0;
}

.business-email-section--plans {
    padding: 0 0 72px;
}

.business-email-section--why,
.business-email-section--faq {
    padding: 50px 0;
}

.business-email-heading {
    text-align: center;
}

.business-email-heading--primary {
    margin-bottom: 28px;
}

.business-email-heading--secondary {
    margin-bottom: 42px;
}

.business-email-heading--faq {
    margin-bottom: 34px;
}

.business-email-heading--primary h2,
.business-email-heading--secondary h2,
.business-email-heading--faq h2 {
    margin: 0;
    color: #034083;
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
}

.business-email-heading--secondary h6 {
    margin: 0 0 10px;
    color: #6d6d6d;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
}

.business-email-heading--secondary h2 a {
    color: inherit;
}

.business-email-alert {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 10px;
    background: #f6f6f6;
    color: #000;
    font-size: 12px;
    line-height: 18px;
}

.business-email-alert p {
    margin: 0;
}

.business-email-alert p > strong:first-child {
    color: #ff0000;
}

.business-email-starter-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.business-email-starter-card {
    padding: 50px;
    border: 1px solid #979797;
}

.business-email-starter-card--offer {
    background: #f0f0f0;
}

.business-email-starter-card--guide {
    background: #fff;
}

.business-email-starter-card h2,
.business-email-starter-card h3,
.business-email-plan-card h2 {
    margin: 0;
    color: #1e1e1e;
    font-weight: 600;
}

.business-email-starter-card h2,
.business-email-plan-card h2 {
    font-size: 24px;
    line-height: 1.25;
}

.business-email-starter-card__rule,
.business-email-plan-card__rule {
    width: 74px;
    height: 5px;
    margin-top: 2px;
    background: #21267b;
}

.business-email-starter-card__price-row {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.business-email-starter-card__price {
    color: #21267b;
    font-size: 45px;
    font-weight: 600;
    line-height: 49px;
}

.business-email-starter-card__duration {
    color: #2a2d38;
    font-size: 15px;
    font-weight: 600;
    line-height: 49px;
}

.business-email-starter-card__renewal {
    margin: 12px 0 0;
    color: #3e3e3e;
    font-size: 16px;
    line-height: 24px;
}

.business-email-starter-card__bands {
    margin-top: 16px;
    color: #3e3e3e;
    font-size: 16px;
    line-height: 30px;
}

.business-email-starter-card__bands p,
.business-email-starter-card__transfer-rates p {
    margin: 0;
}

.business-email-starter-card__footnote {
    margin: 0;
    color: #3e3e3e;
    font-size: 11px;
    line-height: 18px;
}

.business-email-button--full {
    width: 100%;
    margin-top: 22px;
    padding: 18px;
    background: #555;
    color: #fff;
    font-size: 23px;
    font-weight: 500;
    line-height: 23px;
}

.business-email-starter-card h3 {
    margin-top: 26px;
    font-size: 24px;
    line-height: 1.25;
}

.business-email-starter-card__feature-list,
.business-email-plan-card__feature-list,
.business-email-starter-card__transfer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.business-email-starter-card__feature-list {
    color: #1e1e1e;
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;
}

.business-email-starter-card__guide img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 18px;
}

.business-email-starter-card h4 {
    margin: 0 0 10px;
    color: #1e1e1e;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}

.business-email-starter-card__transfer-rates {
    margin-bottom: 12px;
    color: #3e3e3e;
    font-size: 11px;
    line-height: 18px;
}

.business-email-starter-card__transfer-list {
    padding: 20px;
    color: #3e3e3e;
    font-size: 14px;
    line-height: 22px;
}

.business-email-starter-card__transfer-list li + li {
    margin-top: 10px;
}

.business-email-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.business-email-plan-shell {
    padding-inline: 10px;
}

.business-email-plan-card {
    height: 100%;
    margin: 48px 0 8px;
    padding: 36px;
    border-radius: 8px;
    background: #fff;
}

.business-email-plan-card__price {
    margin: 0;
    color: #21267b;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.2;
}

.business-email-plan-card__currency,
.business-email-plan-card__amount,
.business-email-plan-card__duration {
    display: inline-block;
}

.business-email-plan-card__duration {
    color: #2a2d38;
    font-size: 15px;
    font-weight: 400;
}

.business-email-button--plan {
    width: 100%;
    margin-top: 30px;
    padding: 15px 30px;
    background: #13357f;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.business-email-plan-card__feature-list {
    margin-top: 30px;
}

.business-email-plan-card__feature-list li {
    padding-bottom: 12px;
    color: #2a2d38;
    font-size: 14px;
    line-height: 1.4;
}

.business-email-app-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 0;
    row-gap: 38px;
}

.business-email-app-card {
    padding: 0 10px;
    text-align: center;
}

.business-email-app-card__icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-email-app-card__icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.business-email-app-card h3 {
    margin: 8px 0 16px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    line-height: 19.2px;
}

.business-email-app-card p {
    margin: 0;
    color: #333;
    font-size: 16px;
    line-height: 24px;
}

.business-email-faq-list {
    border: 1px solid #d5d8dc;
    background: #fff;
}

.business-email-faq-item + .business-email-faq-item {
    border-top: 1px solid #d5d8dc;
}

.business-email-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 20px;
    border: 0;
    background: transparent;
    color: #333;
    text-align: left;
    font-size: 16px;
    line-height: 16px;
}

.business-email-faq-question__icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

.business-email-faq-question__icon::before,
.business-email-faq-question__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    background: #333;
    transform: translate(-50%, -50%);
}

.business-email-faq-question__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.business-email-faq-item.is-open .business-email-faq-question__icon::after {
    opacity: 0;
}

.business-email-faq-answer {
    display: none;
    padding: 0 20px 20px 50px;
}

.business-email-faq-item.is-open .business-email-faq-answer {
    display: block;
}

.business-email-faq-answer p {
    margin: 0;
    color: #333;
    font-size: 16px;
    line-height: 24px;
}

.business-email-faq-answer p + p {
    margin-top: 12px;
}

.ssl-live {
    background: #fff;
}

.ssl-live__container {
    width: min(1302px, calc(100% - 32px));
    margin: 0 auto;
}

.ssl-live__container--content {
    width: min(1200px, calc(100% - 32px));
}

.ssl-live__container--wide {
    width: min(1302px, calc(100% - 32px));
}

.ssl-live-hero {
    padding: 32px 0;
    background:
        radial-gradient(circle at 1px 1px, rgba(3, 64, 131, 0.14) 1px, transparent 0) 0 0 / 24px 24px,
        #dfecfc;
}

.ssl-live-hero__grid {
    display: grid;
    grid-template-columns: 65% 35%;
    align-items: center;
}

.ssl-live-hero__copy {
    padding: 2em;
}

.ssl-live-hero__copy h1 {
    margin: 0 0 22px;
    color: #034083;
    font-size: 33px;
    font-weight: 600;
    line-height: 1.18;
}

.ssl-live-hero__copy p {
    max-width: 716px;
    margin: 0 0 24px;
    color: #2a2d38;
    font-size: 16px;
    line-height: 1.65;
}

.ssl-live-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ssl-live-button--hero {
    min-width: 503px;
    padding: 12px 18px;
    background: #616161;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}

.ssl-live-button--hero:hover {
    background: #4f4f4f;
    color: #fff;
}

.ssl-live-hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ssl-live-hero__visual img {
    width: 53%;
    max-width: 212px;
    min-width: 180px;
    height: auto;
}

.ssl-live-pricing {
    padding: 50px 0 0;
}

.ssl-live-heading {
    text-align: center;
}

.ssl-live-heading--pricing {
    margin-bottom: 10px;
}

.ssl-live-heading--pricing h2,
.ssl-live-heading--faq h2 {
    margin: 0;
    color: #034083;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.15;
}

.ssl-live-heading--pricing h6 {
    max-width: 1160px;
    margin: 14px auto 0;
    color: #6d6d6d;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
}

.ssl-live-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.ssl-live-plan-card {
    min-height: 100%;
    margin: 48px 0 8px;
    padding: 36px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 80px rgba(0, 0, 0, 0.125);
}

.ssl-live-plan-card h3 {
    position: relative;
    margin: 0;
    color: #1e1e1e;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
}

.ssl-live-plan-card__rule {
    width: 70px;
    height: 4px;
    margin-top: 10px;
    background: #034083;
}

.ssl-live-plan-card__price {
    margin: 24px 0 0;
    color: #21267b;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.2;
}

.ssl-live-plan-card__duration {
    color: #2a2d38;
    font-size: 15px;
    font-weight: 400;
}

.ssl-live-button--plan {
    width: 100%;
    margin-top: 30px;
    padding: 15px 30px;
    background: #13357f;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.ssl-live-button--plan:hover {
    background: #0f2f73;
    color: #fff;
}

.ssl-live-plan-card__features {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.ssl-live-plan-card__features li {
    padding-bottom: 12px;
    color: #2a2d38;
    font-size: 14px;
    line-height: 1.4;
}

.ssl-live-reasons {
    padding: 84px 0 44px;
}

.ssl-live-reasons__split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 36px;
}

.ssl-live-reasons__split--bottom {
    margin-top: 32px;
}

.ssl-live-reasons__copy--left {
    padding: 0 3em;
}

.ssl-live-reasons__copy--right {
    padding: 0 3em 0 1em;
}

.ssl-live-reasons__copy h2 {
    margin: 0 0 20px;
    color: #034083;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.ssl-live-reasons__copy p {
    margin: 0;
    color: #2a2d38;
    font-size: 16px;
    line-height: 1.75;
}

.ssl-live-reasons__copy p + p {
    margin-top: 12px;
}

.ssl-live-reasons__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ssl-live-reasons__visual img {
    display: block;
    max-width: 100%;
    height: auto;
}

.ssl-live-reasons__visual--save-time img {
    width: min(500px, 100%);
}

.ssl-live-reasons__visual--certificate img {
    width: min(570px, 100%);
}

.ssl-live-reason-list {
    display: grid;
}

.ssl-live-reason-item {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid #dfdfdf;
}

.ssl-live-reason-item--last {
    border-bottom: 0;
}

.ssl-live-reason-item__icon {
    position: relative;
    width: 24px;
    height: 24px;
    border: 2px solid #2a2d38;
    border-radius: 50%;
}

.ssl-live-reason-item__icon::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border-right: 2px solid #2a2d38;
    border-bottom: 2px solid #2a2d38;
    transform: rotate(40deg);
}

.ssl-live-reason-item h3 {
    margin: 0 0 8px;
    color: #2a2d38;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
}

.ssl-live-reason-item p {
    margin: 0;
    color: #2a2d38;
    font-size: 16px;
    line-height: 1.65;
}

.ssl-live-benefits {
    padding: 50px 0 100px;
    background: #f7f9fb;
}

.ssl-live-heading--benefits {
    max-width: 902px;
    margin: 0 auto 20px;
}

.ssl-live-heading--benefits h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.45;
}

.ssl-live-heading--benefits a {
    color: #034083;
}

.ssl-live-heading--benefits a:hover {
    color: #034083;
}

.ssl-live-benefit-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.ssl-live-benefit-card {
    padding: 35px 20px;
    border: 1px solid transparent;
    background: transparent;
    text-align: center;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.ssl-live-benefit-card:hover {
    border-color: #2575fc;
    background: #fff;
}

.ssl-live-benefit-card img {
    display: block;
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
}

.ssl-live-benefit-card h3 {
    margin: 0 0 8px;
    color: #2a2d38;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.ssl-live-benefit-card p {
    margin: 0;
    color: #565656;
    font-size: 14px;
    line-height: 1.7;
}

.ssl-live-tabs-section {
    padding: 50px 0;
}

.ssl-live-heading--tabs {
    margin-bottom: 20px;
}

.ssl-live-heading--tabs h2 {
    margin: 0;
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.35;
}

.ssl-live-tabs__nav {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.ssl-live-tabs__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 124px;
    padding: 14px 12px;
    border: 1px solid #cdcdcd;
    background: #fff;
    color: #686868;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
}

.ssl-live-tabs__button img {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
}

.ssl-live-tabs__button.is-active {
    color: #000;
}

.ssl-live-tabs__button + .ssl-live-tabs__button {
    border-left: 0;
}

.ssl-live-tabs__panel {
    display: none;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    padding: 52px 30px;
    border: 1px solid #cdcdcd;
    border-top: 0;
    align-items: start;
}

.ssl-live-tabs__panel.is-active {
    display: grid;
}

.ssl-live-tabs__copy h3 {
    margin: 0 0 12px;
    color: #2a2d38;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.35;
}

.ssl-live-tabs__copy {
    padding-top: 6px;
}

.ssl-live-tabs__copy p,
.ssl-live-tabs__copy li {
    color: #2a2d38;
    font-size: 16px;
    line-height: 1.7;
}

.ssl-live-tabs__copy p,
.ssl-live-tabs__copy ul,
.ssl-live-faq-answer p,
.ssl-live-faq-answer ol {
    margin: 0;
}

.ssl-live-tabs__copy ul {
    margin-top: 12px;
    padding-left: 22px;
}

.ssl-live-tabs__copy li + li {
    margin-top: 6px;
}

.ssl-live-tabs__image img {
    display: block;
    width: 300px;
    max-width: 100%;
    height: auto;
    margin-left: auto;
}

.ssl-live-faq {
    padding: 50px 0;
}

.ssl-live-heading--faq {
    margin-bottom: 20px;
}

.ssl-live-faq-list {
    border: 1px solid #d5d8dc;
    background: #fff;
}

.ssl-live-faq-item + .ssl-live-faq-item {
    border-top: 1px solid #d5d8dc;
}

.ssl-live-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 20px;
    border: 0;
    background: transparent;
    color: #333;
    text-align: left;
    font-size: 16px;
    line-height: 1.4;
}

.ssl-live-faq-question__icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

.ssl-live-faq-question__icon::before,
.ssl-live-faq-question__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    background: #333;
    transform: translate(-50%, -50%);
}

.ssl-live-faq-question__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.ssl-live-faq-item.is-open .ssl-live-faq-question__icon::after {
    opacity: 0;
}

.ssl-live-faq-answer {
    display: none;
    padding: 0 20px 20px 50px;
}

.ssl-live-faq-item.is-open .ssl-live-faq-answer {
    display: block;
}

.ssl-live-faq-answer p,
.ssl-live-faq-answer li {
    color: #333;
    font-size: 16px;
    line-height: 1.7;
}

.ssl-live-faq-answer ol {
    margin-top: 12px;
    padding-left: 22px;
}

.ssl-live-faq-answer li + li {
    margin-top: 8px;
}

.courses-live {
    background: #fff;
}

.courses-live__container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.courses-live-hero {
    background: #034083;
}

.courses-live-hero__grid {
    display: grid;
    grid-template-columns: 63.666% 36.334%;
    min-height: 396px;
    align-items: center;
}

.courses-live-hero__copy {
    padding: 48px 48px 48px 36px;
}

.courses-live-hero__copy h1 {
    max-width: 668px;
    margin: 0 0 20px;
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
}

.courses-live-hero__copy p {
    max-width: 668px;
    margin: 0 0 28px;
    color: #f7f2f2;
    font-size: 16px;
    line-height: 1.6;
}

.courses-live-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.courses-live-button--hero {
    min-width: 292px;
    padding: 14px 22px;
    background: #fc7464;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.1;
}

.courses-live-button--hero:hover,
.courses-live-button--submit:hover {
    background: #e76758;
    color: #fff;
}

.courses-live-hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.courses-live-hero__visual img {
    width: 97%;
    max-width: 403px;
    height: auto;
}

.courses-live-section--ash {
    background: #e7e7e7;
}

.courses-live-section--heading {
    padding-top: 50px;
}

.courses-live-section--plans {
    padding-bottom: 0;
}

.courses-live-section--plans-bottom {
    padding-bottom: 50px;
}

.courses-live-heading {
    text-align: center;
}

.courses-live-heading--primary {
    padding-bottom: 30px;
}

.courses-live-heading--primary h2 {
    margin: 0;
    color: #034083;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
}

.courses-live-heading--primary p {
    margin: 15px 0 0;
    color: #2a2d38;
    font-size: 18px;
    line-height: 1.6;
}

.courses-live-plan-grid {
    display: grid;
    gap: 0;
}

.courses-live-plan-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.courses-live-plan-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.courses-live-plan-card {
    min-height: 100%;
    margin: 10px;
    padding: 2.25rem;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.125);
    text-align: left;
}

.courses-live-plan-card--three {
    min-height: 578px;
}

.courses-live-plan-card--two {
    min-height: 433px;
}

.courses-live-plan-card h3 {
    margin: 0;
    color: #1e1e1e;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.35;
}

.courses-live-plan-card__rule {
    width: 70px;
    height: 4px;
    margin-top: 10px;
    background: #034083;
}

.courses-live-plan-card__price {
    margin: 28px 0 0;
    color: #21267b;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.2;
}

.courses-live-plan-card__duration {
    color: #2a2d38;
    font-size: 15px;
    font-weight: 400;
}

.courses-live-button--plan {
    width: 100%;
    margin-top: 30px;
    padding: 15px 30px;
    background: #13357f;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.courses-live-button--plan:hover {
    background: #0f2f73;
    color: #fff;
}

.courses-live-plan-card__copy {
    margin-top: 30px;
}

.courses-live-plan-card__copy p {
    margin: 0;
    color: #2a2d38;
    font-size: 14px;
    line-height: 1.7;
}

.courses-live-section--value-heading {
    padding-top: 0;
}

.courses-live-heading--secondary h2 {
    max-width: 1000px;
    margin: 0 auto;
    color: #4a4a4a;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
}

.courses-live-section--value {
    padding: 40px 0;
}

.courses-live-value-grid {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 26px;
    align-items: center;
}

.courses-live-value-grid__visual img {
    display: block;
    width: 100%;
    height: auto;
}

.courses-live-value-grid__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 22px;
}

.courses-live-value-item {
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 15px;
    align-items: start;
}

.courses-live-value-item__icon {
    color: #2a2d38;
    font-size: 30px;
    line-height: 1;
    text-align: center;
}

.courses-live-value-item__content h3 {
    margin: 0 0 12px;
    color: #2a2d38;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
}

.courses-live-value-item__content p {
    margin: 0;
    color: #2a2d38;
    font-size: 15px;
    line-height: 1.6;
}

.courses-live-section--methodology {
    padding: 40px 0;
}

.courses-live-methodology-grid {
    display: grid;
    grid-template-columns: 1fr 45%;
    gap: 30px;
    align-items: center;
}

.courses-live-methodology-grid__copy {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 26px;
}

.courses-live-methodology-grid__visual img {
    display: block;
    width: 100%;
    height: auto;
}

.courses-live-method-item h3 {
    margin: 0 0 6px;
    color: #2a2d38;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.courses-live-method-item h3 a {
    color: inherit;
}

.courses-live-method-item p {
    margin: 0;
    color: #2a2d38;
    font-size: 12px;
    line-height: 1.7;
}

.courses-live-section--brochure-heading,
.courses-live-section--brochure-form {
    background: #eaf4ff;
}

.courses-live-section--brochure-heading {
    padding: 0 0 20px;
}

.courses-live-heading--brochure h2 {
    margin: 20px;
    color: #034083;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.25;
}

.courses-live-section--brochure-form {
    padding: 0 0 70px;
}

.courses-live-form-alert {
    margin: 0 0 16px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.5;
}

.courses-live-form-alert--success {
    background: #ecfdf3;
    color: #0d6832;
}

.courses-live-form-alert--error {
    background: #fef2f2;
    color: #a11f1f;
}

.courses-live-brochure-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
}

.courses-live-brochure-form__field {
    display: grid;
}

.courses-live-brochure-form__field--full,
.courses-live-brochure-form__error--full {
    grid-column: 1 / -1;
}

.courses-live-brochure-form input,
.courses-live-brochure-form select {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid #d0d0d0;
    background: #fff;
    color: #292929;
    font-size: 16px;
}

.courses-live-brochure-form select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #888 50%), linear-gradient(135deg, #888 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 36px;
}

.courses-live-brochure-form__error {
    margin-top: 6px;
    color: #a11f1f;
    font-size: 13px;
}

.courses-live-button--submit {
    width: 100%;
    min-height: 54px;
    border: 0;
    background: #fc7464;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.workshop-live {
    --workshop-live-blue: #034083;
    --workshop-live-dark: #364957;
    --workshop-live-pink: #e05199;
    --workshop-live-soft: #f3f2f9;
    --workshop-live-gray: #f3f3f3;
    --workshop-live-copy: #2a2d38;
}

.workshop-live__container {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.workshop-live-hero {
    padding: 16px 0;
    background:
        radial-gradient(circle at 12px 12px, rgba(54, 73, 87, 0.08) 2px, transparent 0) 0 0 / 32px 32px,
        var(--workshop-live-soft);
}

.workshop-live-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: center;
    gap: 20px;
}

.workshop-live-hero__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 0 32px;
}

.workshop-live-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 75px;
    margin: 0 0 10px;
    padding: 10px 12px;
    border-radius: 16px;
    background: var(--workshop-live-dark);
    color: #fff;
    font-size: 38px;
    font-weight: 500;
    line-height: 45px;
    letter-spacing: 0.5px;
}

.workshop-live-hero__copy h1 {
    margin: 0;
    color: var(--workshop-live-blue);
    font-size: 32px;
    font-weight: 600;
    line-height: 44px;
}

.workshop-live-hero__highlight {
    margin: 0 0 20px;
    color: var(--workshop-live-pink);
    font-size: 35px;
    font-weight: 600;
    line-height: 44px;
}

.workshop-live-hero__lead {
    margin: 0 0 40px;
    color: var(--workshop-live-blue);
    font-size: 17px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: 0.2px;
}

.workshop-live-hero__visual img {
    display: block;
    width: 99%;
    max-width: 640px;
    height: auto;
    margin: 0 auto 0 0;
}

.workshop-live-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.workshop-live-button:hover {
    transform: translateY(-1px);
}

.workshop-live-button--hero {
    min-height: 62px;
    padding: 12px 24px;
    background: var(--workshop-live-blue);
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0.9px;
}

.workshop-live-button--hero:hover,
.workshop-live-button--submit:hover {
    background: var(--workshop-live-dark);
    color: #fff;
}

.workshop-live-about {
    background: var(--workshop-live-dark);
}

.workshop-live-about__inner {
    padding: 50px;
    text-align: center;
    color: #fafcff;
    font-size: 27px;
    line-height: 38px;
    letter-spacing: 0.9px;
}

.workshop-live-about__inner h2 {
    margin: 0 0 12px;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.workshop-live-about__inner p {
    margin: 0;
    color: #fafcff;
}

.workshop-live-section--overview-head {
    padding: 75px 0 50px;
}

.workshop-live-section-heading {
    text-align: center;
}

.workshop-live-section-heading h2 {
    margin: 0 0 18px;
    color: var(--workshop-live-blue);
    font-size: 41px;
    font-weight: 600;
    line-height: 44px;
    text-transform: uppercase;
}

.workshop-live-section-heading p {
    max-width: 1048px;
    margin: 0 auto;
    color: var(--workshop-live-dark);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}

.workshop-live-section--overview {
    padding: 0 0 50px;
}

.workshop-live-overview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    align-items: center;
}

.workshop-live-overview__visual img {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
}

.workshop-live-overview__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.workshop-live-overview__content h3 {
    margin: 0 0 18px;
    color: var(--workshop-live-blue);
    font-size: 29px;
    font-weight: 600;
    line-height: 44px;
    text-align: center;
    text-transform: uppercase;
}

.workshop-live-checks {
    margin: 0;
    padding: 10px 30px;
    list-style: none;
}

.workshop-live-checks li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 9px;
    align-items: start;
    margin: 0;
    padding: 5px 0;
    color: var(--workshop-live-copy);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
}

.workshop-live-checks__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    margin-top: 1px;
    border-radius: 50%;
    color: #3b475a;
    font-size: 18px;
}

.workshop-live-section--gains-head {
    padding: 50px 0 0;
}

.workshop-live-gains-heading {
    text-align: center;
}

.workshop-live-gains-heading h2 {
    margin: 0;
    color: #000;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.3;
}

.workshop-live-gains-heading span {
    display: block;
    width: 100px;
    height: 4px;
    margin: 16px auto 0;
    background: var(--workshop-live-blue);
}

.workshop-live-section--gains {
    padding: 24px 0 50px;
}

.workshop-live-gains-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.workshop-live-gain-card {
    padding: 28px 26px;
    border-radius: 20px 0 20px 0;
    background: var(--workshop-live-blue);
    color: #fff;
}

.workshop-live-gain-card h3 {
    margin: 0 0 12px;
    color: inherit;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 1px;
}

.workshop-live-gain-card p {
    margin: 0;
    color: inherit;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.4px;
}

.workshop-live-section--future {
    padding: 0 0 50px;
}

.workshop-live-future {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    align-items: center;
}

.workshop-live-future__visual img {
    display: block;
    width: 100%;
    max-width: 607px;
    height: auto;
}

.workshop-live-future__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 40px;
}

.workshop-live-future__content h3 {
    margin: 0;
    color: var(--workshop-live-blue);
    font-size: 29px;
    font-weight: 600;
    line-height: 44px;
    text-transform: uppercase;
}

.workshop-live-future__content p,
.workshop-live-instructor li {
    color: var(--workshop-live-copy);
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
}

.workshop-live-future__content p {
    margin: 0;
    padding: 0 26px;
}

.workshop-live-instructor p {
    margin: 0;
    padding: 0 26px;
}

.workshop-live-instructor ul {
    margin: 0;
    padding: 0 26px 0 48px;
}

.workshop-live-section--cta {
    padding: 50px 0;
}

.workshop-live-cta {
    text-align: center;
}

.workshop-live-cta h2 {
    margin: 0 0 16px;
    color: var(--workshop-live-blue);
    font-size: 29px;
    font-weight: 600;
    line-height: 44px;
    text-transform: uppercase;
}

.workshop-live-cta p {
    max-width: 1048px;
    margin: 0 auto 28px;
    color: var(--workshop-live-copy);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
}

.workshop-live-button--whatsapp {
    min-height: 54px;
    padding: 12px 24px;
    background: var(--workshop-live-blue);
    color: #fff;
    font-size: 18px;
    letter-spacing: 1.2px;
}

.workshop-live-registration {
    padding: 50px 0;
    background: var(--workshop-live-gray);
}

.workshop-live-registration__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}

.workshop-live-registration__copy,
.workshop-live-registration__form-wrap {
    display: flex;
    flex-direction: column;
}

.workshop-live-registration__copy {
    padding-right: 36px;
}

.workshop-live-registration__copy h2,
.workshop-live-registration__form-wrap h2 {
    margin: 0 0 18px;
    color: var(--workshop-live-blue);
    font-size: 29px;
    font-weight: 600;
    line-height: 44px;
    text-align: center;
    text-transform: uppercase;
}

.workshop-live-registration__copy ol,
.workshop-live-registration__copy ul {
    margin: 0;
    color: var(--workshop-live-copy);
    font-size: 16px;
    line-height: 26px;
}

.workshop-live-registration__copy ol {
    padding: 0 10px 0 30px;
}

.workshop-live-registration__copy li + li {
    margin-top: 18px;
}

.workshop-live-registration__note {
    margin-top: 50px;
    padding: 0 10px;
}

.workshop-live-registration__note h3 {
    margin: 0 0 12px;
    color: var(--workshop-live-copy);
    font-size: 16px;
    font-weight: 700;
}

.workshop-live-registration__note ul {
    padding-left: 18px;
}

.workshop-live-registration__warning {
    margin: 0 0 22px;
    color: #f70000;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
}

.workshop-live-form-alert {
    margin: 0 0 18px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.5;
}

.workshop-live-form-alert--success {
    background: #ecfdf3;
    color: #0d6832;
}

.workshop-live-form-alert--error {
    background: #fef2f2;
    color: #a11f1f;
}

.workshop-live-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.workshop-live-form__field {
    display: grid;
}

.workshop-live-form__field--full {
    grid-column: 1 / -1;
}

.workshop-live-form input,
.workshop-live-form select,
.workshop-live-form textarea {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid #d0d0d0;
    background: #fff;
    color: #2a2d38;
    font: inherit;
}

.workshop-live-form textarea {
    min-height: 174px;
    resize: vertical;
}

.workshop-live-form select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #888 50%), linear-gradient(135deg, #888 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 36px;
}

.workshop-live-form__error {
    margin-top: 6px;
    color: #a11f1f;
    font-size: 13px;
}

.workshop-live-form__disclaimer {
    color: var(--workshop-live-copy);
    font-size: 14px;
    line-height: 1.6;
}

.workshop-live-button--submit {
    width: 100%;
    min-height: 54px;
    background: var(--workshop-live-blue);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.workshop-live-section--closing {
    padding: 40px 0 50px;
}

.workshop-live-closing {
    display: grid;
    grid-template-columns: minmax(0, 0.333333fr) minmax(0, 0.666666fr);
    gap: 0;
    align-items: center;
}

.workshop-live-closing__visual img {
    display: block;
    width: 100%;
    max-width: 430px;
    height: auto;
}

.workshop-live-closing__content {
    padding: 20px 50px;
    color: var(--workshop-live-copy);
    font-size: 16px;
    line-height: 30px;
}

.workshop-live-closing__content h3 {
    margin: 0 0 16px;
    color: var(--workshop-live-copy);
    font-size: 29px;
    font-weight: 600;
    line-height: 44px;
}

.workshop-live-closing__content p {
    margin: 0 0 18px;
}

.workshop-live-closing__content p:last-child {
    margin-bottom: 0;
}

.workshop-live-closing__content a {
    color: var(--workshop-live-blue);
}

.payments-live {
    padding: 24px 0 50px;
}

.payments-live__container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.payments-live__intro {
    text-align: left;
}

.payments-live__intro h1 {
    margin: 0 0 18px;
    color: #034083;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.payments-live__intro > p {
    max-width: none;
    margin: 0;
    color: #242424;
    font-size: 16px;
    line-height: 1.7;
}

.payments-live__note {
    max-width: none;
    margin: 18px 0 0;
    padding: 8px 10px;
    border-radius: 5px;
    background: #fee78c;
    color: #000;
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
}

.payments-live__note p {
    margin: 0;
}

.payments-live__note a {
    color: inherit;
}

.payments-live__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.payments-live-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    padding: 20px 30px 10px;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    background: #fff;
}

.payments-live-card__logo {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 12px;
}

.payments-live-card__logo--bank,
.payments-live-card__logo--jazzcash {
    max-width: 50%;
}

.payments-live-card__logo--cards {
    max-width: 80%;
    margin-bottom: 15px;
}

.payments-live-card__logo img {
    display: block;
    width: 100%;
    height: auto;
}

.payments-live-card__heading {
    margin: 0 0 8px;
    color: #343434;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
}

.payments-live-card__list {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.payments-live-card__list li {
    position: relative;
    padding-left: 16px;
    color: #242424;
    font-size: 15px;
    line-height: 25px;
}

.payments-live-card__list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3a3a3a;
}

.payments-live-card__list li strong {
    font-weight: 700;
}

.payments-live__details {
    padding: 20px 0 0;
    color: #242424;
    font-size: 15px;
    line-height: 24px;
}

.payments-live__details h2 {
    margin: 0 0 10px;
    color: #242424;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

.payments-live__details p {
    margin: 0 0 16px;
}

.payments-live__details p:last-child {
    margin-bottom: 0;
}

.about-live__container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.about-live-hero {
    min-height: 250px;
    padding: 0;
    background: #034083;
}

.about-live-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 65fr) minmax(0, 35fr);
    align-items: center;
}

.about-live-hero__copy {
    padding: 32px;
}

.about-live-hero__copy h1 {
    margin: 0;
    color: #fff;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.18;
}

.about-live-hero__copy p {
    margin: 18px 0 0;
    color: #f7f2f2;
    font-size: 18px;
    line-height: 1.7;
}

.about-live-hero__visual {
    display: flex;
    justify-content: center;
}

.about-live-hero__visual img {
    display: block;
    width: 75%;
    max-width: 413px;
    height: auto;
}

.about-live-story {
    padding: 50px 0;
}

.about-live-story--soft {
    background: #f3f3f3;
}

.about-live-story__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.about-live-story__grid--reverse .about-live-story__copy {
    padding-left: 0;
}

.about-live-story__copy {
    color: #2a2d38;
    font-size: 18px;
    line-height: 27px;
}

.about-live-story__copy h2 {
    margin: 0 0 18px;
    color: #034083;
    font-size: 33px;
    font-weight: 600;
    line-height: 1.25;
}

.about-live-story__copy p {
    margin: 0 0 18px;
}

.about-live-story__copy p:last-child {
    margin-bottom: 0;
}

.about-live-story__media {
    padding: 0 20px;
}

.about-live-story__media img {
    display: block;
    width: 100%;
    height: 361px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.about-live-principles {
    margin: 50px 0;
}

.about-live-principles__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.about-live-principles__card {
    padding: 45px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.26);
}

.about-live-principles__card h2 {
    margin: 0 0 18px;
    color: #2a2d38;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.about-live-principles__card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

.about-live-principles__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-live-principles__list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 16px;
    line-height: 1.7;
}

.about-live-principles__list li + li {
    margin-top: 14px;
}

.about-live-principles__list i {
    margin-top: 6px;
    color: #034083;
    font-size: 14px;
}

.about-live-stats {
    padding: 0 0 50px;
}

.about-live-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 10px;
    column-gap: 24px;
}

.about-live-stat {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 12px 0;
}

.about-live-stat__icon {
    flex: 0 0 auto;
    color: #034083;
    font-size: 50px;
    line-height: 1;
}

.about-live-stat__content h3 {
    margin: 0 0 8px;
    color: #2a2d38;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.1;
}

.about-live-stat__content p {
    margin: 0;
    color: #2a2d38;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.about-live-reviews {
    padding: 50px 0 80px;
    background: #f3f3f3;
}

.about-live-reviews__heading {
    margin-bottom: 28px;
    text-align: center;
}

.about-live-reviews__heading h2 {
    margin: 0;
    color: #034083;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
}

.about-live-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.about-live-review {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    padding: 24px;
    border: 1px solid rgba(3, 64, 131, 0.18);
    border-radius: 8px;
    background: #fff;
}

.about-live-review__text {
    margin: 0;
    color: #000;
    font-size: 16px;
    line-height: 1.75;
}

.about-live-review__footer {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.about-live-review__footer img {
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
}

.about-live-review__cite h3 {
    margin: 0 0 4px;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
}

.about-live-review__cite span {
    display: block;
    color: #000;
    font-size: 14px;
    line-height: 1.5;
}

.about-live-cta {
    margin: 40px 0;
}

.about-live-cta__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 70fr) minmax(0, 30fr);
    align-items: center;
    gap: 24px;
    padding: 32px;
    overflow: hidden;
    border-radius: 10px;
    background: #034083;
}

.about-live-cta__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: center / cover no-repeat url("../images/strict/linux-vps/bg-footer.jpg");
    opacity: 0.25;
    pointer-events: none;
}

.about-live-cta__copy,
.about-live-cta__action {
    position: relative;
    z-index: 1;
}

.about-live-cta__copy h2 {
    margin: 0;
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.25;
}

.about-live-cta__action {
    display: flex;
    justify-content: flex-end;
}

.about-live-cta__button {
    min-height: 54px;
    padding: 14px 30px;
    border: 0;
    background: #fff;
    color: #034083;
    font-size: 18px;
    font-weight: 600;
}

.support-live {
    padding: 0 0 50px;
    background: #f1f1f1;
}

.support-live__container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.support-live__header {
    padding-top: 25px;
    text-align: center;
}

.support-live__header h1 {
    margin: 0;
    color: #2a2d38;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
}

.support-live__stack {
    display: grid;
    gap: 10px;
}

.support-live__block h2 {
    margin: 20px 0 10px;
    color: #393939;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.35;
}

.support-live__block p {
    margin: 0;
    color: #2a2d38;
    font-size: 15px;
    line-height: 1.8;
}

.support-live__block a:not(.support-live__button) {
    color: inherit;
}

.support-live__actions {
    margin-top: 12px;
}

.support-live__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 12px 24px;
    border-radius: 8px;
    background: #034083;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}

.support-live__button i {
    font-size: 16px;
}

.contact-live-hero {
    min-height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #034083;
}

.contact-live-hero__grid {
    width: min(1200px, calc(100% - 40px));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 0;
}

.contact-live-hero__copy {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-live-hero__copy h1 {
    margin: 0;
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.08;
}

.contact-live-hero__button {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 4px;
    background: #db910b;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.contact-live-hero__button:hover {
    background: #c7830c;
    color: #fff;
}

.contact-live-hero__visual {
    display: flex;
    justify-content: center;
}

.contact-live-hero__visual img {
    width: 71%;
    max-width: 424px;
    height: auto;
    display: block;
}

.contact-live-info {
    padding: 50px 0;
    background: #f7f7f7;
}

.contact-live-info__container {
    width: min(1260px, calc(100% - 20px));
    margin: 0 auto;
}

.contact-live-info__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.contact-live-card {
    padding: 20px 20px 50px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.32);
}

.contact-live-card--address {
    padding-bottom: 30px;
}

.contact-live-card__item {
    display: grid;
    grid-template-columns: 27px minmax(0, 1fr);
    gap: 9px 12px;
    align-items: start;
}

.contact-live-card__icon {
    display: flex;
    justify-content: center;
    color: #034083;
    font-size: 18px;
    line-height: 1;
    padding-top: 2px;
}

.contact-live-card__content h2 {
    margin: 0 0 15px;
    color: #1f2937;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.contact-live-card__text {
    color: #242424;
    font-size: 15px;
    line-height: 30px;
}

.contact-live-card__text p {
    margin: 0;
}

.contact-live-card__text a {
    color: inherit;
    text-decoration: none;
}

.contact-live-card__text a:hover {
    color: #034083;
}

.contact-live-card__divider {
    width: 100%;
    margin: 5px 0;
    border-top: 2px dashed rgba(170, 170, 170, 0.45);
}

.contact-live-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-top: 22px;
    padding: 10px 22px;
    border-radius: 4px;
    background: #034083;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.contact-live-card__button:hover {
    background: #1f5190;
    color: #fff;
}

.contact-live-map iframe {
    display: block;
    width: 100%;
    height: 373px;
    border: 0;
}

.facilities-live-hero {
    min-height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #034083;
}

.facilities-live-hero__grid {
    width: min(1200px, calc(100% - 40px));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 0;
}

.facilities-live-hero__copy h1 {
    margin: 0 0 24px;
    color: #fff;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.12;
}

.facilities-live-hero__copy p {
    margin: 0;
    color: #f7f2f2;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

.facilities-live-hero__visual {
    display: flex;
    justify-content: center;
}

.facilities-live-hero__visual img {
    width: 71%;
    max-width: 401px;
    height: auto;
    display: block;
}

.facilities-live-datacenter {
    padding: 50px 0;
}

.facilities-live-datacenter__grid {
    width: min(1200px, calc(100% - 40px));
    display: grid;
    grid-template-columns: minmax(0, 49.528%) minmax(0, 1fr);
    gap: 0;
}

.facilities-live-datacenter__gallery-block {
    padding-right: 50px;
}

.facilities-live-datacenter__gallery-block h2,
.facilities-live-datacenter__details h2 {
    margin: 0;
    color: #2a2d38;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.35;
}

.facilities-live-datacenter__gallery-block h2 {
    padding: 25px 0;
}

.facilities-live-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.facilities-live-gallery__item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    text-decoration: none;
}

.facilities-live-gallery__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.facilities-live-gallery__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.8s ease;
}

.facilities-live-gallery__item:hover img,
.facilities-live-gallery__item:focus-visible img {
    transform: scale(1.03);
}

.facilities-live-gallery__item:hover .facilities-live-gallery__overlay,
.facilities-live-gallery__item:focus-visible .facilities-live-gallery__overlay {
    background: rgba(0, 0, 0, 0.5);
}

.facilities-live-datacenter__details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.facilities-live-datacenter__details h2 {
    padding: 20px 0 25px;
}

.facilities-live-datacenter__details p {
    margin: 0;
    color: #2a2d38;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

.facilities-live-specs {
    margin: 0;
    padding: 10px 0 0;
    list-style: none;
}

.facilities-live-specs li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #2a2d38;
    font-size: 20px;
    font-weight: 500;
    line-height: 49px;
}

.facilities-live-specs i {
    color: #2575fc;
    font-size: 13px;
    line-height: 49px;
}

.facilities-live-features {
    padding: 0 0 20px;
}

.facilities-live-features > .container {
    width: min(1200px, calc(100% - 40px));
}

.facilities-live-features__heading {
    margin: 0 0 20px;
    color: #2a2d38;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.facilities-live-features__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.facilities-live-feature-card {
    height: 100%;
    padding: 20px;
    border: 1px solid #f5f4f5;
    border-radius: 5px;
    background: #fff;
    transition: border-color 0.3s ease;
}

.facilities-live-feature-card:hover {
    border-color: #007bff;
}

.facilities-live-feature-card__icon {
    width: 90px;
    height: 90px;
    margin: 30px 0 25px;
    border: 6px solid transparent;
    border-radius: 999px;
    background: #2575fc;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 40px;
    line-height: 1;
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.facilities-live-feature-card:hover .facilities-live-feature-card__icon {
    background: #fff;
    color: #2575fc;
    border-color: #2575fc;
}

.facilities-live-feature-card h3 {
    margin: 0 0 16px;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
}

.facilities-live-feature-card p {
    margin: 0 0 35px;
    color: #656565;
    font-size: 16px;
    line-height: 1.75;
}


