:root {
    --orange: #f17600;
    --orange-2: #ff8f19;
    --orange-soft: #fff1e4;
    --navy: #071d31;
    --navy-2: #0d2d47;
    --text: #102033;
    --muted: #6a7685;
    --line: #e9edf2;
    --bg: #f6f9fc;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(10, 31, 51, .10);
    --shadow-soft: 0 10px 30px rgba(10, 31, 51, .08);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 7%, rgba(241, 118, 0, .10), transparent 28%),
        radial-gradient(circle at 85% 17%, rgba(37, 120, 195, .12), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 52%, #ffffff 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(13, 45, 71, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 45, 71, .035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 70%);
    z-index: -2;
}

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

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

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

.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;
}

.site-header {
    position: sticky;
    top: 16px;
    z-index: 20;
    margin-top: 18px;
}

.header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 14px 24px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(233,237,242,.92);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.brand {
    width: 250px;
    flex: 0 0 auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
    font-size: 14px;
    font-weight: 700;
    color: #17283b;
}

.main-nav a {
    position: relative;
    padding: 12px 0;
    transition: color .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--orange);
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 3px;
    border-radius: 99px;
    background: var(--orange);
}

.btn,
.btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    cursor: pointer;
    font-weight: 800;
    border-radius: 15px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn-header {
    padding: 15px 24px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), #ff9b21);
    box-shadow: 0 12px 25px rgba(241, 118, 0, .28);
    white-space: nowrap;
}

.btn:hover,
.btn-header:hover,
.btn-plan:hover,
.footer-cta:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    margin-left: auto;
}

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

.hero {
    padding: 34px 0 34px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    align-items: center;
    gap: 46px;
    min-height: 560px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    margin-bottom: 18px;
    color: var(--orange);
    background: rgba(255, 241, 228, .90);
    border: 1px solid rgba(241, 118, 0, .15);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.hero-copy h1 {
    margin: 0;
    max-width: 590px;
    font-size: clamp(38px, 5vw, 66px);
    line-height: .98;
    letter-spacing: -2.2px;
    color: var(--navy);
}

.hero-copy h1 span {
    color: var(--orange);
}

.hero-text {
    max-width: 470px;
    margin: 22px 0 24px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
    font-weight: 500;
}

.domain-search {
    max-width: 500px;
}

.search-box {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.search-box i {
    color: #8a96a4;
    font-size: 18px;
    text-align: center;
}

.search-box input {
    width: 100%;
    height: 46px;
    border: 0;
    outline: 0;
    color: var(--text);
    font: 600 15px 'Inter', Arial, sans-serif;
}

.search-box button {
    height: 48px;
    padding: 0 26px;
    border: 0;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    font-weight: 900;
    cursor: pointer;
}

.domain-prices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    margin-top: 10px;
    background: rgba(255,255,255,.94);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 12px 25px rgba(10,31,51,.06);
}

.domain-item {
    padding: 13px 10px;
    text-align: center;
    border-right: 1px solid var(--line);
}

.domain-item:last-child {
    border-right: 0;
}

.domain-item strong {
    display: block;
    color: var(--navy);
    font-size: 25px;
    line-height: 1;
    letter-spacing: -.8px;
}

.domain-item small {
    display: block;
    margin-top: 5px;
    color: #556372;
    font-size: 12px;
    font-weight: 800;
}

.hero-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    isolation: isolate;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 18px 0 0 0;
    background:
        radial-gradient(circle at 50% 22%, rgba(255,255,255,.96), transparent 27%),
        radial-gradient(circle at 76% 45%, rgba(241,118,0,.13), transparent 28%),
        radial-gradient(circle at 40% 43%, rgba(49,129,204,.14), transparent 38%);
    border-radius: 42px;
    z-index: -4;
}

.tech-orbit {
    position: absolute;
    border: 1px solid rgba(60, 135, 205, .22);
    border-radius: 34px;
    transform: rotate(-10deg);
    z-index: -2;
}

.orbit-one {
    width: 520px;
    height: 300px;
    top: 74px;
    right: 10px;
}

.orbit-two {
    width: 430px;
    height: 220px;
    top: 126px;
    right: 72px;
    border-color: rgba(241,118,0,.18);
}

