:root {
    --bg: #ffffff;
    --bg-soft: #f2f5f8;
    --bg-dark: #202430;
    --surface: #ffffff;
    --surface-alt: #f8fafc;
    --text: #222328;
    --text-soft: #5a6473;
    --text-inverse: #fdfdff;
    --line: rgba(34, 35, 40, 0.08);
    --line-strong: rgba(34, 35, 40, 0.14);
    --primary: #f43775;
    --primary-dark: #c91f57;
    --secondary: #3b55e6;
    --secondary-dark: #273db6;
    --accent: #7d8cb0;
    --shadow: 0 24px 60px rgba(35, 45, 72, 0.12);
    --radius: 28px;
    --radius-sm: 18px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(244, 55, 117, 0.06), transparent 25%),
        radial-gradient(circle at top left, rgba(59, 85, 230, 0.08), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(59, 85, 230, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 55, 117, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 88%);
    z-index: -1;
}

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

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

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

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    z-index: 100;
    background: #fff;
    padding: 0.75rem 1rem;
    border-radius: 12px;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(34, 35, 40, 0.06);
}

.site-header.is-scrolled {
    box-shadow: 0 16px 40px rgba(34, 35, 40, 0.08);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 84px;
}

.brand-logo,
.footer-logo-mark,
.thanks-logo {
    width: auto;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.brand-logo {
    width: 76px;
    height: 76px;
}

.footer-logo-mark,
.thanks-logo {
    width: 92px;
    height: 92px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.site-nav a {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2530;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    width: 44px;
    height: 44px;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 18px 34px rgba(244, 55, 117, 0.24);
}

.btn-secondary,
.btn-outline-light,
.btn-outline-dark {
    background: transparent;
}

.btn-secondary,
.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.btn-outline-dark {
    border-color: rgba(34, 35, 40, 0.14);
    color: var(--text);
}

.btn-sm {
    min-height: 42px;
    padding: 0.7rem 1rem;
}

.btn-full {
    width: 100%;
}

.hero,
.page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(31, 35, 49, 0.98), rgba(59, 85, 230, 0.9)),
        linear-gradient(180deg, #1f2331, #1f2331);
    color: var(--text-inverse);
}

.hero {
    padding: 4.5rem 0 3.5rem;
}

.page-hero {
    padding: 4rem 0 3rem;
}

.page-hero-compact {
    padding-bottom: 2.2rem;
}

.hero-backdrop,
.page-hero-backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 84px 84px;
    opacity: 0.28;
    animation: gridDrift 18s linear infinite;
}

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

.hero-glow-a {
    top: -10%;
    right: -6%;
    width: 28rem;
    height: 28rem;
    background: radial-gradient(circle, rgba(244, 55, 117, 0.4), transparent 70%);
    animation: driftGlow 14s ease-in-out infinite;
}

.hero-glow-b {
    left: -10%;
    bottom: -16%;
    width: 30rem;
    height: 30rem;
    background: radial-gradient(circle, rgba(59, 85, 230, 0.32), transparent 70%);
    animation: driftGlow 18s ease-in-out infinite reverse;
}

.hero-scan {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
}

.hero-scan-a {
    right: 16%;
    top: 14%;
    width: 320px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
    animation: scanline 8s linear infinite;
}

.hero-scan-b {
    left: 10%;
    bottom: 20%;
    width: 1px;
    height: 260px;
    background: linear-gradient(180deg, transparent, rgba(244, 55, 117, 0.8), transparent);
    animation: scanlineVertical 10s linear infinite;
}

.hero-lines {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    opacity: 0.6;
    animation: lineFloat 14s ease-in-out infinite;
}

.hero-grid,
.page-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
    gap: 2rem;
    align-items: center;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero h1,
.page-hero h1,
.section h2,
.contact-form h3 {
    margin: 1rem 0;
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.hero h1,
.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    max-width: 12ch;
}

.page-hero h1 {
    max-width: 14ch;
}

