@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
    --bg: #070d18;
    --surface: #0b1423;
    --surface-2: #111e33;
    --line: #1e2f4f;
    --text: #edf3ff;
    --muted: #9cb0d0;
    --brand: #2f90ff;
    --brand-2: #1e6dd6;
    --ok: #28d07d;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background: #081327;
}

body.page-loading {
    overflow: hidden;
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 35%, rgba(52, 138, 255, 0.18), transparent 45%),
        #081327;
    opacity: 1;
    visibility: visible;
    transition: opacity 320ms ease, visibility 320ms ease;
}

.page-loader::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(56, 146, 255, 0.24) 0%, rgba(56, 146, 255, 0) 70%);
    filter: blur(2px);
    animation: loaderPulse 1700ms ease-in-out infinite;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.page-loader-core {
    position: relative;
    width: 118px;
    height: 118px;
    display: grid;
    place-items: center;
    animation: loaderFloat 1650ms ease-in-out infinite;
}

.page-loader-logo {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: #fff;
    padding: 7px;
    border: 1px solid #355077;
    object-fit: contain;
    box-shadow: 0 14px 34px rgba(9, 20, 40, 0.42);
    animation: loaderLogoBreathe 1300ms ease-in-out infinite;
}

.page-loader-ring,
.page-loader-ring::before,
.page-loader-ring::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
}

.page-loader-ring {
    border: 3px solid rgba(72, 145, 244, 0.2);
}

.page-loader-ring::before {
    border: 3px solid transparent;
    border-top-color: #4aa8ff;
    border-right-color: #2579e0;
    animation: spinLoader 900ms linear infinite;
}

.page-loader-ring::after {
    inset: 9px;
    border: 2px solid transparent;
    border-left-color: rgba(134, 199, 255, 0.95);
    border-bottom-color: rgba(53, 133, 234, 0.95);
    animation: spinLoaderReverse 1300ms linear infinite;
}

.page-loader-text {
    margin-top: 16px;
    text-align: center;
    color: #9fb3d5;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    animation: loaderTextPulse 1100ms ease-in-out infinite;
}

.page-loader-text::after {
    content: "...";
    display: inline-block;
    width: 1.4em;
    text-align: left;
    animation: loaderDots 900ms steps(4, end) infinite;
}

.container {
    width: 100%;
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.landing-shell {
    position: relative;
    overflow: hidden;
}
.top-nav {
    position: relative;
    z-index: 30;
    padding: 12px 0 4px;
}

.top-stage {
    padding: 0;
    min-height: 100vh;
    min-height: 100dvh;
}

.top-stage .container {
    padding-left: 0;
    padding-right: 0;
    min-height: inherit;
}

.top-stage-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    border: none;
    border-radius: 0;
    background:
        radial-gradient(ellipse 48% 42% at 78% 46%, rgba(56, 146, 255, 0.2), transparent 68%),
        radial-gradient(ellipse 36% 34% at 12% 78%, rgba(30, 109, 214, 0.14), transparent 70%),
        #081327;
    box-shadow: none;
    overflow: hidden;
}

.top-stage-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/header-background.png");
    background-size: auto 128%;
    background-position: right -240px center;
    background-repeat: no-repeat;
    opacity: 0.84;
    pointer-events: none;
    z-index: 0;
    animation: heroBgFloat 9s ease-in-out infinite;
}

.top-stage-inner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    background: linear-gradient(to bottom, rgba(8, 19, 39, 0) 0%, rgba(8, 19, 39, 0.72) 58%, #081327 100%);
    pointer-events: none;
    z-index: 1;
}

.top-stage-inner > * {
    position: relative;
    z-index: 2;
}

.top-stage-inner > .hero-atmosphere {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.top-stage-inner > .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 28;
}

.top-stage-inner > .top-nav {
    z-index: 40;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
}

.hero-glow-a {
    width: min(46vw, 520px);
    height: min(46vw, 520px);
    right: 8%;
    top: 18%;
    background: radial-gradient(circle, rgba(74, 168, 255, 0.28) 0%, rgba(74, 168, 255, 0) 70%);
    animation: heroGlowPulse 5.5s ease-in-out infinite;
}

.hero-glow-b {
    width: min(28vw, 280px);
    height: min(28vw, 280px);
    right: 28%;
    bottom: 14%;
    background: radial-gradient(circle, rgba(46, 214, 170, 0.12) 0%, rgba(46, 214, 170, 0) 70%);
    animation: heroGlowPulse 7s ease-in-out infinite 0.8s;
}

