:root {
    --navy: #06172b;
    --navy-2: #102944;
    --ink: #152237;
    --muted: #627188;
    --soft: #f5f8fb;
    --soft-2: #eef5f7;
    --line: #dce6ee;
    --white: #ffffff;
    --teal: #12b8a6;
    --teal-dark: #087f75;
    --mint: #e8fbf8;
    --coral: #f56f5f;
    --gold: #f5c34b;
    --danger: #c53d3d;
    --shadow-sm: 0 8px 20px rgba(6, 23, 43, .06);
    --shadow: 0 20px 48px rgba(6, 23, 43, .12);
    --shadow-lg: 0 34px 80px rgba(6, 23, 43, .16);
    --radius: 8px;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, Manrope, "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

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

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

svg {
    width: 1.08em;
    height: 1.08em;
    fill: currentColor;
    flex: 0 0 auto;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy);
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    max-width: 840px;
    margin-bottom: 22px;
    font-size: 4.25rem;
    font-weight: 900;
}

h2 {
    margin-bottom: 16px;
    font-size: 2.75rem;
    font-weight: 900;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 850;
}

p {
    color: var(--muted);
}

button,
input,
select,
textarea {
    font: inherit;
}

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

.narrow {
    max-width: 870px;
}

.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 9999;
    top: 14px;
    left: 14px;
    width: auto;
    height: auto;
    clip: auto;
    padding: 10px 14px;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.section-kicker,
.mini-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    color: var(--teal-dark);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.mini-label {
    margin-bottom: 7px;
    color: #516276;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 850;
    line-height: 1.1;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

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

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    box-shadow: 0 14px 28px rgba(18, 184, 166, .24);
}

.btn-primary:hover {
    box-shadow: 0 18px 34px rgba(18, 184, 166, .3);
}

.btn-outline {
    color: var(--navy);
    background: var(--white);
    border-color: #cbd8e4;
}

.btn-outline:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-sm);
}

.btn-ghost {
    color: var(--navy);
    background: transparent;
}

.btn-light {
    color: var(--navy);
    background: var(--soft);
    border-color: var(--line);
}

.btn-danger {
    color: var(--white);
    background: var(--danger);
}

.text-link,
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal-dark);
    font-weight: 850;
}

.card-link {
    margin-top: auto;
    font-size: .95rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(14px);
    transition: box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.site-header.is-scrolled {
    border-bottom-color: rgba(220, 230, 238, .9);
    box-shadow: 0 10px 28px rgba(6, 23, 43, .08);
}

.nav-wrap {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr) max-content;
    gap: 24px;
    align-items: center;
    min-height: 82px;
    white-space: nowrap;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--navy);
    font-weight: 850;
    white-space: nowrap;
}

.brand img {
    width: auto;
    max-height: 46px;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--teal-dark));
    border-radius: var(--radius);
    box-shadow: 0 10px 22px rgba(8, 127, 117, .16);
    font-weight: 950;
}

.brand-text {
    font-size: 1.02rem;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    color: #33445b;
    font-size: .95rem;
    font-weight: 800;
    white-space: nowrap;
}

.site-nav > a,
.nav-item > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 11px;
    border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a.is-active,
.nav-item:hover > a,
.nav-item:focus-within > a {
    color: var(--teal-dark);
    background: var(--mint);
}

.nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.nav-item.has-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    min-width: 220px;
    padding: 8px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown a {
    display: block;
    padding: 10px 11px;
    border-radius: var(--radius);
    color: #33445b;
    line-height: 1.25;
    white-space: nowrap;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 10px;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 5px auto;
    background: var(--navy);
    border-radius: 2px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0 64px;
    background:
        linear-gradient(90deg, rgba(18, 184, 166, .055) 1px, transparent 1px),
        linear-gradient(180deg, #fbfdff 0%, #f3f8fb 100%);
    background-size: 44px 44px, auto;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--line);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 52fr) minmax(440px, 48fr);
    gap: 52px;
    align-items: center;
}