.hero p,
.page-hero p {
    margin: 0;
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.06rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.8rem;
}

.hero-points,
.check-list,
.list-clean,
.suite-chips,
.contact-cards,
.feature-grid,
.services-grid,
.page-card-grid,
.faq-list {
    padding: 0;
    margin: 0;
}

.hero-points {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1rem;
    margin-top: 2rem;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.7rem;
}

.hero-metrics article {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.hero-metrics strong {
    display: block;
    font-size: 0.98rem;
}

.hero-metrics span {
    display: block;
    margin-top: 0.3rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.hero-points li,
.check-list li,
.list-clean li {
    position: relative;
    padding-left: 1.2rem;
}

.hero-points li::before,
.check-list li::before,
.list-clean li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--primary);
}

.slider-stack {
    position: relative;
    min-height: 560px;
}

.hero-illustration {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.92;
    filter: drop-shadow(0 38px 70px rgba(8, 12, 24, 0.32));
}

.hero-core-panel {
    position: absolute;
    inset: 2rem 2rem auto 2rem;
    min-height: 214px;
    padding: 1.2rem 1.3rem 1.3rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 35px 90px rgba(9, 14, 33, 0.32);
    backdrop-filter: blur(18px);
    overflow: hidden;
    transition: transform 0.18s ease-out;
}

.hero-core-panel::after {
    content: "";
    position: absolute;
    inset: auto -10% -40% auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 55, 117, 0.25), transparent 70%);
    animation: corePulse 7s ease-in-out infinite;
}

.hero-core-header {
    display: flex;
    gap: 0.45rem;
}

.hero-core-header span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

.hero-core-copy {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
}

.hero-core-copy small {
    display: block;
    color: #bfccea;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.hero-core-copy strong {
    display: block;
    margin-top: 0.7rem;
    font-size: 1.7rem;
    line-height: 1.12;
}

.hero-core-copy p {
    margin-top: 0.7rem;
    color: rgba(255, 255, 255, 0.78);
}

.hero-core-bars {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    gap: 0.55rem;
    height: 64px;
    margin-top: 1rem;
}

.hero-core-bars i {
    display: block;
    width: 12px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, #ff89b2, #f43775 55%, #3b55e6);
    animation: signal 2.8s ease-in-out infinite;
}

.hero-core-bars i:nth-child(1) { height: 24px; }
.hero-core-bars i:nth-child(2) { height: 34px; animation-delay: 0.2s; }
.hero-core-bars i:nth-child(3) { height: 50px; animation-delay: 0.4s; }
.hero-core-bars i:nth-child(4) { height: 38px; animation-delay: 0.6s; }
.hero-core-bars i:nth-child(5) { height: 58px; animation-delay: 0.8s; }

.slide-card {
    position: absolute;
    width: min(100%, 300px);
    padding: 1.3rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 30px 70px rgba(16, 18, 31, 0.2);
    backdrop-filter: blur(14px);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    will-change: transform;
}

.slide-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 35px 90px rgba(16, 18, 31, 0.28);
}

.slide-card span,
.visual-badge,
.suite-label {
    display: inline-flex;
    padding: 0.32rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.slide-card strong,
.visual-panel strong,
.suite-panel strong {
    display: block;
    margin: 0.9rem 0 0.75rem;
    font-size: 1.4rem;
    line-height: 1.16;
}

.slide-card p,
.visual-panel p,
.suite-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.slide-card-1 { top: 0; left: 0; animation: floatCard 6s ease-in-out infinite; }
.slide-card-2 { top: 3rem; right: 0; animation: floatCard 7s ease-in-out infinite 0.7s; }
.slide-card-3 { bottom: 5rem; left: 1.6rem; animation: floatCard 6.4s ease-in-out infinite 0.35s; }
.slide-card-4 { bottom: 0; right: 2rem; animation: floatCard 7.3s ease-in-out infinite 1s; }

.trust-ribbon {
    position: relative;
    margin-top: -1px;
    background: linear-gradient(180deg, #151b29, #232b42);
    color: #fff;
}

.trust-ribbon-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.2rem 0 1.35rem;
}

.trust-ribbon-grid div {
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.trust-ribbon-grid div::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.12) 50%, transparent 80%);
    transform: translateX(-130%);
    animation: ribbonSweep 8s ease-in-out infinite;
}

