:root {
    --sl-blue: #0071ff;
    --sl-cyan: #00d4ff;
    --sl-dark: #07111f;
    --sl-text: #172033;
    --sl-muted: #667085;
    --sl-yellow: #ffd36a;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #fff;
    color: var(--sl-text);
}

a {
    transition: .2s ease;
}

/* =========================
   NAV / HEADER
========================= */

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    z-index: 999;
}

.site-header .navbar {
    min-height: 72px;
    background: rgba(5, 22, 45, .34);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.navbar-brand {
    color: #fff;
    font-weight: 800;
    letter-spacing: -.4px;
}

.navbar-brand:hover {
    color: #fff;
}

.navbar-brand span {
    color: var(--sl-cyan);
}

.navbar-dark .navbar-nav .nav-link,
.nav-link {
    color: rgba(255,255,255,.88);
    font-weight: 700;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.nav-link:hover,
.nav-link:focus {
    color: #fff;
}

.dropdown-menu {
    background: rgba(8, 24, 44, .78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,.22);
}

.dropdown-item {
    color: rgba(255,255,255,.86);
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 600;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(255,255,255,.08);
    color: #fff;
}

.lang-link {
    color: rgba(255,255,255,.62);
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
}

.lang-link:hover,
.lang-link.active {
    color: #fff;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sl-blue), var(--sl-cyan));
    border: 0;
}

.btn-primary:hover {
    filter: brightness(1.08);
}

/* =========================
   HOME HERO
========================= */

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #07111f;
    color: #fff;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255,255,255,.045) 0px,
            rgba(255,255,255,.045) 1px,
            transparent 1px,
            transparent 120px
        );
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.04);
    animation: heroFade 25s infinite;
    filter: brightness(.82) contrast(1.12) saturate(.96);
}

.hero-slide:first-child {
    opacity: 1;
}

.hero-slide-1 { background-image: url('/assets/img/slider/sl1.webp'); animation-delay: 0s; }
.hero-slide-2 { background-image: url('/assets/img/slider/sl2.webp'); animation-delay: 5s; }
.hero-slide-3 { background-image: url('/assets/img/slider/sl3.webp'); animation-delay: 10s; }
.hero-slide-4 { background-image: url('/assets/img/slider/sl4.webp'); animation-delay: 15s; }
.hero-slide-5 { background-image: url('/assets/img/slider/sl5.webp'); animation-delay: 20s; }

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            rgba(0, 100, 170, .34) 0%,
            rgba(0, 155, 195, .22) 44%,
            rgba(0, 210, 200, .30) 100%
        );
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            rgba(2, 6, 23, .62) 0%,
            rgba(2, 6, 23, .34) 42%,
            rgba(0, 120, 160, .22) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 118px;
    padding-bottom: 44px;
}

@keyframes heroFade {
    0% {
        opacity: 0;
        transform: scale(1.04);
    }

    8% {
        opacity: 1;
    }

    24% {
        opacity: 1;
        transform: scale(1.14);
    }

    34% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        transform: scale(1.14);
    }
}

/* =========================
   HERO DOMAIN BAR
========================= */

.hero-domain-bar {
    width: 100%;
    min-height: 92px;
    margin-bottom: 46px;
    padding: 14px 18px;
    display: grid;
    grid-template-columns: minmax(430px, 1fr) auto;
    align-items: center;
    gap: 26px;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 24px 80px rgba(0,0,0,.14);
}

.hero-domain-form {
    display: grid;
    grid-template-columns: 1fr 210px;
    gap: 10px;
}

.hero-domain-form input {
    width: 100%;
    min-height: 58px;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.10);
    color: #fff;
    padding: 0 22px;
    outline: none;
    font-size: 18px;
    font-weight: 800;
}

.hero-domain-form input::placeholder {
    color: rgba(255,255,255,.72);
}

.hero-domain-form button {
    min-height: 58px;
    border: 1px solid rgba(255,255,255,.26);
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
}

.hero-domain-form button:hover {
    background: rgba(255,255,255,.22);
}

.hero-domain-prices {
    display: flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
}

.hero-domain-prices div {
    color: #fff;
    font-weight: 900;
}

.hero-domain-prices strong {
    font-size: 22px;
    margin-right: 8px;
}

.hero-domain-prices span {
    color: var(--sl-yellow);
    font-size: 16px;
    border-bottom: 3px solid var(--sl-yellow);
    padding-bottom: 4px;
}

/* =========================
   HERO MAIN GRID
========================= */

.hero-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(440px, .96fr);
    align-items: center;
    gap: 70px;
    min-height: 390px;
}

.hero-left h1 {
    max-width: 780px;
    font-size: clamp(42px, 4.5vw, 66px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -2px;
    text-shadow: 0 10px 40px rgba(0,0,0,.25);
    margin: 0 0 24px;
}

.hero-left p {
    max-width: 760px;
    margin: 0 0 30px;
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255,255,255,.94);
    text-shadow: 0 8px 28px rgba(0,0,0,.22);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-main-btn,
.hero-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 34px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
}

.hero-main-btn {
    color: #0097b8;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,.16);
}

.hero-main-btn:hover {
    color: #007da1;
    transform: translateY(-2px);
}

.hero-secondary-btn {
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.35);
}

.hero-secondary-btn:hover {
    color: #fff;
    background: rgba(255,255,255,.20);
}

/* =========================
   NAV.CO STYLE OFFER BOX
========================= */

.hero-right {
    display: flex;
    justify-content: flex-end;
}

.navco-offer-box {
    position: relative;
    width: 100%;
    max-width: 680px;
    min-height: 350px;
    padding: 34px 38px;
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 24px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 30px 80px rgba(0,0,0,.16),
        inset 0 0 0 1px rgba(255,255,255,.05);
}

.navco-offer-box::after {
    content: "";
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: -16px;
    height: 12px;
    background: rgba(255,255,255,.15);
}

.offer-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.75);
    color: #16aabd;
    font-size: 38px;
    font-weight: 900;
}

.offer-content h2 {
    display: inline;
    padding: 2px 8px 5px;
    background: #ffbd3d;
    color: #fff;
    font-size: 34px;
    line-height: 1.22;
    font-weight: 900;
}

.offer-content > p {
    margin: 15px 0 22px;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}

.navco-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 12px;
}

.navco-plan {
    color: #fff;
}

.navco-plan span {
    display: inline-block;
    margin-bottom: 8px;
    color: rgba(255,255,255,.80);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .8px;
}