.cloud-upload {
    position: absolute;
    top: 28px;
    right: 190px;
    width: 128px;
    height: 82px;
    display: grid;
    place-items: center;
    color: #3388db;
    font-size: 44px;
    background: linear-gradient(180deg, #f9fdff, #dcebfb);
    border: 1px solid rgba(65, 139, 214, .25);
    border-radius: 50px 50px 42px 42px;
    box-shadow: 0 18px 35px rgba(49,129,204,.18);
    z-index: 5;
}

.cloud-upload::before,
.cloud-upload::after {
    content: "";
    position: absolute;
    background: inherit;
    border-radius: 50%;
    border: inherit;
    border-bottom-color: transparent;
}

.cloud-upload::before {
    width: 62px;
    height: 62px;
    top: -28px;
    left: 18px;
}

.cloud-upload::after {
    width: 72px;
    height: 72px;
    top: -34px;
    right: 12px;
}

.cloud-upload i {
    position: relative;
    z-index: 2;
}

.server-stack {
    position: absolute;
    width: 108px;
    height: 310px;
    padding: 18px 14px;
    display: grid;
    gap: 13px;
    border-radius: 16px;
    background: linear-gradient(155deg, #0c253d, #071726);
    border: 1px solid rgba(100, 165, 228, .22);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 28px 45px rgba(10,31,51,.18);
}

.server-stack span {
    display: block;
    border-radius: 6px;
    background:
        linear-gradient(90deg, rgba(57,149,236,.8) 0 25%, transparent 25% 40%, rgba(241,118,0,.75) 40% 48%, rgba(43,68,91,.8) 48%);
    box-shadow: 0 0 18px rgba(57,149,236,.20);
}

.stack-left {
    left: 34px;
    bottom: 98px;
    transform: perspective(650px) rotateY(8deg);
}

.stack-right {
    right: 32px;
    bottom: 96px;
    transform: perspective(650px) rotateY(-8deg);
}

.stack-back {
    right: 170px;
    bottom: 142px;
    height: 270px;
    opacity: .9;
    z-index: -1;
}

.dashboard-card {
    position: relative;
    width: min(520px, 88%);
    min-height: 300px;
    margin-bottom: 35px;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(221,228,237,.95);
    box-shadow: 0 32px 60px rgba(10,31,51,.23);
    z-index: 4;
}

.dashboard-card::after {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: -28px;
    height: 14px;
    background: rgba(10,31,51,.25);
    filter: blur(12px);
    border-radius: 50%;
}

.dash-top {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    color: #fff;
    background: linear-gradient(90deg, #092034, #0e314e);
}

.dash-logo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(241,118,0,.18);
}

.dash-top strong {
    color: #fff;
    font-size: 12px;
}

.dash-top small {
    margin-left: auto;
    opacity: .7;
}

.dash-content {
    display: grid;
    grid-template-columns: 135px 1fr;
    min-height: 258px;
}

.dash-menu {
    padding: 18px 12px;
    display: grid;
    align-content: start;
    gap: 13px;
    background: #f5f8fb;
    border-right: 1px solid var(--line);
}

.dash-menu span {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #667383;
    font-size: 11px;
    font-weight: 700;
}

.dash-menu i {
    color: var(--orange);
}

.dash-main {
    padding: 18px;
}

.dash-main h3 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: 15px;
}

.dash-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.dash-kpis div {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.dash-kpis strong {
    display: block;
    color: var(--navy);
    font-size: 22px;
}

.dash-kpis small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
}

.chart-card {
    position: relative;
    height: 100px;
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: linear-gradient(180deg, #fff, #f7fbff);
    overflow: hidden;
}

.chart-line {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 34px;
    height: 1px;
    background: #e5ebf2;
}

.chart-line.small {
    top: 66px;
}

.chart-wave {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 23px;
    height: 42px;
    background: linear-gradient(135deg, transparent 0 12%, #2e86dc 12% 14%, transparent 14% 28%, #2e86dc 28% 30%, transparent 30% 44%, #2e86dc 44% 46%, transparent 46% 60%, #2e86dc 60% 62%, transparent 62% 76%, #2e86dc 76% 78%, transparent 78%);
    opacity: .8;
}

.security-badge {
    position: absolute;
    right: 0;
    bottom: 54px;
    display: flex;
    align-items: center;
    gap: 13px;
    width: 245px;
    padding: 18px;
    background: rgba(255,255,255,.92);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    z-index: 6;
}

.security-badge i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), #ff9a24);
    border-radius: 16px;
    font-size: 22px;
}

.security-badge strong,
.security-badge small {
    display: block;
}

.security-badge strong {
    color: var(--navy);
    font-size: 15px;
}

.security-badge small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.features {
    padding: 14px 0 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature-card {
    display: flex;
    gap: 16px;
    align-items: center;
    min-height: 140px;
    padding: 24px;
    background: rgba(255,255,255,.88);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: transform .2s ease, box-shadow .2s ease;
}

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

.feature-icon {
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--navy);
    background: var(--orange-soft);
    font-size: 31px;
}

.feature-card h3 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 16px;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 600;
}