.trust-ribbon-grid strong {
    display: block;
    font-size: 1rem;
}

.trust-ribbon-grid span {
    display: block;
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.section {
    padding: 5rem 0;
}

.section-services-home {
    position: relative;
}

.section-services-home::before,
.section-infra-home::before,
.section-pages::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 85% 10%, rgba(59, 85, 230, 0.06), transparent 24%);
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #202430;
}

.section-head {
    max-width: 820px;
    margin-bottom: 2rem;
}

.section-head p,
.split-copy p,
.feature-card p,
.service-card p,
.page-card p,
.contact-copy p,
.contact-card span,
.form-note,
.form-helper,
.legal-copy p {
    color: var(--text-soft);
}

.section-narrow {
    max-width: 980px;
}

.services-grid,
.feature-grid,
.page-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.service-card,
.feature-card,
.page-card,
.contact-card,
.contact-form,
.visual-panel,
.suite-panel,
.faq-item,
.thanks-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.service-card,
.feature-card,
.page-card {
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card::before,
.feature-card::before,
.page-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card::after,
.feature-card::after,
.page-card::after,
.contact-card::after {
    content: "";
    position: absolute;
    inset: auto -20% -45% auto;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 85, 230, 0.08), transparent 72%);
    transition: transform 0.4s ease;
}

.service-card:hover,
.feature-card:hover,
.page-card:hover,
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(35, 45, 72, 0.16);
    border-color: rgba(59, 85, 230, 0.16);
}

.service-card:hover::before,
.feature-card:hover::before,
.page-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after,
.feature-card:hover::after,
.page-card:hover::after,
.contact-card:hover::after {
    transform: scale(1.16);
}

.service-card h3,
.feature-card h3,
.page-card h3,
.contact-card strong {
    margin: 1rem 0 0.7rem;
    font-size: 1.2rem;
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(244, 55, 117, 0.15), rgba(59, 85, 230, 0.18));
    position: relative;
}

.service-icon::before,
.service-icon::after {
    content: "";
    position: absolute;
}

.icon-code::before {
    inset: 16px 11px;
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--secondary);
    transform: skewX(-30deg);
}

.icon-phone::before {
    left: 20px;
    top: 12px;
    width: 16px;
    height: 28px;
    border: 2px solid var(--primary);
    border-radius: 8px;
}

.icon-network::before {
    inset: 14px;
    border: 2px solid var(--secondary);
    border-radius: 12px;
}

.icon-network::after {
    left: 22px;
    top: 22px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: -10px -8px 0 0 var(--secondary), 12px 8px 0 0 var(--secondary);
}

.icon-support::before {
    inset: 14px;
    border: 2px solid var(--secondary);
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    border-bottom: 0;
}

.list-clean,
.check-list {
    list-style: none;
}

.list-clean li + li,
.check-list li + li {
    margin-top: 0.55rem;
}

.text-link {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--secondary);
    font-weight: 800;
    position: relative;
}

.text-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0.35);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.text-link:hover::after {
    transform: scaleX(1);
}

.section-command {
    position: relative;
    background:
        linear-gradient(180deg, rgba(20, 27, 42, 0.98), rgba(26, 35, 54, 0.96)),
        linear-gradient(180deg, #171c2b, #171c2b);
    color: #fff;
    overflow: hidden;
}

.section-command::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 68px 68px;
    opacity: 0.4;
}

.command-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: center;
}

.command-screen {
    padding: 1.4rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 36px 90px rgba(8, 11, 22, 0.36);
    backdrop-filter: blur(18px);
    transition: transform 0.18s ease-out;
}