.navco-plan h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 21px;
    font-weight: 900;
}

.navco-plan strong {
    display: block;
    margin-bottom: 8px;
    color: var(--sl-yellow);
    font-size: 28px;
    line-height: 1;
    font-weight: 950;
}

.navco-plan strong small {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.navco-plan p {
    margin: 0;
    color: rgba(255,255,255,.92);
    font-size: 15px;
    line-height: 1.45;
}

.offer-choose-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 8px;
    background: #fff;
    color: #0097b8;
    text-decoration: none;
    font-weight: 900;
}

.offer-choose-btn:hover {
    color: #007da1;
    transform: translateY(-2px);
}

/* =========================
   HERO BOTTOM SERVICES
========================= */

.hero-bottom-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-top: 72px;
}

.hero-bottom-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 24px;
    align-items: start;
    min-height: 190px;
    color: #fff;
    text-decoration: none;
}

.hero-bottom-card:hover {
    color: #fff;
    transform: translateY(-4px);
}

.hero-bottom-icon {
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    border: 4px solid rgba(255,255,255,.75);
    color: #fff;
    font-size: 46px;
    font-weight: 900;
    opacity: .95;
}

.hero-bottom-card h3 {
    margin: 0 0 14px;
    font-size: 31px;
    line-height: 1.05;
    font-weight: 900;
}

.hero-bottom-card p {
    margin: 0 0 18px;
    color: rgba(255,255,255,.94);
    font-size: 17px;
    line-height: 1.5;
}

.hero-bottom-card strong {
    display: block;
    color: #fff;
    font-size: 23px;
    font-weight: 500;
}

.hero-bottom-card strong span {
    color: var(--sl-yellow);
    font-size: 32px;
    font-weight: 900;
}

/* =========================
   SERVICES SECTION
========================= */

.services-section {
    position: relative;
    padding: 95px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 212, 255, .12), transparent 32%),
        linear-gradient(180deg, #f5f8fc 0%, #ffffff 100%);
}

.section-head {
    max-width: 820px;
    margin: 0 auto 52px;
}

.section-kicker {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 113, 255, .08);
    color: #006ee6;
    border: 1px solid rgba(0, 113, 255, .16);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-head h2,
.services-section h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1.4px;
    color: #07111f;
}

.section-head p {
    font-size: 19px;
    color: var(--sl-muted);
    margin-top: 18px;
}

.service-card {
    display: block;
    height: 100%;
    padding: 30px;
    border-radius: 24px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    border: 1px solid rgba(7,17,31,.08);
    box-shadow: 0 20px 50px rgba(7,17,31,.08);
    transition: .2s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(7,17,31,.14);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 900;
}

.service-card p {
    color: var(--sl-muted);
}

.service-card span {
    color: var(--sl-blue);
    font-weight: 800;
}

.pro-card {
    position: relative;
    overflow: hidden;
    min-height: 310px;
}

.pro-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(0, 212, 255, .18), transparent 28%),
        linear-gradient(135deg, rgba(0,113,255,.06), rgba(255,255,255,0));
    opacity: 0;
    transition: .25s ease;
}

.pro-card:hover::before {
    opacity: 1;
}

.service-top,
.pro-card h3,
.pro-card p,
.service-more {
    position: relative;
    z-index: 2;
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.service-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0,113,255,.12), rgba(0,212,255,.16));
    font-size: 26px;
}

.service-top span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(7,17,31,.05);
    color: #475467;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.pro-card h3 {
    font-size: 25px;
    margin-bottom: 14px;
    color: #07111f;
}

.pro-card p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--sl-muted);
}

.service-more {
    position: absolute;
    left: 30px;
    bottom: 26px;
    color: var(--sl-blue);
    font-weight: 900;
}

.service-more strong {
    display: inline-block;
    transition: .2s ease;
}

.pro-card:hover .service-more strong {
    transform: translateX(5px);
}

/* =========================
   SUBPAGE HERO
========================= */

.subpage-section {
    padding: 160px 0 100px;
    min-height: 60vh;
}

.product-hero {
    padding: 170px 0 90px;
    background:
        radial-gradient(circle at 80% 20%, rgba(0,212,255,.16), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

.product-hero h1 {
    max-width: 980px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -2px;
    color: #07111f;
}

.product-hero p {
    max-width: 820px;
    margin-top: 24px;
    font-size: 20px;
    line-height: 1.65;
    color: var(--sl-muted);
}

.page-hero {
    position: relative;
    min-height: 620px;
    padding-top: 96px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: #020817;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    animation: heroZoom 24s ease-in-out infinite alternate;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2, 6, 23, .82) 0%,
            rgba(2, 6, 23, .64) 42%,
            rgba(2, 6, 23, .38) 100%
        );
}

.page-hero-content {
    position: relative;
    z-index: 5;
    max-width: 760px;
    padding-top: 20px;
}

.page-hero-content h1 {
    font-size: clamp(38px, 4vw, 62px);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 24px;
    text-shadow: 0 12px 42px rgba(0,0,0,.45);
}

.page-hero-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,.9);
    line-height: 1.8;
    margin-bottom: 32px;
    text-shadow: 0 8px 28px rgba(0,0,0,.35);
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* =========================
   PRODUCT SECTIONS / CARDS
========================= */

.product-section {
    padding: 80px 0;
    background: #fff;
}

.feature-box {
    height: 100%;
    padding: 30px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(7,17,31,.08);
    box-shadow: 0 18px 45px rgba(7,17,31,.07);
}

.feature-box h3 {
    font-weight: 900;
    color: #07111f;
}

.feature-box p {
    color: var(--sl-muted);
    line-height: 1.65;
}

/* =========================
   DOMAIN SEARCH SUBPAGE
========================= */

.domain-search-box {
    display: flex;
    max-width: 720px;
    gap: 12px;
    padding: 10px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(7,17,31,.12);
}

.domain-search-box input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 0 18px;
    font-size: 18px;
    color: #07111f;
}

.domain-search-box input::placeholder {
    color: #98a2b3;
}

.domain-search-box button {
    white-space: nowrap;
    padding-left: 26px;
    padding-right: 26px;
}

/* =========================
   CONTACT
========================= */

.contact-info-card,
.contact-form {
    height: 100%;
    padding: 34px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(7,17,31,.08);
    box-shadow: 0 18px 45px rgba(7,17,31,.07);
}