.hero-copy {
    max-width: 690px;
}

.hero-lede {
    max-width: 690px;
    margin-bottom: 28px;
    color: #4e5f75;
    font-size: 1.15rem;
    line-height: 1.72;
}

.hero-search {
    max-width: 680px;
    margin: 32px 0 22px;
}

.domain-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    min-height: 72px;
    padding: 10px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(202, 216, 228, .95);
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(6, 23, 43, .1);
}

.domain-search input {
    min-width: 0;
    min-height: 50px;
    padding: 0 16px;
    color: var(--navy);
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 1.05rem;
}

.domain-search input::placeholder {
    color: #8a98aa;
}

.domain-search .btn {
    min-height: 52px;
    padding-inline: 22px;
}

.tld-strip,
.hero-actions,
.actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.tld-strip {
    margin-top: 14px;
}

.tld-strip span,
.hero-tld-mini span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 6px 11px;
    color: #34455b;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(6, 23, 43, .04);
    font-size: .92rem;
}

.tld-strip strong,
.hero-tld-mini strong {
    color: var(--navy);
}

.hero-actions {
    margin-top: 6px;
}

.hosting-visual {
    position: relative;
    min-height: 520px;
    width: 100%;
    min-width: 0;
}

.hero-console {
    position: relative;
    min-height: 500px;
    padding: 34px;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 16% 10%, rgba(18, 184, 166, .26), transparent 34%),
        radial-gradient(circle at 92% 18%, rgba(245, 111, 95, .18), transparent 30%),
        linear-gradient(145deg, #06172b 0%, #0b2742 58%, #0f3554 100%);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    box-shadow: 0 32px 80px rgba(6, 23, 43, .24);
}

.hero-console::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    pointer-events: none;
}

.console-dashboard {
    position: relative;
    z-index: 2;
    width: min(100%, 440px);
    margin: 16px auto 0;
    padding: 18px;
    color: var(--ink);
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: var(--radius);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .24);
    backdrop-filter: blur(18px);
}

.console-topbar {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    margin-bottom: 16px;
}

.window-dots {
    display: inline-flex;
    gap: 6px;
}

.window-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d8e3ed;
}

.window-dots span:nth-child(1) {
    background: var(--coral);
}

.window-dots span:nth-child(2) {
    background: var(--gold);
}

.window-dots span:nth-child(3) {
    background: var(--teal);
}

.console-topbar strong {
    color: var(--navy);
    font-size: .9rem;
}

.console-status,
.console-meter,
.console-stack {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.console-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 17px;
}

.console-status strong {
    display: block;
    color: var(--navy);
    line-height: 1.2;
}

.console-status em {
    flex: 0 0 auto;
    padding: 6px 10px;
    color: var(--teal-dark);
    background: var(--mint);
    border-radius: 999px;
    font-style: normal;
    font-weight: 900;
}

.console-stack {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    padding: 14px;
}

.console-row {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: #f7fafc;
    border: 1px solid #e5edf4;
    border-radius: var(--radius);
}

.console-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--teal-dark);
    background: var(--mint);
    border-radius: var(--radius);
}

.console-row strong,
.console-row small {
    display: block;
    line-height: 1.25;
}

.console-row strong {
    color: var(--navy);
}

.console-row small {
    margin-top: 3px;
    color: var(--muted);
}

.console-meter {
    margin-top: 14px;
    padding: 16px;
}

.server-title strong {
    display: block;
    color: var(--navy);
    line-height: 1.2;
}

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