.plans {
    padding: 18px 0 34px;
}

.section-title {
    text-align: center;
    margin-bottom: 34px;
}

.section-title h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(28px, 3vw, 38px);
    letter-spacing: -.8px;
}

.section-title p {
    margin: 8px 0 0;
    color: var(--muted);
    font-weight: 600;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    align-items: center;
    max-width: 990px;
    margin: 0 auto;
}

.plan-card {
    position: relative;
    min-height: 385px;
    padding: 34px 28px 28px;
    background: rgba(255,255,255,.93);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

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

.plan-card.featured {
    min-height: 420px;
    color: #fff;
    background: linear-gradient(180deg, #092238, #051828);
    border-color: rgba(241,118,0,.48);
    box-shadow: 0 24px 60px rgba(7,29,49,.24);
}

.badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 9px 34px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    border-radius: 7px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .5px;
    white-space: nowrap;
}

.plan-card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 28px;
    letter-spacing: -.6px;
}

.plan-card.featured h3 {
    color: #fff;
}

.price {
    padding-bottom: 21px;
    margin-bottom: 21px;
    border-bottom: 1px solid rgba(111, 125, 140, .22);
}

.price span {
    display: block;
    color: var(--orange);
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -1.4px;
}

.price small {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.plan-card.featured .price small {
    color: rgba(255,255,255,.80);
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 12px;
    text-align: left;
}

.plan-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #344252;
    font-size: 14px;
    font-weight: 700;
}

.plan-card.featured li {
    color: rgba(255,255,255,.88);
}

.plan-card li i {
    color: var(--orange);
    font-size: 15px;
}

.btn-plan {
    display: inline-flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--orange);
    border-radius: 14px;
    color: var(--orange);
    background: #fff;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.plan-card.featured .btn-plan {
    color: #fff;
    border: 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    box-shadow: 0 14px 30px rgba(241,118,0,.28);
}

.stats {
    padding: 8px 0 42px;
}

.stats-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 26px;
    background: rgba(255,255,255,.95);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 8px 24px;
    border-right: 1px solid var(--line);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item i {
    color: var(--orange);
    font-size: 42px;
}

.stat-item strong,
.stat-item span,
.stat-item small {
    display: block;
}

.stat-item strong {
    color: var(--navy);
    font-size: 30px;
    line-height: 1;
}

.stat-item span {
    margin-top: 4px;
    color: var(--navy);
    font-size: 16px;
    font-weight: 900;
}

.stat-item small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 48px 0 22px;
    color: #d9e5ef;
    background:
        radial-gradient(circle at 90% 45%, rgba(35, 126, 204, .22), transparent 22%),
        linear-gradient(135deg, #071d31, #04111d 80%);
}

.site-footer::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: 30px;
    width: 360px;
    height: 220px;
    background-image:
        linear-gradient(90deg, rgba(42,150,242,.35) 1px, transparent 1px),
        linear-gradient(rgba(42,150,242,.25) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: .28;
    transform: rotate(-7deg);
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.55fr .8fr 1fr 1fr 1.45fr;
    gap: 34px;
}

.footer-brand img {
    width: 250px;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,.15));
}

.footer-brand p {
    max-width: 300px;
    margin: 18px 0;
    color: #c1d0dc;
    line-height: 1.6;
    font-weight: 500;
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;
    color: #fff;
    transition: background .2s ease, transform .2s ease;
}

.socials a:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    margin: 0 0 16px;
    color: var(--orange);
    font-size: 16px;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: #c1d0dc;
    font-size: 14px;
    font-weight: 500;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
}