.contact-info-card h2 {
    font-weight: 900;
    color: #07111f;
}

.contact-info-card p {
    color: var(--sl-muted);
    line-height: 1.65;
}

.contact-line {
    padding: 18px 0;
    border-top: 1px solid rgba(7,17,31,.08);
}

.contact-line strong {
    display: block;
    color: #07111f;
    margin-bottom: 6px;
}

.contact-line a,
.contact-line span {
    color: var(--sl-muted);
    text-decoration: none;
}

.contact-line a:hover {
    color: var(--sl-blue);
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
    color: #07111f;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(7,17,31,.12);
    border-radius: 14px;
    padding: 14px 16px;
    outline: none;
    font-size: 16px;
    background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(0,113,255,.55);
    box-shadow: 0 0 0 4px rgba(0,113,255,.08);
}

/* =========================
   404 PAGE
========================= */

.error-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(0,15,35,.88) 0%,
            rgba(0,40,70,.76) 40%,
            rgba(0,190,188,.50) 100%
        ),
        url('/assets/img/slider/sl2.webp');
    background-size: cover;
    background-position: center;
}

.error-overlay {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255,255,255,.03) 0px,
            rgba(255,255,255,.03) 2px,
            transparent 2px,
            transparent 120px
        );
    backdrop-filter: blur(2px);
}

.error-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.error-content h1 {
    font-size: 72px;
    line-height: 1.05;
    margin-bottom: 25px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 12px 40px rgba(0,0,0,.45);
}

.error-content p {
    max-width: 600px;
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255,255,255,.88);
    margin-bottom: 35px;
}

.error-badge {
    display: inline-block;
    padding: 10px 18px;
    margin-bottom: 25px;
    border-radius: 30px;
    background: rgba(0,190,188,.15);
    border: 1px solid rgba(0,190,188,.35);
    color: #d7fbff;
    font-size: 14px;
    font-weight: 700;
}

.error-buttons {
    display: flex;
    gap: 15px;
}

.error-buttons .btn-outline,
.error-buttons .btn-outline:visited {
    color: #fff;
    border: 1px solid rgba(255,255,255,.55);
    background: rgba(255,255,255,.06);
}

.error-buttons .btn-outline:hover {
    color: #07111f;
    background: #fff;
    border-color: #fff;
}

.error-code {
    text-align: right;
    font-size: 260px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.20);
    user-select: none;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    background: #07111f;
    color: rgba(255,255,255,.75);
    padding: 70px 0 30px;
}

.site-footer h3,
.site-footer h4 {
    color: #fff;
    font-weight: 900;
}

.site-footer a {
    display: block;
    color: rgba(255,255,255,.68);
    text-decoration: none;
    margin-bottom: 8px;
}

.site-footer a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 50px;
    padding-top: 24px;
    color: rgba(255,255,255,.45);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1399px) {
    .hero-main-grid {
        gap: 44px;
        grid-template-columns: minmax(0, 1fr) minmax(420px, .86fr);
    }

    .hero-left h1 {
        font-size: clamp(40px, 4.4vw, 58px);
    }

    .navco-offer-box {
        padding: 30px;
    }
}

@media (max-width: 1199px) {
    .site-header .navbar {
        min-height: 64px;
    }

    .hero-domain-bar {
        grid-template-columns: 1fr;
    }

    .hero-domain-prices {
        justify-content: space-between;
    }

    .hero-main-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .hero-right {
        justify-content: flex-start;
    }

    .hero-bottom-services {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 900px) {
    .error-grid {
        grid-template-columns: 1fr;
    }

    .error-code {
        text-align: left;
        font-size: 140px;
    }

    .error-content h1 {
        font-size: 46px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 560px;
        padding-top: 90px;
    }

    .page-hero-content h1 {
        font-size: 2.1rem;
    }

    .page-hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
    }

    .hero-content {
        padding-top: 96px;
        padding-bottom: 70px;
    }

    .hero-domain-bar {
        margin-bottom: 42px;
        padding: 12px;
    }

    .hero-domain-form {
        grid-template-columns: 1fr;
    }

    .hero-domain-prices {
        gap: 16px;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .hero-left h1 {
        font-size: 38px;
        letter-spacing: -1.2px;
    }

    .hero-left p {
        font-size: 17px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .navco-offer-box {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .offer-icon {
        width: 62px;
        height: 62px;
        font-size: 30px;
    }

    .offer-content h2 {
        font-size: 27px;
    }

    .offer-content > p {
        font-size: 18px;
    }

    .navco-plans {
        grid-template-columns: 1fr;
    }

    .hero-bottom-card {
        grid-template-columns: 78px 1fr;
        gap: 18px;
    }

    .hero-bottom-icon {
        width: 70px;
        height: 70px;
        font-size: 34px;
    }

    .hero-bottom-card h3 {
        font-size: 25px;
    }

    .hero-bottom-card p {
        font-size: 16px;
    }

    .domain-search-box {
        flex-direction: column;
        padding: 14px;
    }

    .domain-search-box input {
        min-height: 52px;
    }
}

/* =========================
   NAV REFINEMENT
========================= */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-lang-btn,
.nav-soft-btn,
.nav-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.nav-lang-btn {
    gap: 7px;
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.16);
}

.nav-lang-btn:hover {
    color: #fff;
    background: rgba(255,255,255,.20);
}

.nav-flag {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    font-size: 17px;
    line-height: 1;
}

.nav-soft-btn {
    color: #fff;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.36);
}

.nav-soft-btn:hover {
    color: #fff;
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.52);
}

.nav-primary-btn {
    color: #fff;
    background: linear-gradient(135deg, var(--sl-blue), var(--sl-cyan));
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 10px 25px rgba(0,113,255,.25);
}

.nav-primary-btn:hover {
    color: #fff;
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.sl-dropdown {
    min-width: 360px;
}

.sl-dropdown-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    padding: 13px 14px;
}

.sl-dropdown-item strong {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
}

.sl-dropdown-item small {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,.62);
    font-size: 12px;
    font-weight: 600;
}

.drop-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(0,212,255,.14);
    color: #d7fbff;
    font-size: 18px;
}

.sl-dropdown-item:hover .drop-icon {
    background: rgba(0,212,255,.24);
}