.server-title {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.server-bars {
    display: grid;
    gap: 9px;
}

.server-bars span {
    display: block;
    height: 10px;
    background: #dce8ef;
    border-radius: 999px;
}

.server-bars span:nth-child(1) {
    width: 88%;
    background: linear-gradient(90deg, var(--teal), #7ddbd2);
}

.server-bars span:nth-child(2) {
    width: 72%;
}

.server-bars span:nth-child(3) {
    width: 54%;
}

.floating-card {
    position: absolute;
    z-index: 3;
    display: grid;
    gap: 2px;
    padding: 15px 17px;
    color: var(--navy);
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    animation: floatCard 5s ease-in-out infinite;
}

.floating-card strong {
    color: var(--navy);
    font-size: 1.65rem;
    line-height: 1;
}

.floating-card span {
    color: var(--muted);
    font-size: .9rem;
    font-weight: 800;
}

.uptime-card {
    left: 16px;
    bottom: 42px;
}

.delivery-card {
    right: 16px;
    bottom: 78px;
    animation-delay: .7s;
}

.cdn-card {
    top: 24px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation-delay: 1.2s;
}

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

.trust-band {
    padding: 28px 0 18px;
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.trust-grid div {
    min-height: 114px;
    padding: 20px 18px;
    border-right: 1px solid var(--line);
}

.trust-grid div:last-child {
    border-right: 0;
}

.trust-icon {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
    color: var(--teal-dark);
    background: var(--mint);
    border-radius: 999px;
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    color: var(--navy);
    font-weight: 900;
    line-height: 1.2;
}

.trust-grid > div > span:last-child {
    margin-top: 5px;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.45;
}

.section {
    padding: 82px 0;
}

.section.muted {
    background:
        linear-gradient(90deg, rgba(6, 23, 43, .035) 1px, transparent 1px),
        var(--soft);
    background-size: 48px 48px, auto;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 26px;
    margin-bottom: 34px;
}

.section-head.centered {
    justify-content: center;
    text-align: center;
}

.section-head h2 {
    max-width: 760px;
    margin-bottom: 0;
}

.service-grid,
.feature-grid,
.pricing-grid,
.testimonial-grid,
.tld-grid,
.blog-grid,
.portfolio-grid,
.steps-grid {
    display: grid;
    gap: 22px;
}

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

.pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.service-card,
.feature-grid article,
.pricing-card,
.testimonial-card,
.tld-grid article,
.blog-card,
.portfolio-grid article,
.steps-grid article,
.included-panel,
.contact-panel,
.contact-form,
.page-hero-card,
.admin-card,
.admin-stats article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.service-card,
.feature-grid article,
.testimonial-card,
.tld-grid article,
.blog-card,
.portfolio-grid article,
.steps-grid article {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 26px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-card:hover,
.feature-grid article:hover,
.blog-card:hover,
.tld-grid article:hover {
    transform: translateY(-3px);
    border-color: rgba(18, 184, 166, .45);
    box-shadow: var(--shadow);
}

.service-card p,
.feature-grid p,
.blog-card p {
    margin-bottom: 22px;
}

.icon-pill {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    color: var(--teal-dark);
    background: var(--mint);
    border-radius: var(--radius);
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 17px;
    min-height: 100%;
    padding: 28px;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.pricing-card.is-featured {
    border-color: rgba(18, 184, 166, .55);
    box-shadow: 0 22px 58px rgba(18, 184, 166, .14);
}

.pricing-card.is-featured::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--coral));
}

.badge {
    align-self: flex-start;
    padding: 6px 10px;
    color: var(--navy);
    background: #fff3c4;
    border: 1px solid #f5dea0;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 900;
}

.pricing-head p {
    min-height: 74px;
    margin-bottom: 0;
}

.price span {
    color: var(--navy);
    font-size: 2.25rem;
    font-weight: 950;
    line-height: 1;
}

.price small,
.yearly {
    color: var(--muted);
}

.plan-specs {
    display: grid;
    gap: 8px;
    margin: 0;
}

.plan-specs div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 0 0 8px;
    border-bottom: 1px solid var(--line);
}

.plan-specs dt {
    color: var(--muted);
}

.plan-specs dd {
    margin: 0;
    color: var(--navy);
    font-weight: 850;
    text-align: right;
}

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

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

.feature-list li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    color: #304158;
}