.command-topline {
    display: flex;
    gap: 0.45rem;
}

.command-topline span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.48);
}

.command-lines {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.command-lines p {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 0;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.92rem;
    position: relative;
    overflow: hidden;
}

.command-lines p::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.08), transparent 70%);
    transform: translateX(-130%);
    animation: commandSweep 6s ease-in-out infinite;
}

.command-lines span {
    color: #ff8bb1;
    font-weight: 700;
}

.command-copy {
    position: relative;
    z-index: 1;
}

.command-copy h2 {
    color: #fff;
}

.command-copy p,
.command-copy .check-list li {
    color: rgba(255, 255, 255, 0.78);
}

.command-copy .check-list li::before {
    background: #ff8bb1;
}

.section-split {
    background: linear-gradient(180deg, rgba(242, 245, 248, 0.9), rgba(255, 255, 255, 0.9));
}

.split-feature,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
}

.split-feature-reverse .split-copy {
    order: 2;
}

.split-feature-reverse .split-visual {
    order: 1;
}

.visual-panel,
.suite-panel {
    padding: 2rem;
    color: #fff;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visual-panel-image,
.suite-panel-with-image {
    min-height: 420px;
}

.visual-illustration,
.suite-illustration {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
}

.visual-panel-image > :not(img),
.suite-panel-with-image > :not(img) {
    position: relative;
    z-index: 1;
}

.visual-panel-pink {
    background: linear-gradient(135deg, #f43775, #cf2159);
}

.visual-panel-blue {
    background: linear-gradient(135deg, #3b55e6, #1f2f96);
}

.visual-panel-neutral {
    background: linear-gradient(135deg, #202430, #3f4a66);
}

.suite-panel,
.suite-panel-telephony {
    background: linear-gradient(135deg, #202430, #3b55e6);
}

.visual-panel,
.suite-panel,
.command-screen,
.contact-form {
    position: relative;
    overflow: hidden;
}

.visual-panel::before,
.suite-panel::before,
.command-screen::before,
.contact-form::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 45%);
    pointer-events: none;
}

.visual-panel::after,
.suite-panel::after {
    content: "";
    position: absolute;
    inset: auto -10% -25% auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
    animation: orbShift 10s ease-in-out infinite;
}

.suite-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
    margin-top: 1.2rem;
}

.suite-chips span {
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 700;
    color: #fff;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    padding: 1.2rem 1.35rem;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 800;
    color: var(--text);
    position: relative;
    padding-right: 2rem;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: -0.1rem;
    color: var(--primary);
    font-size: 1.4rem;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0.8rem 0 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-card {
    padding: 1.2rem;
    min-height: 110px;
    position: relative;
    overflow: hidden;
}

.contact-form {
    padding: 1.6rem;
    animation: cardBreath 7s ease-in-out infinite;
}

.form-heading h3 {
    margin-top: 0;
    font-size: 1.7rem;
}

.form-heading p {
    margin: -0.2rem 0 1rem;
    color: var(--text-soft);
}

.form-row {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.two-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-row label {
    font-weight: 700;
    color: #1e2431;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.92rem 1rem;
    border-radius: 16px;
    border: 1px solid var(--line-strong);
    background: var(--surface-alt);
    color: var(--text);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: 2px solid rgba(59, 85, 230, 0.12);
    border-color: var(--secondary);
}

.captcha-box {
    display: grid;
    grid-template-columns: auto minmax(0, 120px);
    align-items: center;
    gap: 0.8rem;
}

.captcha-box span {
    padding: 0.92rem 1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(244, 55, 117, 0.1), rgba(59, 85, 230, 0.12));
    border: 1px solid var(--line);
    font-weight: 800;
    color: var(--text);
}

.trap-field {
    position: absolute;
    left: -9999px;
}

.site-footer {
    padding: 2rem 0 2.8rem;
    background: #171b26;
    color: rgba(255, 255, 255, 0.82);
}

.footer-grid,
.footer-bottom {
    display: grid;
    gap: 1.5rem;
}

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

.site-footer strong {
    display: block;
    margin-bottom: 0.8rem;
    color: #fff;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li + li {
    margin-top: 0.5rem;
}

.footer-bottom {
    grid-template-columns: 1fr auto;
    padding-top: 1.4rem;
    margin-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.floating-whatsapp {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25d366, #1ca64a);
    color: #fff;
    box-shadow: 0 18px 36px rgba(10, 74, 30, 0.24);
    z-index: 22;
}

.floating-whatsapp svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

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

@keyframes driftGlow {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(18px, -14px, 0) scale(1.08); }
}

@keyframes lineFloat {
    0%, 100% { transform: translateY(0); opacity: 0.55; }
    50% { transform: translateY(-12px); opacity: 0.75; }
}

@keyframes signal {
    0%, 100% { transform: scaleY(1); opacity: 0.82; }
    50% { transform: scaleY(1.12); opacity: 1; }
}

@keyframes scanline {
    0% { transform: translateX(-30px); opacity: 0; }
    15% { opacity: 1; }
    50% { transform: translateX(60px); opacity: 0.8; }
    100% { transform: translateX(180px); opacity: 0; }
}

@keyframes scanlineVertical {
    0% { transform: translateY(-40px); opacity: 0; }
    20% { opacity: 1; }
    60% { transform: translateY(35px); opacity: 0.7; }
    100% { transform: translateY(110px); opacity: 0; }
}

@keyframes gridDrift {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-42px, 42px, 0); }
}

@keyframes corePulse {
    0%, 100% { transform: scale(1); opacity: 0.72; }
    50% { transform: scale(1.16); opacity: 0.4; }
}

@keyframes ribbonSweep {
    0%, 100% { transform: translateX(-130%); }
    45%, 60% { transform: translateX(130%); }
}

@keyframes commandSweep {
    0%, 100% { transform: translateX(-130%); }
    50% { transform: translateX(130%); }
}

@keyframes orbShift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-12px, -18px, 0) scale(1.1); }
}