@media (max-width: 1199px) {
    .nav-actions {
        align-items: stretch;
        flex-direction: column;
        padding-top: 16px;
    }

    .nav-lang-btn,
    .nav-soft-btn,
    .nav-primary-btn {
        width: 100%;
        justify-content: center;
    }

    .sl-dropdown {
        min-width: auto;
    }
}
.plans-section {
    padding: 95px 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(0, 212, 255, .10), transparent 32%),
        linear-gradient(180deg, #f5f8fc 0%, #ffffff 100%);
}

.pricing-group-title {
    margin: 32px 0 22px;
    font-size: 24px;
    font-weight: 900;
    color: #07111f;
}

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

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 30px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(7,17,31,.08);
    box-shadow: 0 22px 55px rgba(7,17,31,.08);
}

.price-card.featured {
    border-color: rgba(16,185,129,.45);
    background:
        radial-gradient(circle at 85% 0%, rgba(16,185,129,.14), transparent 32%),
        #fff;
    box-shadow: 0 30px 80px rgba(16,185,129,.16);
}

.plan-badge {
    display: inline-flex;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(7,17,31,.04);
    border: 1px solid rgba(7,17,31,.10);
    color: #344054;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.plan-badge.badge-green {
    color: #047857;
    background: rgba(16,185,129,.12);
    border-color: rgba(16,185,129,.32);
}

.price-card h3 {
    font-size: 26px;
    font-weight: 900;
    color: #07111f;
    margin-bottom: 12px;
}

.price {
    font-size: 38px;
    line-height: 1;
    font-weight: 950;
    color: #07111f;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.price span {
    font-size: 16px;
    color: #344054;
    font-weight: 800;
    letter-spacing: 0;
}

.plan-desc {
    min-height: 72px;
    color: #667085;
    line-height: 1.65;
    margin-bottom: 18px;
}

.price-card ul {
    padding-left: 20px;
    margin: 0 0 24px;
    color: #475467;
}

.price-card li {
    margin-bottom: 9px;
    line-height: 1.45;
}

.price-card li strong {
    color: #344054;
}

.plan-button {
    margin-top: auto;
    display: block;
    width: 100%;
    padding: 14px 18px;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    color: #07111f;
    background: #f8fafc;
    border: 1px solid rgba(7,17,31,.12);
    font-weight: 900;
}

.plan-button:hover {
    color: #07111f;
    background: #eef7ff;
}

.plan-button.primary {
    color: #fff;
    border: 0;
    background: linear-gradient(135deg, var(--sl-blue), #12b886);
    box-shadow: 0 16px 36px rgba(0,113,255,.18);
}

.plan-button.primary:hover {
    color: #fff;
    filter: brightness(1.06);
}

@media (max-width: 1199px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price {
        font-size: 34px;
    }
}

/* =========================
   SERVER HOSTING / VPS / DEDICATED CARDS - FIXED CLEAN VERSION
========================= */

.dedicated-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.dedicated-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(7,17,31,.08);
    box-shadow: 0 18px 45px rgba(7,17,31,.08);
    overflow: hidden;
}

.dedicated-card-head {
    align-items: center;
}

.dedicated-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 65px rgba(7,17,31,.12);
}

.dedicated-card-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: start;
    margin-bottom: 18px;
}

.dedicated-badge {
    display: inline-flex;
    width: fit-content;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(255,189,61,.14);
    border: 1px solid rgba(255,189,61,.35);
    color: #9a6100;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px;
}

.dedicated-card h3 {
    margin: 0;
    color: #07111f;
    font-size: 24px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -.4px;
}

.dedicated-price {
    text-align: right;
    min-width: 135px;
}

.dedicated-price strong {
    display: block;
    color: #07111f;
    font-size: 28px;
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -.8px;
}

.dedicated-price span {
    display: block;
    margin-top: 5px;
    color: #667085;
    font-size: 13px;
    font-weight: 800;
}

.dedicated-contract {
    display: block;
    width: 100%;
    padding: 13px 15px;
    border-radius: 16px;
    background: rgba(0,113,255,.06);
    border: 1px solid rgba(0,113,255,.12);
    color: #005ecb;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
    margin-bottom: 18px;
}

.dedicated-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.dedicated-specs li {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 14px;
    padding: 11px 0;
    border-top: 1px solid rgba(7,17,31,.08);
}

.dedicated-specs li span {
    color: #667085;
    font-size: 13px;
    font-weight: 800;
}

.dedicated-specs li strong {
    color: #344054;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 750;
}

.dedicated-specs li:not(:has(span)) {
    grid-template-columns: 1fr;
    text-align: center;
}

.dedicated-specs li:not(:has(span)) strong {
    text-align: center;
}

.dedicated-specs li.no-label {
    grid-template-columns: 1fr;
    text-align: center;
}

.dedicated-specs li.no-label strong {
    text-align: center;
    display: block;
}


.dedicated-button {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    width: 100%;
    padding: 12px 18px;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--sl-blue), var(--sl-cyan));
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(0,113,255,.16);
}

.dedicated-button:hover {
    color: #fff;
    filter: brightness(1.06);
}

/* Nagy monitoron 3 oszlop csak akkor, ha tényleg van hely */

@media (max-width: 767px) {
    .dedicated-card {
        padding: 22px;
    }

    .dedicated-card-head {
        grid-template-columns: 1fr;
    }

    .dedicated-price {
        text-align: left;
    }

    .dedicated-card h3 {
        font-size: 22px;
    }

    .dedicated-specs li {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

/* =========================
   DOMAIN PRICING
========================= */

.domain-pricing-card {
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(7,17,31,.08);
    box-shadow: 0 22px 55px rgba(7,17,31,.08);
}

.domain-pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.domain-pricing-table th {
    padding: 20px 18px;
    background: #f8fafc;
    color: #07111f;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
    border-bottom: 1px solid rgba(7,17,31,.08);
}

.domain-pricing-table td {
    padding: 18px;
    border-bottom: 1px solid rgba(7,17,31,.07);
    vertical-align: top;
}

.domain-pricing-table tr:last-child td {
    border-bottom: 0;
}

.domain-tld {
    display: inline-flex;
    min-width: 64px;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0,113,255,.08);
    border: 1px solid rgba(0,113,255,.14);
    color: #006ee6;
    font-size: 20px;
    font-weight: 950;
}

.domain-price-main {
    color: #07111f;
    font-size: 16px;
    font-weight: 900;
    white-space: nowrap;
}

.domain-price-sub {
    margin-top: 4px;
    color: #667085;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.domain-check-result {
    display: none;
    max-width: 720px;
    margin-top: 18px;
    padding: 18px 22px;
    border-radius: 22px;
    font-size: 17px;
    font-weight: 900;
    box-shadow: 0 18px 45px rgba(0,0,0,.22);
    backdrop-filter: blur(16px);
}

.domain-check-result.is-visible {
    display: flex;
    align-items: center;
    gap: 12px;
}

.domain-check-result.is-loading {
    color: #075985;
    background: rgba(224,242,254,.96);
    border: 1px solid rgba(14,165,233,.35);
}

.domain-check-result.is-success {
    color: #065f46;
    background: rgba(209,250,229,.96);
    border: 1px solid rgba(16,185,129,.45);
}

.domain-check-result.is-error {
    color: #991b1b;
    background: rgba(254,226,226,.96);
    border: 1px solid rgba(239,68,68,.45);
}

.domain-check-result.is-warning {
    color: #92400e;
    background: rgba(254,243,199,.96);
    border: 1px solid rgba(245,158,11,.45);
}

/* =========================
   PROCESS SECTION
========================= */

.process-section {
    position: relative;
    overflow: hidden;
    padding: 115px 0 130px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.process-section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 210px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,212,255,.10) 100%);
    pointer-events: none;
}