.footer-contact {
    padding-left: 26px;
    border-left: 1px solid rgba(255,255,255,.16);
}

.footer-contact .email {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #fff;
    font-size: 15px;
    word-break: break-word;
}

.footer-contact .email i {
    color: var(--orange);
    font-size: 24px;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    min-width: 180px;
    padding: 14px 20px;
    color: #fff;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    font-weight: 900;
    transition: transform .2s ease;
}

.copyright {
    position: relative;
    z-index: 2;
    margin-top: 34px;
    text-align: center;
    color: #98a9b8;
    font-size: 13px;
}

@media (max-width: 1100px) {
    .header-inner {
        gap: 18px;
    }

    .brand {
        width: 220px;
    }

    .main-nav {
        gap: 18px;
    }

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

    .hero-copy {
        text-align: center;
    }

    .hero-copy h1,
    .hero-text,
    .domain-search {
        margin-left: auto;
        margin-right: auto;
    }

    .features-grid,
    .stats-panel {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .stat-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
        padding-bottom: 22px;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-contact {
        padding-left: 0;
        border-left: 0;
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 14px;
        border-radius: 12px;
    }

    .main-nav a.active::after {
        display: none;
    }

    .main-nav a:hover,
    .main-nav a.active {
        background: var(--orange-soft);
    }

    .btn-header {
        display: none;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 430px;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 26px, 1180px);
    }

    .site-header {
        top: 8px;
        margin-top: 8px;
    }

    .header-inner {
        min-height: 76px;
        padding: 10px 14px;
        border-radius: 18px;
    }

    .brand {
        width: 185px;
    }

    .hero {
        padding-top: 22px;
    }

    .hero-grid {
        gap: 20px;
    }

    .hero-copy h1 {
        font-size: clamp(36px, 12vw, 48px);
        letter-spacing: -1.4px;
    }

    .hero-text {
        font-size: 15px;
    }

    .search-box {
        grid-template-columns: 28px 1fr;
    }

    .search-box button {
        grid-column: 1 / -1;
        width: 100%;
    }

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

    .domain-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

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

    .hero-visual {
        min-height: 450px;
        transform: scale(.9);
        transform-origin: top center;
        margin-bottom: -38px;
    }

    .stack-left {
        left: 0;
    }

    .stack-right {
        right: 0;
    }

    .stack-back,
    .cloud-upload {
        display: none;
    }

    .security-badge {
        right: 20px;
        bottom: 18px;
        width: 220px;
    }

    .dash-content {
        grid-template-columns: 1fr;
    }

    .dash-menu {
        display: none;
    }

    .features-grid,
    .stats-panel {
        grid-template-columns: 1fr;
    }

    .feature-card {
        align-items: flex-start;
    }

    .stats-panel {
        padding: 18px;
    }

    .stat-item,
    .stat-item:nth-child(-n+2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 18px 8px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Ajustes solicitados: sem busca de domínio, sem cards de benefícios, sem bloco SSL e rodapé simplificado */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    box-shadow: 0 12px 25px rgba(241, 118, 0, .28);
}

.btn-secondary {
    color: var(--orange);
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(241, 118, 0, .35);
    box-shadow: 0 10px 24px rgba(10,31,51,.06);
}

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

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    max-width: 560px;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    color: #203247;
    background: rgba(255,255,255,.78);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(10,31,51,.06);
    font-size: 13px;
    font-weight: 800;
}

.hero-badges i {
    color: var(--orange);
}

.plans {
    padding-top: 44px;
}

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

.footer-simple {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    max-width: 980px;
}

.footer-simple .footer-contact {
    justify-self: end;
    width: min(100%, 420px);
}

@media (max-width: 1100px) {
    .hero-actions,
    .hero-badges {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

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

    .stat-item,
    .stat-item:nth-child(2),
    .stat-item:nth-child(-n+2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 18px 12px;
    }

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

    .footer-simple {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-simple .footer-brand img,
    .footer-simple .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-simple .socials {
        justify-content: center;
    }

    .footer-simple .footer-contact {
        justify-self: center;
        padding-left: 0;
        border-left: 0;
    }

    .footer-simple .footer-contact .email,
    .footer-simple .footer-cta {
        justify-content: center;
    }
}

@media (max-width: 720px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}