.feature-list svg {
    margin-top: 4px;
    color: var(--teal-dark);
}

.plan-button {
    margin-top: auto;
}

.website-offer {
    background:
        linear-gradient(90deg, rgba(18, 184, 166, .055) 1px, transparent 1px),
        linear-gradient(180deg, #f7fbfb 0%, #eef7f6 100%);
    background-size: 48px 48px, auto;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(350px, .82fr);
    gap: 48px;
    align-items: center;
}

.lead {
    color: #4b5e75;
    font-size: 1.08rem;
    line-height: 1.75;
}

.included-panel {
    position: relative;
    padding: 30px;
    box-shadow: var(--shadow);
}

.included-panel::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--coral));
    border-radius: var(--radius) var(--radius) 0 0;
}

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

.testimonial-card {
    padding: 28px;
}

.testimonial-card::before {
    content: "\201C";
    display: block;
    color: var(--teal);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.testimonial-card p {
    color: #2d3c50;
    font-size: 1.02rem;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card strong {
    color: var(--navy);
}

.testimonial-card span {
    color: var(--muted);
}

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

.faq-list details {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.faq-list summary {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    color: var(--navy);
    cursor: pointer;
    font-weight: 900;
}

.faq-list summary::after {
    content: "+";
    color: var(--teal-dark);
    font-size: 1.25rem;
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-list details > div {
    padding: 0 22px 22px;
    color: var(--muted);
}

.final-cta {
    padding: 70px 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(135deg, var(--navy), #12314f);
    background-size: 46px 46px, auto;
}

.cta-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 34px;
}

.cta-panel h2,
.cta-panel p {
    color: var(--white);
}

.cta-panel h2 {
    margin-bottom: 10px;
}

.cta-panel p {
    max-width: 700px;
    margin-bottom: 0;
    opacity: .82;
}

.page-hero {
    padding: 84px 0 72px;
    background:
        linear-gradient(90deg, rgba(18, 184, 166, .055) 1px, transparent 1px),
        linear-gradient(180deg, #fbfdff 0%, #f2f7fa 100%);
    background-size: 46px 46px, auto;
    border-bottom: 1px solid var(--line);
}

.page-hero.compact {
    padding: 62px 0;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 46px;
    align-items: center;
}

.page-hero h1 {
    margin-bottom: 18px;
    font-size: 3.35rem;
}

.page-hero p {
    max-width: 730px;
    font-size: 1.08rem;
}

.page-hero-card {
    padding: 28px;
    box-shadow: var(--shadow);
}

.page-hero-card > strong {
    display: block;
    color: var(--navy);
    font-size: 1.35rem;
    line-height: 1.2;
}

.page-hero-card.price-card > strong {
    color: var(--teal-dark);
    font-size: 3.2rem;
}

.hero-tld-mini {
    display: grid;
    gap: 10px;
}

.page-hero .domain-search {
    max-width: 720px;
    margin-top: 26px;
}

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

.tld-grid article strong {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 1.75rem;
}

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

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

.steps-grid span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 15px;
    color: var(--white);
    background: var(--navy);
    border-radius: var(--radius);
    font-weight: 900;
}

.portfolio-grid div {
    height: 158px;
    margin-bottom: 18px;
    background:
        linear-gradient(135deg, rgba(18, 184, 166, .18), rgba(245, 111, 95, .12)),
        repeating-linear-gradient(0deg, #ffffff, #ffffff 13px, #edf3f7 13px, #edf3f7 26px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 30px;
    align-items: start;
}

label {
    display: grid;
    gap: 7px;
    color: var(--navy);
    font-weight: 850;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid #cbd8e4;
    border-radius: var(--radius);
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(18, 184, 166, .13);
}

textarea {
    resize: vertical;
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-panel {
    display: grid;
    gap: 14px;
    padding: 30px;
}

.contact-panel a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--teal-dark);
    font-weight: 850;
}

.notice,
.flash {
    padding: 13px 15px;
    border-radius: var(--radius);
    font-weight: 850;
}

.notice.success,
.flash.success {
    color: #075c47;
    background: #def8ed;
    border: 1px solid #bdeed8;
}

.notice.error,
.flash.error {
    color: #8b1d1d;
    background: #fee2e2;
    border: 1px solid #f4b8b8;
}

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

.blog-card {
    overflow: hidden;
    padding: 0;
}

.blog-card img,
.featured-image {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.blog-card img {
    height: 196px;
    border-radius: var(--radius) var(--radius) 0 0;
}

.blog-card span,
.blog-card h2,
.blog-card p,
.blog-card .text-link {
    margin-left: 24px;
    margin-right: 24px;
}

.blog-card span {
    margin-top: 22px;
    color: var(--teal-dark);
    font-size: .8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-card h2 {
    font-size: 1.35rem;
}

.blog-card .text-link {
    margin-bottom: 24px;
}

.content-body {
    color: #2e3f55;
    font-size: 1.06rem;
}

.content-body h2,
.content-body h3 {
    margin-top: 34px;
}

.content-body a {
    color: var(--teal-dark);
    font-weight: 850;
}

.featured-image {
    max-height: 420px;
    margin-bottom: 32px;
    border: 1px solid var(--line);
}

.legal-hero {
    background: var(--soft);
}

.site-footer {
    padding: 64px 0 26px;
    color: #d7e1ec;
    background: #07111f;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    gap: 34px;
}

.site-footer h2 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 1rem;
}

.site-footer p,
.site-footer a {
    color: #b7c4d3;
}

.site-footer a {
    display: block;
    margin-bottom: 9px;
}

.site-footer a:hover {
    color: var(--white);
}

.footer-brand {
    margin-bottom: 14px;
    color: var(--white);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-links a {
    margin-bottom: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 28px;
    margin-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom p {
    margin-bottom: 0;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 60;
    padding: 12px 16px;
    color: var(--white);
    background: #1fae64;
    border-radius: 999px;
    box-shadow: var(--shadow);
    font-weight: 900;
}

.admin-auth {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(135deg, var(--navy), #173755);
    background-size: 46px 46px, auto;
}

.login-card {
    width: min(450px, 100%);
    padding: 34px;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

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

.login-card h1 {
    font-size: 2rem;
}

.login-card form {
    display: grid;
    gap: 16px;
}

.admin-body {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
    background: #f4f7fb;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 22px;
    overflow-y: auto;
    color: var(--white);
    background: linear-gradient(180deg, #071629, #0b2239);
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.admin-brand {
    margin-bottom: 24px;
    color: var(--white);
}

.admin-sidebar nav {
    display: grid;
    gap: 5px;
}

.admin-sidebar a {
    padding: 10px 12px;
    color: #dce6f3;
    border-radius: var(--radius);
    font-weight: 800;
}

.admin-sidebar nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, .1);
}

.admin-shell {
    min-width: 0;
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 18px 30px;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.admin-topbar span {
    display: block;
    color: var(--muted);
    font-size: .9rem;
}

.admin-topbar-actions {
    display: flex;
    gap: 10px;
}

.admin-main {
    padding: 30px;
}

.admin-page-head,
.admin-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.admin-page-head h1 {
    margin-bottom: 4px;
    font-size: 2rem;
}

.admin-page-head p {
    margin-bottom: 0;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.admin-stats article {
    padding: 22px;
}

.admin-stats span {
    display: block;
    color: var(--teal-dark);
    font-size: 2.1rem;
    font-weight: 950;
    line-height: 1.1;
}

.admin-stats strong {
    color: var(--navy);
}

.admin-card {
    padding: 24px;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 13px 12px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
}

th {
    color: var(--navy);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

td {
    color: #34455b;
}

.table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.table-actions form {
    margin: 0;
}

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

.admin-form .wide {
    grid-column: 1 / -1;
}

.admin-form label span {
    color: var(--navy);
    font-size: .9rem;
}

.switch-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    color: var(--muted);
}

.switch-row input {
    width: auto;
    min-height: auto;
}

.admin-preview {
    max-width: 180px;
    max-height: 90px;
    object-fit: contain;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

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

.inquiry-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.inquiry-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.inquiry-actions {
    display: grid;
    gap: 10px;
    align-content: start;
}

.inquiry-actions form {
    display: flex;
    gap: 8px;
}

@media (max-width: 1180px) {
    h1 {
        font-size: 3.55rem;
    }

    h2 {
        font-size: 2.35rem;
    }

    .hero-grid {
        gap: 38px;
        grid-template-columns: minmax(0, 52fr) minmax(360px, 48fr);
    }

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

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

    .trust-grid div:nth-child(3n) {
        border-right: 0;
    }

    .trust-grid div:nth-child(-n+3) {
        border-bottom: 1px solid var(--line);
    }

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

@media (max-width: 1080px) {
    .nav-wrap {
        grid-template-columns: auto auto;
        justify-content: space-between;
        min-height: 78px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav,
    .nav-actions {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
    }

    .site-nav.is-open,
    .nav-actions.is-open {
        display: grid;
    }

    .site-nav {
        justify-content: stretch;
        gap: 7px;
        padding-top: 8px;
    }

    .site-nav > a,
    .nav-item > a {
        display: flex;
        justify-content: space-between;
        padding: 12px;
        background: var(--soft);
    }

    .nav-item {
        display: grid;
        gap: 7px;
        width: 100%;
    }

    .nav-item.has-dropdown::after {
        display: none;
    }

    .nav-dropdown {
        position: static;
        display: grid;
        gap: 6px;
        min-width: 0;
        padding: 0 0 0 12px;
        visibility: visible;
        opacity: 1;
        transform: none;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .nav-dropdown a {
        background: var(--white);
        border: 1px solid var(--line);
    }

    .nav-actions {
        grid-template-columns: 1fr;
        padding-bottom: 14px;
    }

    .hero-grid,
    .page-hero-grid,
    .split,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 60px;
    }

    .hosting-visual {
        min-height: auto;
    }

    .service-grid,
    .feature-grid,
    .testimonial-grid,
    .blog-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-body {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
    }

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

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

@media (max-width: 680px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    h1 {
        font-size: 2.35rem;
    }

    h2 {
        font-size: 1.85rem;
    }

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

    .hero,
    .page-hero,
    .section {
        padding: 56px 0;
    }

    .domain-search {
        grid-template-columns: 1fr;
        min-height: 0;
    }

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

    .hero-actions,
    .actions,
    .cta-actions,
    .form-actions,
    .admin-topbar,
    .footer-bottom,
    .section-head,
    .inquiry-item {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .service-grid,
    .feature-grid,
    .pricing-grid,
    .testimonial-grid,
    .tld-grid,
    .blog-grid,
    .portfolio-grid,
    .steps-grid,
    .feature-list.columns,
    .admin-form .form-grid,
    .admin-stats,
    .footer-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid div,
    .trust-grid div:nth-child(3n),
    .trust-grid div:nth-child(-n+3) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .trust-grid div:last-child {
        border-bottom: 0;
    }

    .hosting-visual {
        min-height: auto;
    }

    .hero-console {
        min-height: 0;
        padding: 22px;
    }

    .console-dashboard {
        width: 100%;
        margin: 0;
    }

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

    .floating-card {
        position: static;
        margin-top: 12px;
        animation: none;
    }

    .admin-main,
    .admin-topbar {
        padding: 18px;
    }

    .admin-sidebar nav {
        grid-template-columns: 1fr;
    }

    .inquiry-actions form {
        flex-direction: column;
    }
}