.process-section::after {
    content: "";
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: 110px;
    height: 120px;
    background:
        radial-gradient(circle, rgba(0,148,190,.42) 3px, transparent 4px);
    background-size: 42px 42px;
    opacity: .28;
    transform: rotate(-3deg);
    pointer-events: none;
}

.process-head {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto 90px;
}

.process-head h2 {
    color: #07111f;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -1.4px;
}

.process-head h2 span {
    color: #008cc8;
    font-weight: 900;
}

.process-head p {
    margin: 22px auto 0;
    max-width: 780px;
    color: #475467;
    font-size: 20px;
    line-height: 1.7;
}

.process-flow {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
}

.process-flow::before {
    content: "";
    position: absolute;
    left: 9%;
    right: 9%;
    top: 76px;
    height: 4px;
    background:
        linear-gradient(
            90deg,
            rgba(0,113,255,.16),
            rgba(0,212,255,.55),
            rgba(0,113,255,.16)
        );
    border-radius: 999px;
    z-index: -1;
}

.process-item {
    text-align: center;
    padding: 24px 18px 0;
}

.process-icon {
    width: 112px;
    height: 112px;
    margin: 0 auto 28px;
    display: grid;
    place-items: center;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(0,113,255,.10), rgba(0,212,255,.16));
    border: 1px solid rgba(0,113,255,.12);
    color: #0099c8;
    font-size: 52px;
    font-weight: 900;
    box-shadow: 0 24px 60px rgba(0,113,255,.10);
}

.process-item h3 {
    color: #007fbc;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 16px;
}

.process-item p {
    color: #667085;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 1199px) {
    .process-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 50px 34px;
    }

    .process-flow::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .process-section {
        padding: 80px 0 90px;
    }

    .process-flow {
        grid-template-columns: 1fr;
    }

    .process-head {
        margin-bottom: 50px;
    }

    .process-head p {
        font-size: 17px;
    }

    .process-icon {
        width: 92px;
        height: 92px;
        font-size: 42px;
    }

    .process-item h3 {
        font-size: 24px;
    }
}

/* =========================
   INTERWORX OVERVIEW
========================= */

.interworx-overview-section {
    background: #ffffff;
    padding: 95px 0;
}

.interworx-two-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px;
    align-items: start;
}

.interworx-column {
    padding: 34px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(7,17,31,.08);
    box-shadow: 0 22px 55px rgba(7,17,31,.07);
}

.interworx-logo {
    display: inline-flex;
    margin-bottom: 28px;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: lowercase;
}

.nodeworx-logo {
    color: #00a889;
    border-bottom: 4px solid rgba(0,168,137,.25);
}

.siteworx-logo {
    color: #f2a900;
    border-bottom: 4px solid rgba(242,169,0,.28);
}

.interworx-block {
    margin-bottom: 42px;
}

.interworx-block:last-child {
    margin-bottom: 0;
}

.interworx-block h2 {
    margin: 0 0 16px;
    color: #07111f;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.7px;
}

.interworx-block p {
    margin: 0 0 16px;
    color: #475467;
    font-size: 16px;
    line-height: 1.72;
}

.interworx-block ul {
    margin: 18px 0 0;
    padding-left: 0;
    list-style: none;
}

.interworx-block li {
    position: relative;
    margin-bottom: 11px;
    padding-left: 28px;
    color: #344054;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 650;
}

.interworx-block li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .65em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sl-blue), var(--sl-cyan));
    box-shadow: 0 0 0 5px rgba(0,113,255,.08);
}

@media (max-width: 991px) {
    .interworx-two-columns {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .interworx-column {
        padding: 26px;
    }
}

@media (max-width: 575px) {
    .interworx-overview-section {
        padding: 70px 0;
    }

    .interworx-column {
        padding: 22px;
        border-radius: 22px;
    }

    .interworx-logo {
        font-size: 24px;
    }

    .interworx-block h2 {
        font-size: 24px;
    }
}

.domain-search-display-section {
    position: relative;
    z-index: 5;
    margin-top: 42px;
    margin-bottom: 70px;
}

.domain-search-display-card {
    max-width: 925px;
    margin: 0 auto;
    padding: 48px 48px 44px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(46, 30, 78, 0.16);
}

.domain-search-display-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #d8c9e8;
}

.domain-search-display-header h2 {
    margin: 0;
    color: #4d217a;
    font-size: 30px;
    font-weight: 800;
}

.domain-search-display-body {
    padding-top: 14px;
}

.domain-display-row {
    display: grid;
    grid-template-columns: 1.6fr 0.6fr 0.7fr 0.9fr 1fr;
    gap: 18px;
    align-items: center;
    padding: 0 0 28px;
}

.domain-display-name {
    color: #4d217a;
    font-size: 16px;
    font-weight: 800;
}

.domain-display-hot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-left: 6px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
    font-size: 15px;
}

.domain-display-status {
    font-weight: 700;
}

.domain-display-status.is-free {
    color: #14b99a;
}

.domain-display-status.is-taken {
    color: #d9234e;
}

.domain-display-years {
    min-width: 84px;
    height: 32px;
    padding: 0 10px;
    border: 1px solid #cbb8dd;
    border-radius: 5px;
    background: #fff;
    color: #6c5580;
}

.domain-display-price {
    white-space: nowrap;
}