@keyframes cardBreath {
    0%, 100% { box-shadow: 0 24px 60px rgba(35, 45, 72, 0.12); }
    50% { box-shadow: 0 30px 75px rgba(35, 45, 72, 0.18); }
}

.thanks-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
}

.thanks-wrap {
    width: min(calc(100% - 2rem), 760px);
}

.thanks-card {
    text-align: center;
    padding: 2rem;
}

.legal-copy {
    max-width: 840px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-delay {
    transition-delay: 0.12s;
}

.reveal-delay-2 {
    transition-delay: 0.22s;
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .split-feature,
    .contact-grid,
    .footer-grid,
    .services-grid,
    .feature-grid,
    .page-card-grid,
    .command-grid {
        grid-template-columns: 1fr;
    }

    .slider-stack {
        min-height: 760px;
    }

    .hero-illustration {
        opacity: 0.34;
    }

    .hero-metrics,
    .trust-ribbon-grid {
        grid-template-columns: 1fr;
    }
}

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

    .site-nav {
        position: absolute;
        top: calc(100% + 0.6rem);
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 20px 40px rgba(34, 35, 40, 0.14);
    }

    .site-nav.is-open {
        display: flex;
    }

    .hero-points,
    .contact-cards,
    .two-cols {
        grid-template-columns: 1fr;
    }

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

    .slide-card {
        position: relative;
        width: 100%;
        animation: none;
    }

    .slide-card + .slide-card {
        margin-top: 1rem;
    }

    .hero-core-panel {
        position: relative;
        inset: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 4rem 0;
    }

    .hero,
    .page-hero {
        padding-top: 3rem;
    }

    .hero h1,
    .page-hero h1 {
        max-width: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .captcha-box {
        grid-template-columns: 1fr;
    }

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