.hero-glow-c {
    width: min(34vw, 360px);
    height: min(34vw, 360px);
    left: -4%;
    top: 42%;
    background: radial-gradient(circle, rgba(47, 144, 255, 0.14) 0%, rgba(47, 144, 255, 0) 72%);
    animation: heroGlowPulse 6.4s ease-in-out infinite 1.4s;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(110, 168, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(110, 168, 255, 0.055) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 65% at 70% 45%, #000 20%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 70% 65% at 70% 45%, #000 20%, transparent 78%);
    animation: driftGrid 22s linear infinite;
    opacity: 0.9;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 16px;
}

.logo-area {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    padding: 3px;
    border: 1px solid #30435d;
}

.logo-text {
    color: #e9f2ff;
    font-weight: 800;
    letter-spacing: 0.04em;
    font-size: 0.8rem;
}

.menu-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu-links a {
    position: relative;
    color: #d2def2;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    padding-bottom: 4px;
    transition: color 200ms ease;
}

.menu-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #49adff, #2f90ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-links a:hover::after,
.menu-links a.is-active::after {
    transform: scaleX(1);
}

.menu-links a:hover {
    color: #55afff;
}

.menu-links a.is-active {
    color: #49adff;
}

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

.nav-login {
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(78, 126, 190, 0.45);
    border-radius: 12px;
    background: rgba(12, 22, 40, 0.72);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #d7e7ff;
    transition: transform 220ms ease, opacity 180ms ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.nav-open {
    overflow: hidden;
}

.nav-backdrop {
    display: none;
}

.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 0.92rem;
    transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease,
        background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -140%;
    width: 60%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: skewX(-18deg);
    transition: left 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover::after {
    left: 140%;
}

.btn:active {
    transform: translateY(0) scale(0.985);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 10px 24px rgba(27, 106, 211, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(27, 106, 211, 0.42);
}

.btn-outline {
    color: #7ec4ff;
    border-color: #2d4c7f;
    background: rgba(10, 17, 30, 0.5);
}

.btn-outline:hover {
    transform: translateY(-2px);
    color: #bfe0ff;
    border-color: #4d84cf;
    background: rgba(24, 48, 84, 0.6);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.kicker {
    color: #4ea9ff;
    margin: 0 0 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-v2 {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 28px 50px 72px;
}

.hero-v2-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.hero-v2-copy h1 {
    margin: 0;
    font-size: clamp(2rem, 4.1vw, 3.6rem);
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.hero-v2-copy {
    padding-top: 0;
}

.hero-v2-copy > * {
    animation: fadeUp 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-v2-copy > .kicker {
    animation-delay: 120ms;
}

.hero-v2-copy > h1 {
    animation-delay: 240ms;
}

.hero-v2-copy > p {
    animation-delay: 380ms;
}

.hero-v2-copy > .hero-v2-actions {
    animation-delay: 500ms;
}

.hero-v2-copy > .hero-v2-meta {
    animation-delay: 620ms;
}

.hero-v2-copy .kicker {
    margin: 0 0 22px;
    letter-spacing: 0.02em;
}

.hero-v2-copy h1 .accent {
    color: #46a9ff;
}

.hero-v2-copy > p {
    margin: 28px 0 0;
    color: var(--muted);
    line-height: 1.85;
    max-width: 52ch;
    font-size: 1rem;
}

.hero-v2-actions {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-v2-meta {
    margin-top: 28px;
    display: flex;
    gap: 16px;
    color: #a9bad7;
    font-size: 0.88rem;
}

.hero-v2-meta span::before {
    content: "\2022";
    color: #3ea6ff;
    margin-right: 6px;
}

.hero-visual {
    position: relative;
    min-height: min(58vh, 540px);
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    animation: fadeUp 900ms cubic-bezier(0.22, 1, 0.36, 1) 200ms both,
        floatY 7s ease-in-out 1.1s infinite;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 12% 8% 18% 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 168, 255, 0.18) 0%, rgba(74, 168, 255, 0) 72%);
    filter: blur(18px);
    animation: heroGlowPulse 4.8s ease-in-out infinite;
}

.hero-scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 3;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #9eb6d8;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.88;
    transition: color 180ms ease, opacity 180ms ease;
}

.hero-scroll-hint:hover {
    color: #d7e7ff;
    opacity: 1;
}

.hero-scroll-arrow {
    width: 18px;
    height: 18px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    animation: scrollBounce 1.6s ease-in-out infinite;
}

.services-v2 {
    padding: 72px 0 80px;
    background:
        radial-gradient(ellipse 50% 40% at 50% 0%, rgba(47, 144, 255, 0.08), transparent 70%),
        #081327;
}

.services-v2 .container {
    max-width: 1180px;
    padding-left: 24px;
    padding-right: 24px;
}

.section-head.center {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 40px;
}

.section-head .kicker {
    margin: 0 0 12px;
}

.section-divider {
    width: min(180px, 42vw);
    height: 1px;
    margin: 0 auto 16px;
    border: 0;
    background: linear-gradient(90deg, rgba(73, 173, 255, 0) 0%, rgba(73, 173, 255, 0.9) 50%, rgba(73, 173, 255, 0) 100%);
    opacity: 0.9;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(1.9rem, 2.8vw, 2.55rem);
    letter-spacing: -0.02em;
}

.section-head p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 1rem;
}

.service-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    margin-top: 0;
}

.service-card-v2 {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(18, 30, 52, 0.95) 0%, rgba(11, 20, 38, 0.98) 100%);
    border: 1px solid rgba(46, 74, 120, 0.45);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 18px 40px rgba(4, 10, 22, 0.28);
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.service-card-v2:hover {
    transform: translateY(-4px);
    border-color: rgba(78, 155, 255, 0.55);
    box-shadow: 0 22px 48px rgba(8, 28, 58, 0.38);
}

.service-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(145deg, #12233f, #0b172a);
    margin-bottom: 16px;
    border: 1px solid rgba(48, 78, 126, 0.35);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 350ms ease, filter 350ms ease;
    background: #081327;
}

.service-card-v2:hover .service-image img {
    transform: scale(1.04);
    filter: brightness(1.08);
}

.service-image.whatsapp {
    background: linear-gradient(145deg, #0f2a22, #0b1f1b);
}

.service-card-v2 h3 {
    margin: 0;
    font-size: 1.12rem;
    letter-spacing: -0.01em;
}

.service-card-v2 p {
    margin: 10px 0 18px;
    color: var(--muted);
    line-height: 1.62;
    min-height: 78px;
    font-size: 0.93rem;
    flex: 1;
}

.service-card-v2 a {
    color: #8ec9ff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    transition: color 180ms ease;
}

.service-card-v2 a:hover {
    color: #c5e2ff;
}

.coming-pill {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #2f7e5b;
    color: #83dfb0;
    background: rgba(42, 132, 95, 0.16);
    font-size: 0.82rem;
    font-weight: 700;
}

.section-break {
    height: 1px;
    margin: 0 auto;
    max-width: 720px;
    background: linear-gradient(90deg, rgba(73, 173, 255, 0) 0%, rgba(73, 173, 255, 0.45) 50%, rgba(73, 173, 255, 0) 100%);
}

.about-v2 {
    padding: 88px 0 72px;
    background:
        radial-gradient(ellipse 45% 50% at 85% 30%, rgba(47, 144, 255, 0.07), transparent 65%),
        #071121;
}

.about-v2 .container {
    max-width: 1180px;
    padding-left: 24px;
    padding-right: 24px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.about-copy {
    background: linear-gradient(180deg, #0f1b30 0%, #0c1526 100%);
    border: 1px solid #1d2f4f;
    border-radius: 16px;
    padding: 22px;
}

.about-copy h2 {
    margin: 0;
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
    line-height: 1.15;
}

.about-copy p {
    color: var(--muted);
    line-height: 1.7;
}

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

.stat-item {
    background: linear-gradient(170deg, #12233f 0%, #0f1b33 100%);
    border: 1px solid #23416b;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), border-color 240ms ease,
        box-shadow 240ms ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: rgba(78, 155, 255, 0.6);
    box-shadow: 0 18px 36px rgba(8, 28, 58, 0.35);
}

.stat-item strong {
    color: #59b6ff;
    font-size: 2rem;
}

.stat-item span {
    color: #afc1dd;
}

.cta-strip {
    padding: 24px 0 0;
    background: #071121;
}

.cta-strip .container {
    max-width: 1180px;
    padding-left: 24px;
    padding-right: 24px;
}

.cta-strip-inner {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 55% 80% at 90% 50%, rgba(47, 144, 255, 0.22), transparent 60%),
        linear-gradient(120deg, #10243f 0%, #143868 100%);
    border: 1px solid rgba(72, 130, 200, 0.45);
    border-radius: 20px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 20px 48px rgba(5, 14, 32, 0.35);
}

.cta-copy .kicker {
    margin: 0 0 10px;
    color: #7ec4ff;
}

.cta-strip-inner h3 {
    margin: 0;
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    letter-spacing: -0.02em;
}

.cta-strip-inner p {
    margin: 10px 0 0;
    color: #b9cae3;
    line-height: 1.65;
    max-width: 46ch;
}

.cta-phone {
    flex-shrink: 0;
    white-space: nowrap;
}

.footer-v2 {
    margin-top: 56px;
    padding: 48px 0 28px;
    background:
        linear-gradient(180deg, #071121 0%, #050d18 100%);
    border-top: 1px solid rgba(36, 58, 96, 0.55);
}

.footer-v2 .container {
    max-width: 1180px;
    padding-left: 24px;
    padding-right: 24px;
}

.footer-v2-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px 24px;
    padding-bottom: 28px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: #fff;
    padding: 3px;
    object-fit: contain;
}

.footer-brand p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    max-width: 34ch;
    font-size: 0.94rem;
}

.footer-v2 h4 {
    margin: 0 0 14px;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #d7e6ff;
}

.footer-v2 ul {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #afc1dd;
    display: grid;
    gap: 10px;
    font-size: 0.93rem;
}

.footer-v2 ul a {
    color: #afc1dd;
    text-decoration: none;
    transition: color 180ms ease;
}

.footer-v2 ul a:hover {
    color: #8ec9ff;
}

.footer-bottom {
    border-top: 1px solid rgba(36, 58, 96, 0.55);
    padding-top: 18px;
}

.copyright {
    margin: 0;
    color: #7f94b5;
    font-size: 0.86rem;
}

.auth-page {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: 40px 20px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 50% at 20% 20%, rgba(47, 144, 255, 0.12), transparent 65%),
        #071121;
}

.auth-atmosphere {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.auth-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}

.auth-glow-a {
    width: min(48vw, 520px);
    height: min(48vw, 520px);
    left: -6%;
    top: -10%;
    background: radial-gradient(circle, rgba(74, 168, 255, 0.22) 0%, rgba(74, 168, 255, 0) 70%);
    animation: heroGlowPulse 6.5s ease-in-out infinite;
}

.auth-glow-b {
    width: min(40vw, 440px);
    height: min(40vw, 440px);
    right: -8%;
    bottom: -12%;
    background: radial-gradient(circle, rgba(46, 214, 170, 0.1) 0%, rgba(46, 214, 170, 0) 72%);
    animation: heroGlowPulse 8s ease-in-out infinite 1.2s;
}

.auth-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(110, 168, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(110, 168, 255, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, #000 15%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, #000 15%, transparent 80%);
    animation: driftGrid 24s linear infinite;
}

.auth-shell {
    position: relative;
    z-index: 1;
    width: min(1040px, 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
    animation: fadeUp 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.auth-shell-narrow {
    width: min(480px, 100%);
    grid-template-columns: 1fr;
}

.auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    margin-bottom: 26px;
}

.auth-brand-center {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.auth-brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #fff;
    padding: 4px;
    object-fit: contain;
    border: 1px solid #30435d;
}

.auth-aside h2 {
    margin: 0;
    font-size: clamp(1.7rem, 2.6vw, 2.3rem);
    line-height: 1.24;
    letter-spacing: -0.02em;
}

.auth-aside > p {
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.8;
    max-width: 42ch;
    font-size: 0.96rem;
}

.auth-points {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
    color: #b8cbe8;
    font-size: 0.93rem;
}

.auth-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.auth-points li::before {
    content: "";
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(47, 144, 255, 0.9), rgba(30, 109, 214, 0.9));
    box-shadow: 0 0 0 3px rgba(47, 144, 255, 0.12);
}

.auth-card {
    width: 100%;
    background: linear-gradient(180deg, rgba(18, 30, 52, 0.96) 0%, rgba(11, 20, 38, 0.98) 100%);
    border: 1px solid rgba(46, 74, 120, 0.5);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 26px 60px rgba(4, 10, 22, 0.45);
}

.auth-card-head {
    margin-bottom: 24px;
}

.auth-card h1 {
    margin: 0;
    font-size: 1.7rem;
    letter-spacing: -0.02em;
}

.auth-card-head p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.6;
}

.auth-form {
    display: grid;
    gap: 18px;
}

.auth-form .field {
    display: grid;
    gap: 8px;
}

.auth-form label {
    color: #cfdff5;
    font-size: 0.86rem;
    font-weight: 600;
}

.auth-form small {
    color: #7f94b5;
    font-size: 0.8rem;
    line-height: 1.5;
}

.auth-form input {
    width: 100%;
    border: 1px solid #294062;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 0.96rem;
    font-family: inherit;
    background: rgba(8, 16, 30, 0.75);
    color: #edf3ff;
    transition: border-color 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.auth-form input::placeholder {
    color: #5d7396;
}

.auth-form input:focus {
    outline: none;
    border-color: #3d8de0;
    background: rgba(11, 22, 40, 0.9);
    box-shadow: 0 0 0 3px rgba(47, 144, 255, 0.18);
}

.input-prefix {
    display: flex;
    align-items: stretch;
    border: 1px solid #294062;
    border-radius: 12px;
    background: rgba(8, 16, 30, 0.75);
    overflow: hidden;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.input-prefix:focus-within {
    border-color: #3d8de0;
    box-shadow: 0 0 0 3px rgba(47, 144, 255, 0.18);
}

.input-prefix-label {
    display: flex;
    align-items: center;
    padding: 0 14px;
    color: #9cb0d0;
    font-size: 0.94rem;
    font-weight: 700;
    background: rgba(24, 42, 70, 0.7);
    border-right: 1px solid #294062;
}

.input-prefix input {
    flex: 1;
    min-width: 0;
    min-height: 48px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #edf3ff;
    font-size: 1rem;
    font-family: inherit;
    padding: 12px 14px;
    -webkit-text-fill-color: #edf3ff;
    caret-color: #8ec9ff;
}

.input-prefix input::placeholder {
    color: #5d7396;
    -webkit-text-fill-color: #5d7396;
}

.input-prefix input:focus {
    outline: none;
    box-shadow: none;
    background: transparent;
    color: #edf3ff;
}

.password-meter {
    display: grid;
    gap: 8px;
}

.password-meter-track {
    height: 8px;
    border-radius: 999px;
    background: rgba(36, 58, 96, 0.7);
    overflow: hidden;
}

.password-meter-bar {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: #5d7396;
    transition: width 220ms ease, background-color 220ms ease;
}

.password-meter-bar[data-level="empty"] {
    background: #5d7396;
}

.password-meter-bar[data-level="weak"] {
    background: linear-gradient(90deg, #e35d6a, #ff8a95);
}

.password-meter-bar[data-level="fair"] {
    background: linear-gradient(90deg, #2f90ff, #55afff);
}

.password-meter-bar[data-level="strong"] {
    background: linear-gradient(90deg, #28d07d, #5ae6a4);
}

.password-meter-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #7f94b5;
    font-size: 0.8rem;
}

#passwordMeterCount {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
}

.otp-input {
    text-align: center;
    font-size: 1.6rem !important;
    font-weight: 700;
    letter-spacing: 0.42em;
    text-indent: 0.42em;
    padding: 14px !important;
}

.btn-block {
    width: 100%;
    padding: 13px 18px;
}

.auth-form button {
    margin-top: 4px;
}

.auth-resend {
    margin-top: 12px;
}

.auth-note {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    text-align: center;
}

.auth-note a {
    color: #8ec9ff;
    font-weight: 700;
    text-decoration: none;
}

.auth-note a:hover {
    color: #c5e2ff;
}

.auth-back {
    display: block;
    margin-top: 14px;
    text-align: center;
    color: #7f94b5;
    font-size: 0.86rem;
    text-decoration: none;
    transition: color 180ms ease;
}

.auth-back:hover {
    color: #b9cce8;
}

.alert {
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.alert ul {
    margin: 0;
    padding-left: 18px;
}

.alert.success {
    color: #9ef2c8;
    background: rgba(22, 64, 49, 0.55);
    border: 1px solid rgba(67, 146, 111, 0.65);
}

.alert.error {
    color: #ffadb3;
    background: rgba(95, 28, 35, 0.55);
    border: 1px solid rgba(175, 75, 87, 0.65);
}

.dash-shell {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 48px;
}

.dash-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.dash-brand .auth-brand {
    margin-bottom: 6px;
}

.dash-welcome {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

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

.dash-stat {
    background: linear-gradient(180deg, rgba(18, 30, 52, 0.95) 0%, rgba(11, 20, 38, 0.98) 100%);
    border: 1px solid rgba(46, 74, 120, 0.45);
    border-radius: 16px;
    padding: 18px;
    display: grid;
    gap: 6px;
}

.dash-stat strong {
    font-size: 1.8rem;
    color: #7ec4ff;
}

.dash-stat.up strong {
    color: #5ae6a4;
}

.dash-stat.down strong {
    color: #ff8a95;
}

.dash-stat span {
    color: var(--muted);
    font-size: 0.88rem;
}

.dash-panel,
.domain-card,
.dash-empty {
    background: linear-gradient(180deg, rgba(18, 30, 52, 0.96) 0%, rgba(11, 20, 38, 0.98) 100%);
    border: 1px solid rgba(46, 74, 120, 0.5);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 18px 40px rgba(4, 10, 22, 0.28);
}

.dash-panel {
    margin-bottom: 20px;
}

.dash-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.dash-panel-head h1,
.dash-empty h2,
.domain-main h2 {
    margin: 0;
    letter-spacing: -0.02em;
}

.dash-panel-head p,
.dash-empty p,
.domain-meta,
.contact-empty {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

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

.dash-form-inline {
    grid-template-columns: 1fr auto;
    align-items: end;
}

.dash-form .field {
    display: grid;
    gap: 8px;
}

.dash-form .field.grow {
    min-width: 0;
}

.dash-form label {
    color: #cfdff5;
    font-size: 0.86rem;
    font-weight: 600;
}

.dash-form input {
    width: 100%;
    border: 1px solid #294062;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 0.96rem;
    font-family: inherit;
    background: rgba(8, 16, 30, 0.75);
    color: #edf3ff;
}

.dash-form input:focus {
    outline: none;
    border-color: #3d8de0;
    box-shadow: 0 0 0 3px rgba(47, 144, 255, 0.18);
}

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

.domain-card-top {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
}

.domain-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    transition: border-color 220ms ease, box-shadow 220ms ease;
}

.domain-card:hover {
    border-color: rgba(76, 139, 218, 0.58);
    box-shadow: 0 24px 54px rgba(4, 14, 34, 0.38);
}

.domain-card-top,
.domain-settings,
.contact-box {
    padding-left: 24px;
    padding-right: 24px;
}

.domain-card-top {
    padding-top: 24px;
    padding-bottom: 22px;
    background:
        radial-gradient(ellipse 40% 100% at 0% 0%, rgba(47, 144, 255, 0.1), transparent 75%);
}

.domain-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #66b7ff;
    border: 1px solid rgba(72, 145, 244, 0.35);
    border-radius: 14px;
    background: rgba(47, 144, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(47, 144, 255, 0.08);
}

.domain-icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
}

.domain-main {
    min-width: 0;
}

.domain-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}

.status-cell {
    display: grid;
    gap: 6px;
    align-content: start;
}

.status-cell-label {
    color: #6d91bd;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    border: 1px solid transparent;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 8px currentColor;
}

.domain-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    color: #edf3ff;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition: color 180ms ease;
}

.domain-link:hover {
    color: #8ec9ff;
}

.domain-link span {
    color: #6e8fb8;
    font-size: 0.9em;
}

.domain-meta {
    font-size: 0.86rem;
}

.status-up {
    color: #83dfb0;
    background: rgba(42, 132, 95, 0.16);
    border-color: #2f7e5b;
}

.status-down {
    color: #ffadb3;
    background: rgba(95, 28, 35, 0.35);
    border-color: rgba(175, 75, 87, 0.65);
}

.status-unknown {
    color: #b9cae3;
    background: rgba(54, 78, 118, 0.28);
    border-color: #35507a;
}

.badge-on {
    color: #8ec9ff;
    background: rgba(47, 144, 255, 0.14);
    border-color: rgba(72, 145, 244, 0.45);
}

.badge-off {
    color: #95a9ca;
    background: rgba(40, 54, 78, 0.4);
    border-color: #3a4f72;
}

.domain-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.btn-sm {
    padding: 8px 12px;
    font-size: 0.84rem;
}

.btn-danger {
    color: #ffb4ba;
    border: 1px solid rgba(175, 75, 87, 0.65);
    background: rgba(95, 28, 35, 0.35);
}

.btn-danger:hover {
    color: #fff;
    background: rgba(140, 40, 52, 0.55);
}

.domain-settings {
    padding-top: 0;
    padding-bottom: 18px;
}

.domain-settings summary {
    width: fit-content;
    color: #8eb8e7;
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 700;
    list-style: none;
    user-select: none;
    transition: color 180ms ease;
}

.domain-settings summary::-webkit-details-marker {
    display: none;
}

.domain-settings summary::before {
    content: "?";
    margin-right: 7px;
    color: #6e8fb8;
}

.domain-settings summary:hover {
    color: #bfe0ff;
}

.domain-settings[open] summary {
    margin-bottom: 4px;
}

.contact-box {
    margin-top: 0;
    padding-top: 22px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(46, 74, 120, 0.4);
    background: rgba(5, 13, 27, 0.3);
}

.contact-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-head h3 {
    margin: 2px 0 0;
    font-size: 1.08rem;
}

.contact-eyebrow {
    margin: 0;
    color: #6d91bd;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-count {
    padding: 5px 10px;
    border: 1px solid rgba(72, 145, 244, 0.25);
    border-radius: 999px;
    background: rgba(47, 144, 255, 0.08);
    color: #95a9ca;
    font-size: 0.84rem;
}

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

.contact-list li {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid rgba(46, 74, 120, 0.34);
    border-radius: 13px;
    background: rgba(12, 24, 43, 0.72);
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
}

.contact-identity {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.contact-identity > div {
    display: grid;
    gap: 3px;
}

.contact-identity strong {
    color: #dceaff;
    font-size: 0.94rem;
    font-variant-numeric: tabular-nums;
}

.contact-identity span {
    color: #7891b3;
    font-size: 0.75rem;
}

.wa-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 10px;
    color: #78e0a7 !important;
    background: rgba(40, 208, 125, 0.11);
    border: 1px solid rgba(40, 208, 125, 0.25);
    font-size: 0.68rem !important;
    font-weight: 800;
}

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

.contact-delete {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 9px;
    color: #9b7180;
    background: transparent;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-delete:hover {
    color: #ffb4ba;
    border-color: rgba(175, 75, 87, 0.5);
    background: rgba(95, 28, 35, 0.32);
}

.input-prefix.compact {
    min-width: 0;
}

body.modal-open {
    overflow: hidden;
}

.wa-modal[hidden] {
    display: none !important;
}

.wa-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 20px;
}

.wa-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 8, 18, 0.72);
    backdrop-filter: blur(4px);
}

.wa-modal-card {
    position: relative;
    z-index: 1;
    width: min(420px, 100%);
    padding: 22px;
    border: 1px solid rgba(72, 145, 244, 0.4);
    border-radius: 18px;
    background: linear-gradient(180deg, #12233f 0%, #0c1628 100%);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
    animation: waModalIn 200ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.wa-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.wa-modal-head h3 {
    margin: 0;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.wa-modal-close {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: #9b7180;
    font-size: 1.35rem;
    cursor: pointer;
}

.wa-modal-close:hover {
    color: #ffb4ba;
    border-color: rgba(175, 75, 87, 0.45);
    background: rgba(95, 28, 35, 0.28);
}

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

.wa-modal-form label {
    color: #cfdff5;
    font-size: 0.86rem;
    font-weight: 600;
}

.wa-modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 8px;
}

.wa-modal-actions .btn {
    width: 100%;
}

@keyframes waModalIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.contact-add {
    margin-top: 16px;
    padding: 16px;
    border: 1px dashed rgba(72, 145, 244, 0.3);
    border-radius: 14px;
    background: rgba(47, 144, 255, 0.035);
}

.dash-empty {
    text-align: center;
    padding: 48px 24px;
}

.domain-table-wrap {
    background: linear-gradient(180deg, rgba(18, 30, 52, 0.96) 0%, rgba(11, 20, 38, 0.98) 100%);
    border: 1px solid rgba(46, 74, 120, 0.5);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(4, 10, 22, 0.28);
}

.domain-table-head,
.domain-row {
    display: grid;
    grid-template-columns: minmax(180px, 2fr) 120px 110px 90px 150px 210px;
    gap: 12px;
    align-items: center;
    padding: 14px 18px;
}

.domain-table-head {
    color: #7f94b5;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(46, 74, 120, 0.45);
    background: rgba(8, 16, 30, 0.45);
}

.domain-table-head > span:last-child,
.domain-row-actions {
    justify-self: end;
    text-align: right;
}

.domain-table {
    list-style: none;
    margin: 0;
    padding: 0;
}

.domain-row {
    border-bottom: 1px solid rgba(46, 74, 120, 0.28);
    transition: background 180ms ease;
}

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

.domain-row:hover {
    background: rgba(47, 144, 255, 0.05);
}

.domain-row-main {
    min-width: 0;
    text-decoration: none;
    color: inherit;
    display: grid;
    gap: 4px;
}

.domain-row-main strong {
    color: #edf3ff;
    font-size: 0.98rem;
    overflow-wrap: anywhere;
}

.domain-row-hint {
    color: #6d91bd;
    font-size: 0.78rem;
}

.domain-wa-count,
.domain-checked {
    color: #9cb0d0;
    font-size: 0.86rem;
}

.domain-row-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.domain-table-wrap {
    overflow-x: auto;
}

.domain-table-head,
.domain-table {
    min-width: 920px;
}

.auth-back-inline {
    display: inline-block;
    color: #8ec9ff;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 8px;
}

.auth-back-inline:hover {
    color: #c5e2ff;
}

.domain-detail-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 22px 24px;
    border: 1px solid rgba(46, 74, 120, 0.5);
    border-radius: 18px;
    background:
        radial-gradient(ellipse 42% 90% at 0% 0%, rgba(47, 144, 255, 0.12), transparent 70%),
        linear-gradient(180deg, rgba(18, 30, 52, 0.96) 0%, rgba(11, 20, 38, 0.98) 100%);
}

.domain-detail-head h1 {
    margin: 10px 0 0;
    font-size: clamp(1.25rem, 2.4vw, 1.7rem);
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
}

.domain-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
    gap: 18px;
    align-items: start;
}

.history-panel h2,
.side-panel h2 {
    margin: 0;
    font-size: 1.15rem;
}

.history-empty {
    margin-top: 12px;
    padding: 24px;
    border: 1px dashed rgba(72, 145, 244, 0.28);
    border-radius: 14px;
    color: var(--muted);
    text-align: center;
}

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

.history-item {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(46, 74, 120, 0.28);
}

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

.history-marker {
    width: 10px;
    height: 10px;
    margin-top: 6px;
    margin-left: 4px;
    border-radius: 50%;
    background: #6d91bd;
    box-shadow: 0 0 0 4px rgba(109, 145, 189, 0.15);
}

.history-item.status-up .history-marker,
.history-item.status-recovered .history-marker {
    background: #5ae6a4;
    box-shadow: 0 0 0 4px rgba(90, 230, 164, 0.15);
}

.history-item.status-down .history-marker {
    background: #ff8a95;
    box-shadow: 0 0 0 4px rgba(255, 138, 149, 0.15);
}

.history-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.history-top strong {
    font-size: 0.95rem;
}

.history-time {
    margin: 6px 0 0;
    color: #d7e6ff;
    font-size: 0.9rem;
    font-weight: 600;
}

.history-meta {
    margin: 6px 0 0;
    color: #7f94b5;
    font-size: 0.82rem;
    line-height: 1.55;
}

.side-panel .contact-add {
    margin-top: 14px;
}

.side-panel .domain-settings {
    margin-top: 16px;
    padding: 0;
}

@media (max-width: 980px) {
    .domain-detail-grid,
    .domain-detail-head {
        grid-template-columns: 1fr;
        display: grid;
    }
}

@media (max-width: 1080px) {
    .service-card-v2 {
        grid-column: auto;
    }

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

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

@media (max-width: 900px) {
    .nav-inner {
        position: relative;
        z-index: 30;
        padding: 4px 16px;
        gap: 10px;
    }

    .logo-img {
        width: 42px;
        height: 42px;
    }

    .nav-login {
        padding: 8px 12px;
        font-size: 0.84rem;
        min-height: 40px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 28;
        background: rgba(4, 10, 22, 0.58);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 200ms ease, visibility 200ms ease;
    }

    body.nav-open .nav-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .top-nav {
        position: relative;
        z-index: 40;
    }

    .menu-links {
        position: absolute;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        z-index: 50;
        display: grid;
        gap: 4px;
        padding: 12px;
        border-radius: 18px;
        border: 1px solid rgba(64, 108, 172, 0.45);
        background:
            linear-gradient(180deg, rgba(14, 26, 48, 0.98) 0%, rgba(8, 16, 32, 0.99) 100%);
        box-shadow: 0 22px 48px rgba(3, 8, 18, 0.55);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 200ms ease, transform 220ms ease, visibility 220ms ease;
    }

    body.nav-open .menu-links {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .menu-links a {
        display: block;
        padding: 12px 14px;
        border-radius: 12px;
        font-size: 0.95rem;
    }

    .menu-links a::after {
        display: none;
    }

    .menu-links a:hover,
    .menu-links a.is-active {
        background: rgba(47, 144, 255, 0.12);
        color: #8ec9ff;
    }

    .auth-page {
        padding: 24px 14px;
        align-items: center;
        place-items: center;
        justify-items: center;
    }

    .auth-shell {
        grid-template-columns: 1fr;
        gap: 14px;
        width: 100%;
        max-width: 440px;
        margin: 0 auto;
        align-self: center;
    }

    .auth-aside {
        text-align: center;
        padding: 2px 2px 0;
    }

    .auth-brand {
        margin-bottom: 10px;
        justify-content: center;
    }

    .auth-brand-logo {
        width: 40px;
        height: 40px;
    }

    .auth-aside h2 {
        margin: 0 0 8px;
        font-size: 1.32rem;
        line-height: 1.25;
    }

    .auth-aside > p {
        margin: 0;
        max-width: none;
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .auth-points {
        display: none;
    }

    .auth-card {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .auth-card-head {
        margin-bottom: 18px;
    }

    .auth-card h1 {
        font-size: 1.55rem;
    }

    .auth-card-head p {
        font-size: 0.9rem;
    }

    .auth-form {
        gap: 14px;
    }

    .auth-form input,
    .input-prefix {
        min-height: 48px;
    }

    .auth-form input {
        padding: 12px 14px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .input-prefix {
        border-radius: 12px;
    }

    .input-prefix input {
        min-height: 46px;
        font-size: 1rem;
    }

    .auth-form .btn,
    .auth-form .btn-block {
        width: 100%;
        min-height: 48px;
        margin-top: 4px;
    }

    .otp-input {
        min-height: 56px;
        font-size: 1.35rem;
        letter-spacing: 0.28em;
    }

    .password-meter {
        margin-top: 8px;
    }

    .auth-note,
    .auth-back {
        font-size: 0.9rem;
    }

    .top-nav {
        padding: 10px 0 0;
    }

    .logo-img {
        width: 40px;
        height: 40px;
        border-radius: 9px;
    }

    .logo-text {
        font-size: 0.78rem;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
    }

    .hero-v2 {
        flex: 1;
        display: flex;
        align-items: center;
        padding: 18px 20px 72px;
        min-height: 0;
    }

    .hero-v2-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-v2-grid {
        display: flex;
        flex-direction: column;
        flex: 1;
        justify-content: center;
        min-height: 0;
        gap: 0;
    }

    .hero-visual {
        display: none;
    }

    .hero-v2-copy {
        position: relative;
        z-index: 2;
        flex: 0 0 auto;
        padding-top: 0;
        max-width: none;
        width: 100%;
    }

    .hero-v2-copy .kicker {
        margin-bottom: 14px;
        font-size: 0.86rem;
        line-height: 1.45;
    }

    .hero-v2-copy h1 {
        font-size: clamp(2.05rem, 9.5vw, 2.7rem);
        line-height: 1.14;
        letter-spacing: -0.02em;
    }

    .hero-v2-copy > p {
        margin-top: 18px;
        font-size: 1.02rem;
        line-height: 1.7;
        max-width: none;
    }

    .hero-v2-actions {
        margin-top: 28px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-v2-actions .btn {
        width: 100%;
        min-height: 50px;
        padding: 12px 16px;
        font-size: 0.95rem;
        border-radius: 12px;
    }

    .hero-v2-meta {
        margin-top: 22px;
        flex-wrap: wrap;
        gap: 10px 16px;
        font-size: 0.88rem;
    }

    .top-stage-inner::before {
        background-size: auto 100%;
        background-position: right -80px center;
        opacity: 0.34;
        filter: none;
    }

    .top-stage-inner::after {
        height: 140px;
        background: linear-gradient(to bottom, rgba(8, 19, 39, 0) 0%, rgba(8, 19, 39, 0.62) 48%, #081327 100%);
    }

    .hero-atmosphere .hero-grid {
        opacity: 0.45;
        mask-image: radial-gradient(ellipse 90% 70% at 70% 55%, #000 10%, transparent 78%);
        -webkit-mask-image: radial-gradient(ellipse 90% 70% at 70% 55%, #000 10%, transparent 78%);
    }

    .hero-scroll-hint {
        bottom: 16px;
        font-size: 0.7rem;
        gap: 6px;
    }

    .hero-scroll-arrow {
        width: 14px;
        height: 14px;
    }

    .hero-glow-a,
    .hero-glow-b,
    .hero-glow-c {
        opacity: 0.5;
    }

    .hero-glow-a {
        right: -12%;
        top: 30%;
        left: auto;
        bottom: auto;
        width: 68vw;
        height: 68vw;
    }

    .hero-glow-b {
        right: 10%;
        bottom: 16%;
    }

    .hero-glow-c {
        left: -12%;
        top: 48%;
        bottom: auto;
    }

    .services-v2 {
        padding: 48px 0 56px;
    }

    .services-v2 .container,
    .about-v2 .container,
    .cta-strip .container,
    .footer-v2 .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-head.center {
        margin-bottom: 28px;
        padding: 0 4px;
    }

    .section-head h2 {
        font-size: clamp(1.55rem, 6.5vw, 2rem);
    }

    .service-grid-v2 {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card-v2 {
        padding: 16px;
        border-radius: 18px;
    }

    .service-image {
        height: 148px;
        border-radius: 14px;
    }

    .about-v2 {
        padding: 48px 0 56px;
    }

    .about-copy h2 {
        font-size: clamp(1.55rem, 6.5vw, 2rem);
    }

    .cta-strip-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 22px 18px;
        border-radius: 18px;
    }

    .cta-phone,
    .cta-strip-inner .btn {
        width: 100%;
        min-height: 48px;
        justify-content: center;
    }

    .footer-v2 {
        margin-top: 28px;
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .footer-v2-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dash-shell {
        width: calc(100% - 20px);
        padding: 18px 0 36px;
    }

    .dash-top {
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 12px;
    }

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

    .dash-stat {
        padding: 14px;
    }

    .dash-stat strong {
        font-size: 1.45rem;
    }

    .dash-panel {
        padding: 16px;
        border-radius: 16px;
    }

    .dash-panel-head {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .dash-panel-head .btn,
    .dash-form-inline .btn,
    .contact-row .btn {
        width: 100%;
        min-height: 46px;
    }

    .dash-form-inline,
    .contact-row {
        grid-template-columns: 1fr;
        display: grid;
    }

    .domain-card-top {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .domain-actions {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: flex-start;
    }

    .domain-actions .btn {
        width: 100%;
    }

    .domain-table-head {
        display: none;
    }

    .domain-table-head,
    .domain-table {
        min-width: 0;
    }

    .domain-table-wrap {
        border-radius: 16px;
        overflow: visible;
    }

    .domain-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px 12px;
        padding: 16px;
        align-items: start;
    }

    .domain-row-main {
        grid-column: 1 / -1;
    }

    .domain-row-actions {
        grid-column: 1 / -1;
        justify-self: stretch;
        justify-content: stretch;
    }

    .domain-row-actions .btn,
    .domain-row-actions form {
        flex: 1 1 auto;
    }

    .domain-row-actions form {
        display: flex;
    }

    .domain-row-actions form .btn {
        width: 100%;
    }

    .domain-row > [data-label]::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 4px;
        color: #7f94b5;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .wa-modal-card {
        width: min(100%, 420px);
        margin: 16px;
        padding: 18px 16px;
    }
}

@media (max-width: 620px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

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

    .service-carousel-controls {
        gap: 8px;
    }

    .hero-v2 {
        padding: 14px 16px 68px;
    }

    .hero-v2-copy {
        max-width: 100%;
    }

    .hero-v2-copy .kicker {
        font-size: 0.8rem;
    }

    .hero-v2-copy h1 {
        font-size: clamp(1.9rem, 9vw, 2.35rem);
    }

    .hero-v2-copy > p {
        font-size: 0.96rem;
        max-width: none;
    }

    .hero-v2-actions {
        margin-top: 24px;
        gap: 10px;
    }

    .hero-v2-actions .btn {
        min-height: 48px;
        padding: 11px 14px;
        font-size: 0.92rem;
    }

    .top-stage-inner::before {
        background-position: right -100px 40%;
        opacity: 0.28;
    }

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

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

    .auth-page {
        padding: 20px 12px;
        place-items: center;
        align-items: center;
    }

    .auth-aside h2 {
        font-size: 1.22rem;
    }

    .auth-card {
        padding: 20px 14px;
    }

    .auth-card h1 {
        font-size: 1.4rem;
    }

    .input-prefix {
        min-height: 48px;
    }

    .auth-form input,
    .dash-form input,
    .field input,
    .field select,
    .field textarea {
        min-height: 48px;
        font-size: 1rem;
    }

    .cta-phone,
    .cta-strip-inner .btn {
        min-height: 44px;
    }

    .section-head h2,
    .about-copy h2 {
        font-size: 1.45rem;
    }

    .service-image {
        height: 120px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes pulseGlow {
    0%,
    100% {
        opacity: 0.9;
        filter: saturate(1);
    }

    50% {
        opacity: 1;
        filter: saturate(1.25);
    }
}

@keyframes driftGrid {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(0, 42px, 0);
    }
}

@keyframes heroBgFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -10px, 0);
    }
}

@keyframes heroGlowPulse {
    0%,
    100% {
        opacity: 0.72;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.06);
    }
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translateY(0) rotate(45deg);
        opacity: 0.55;
    }

    50% {
        transform: translateY(6px) rotate(45deg);
        opacity: 1;
    }
}

@keyframes spinLoader {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spinLoaderReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes loaderPulse {
    0%,
    100% {
        opacity: 0.45;
        transform: scale(0.92);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.04);
    }
}

@keyframes loaderFloat {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes loaderLogoBreathe {
    0%,
    100% {
        filter: brightness(1);
        box-shadow: 0 14px 34px rgba(9, 20, 40, 0.42);
    }

    50% {
        filter: brightness(1.1);
        box-shadow: 0 16px 38px rgba(27, 89, 171, 0.4);
    }
}

@keyframes loaderTextPulse {
    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

@keyframes loaderDots {
    0% {
        content: ".";
    }

    33% {
        content: "..";
    }

    66% {
        content: "...";
    }

    100% {
        content: "";
    }
}


/* ===== SEO landing: monitoring server ===== */
.seo-page {
    min-height: 100vh;
    background:
        radial-gradient(ellipse 55% 40% at 15% 0%, rgba(47, 144, 255, 0.14), transparent 60%),
        #081327;
    color: var(--text);
}

.seo-top {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
    background: rgba(8, 19, 39, 0.82);
    border-bottom: 1px solid rgba(46, 74, 120, 0.35);
}

.seo-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.seo-top-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.seo-hero {
    padding: 48px 0 56px;
}

.seo-hero-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.seo-hero-title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px 12px;
}

.seo-hero-copy h1 {
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    line-height: 1.18;
    letter-spacing: -0.02em;
    flex: 1 1 16rem;
}

.seo-gratis-badge {
    display: inline-flex;
    align-items: center;
    margin-top: 0.45em;
    padding: 0.28em 0.7em;
    border-radius: 6px;
    background: rgba(40, 208, 125, 0.16);
    border: 1px solid rgba(40, 208, 125, 0.45);
    color: #7dffb5;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space:nowrap;
}

.seo-gratis-line {
    margin: 12px 0 0;
    color: #9fd9b8;
    font-size: 0.98rem;
    line-height: 1.5;
}

.seo-lead {
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.75;
    max-width: 46ch;
    font-size: 1.02rem;
}

.seo-hero-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.seo-hero-secondary,
.seo-cta-secondary {
    margin: 14px 0 0;
    font-size: 0.9rem;
    color: #a9bad7;
}

.seo-hero-secondary a,
.seo-cta-secondary a,
.seo-aside-note a {
    color: #9ec8ff;
    text-decoration: none;
}

.seo-hero-secondary a:hover,
.seo-cta-secondary a:hover,
.seo-aside-note a:hover {
    color: #cfe4ff;
}

.seo-hero-points {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    color: #a9bad7;
    font-size: 0.9rem;
}

.seo-hero-points li::before {
    content: "?";
    color: #3ea6ff;
    margin-right: 8px;
}

.seo-hero-visual {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(46, 74, 120, 0.45);
    background: rgba(12, 22, 40, 0.7);
    box-shadow: 0 20px 48px rgba(4, 10, 22, 0.35);
}

.seo-hero-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.seo-section {
    padding: 56px 0;
}

.seo-section .container,
.seo-cta-final .container,
.seo-footer .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

.seo-section-alt {
    background: rgba(7, 14, 28, 0.55);
    border-top: 1px solid rgba(46, 74, 120, 0.28);
    border-bottom: 1px solid rgba(46, 74, 120, 0.28);
}

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

.seo-card {
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(46, 74, 120, 0.45);
    background: linear-gradient(180deg, rgba(18, 30, 52, 0.9) 0%, rgba(11, 20, 38, 0.96) 100%);
}

.seo-card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
}

.seo-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

.seo-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
    counter-reset: step;
}

.seo-steps li {
    counter-increment: step;
    display: grid;
    gap: 4px;
    padding: 16px 18px 16px 64px;
    position: relative;
    border-radius: 14px;
    border: 1px solid rgba(46, 74, 120, 0.4);
    background: rgba(12, 22, 40, 0.55);
}

.seo-steps li::before {
    content: counter(step);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.seo-steps strong {
    font-size: 1.02rem;
}

.seo-steps span {
    color: var(--muted);
    line-height: 1.6;
}

.seo-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}

.seo-list {
    margin: 18px 0 24px;
    padding-left: 18px;
    color: #c5d4ec;
    line-height: 1.9;
}

.seo-aside-box {
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(64, 120, 190, 0.45);
    background:
        radial-gradient(circle at 80% 0%, rgba(47, 144, 255, 0.18), transparent 55%),
        rgba(12, 24, 44, 0.95);
}

.seo-aside-box h3 {
    margin: 0 0 10px;
}

.seo-aside-box p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.65;
}

.seo-aside-note {
    margin-top: 12px !important;
    font-size: 0.82rem;
}

.seo-faq {
    display: grid;
    gap: 10px;
    max-width: 760px;
    margin: 0 auto;
}

.seo-faq details {
    border-radius: 14px;
    border: 1px solid rgba(46, 74, 120, 0.4);
    background: rgba(12, 22, 40, 0.55);
    padding: 14px 16px;
}

.seo-faq summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.seo-faq summary::-webkit-details-marker {
    display: none;
}

.seo-faq p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.seo-cta-final {
    padding: 56px 0;
    text-align: center;
}

.seo-cta-final h2 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.seo-cta-final p {
    margin: 12px auto 22px;
    color: var(--muted);
    max-width: 42ch;
}

.seo-cta-final .seo-cta-secondary {
    margin: 16px auto 0;
    max-width: none;
}

.seo-footer {
    border-top: 1px solid rgba(46, 74, 120, 0.35);
    padding: 22px 0 28px;
    color: #7f94b5;
    font-size: 0.88rem;
}

.seo-footer a {
    color: #9ec8ff;
    text-decoration: none;
}

.seo-footer a:hover {
    color: #cfe4ff;
}

.seo-wa-float {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 40;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    background: #1fad5b;
    box-shadow: 0 12px 28px rgba(12, 120, 60, 0.45);
}

.seo-wa-float:hover {
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .seo-hero-grid,
    .seo-cards,
    .seo-split {
        grid-template-columns: 1fr;
    }

    .seo-hero {
        padding: 28px 0 36px;
    }

    .seo-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .seo-top-actions .btn-outline {
        display: none;
    }
}