.domain-display-price strong {
    color: #4d217a;
    font-size: 16px;
    font-weight: 800;
}

.domain-display-price span {
    margin-left: 8px;
    color: #a995be;
    font-size: 13px;
}

.domain-display-cart-muted,
.domain-display-cart-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 122px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.domain-display-cart-muted {
    background: #8c70a5;
}

.domain-display-cart-primary {
    background: #7b36c0;
}

.domain-search-display-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 2px;
}

.domain-display-loading,
.domain-display-message {
    color: #7b6890;
    font-weight: 600;
    padding: 18px 0;
}

.domain-display-warning {
    color: #d98200;
}

@media (max-width: 768px) {
    .domain-search-display-section {
        margin-top: -30px;
        padding: 0 14px;
    }

    .domain-search-display-card {
        padding: 28px 22px;
    }

    .domain-search-display-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .domain-display-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .domain-search-display-footer {
        justify-content: flex-start;
    }
}

.legal-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 42px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(7,17,31,.08);
    box-shadow: 0 22px 55px rgba(7,17,31,.08);
}

.legal-section {
    padding: 28px 0;
    border-bottom: 1px solid rgba(7,17,31,.08);
}

.legal-section:last-child {
    border-bottom: 0;
}

.legal-section h2 {
    margin: 0 0 18px;
    color: #07111f;
    font-size: 26px;
    font-weight: 900;
}

.legal-section h3 {
    margin: 24px 0 12px;
    color: #07111f;
    font-size: 20px;
    font-weight: 900;
}

.legal-section p,
.legal-section li {
    color: #475467;
    font-size: 16px;
    line-height: 1.75;
}

.legal-section ul {
    margin: 0;
    padding-left: 22px;
}

.legal-section a {
    color: var(--sl-blue);
    font-weight: 800;
}

.legal-callout {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(0,113,255,.06);
    border: 1px solid rgba(0,113,255,.14);
    color: #344054;
    line-height: 1.65;
}

.inline-code {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 8px;
    background: #f1f5f9;
    color: #07111f;
    font-weight: 900;
    font-family: monospace;
}

@media (max-width: 767px) {
    .legal-card {
        padding: 26px 20px;
        border-radius: 22px;
    }

    .legal-section h2 {
        font-size: 22px;
    }
}

/* =========================================================
   SecureLayer Order / Cart
========================================================= */

.order-page {
    min-height: 100vh;
    padding-bottom: 80px;
    background: linear-gradient(180deg, #d9c9ea 0%, #f7f4fb 45%, #ffffff 100%);
    color: #32125f;
}

.order-hero {
    min-height: 220px;
    padding: 42px 20px 110px;
    text-align: center;
    background:
        radial-gradient(circle at 12% 20%, rgba(255,255,255,.22) 0 2px, transparent 3px),
        radial-gradient(circle at 80% 18%, rgba(255,255,255,.18) 0 3px, transparent 4px),
        linear-gradient(135deg, #75108a 0%, #41136f 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.order-hero::after {
    content: "";
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -42px;
    height: 90px;
    background: #d9c9ea;
    border-radius: 50% 50% 0 0;
}

.order-hero h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -.04em;
    position: relative;
    z-index: 2;
}

.order-container {
    width: min(1120px, calc(100% - 56px));
    margin: -82px auto 0;
    position: relative;
    z-index: 5;
}

.order-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 24px 52px;
    margin-bottom: 10px;
    box-shadow: 0 18px 45px rgba(50, 18, 95, .12);
}

.order-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #b1a4bd;
    font-weight: 700;
    font-size: 17px;
}

.order-step span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #b1a4bd;
    color: #fff;
    font-weight: 800;
}

.order-step.active {
    color: #7f3fc7;
}

.order-step.active span {
    background: #7f3fc7;
}

.order-card {
    background: #fff;
    border-radius: 10px;
    padding: 48px;
    box-shadow: 0 20px 55px rgba(50, 18, 95, .12);
}

.order-card h2 {
    margin: 0 0 34px;
    color: #32125f;
    font-size: 28px;
    font-weight: 800;
}

.order-card h3 {
    color: #32125f;
    font-weight: 800;
}

.order-muted {
    margin-top: -20px;
    margin-bottom: 28px;
    color: #6f5b83;
}

.order-alert {
    background: #fff3f3;
    border: 1px solid #ffd1d1;
    color: #9b1c1c;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

/* Cart rows */

.cart-list,
.review-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-row,
.review-row {
    display: grid;
    grid-template-columns: 1fr 140px 190px 100px;
    gap: 20px;
    align-items: center;
    background: #fbf5ff;
    border-radius: 999px;
    padding: 16px 28px;
}

.review-row {
    grid-template-columns: 1fr 120px 190px;
}

.cart-row-name strong,
.review-row strong {
    display: block;
    color: #4a1277;
    font-size: 18px;
    line-height: 1.2;
}

.cart-row-name span,
.review-row span {
    display: block;
    color: #8b729f;
    font-size: 14px;
    margin-top: 4px;
}

.cart-period-form select,
.domain-display-years {
    width: 120px;
    height: 46px;
    border: 1px solid #ded8e8;
    border-radius: 6px;
    background: #fff;
    color: #5a416d;
    padding: 0 12px;
    font-size: 15px;
}

.cart-row-price strong {
    display: block;
    color: #3b0067;
    font-size: 17px;
    font-weight: 800;
}

.cart-row-price span {
    display: block;
    color: #7b5f91;
    font-size: 13px;
    margin-top: 3px;
}

.cart-remove {
    border: 0;
    background: transparent;
    color: #7b5f91;
    font-weight: 700;
    cursor: pointer;
    padding: 8px;
}

.cart-remove:hover {
    color: #a91d3a;
}

.cart-total {
    border-top: 2px solid #f0e8f8;
    margin-top: 10px;
    padding: 32px 24px 28px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 70px;
    color: #3b0067;
}

.cart-total span {
    font-weight: 800;
}

.cart-total strong {
    font-size: 24px;
    font-weight: 800;
}

/* Buttons */

.order-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.btn {
    border-radius: 999px;
    min-width: 170px;
    min-height: 42px;
    padding: 11px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-decoration: none;
    cursor: pointer;
    font-size: 13px;
}

.btn-primary {
    background: #3dc0a8;
    color: #fff;
    box-shadow: 0 10px 24px rgba(61, 192, 168, .25);
}

.btn-primary:hover {
    background: #31ad97;
    color: #fff;
}

.btn-secondary {
    background: #7f3fc7;
    color: #fff;
}

.btn-secondary:hover {
    background: #6d31b4;
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #7f3fc7;
    border: 2px solid #c9a4ef;
}

.btn-outline:hover {
    background: #f7efff;
    color: #6d31b4;
}

/* Hosting offer */

.hosting-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.hosting-offer-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(50, 18, 95, .18);
    border: 1px solid #f0e8f8;
}

.hosting-offer-card h3 {
    min-height: 58px;
    margin: 0 0 18px;
    font-size: 26px;
    line-height: 1.05;
    color: #111;
}

.hosting-offer-card p {
    color: #6f5b83;
    min-height: 48px;
}

.hosting-offer-features {
    text-align: left;
    min-height: 110px;
    border-top: 1px solid #eee7f5;
    border-bottom: 1px solid #eee7f5;
    padding: 18px 0;
    color: #5a416d;
    font-size: 14px;
    line-height: 1.65;
}

.hosting-offer-price {
    margin: 20px 0;
}

.hosting-offer-price strong {
    display: block;
    color: #4a1277;
    font-size: 20px;
}

.hosting-offer-price span {
    display: block;
    color: #b18ec9;
    font-size: 14px;
    margin-top: 4px;
}

/* Account */

.account-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.account-box:first-child {
    border-right: 1px solid #d8cce5;
    padding-right: 60px;
}

.account-box h3 {
    margin-top: 0;
    font-size: 23px;
}

.account-box p {
    color: #4d276b;
}

.account-box form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.account-box input {
    height: 38px;
    border: 1px solid #e1d9ea;
    background: #f5f0fb;
    border-radius: 6px;
    padding: 0 14px;
    color: #32125f;
}

.account-box input::placeholder {
    color: #b8a6ca;
}

.forgot-link {
    color: #3b0067;
    text-align: right;
    text-decoration: none;
    margin: 8px 0 10px;
}

.forgot-link:hover {
    text-decoration: underline;
}

/* Empty text */

.order-card > p {
    color: #4d276b;
}

/* Responsive */

@media (max-width: 900px) {
    .order-container {
        width: min(100% - 28px, 1120px);
    }

    .order-steps {
        padding: 18px;
        gap: 10px;
    }

    .order-step {
        font-size: 14px;
        flex-direction: column;
        gap: 8px;
    }

    .order-card {
        padding: 28px 18px;
    }

    .cart-row,
    .review-row {
        grid-template-columns: 1fr;
        border-radius: 24px;
        gap: 12px;
    }

    .cart-total {
        justify-content: space-between;
        gap: 20px;
        padding-left: 0;
        padding-right: 0;
    }

    .hosting-offer-grid,
    .account-grid {
        grid-template-columns: 1fr;
    }

    .account-box:first-child {
        border-right: 0;
        border-bottom: 1px solid #d8cce5;
        padding-right: 0;
        padding-bottom: 36px;
    }
}

@media (max-width: 560px) {
    .order-hero {
        min-height: 180px;
        padding-top: 32px;
    }

    .order-container {
        margin-top: -70px;
    }

    .order-steps {
        grid-template-columns: 1fr;
    }

    .order-card h2 {
        font-size: 24px;
    }

    .cart-total {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
    }

    .order-actions {
        gap: 14px;
    }
}

/* =========================================================
   SecureLayer Cart - domains.php layout kompatibilis
========================================================= */

.cart-summary-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: flex-start;
}

.cart-main-card,
.cart-total-card,
.cart-account-card {
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(124, 72, 185, .14);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(22, 12, 45, .08);
}

.cart-main-card {
    padding: 30px;
}

.cart-total-card {
    padding: 30px;
    position: sticky;
    top: 110px;
}

.cart-service-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-service-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 130px 180px 90px;
    gap: 18px;
    align-items: center;
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(124, 72, 185, .08), rgba(61, 192, 168, .07));
    border: 1px solid rgba(124, 72, 185, .12);
}

.cart-service-type {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(124, 72, 185, .12);
    color: #7c48b9;
    font-size: 12px;
    font-weight: 800;
}

.cart-service-info h3 {
    margin: 0;
    font-size: 22px;
    color: #071328;
}

.cart-service-info p {
    margin: 6px 0 0;
    color: #536179;
    font-size: 15px;
}

.cart-service-period select {
    width: 100%;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(124, 72, 185, .22);
    background: #fff;
    color: #071328;
    padding: 0 12px;
}

.cart-service-price strong {
    display: block;
    color: #071328;
    font-size: 17px;
    font-weight: 900;
}

.cart-service-price span {
    display: block;
    margin-top: 5px;
    color: #536179;
    font-size: 14px;
}

.cart-remove-btn {
    border: 0;
    background: transparent;
    color: #8d3f5f;
    font-weight: 800;
    cursor: pointer;
}

.cart-remove-btn:hover {
    color: #c51f4a;
}

.cart-total-label {
    color: #536179;
    font-size: 14px;
    margin-bottom: 8px;
}

.cart-total-net {
    color: #7c48b9;
    font-weight: 900;
    font-size: 18px;
}

.cart-total-gross {
    margin-top: 8px;
    color: #071328;
    font-size: 36px;
    font-weight: 900;
}

.cart-total-note {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(124, 72, 185, .14);
    color: #536179;
    font-size: 14px;
    line-height: 1.6;
}

.cart-total-actions,
.cart-page-actions {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-total-actions .btn,
.cart-page-actions .btn {
    width: 100%;
    justify-content: center;
}

.cart-empty-box {
    padding: 36px;
    text-align: center;
}

.cart-empty-box h3 {
    margin-bottom: 10px;
    color: #071328;
}

.cart-empty-box p {
    color: #536179;
}

.cart-hosting-box {
    height: 100%;
}

.cart-feature-summary {
    margin: 18px 0;
    padding: 18px 0;
    border-top: 1px solid rgba(124, 72, 185, .12);
    border-bottom: 1px solid rgba(124, 72, 185, .12);
    color: #536179;
    font-size: 14px;
    line-height: 1.7;
}

.cart-package-price {
    margin: 18px 0;
}

.cart-package-price strong {
    display: block;
    color: #071328;
    font-size: 20px;
    font-weight: 900;
}

.cart-package-price span {
    display: block;
    color: #536179;
    margin-top: 5px;
}

.cart-account-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.cart-account-card {
    padding: 34px;
}

.cart-account-card h3 {
    margin: 0 0 10px;
    color: #071328;
    font-size: 26px;
}

.cart-account-card p {
    color: #536179;
    margin-bottom: 22px;
}

.cart-account-card form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart-account-card input {
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(124, 72, 185, .16);
    background: #fff;
    padding: 0 16px;
}

.cart-forgot-link {
    color: #7c48b9;
    text-decoration: none;
    font-weight: 700;
}

.cart-forgot-link:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .cart-summary-layout,
    .cart-account-layout {
        grid-template-columns: 1fr;
    }

    .cart-total-card {
        position: static;
    }

    .cart-service-item {
        grid-template-columns: 1fr;
    }
}

.cart-domain-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart-domain-label {
    font-weight: 800;
    color: #071328;
}

.cart-domain-input {
    height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(124, 72, 185, .18);
    background: #fff;
    padding: 0 18px;
    font-size: 16px;
    color: #071328;
}

.cart-domain-help {
    color: #536179;
    font-size: 14px;
    line-height: 1.6;
}
.cart-billing-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-billing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.cart-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.cart-field-full {
    grid-column: 1 / -1;
}

.cart-field label {
    font-weight: 800;
    color: #071328;
}

.cart-field input,
.cart-field select {
    height: 50px;
    border-radius: 14px;
    border: 1px solid rgba(124, 72, 185, .18);
    background: #fff;
    padding: 0 16px;
    color: #071328;
}

@media (max-width: 768px) {
    .cart-billing-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   INFRASTRUCTURE PARTNER
========================= */

.infrastructure-partner-box {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 34px;
    align-items: center;
    margin-top: 54px;
    padding: 30px 34px;
    color: #fff;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 24px 80px rgba(0,0,0,.14);
}

.infrastructure-partner-logo {
    padding: 24px;
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    text-align: center;
}

.infrastructure-partner-logo span {
    display: block;
    margin-bottom: 16px;
    color: #07111f;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.infrastructure-partner-logo img {
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
}

.infrastructure-partner-content h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 900;
}

.infrastructure-partner-content p {
    max-width: 820px;
    margin: 0;
    color: rgba(255,255,255,.92);
    font-size: 17px;
    line-height: 1.65;
}

.infrastructure-partner-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.infrastructure-partner-items div {
    padding: 9px 13px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    font-size: 14px;
    font-weight: 800;
}

@media (max-width: 991px) {
    .infrastructure-partner-box {
        grid-template-columns: 1fr;
    }

    .infrastructure-partner-logo {
        max-width: 420px;
    }
}

@media (max-width: 767px) {
    .infrastructure-partner-box {
        margin-top: 38px;
        padding: 22px;
    }

    .infrastructure-partner-content h2 {
        font-size: 24px;
    }

    .infrastructure-partner-content p {
        font-size: 16px;
    }

    .infrastructure-partner-items {
        flex-direction: column;
    }

    .infrastructure-partner-items div {
        width: 100%;
    }
}

.trial-notice{
    margin:15px 0;
    padding:12px;
    background:#fff7e6;
    border:1px solid #f5c26b;
    border-radius:8px;
    font-size:14px;
    font-weight:600;
    color:#7a4d00;
}
/* =========================
   SECURELAYER NUMBERS
========================= */

.securelayer-numbers-section {
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 212, 255, .12), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

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

.securelayer-number-card {
    padding: 34px 26px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(7,17,31,.08);
    box-shadow: 0 22px 55px rgba(7,17,31,.08);
    text-align: center;
}

.securelayer-number-card strong {
    display: block;
    margin-bottom: 12px;
    color: #07111f;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -1.5px;
}

.securelayer-number-card span {
    display: block;
    color: #667085;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 800;
}

@media (max-width: 991px) {
    .securelayer-numbers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .securelayer-numbers-grid {
        grid-template-columns: 1fr;
    }

    .securelayer-number-card {
        padding: 28px 22px;
    }
}

.sl-cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 9998;
    display: none;
}

.sl-cookie-box {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    max-width: calc(100% - 30px);
    background: #fff;
    color: #666;
    border-radius: 6px;
    padding: 16px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.35);
    z-index: 9999;
    display: none;
    font-family: Arial, sans-serif;
    text-align: left;
}

.sl-cookie-text {
    font-size: 15px;
    line-height: 1.25;
    margin-bottom: 14px;
}

.sl-cookie-text a {
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
}

.sl-cookie-box button {
    width: 100%;
    border: 0;
    background: #ffd900;
    color: #000;
    padding: 9px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.sl-cookie-box button:hover {
    background: #f1cc00;
}

.sl-cookie-brand {
    margin-top: 10px;
    text-align: center;
    font-size: 11px;
    color: #666;
}

/* =========================
   FOOTER STATUS BOX
========================= */

.footer-status-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    margin-bottom: 42px;
    padding: 26px 30px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 10% 20%, rgba(0,212,255,.22), transparent 36%),
        linear-gradient(135deg, rgba(9, 28, 47, .98), rgba(10, 77, 96, .92));
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.footer-status-left {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.footer-status-dot {
    width: 16px;
    height: 16px;
    margin-top: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 8px rgba(34,197,94,.16), 0 0 26px rgba(34,197,94,.7);
    flex: 0 0 auto;
}

.footer-status-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 5px 11px;
    border-radius: 999px;
    color: #9ee7ff;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.footer-status-box h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 28px;
    font-weight: 950;
}

.footer-status-box p {
    margin: 0;
    max-width: 680px;
    color: rgba(255,255,255,.78);
    font-size: 15px;
    line-height: 1.6;
}

.footer-status-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
}

.footer-status-right span {
    color: rgba(255,255,255,.82);
    font-size: 14px;
    font-weight: 800;
}

.footer-status-right a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    color: #06111f;
    background: #67e8f9;
    font-size: 14px;
    font-weight: 950;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(103,232,249,.22);
}

.footer-status-right a:hover {
    color: #06111f;
    transform: translateY(-1px);
}

.footer-main-row {
    margin-top: 8px;
}

.footer-security-note {
    margin-top: 10px;
    color: rgba(255,255,255,.58);
    font-size: 13px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .footer-status-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-status-right {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .footer-status-box {
        padding: 22px;
    }

    .footer-status-box h3 {
        font-size: 23px;
    }

    .footer-status-right {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-status-right a {
        width: 100%;
    }
}