:root {
    --primary: #0f2233;
    --primary-2: #153149;
    --primary-3: #1e4667;
    --primary-4: #2e6da3;
    --blue-soft: #eaf3ff;
    --cream: #f8f5ef;
    --cream-2: #fcfaf7;
    --white: #fff;
    --text: #17212b;
    --muted: #617084;
    --line: rgba(15, 34, 51, .08);
    --line-strong: rgba(15, 34, 51, .14);
    --success: #1f9d68;
    --danger: #d45b5b;
    --warning: #d89b3c;
    --shadow-lg: 0 30px 80px rgba(15, 34, 51, .16);
    --shadow-md: 0 20px 50px rgba(15, 34, 51, .12);
    --shadow-sm: 0 12px 30px rgba(15, 34, 51, .08);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #f8f9fb 0%, #fff 18%, #fcfbf8 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
    font: inherit;
}

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

.section {
    position: relative;
    padding: 110px 0;
}

.section-soft,
.section-contact {
    background:
        radial-gradient(circle at top left, rgba(46, 109, 163, .08), transparent 28%),
        linear-gradient(180deg, #fcfbf8 0%, #fff 100%);
}

/* ===== Shared section heading ===== */
.section-head {
    max-width: 820px;
    margin-bottom: 54px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(15, 34, 51, .05);
    color: var(--primary);
    font-size: .86rem;
    font-weight: 700;
    letter-spacing: .01em;
}

.section-head h2 {
    margin: 0 0 14px;
    color: var(--primary);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.8;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border: none;
    outline: none;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s ease;
}

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

.btn-lg {
    min-height: 52px;
    padding: 0 24px;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #7c3aed, #9f5fff);
    box-shadow: 0 14px 34px rgba(124, 58, 237, .28);
}

.btn-primary:hover {
    box-shadow: 0 18px 42px rgba(124, 58, 237, .34);
}

.btn-outline {
    color: var(--primary);
    background: #fff;
    border: 1px solid rgba(15, 34, 51, .12);
}

.btn-dark,
.btn-ghost {
    color: #fff;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
}

.btn-dark:hover,
.btn-ghost:hover {
    background: rgba(255, 255, 255, .08);
}

.btn-nav {
    min-height: 46px;
    padding: 0 20px;
    font-size: 15px;
}

.btn-ghost.btn-nav {
    position: relative;
    overflow: hidden;
    color: #f4f7fb;
    border: 1px solid rgba(255, 255, 255, .16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .04)),
        linear-gradient(135deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .20),
        inset 0 0 0 1px rgba(255, 255, 255, .04),
        0 10px 24px rgba(0, 0, 0, .16);
    backdrop-filter: blur(10px);
}

.btn-ghost.btn-nav i {
    color: rgba(255, 255, 255, .92);
}

.btn-ghost.btn-nav::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, .10) 0%, rgba(255, 255, 255, .03) 45%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.btn-ghost.btn-nav::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -35%;
    width: 42%;
    height: 300%;
    transform: rotate(24deg);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .18) 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity .25s ease, transform .7s ease;
    pointer-events: none;
}

.btn-ghost.btn-nav:hover {
    border-color: rgba(255, 255, 255, .24);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .06)),
        linear-gradient(135deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .24),
        inset 0 0 0 1px rgba(255, 255, 255, .05),
        0 14px 30px rgba(0, 0, 0, .22);
}

.btn-ghost.btn-nav:hover::after {
    opacity: 1;
    transform: translateX(220%) rotate(24deg);
}

.btn-mobile-login {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: linear-gradient(135deg, rgba(124, 58, 237, .25), rgba(159, 95, 255, .18));
    color: #fff;
    backdrop-filter: blur(10px);
    transition: .25s ease;
}

.btn-mobile-login:hover {
    background: rgba(255, 255, 255, .10);
}

/* ===== Hero / Header ===== */
.hero-dashboard {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 20px 0 70px;
    color: #fff;
    background:
        radial-gradient(circle at 10% 8%, rgba(122, 63, 255, .10), transparent 28%),
        radial-gradient(circle at 78% 38%, rgba(90, 119, 255, .14), transparent 28%),
        linear-gradient(135deg, #07131d 0%, #0b1824 38%, #0f2233 100%);
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg-grid {
    opacity: .55;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, .95), transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, .95), transparent 100%);
}

.hero-bg-noise {
    opacity: .05;
    background-image: radial-gradient(rgba(255, 255, 255, .7) .7px, transparent .7px);
    background-size: 14px 14px;
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(90px);
    pointer-events: none;
}

.hero-glow-left {
    top: 10px;
    left: -90px;
    width: 320px;
    height: 320px;
    background: rgba(159, 93, 255, .14);
}

.hero-glow-right {
    top: 150px;
    right: 6%;
    width: 520px;
    height: 520px;
    background: rgba(107, 82, 255, .18);
}

.hero-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    padding: 10px;
    background: rgba(7, 19, 29, .82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-header .nav-wrap,
.hero-header.is-scrolled .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, padding .25s ease;
}

.hero-header.is-scrolled {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand img {
    display: block;
    width: auto;
    height: 38px;
    transition: transform .3s ease;
}

.brand-name {
    position: relative;
    color: #fff;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -.02em;
}

.brand-name::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #7c3aed, #9f5fff);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: .3s ease;
}

.brand:hover img {
    transform: scale(1.06);
}

.brand:hover .brand-name::after {
    opacity: 1;
    transform: scaleX(1);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex: 1;
}

.main-nav a {
    position: relative;
    padding: 10px 4px;
    color: rgba(255, 255, 255, .88);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition: color .25s ease, opacity .25s ease;
}

.main-nav a:hover {
    color: #fff;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
    color: #fff;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, .09);
}

.hero-dashboard-wrap {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    min-height: calc(100vh - 100px);
}

.hero-copy {
    width: 41%;
    max-width: 520px;
}

.hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    color: #d8d9ff;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.hero-badge::after {
    content: "";
    position: absolute;
    top: -160%;
    left: -30%;
    width: 24%;
    height: 420%;
    transform: rotate(26deg);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .22) 48%, rgba(255, 255, 255, 0) 100%);
    opacity: .65;
    pointer-events: none;
    animation: heroBadgeShine 5.8s ease-in-out infinite;
}

.hero-copy h1 {
    margin: 0 0 24px;
    max-width: 7.4ch;
    font-size: clamp(56px, 4.4vw, 88px);
    line-height: .98;
    letter-spacing: -.05em;
    font-weight: 800;
}

.hero-copy p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 59%;
    min-height: 680px;
}

.hero-visual-glow {
    position: absolute;
    top: 70px;
    right: 40px;
    z-index: 1;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(121, 78, 255, .24) 0%, rgba(81, 108, 255, .16) 35%, rgba(15, 34, 51, 0) 72%);
    filter: blur(60px);
    pointer-events: none;
    animation: glowPulse 10s ease-in-out infinite;
}

.hero-dashboard-stage {
    position: relative;
    z-index: 3;
    width: min(100%, 880px);
    transform: translate(70px, -40px);
    overflow: visible;
}

.hero-dashboard-stage::before {
    content: "";
    position: absolute;
    top: 8%;
    left: 4%;
    z-index: 4;
    width: 170px;
    height: 78%;
    border-radius: 50px;
    background: radial-gradient(circle at 45% 50%, rgba(87, 135, 255, .16), rgba(146, 88, 255, .10), transparent 76%);
    filter: blur(24px);
    pointer-events: none;
}

.hero-dashboard-stage::after {
    content: "";
    position: absolute;
    inset: -2% -2% -6% -4%;
    z-index: 5;
    background:
        radial-gradient(circle at 58% 45%, rgba(140, 92, 255, .13), transparent 28%),
        radial-gradient(circle at 78% 58%, rgba(82, 118, 255, .12), transparent 22%),
        linear-gradient(to right, rgba(7, 19, 29, 0) 0%, rgba(7, 19, 29, .02) 30%, rgba(7, 19, 29, .10) 55%, rgba(7, 19, 29, .26) 76%, rgba(7, 19, 29, .62) 100%);
    filter: blur(12px);
    pointer-events: none;
}

.hero-dashboard-frame {
    position: relative;
    z-index: 3;
    width: 100%;
    border-radius: 34px;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.03);
    /*order: 1px solid rgba(255, 255, 255, 0.10);*/
    border: none;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.30),
        0 10px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    transform: perspective(1900px) rotateY(-12deg) rotateX(5deg) rotateZ(-0.8deg);
    transform-origin: center;

    animation: dashboardFloat 8s ease-in-out infinite;
    will-change: transform;
}

.hero-dashboard-frame {
    position: relative;
    overflow: hidden;
}

.hero-dashboard-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 34px;
    pointer-events: none;

    background:
        linear-gradient(to right,
            rgba(7,19,29,0) 0%,
            rgba(7,19,29,0) 70%,
            rgba(7,19,29,0.15) 90%,
            rgba(7,19,29,0.35) 100%),
        linear-gradient(to bottom,
            rgba(7,19,29,0) 0%,
            rgba(7,19,29,0.1) 85%,
            rgba(7,19,29,0.3) 100%);
}

.hero-dashboard-frame {
    box-shadow:
        0 40px 100px rgba(0,0,0,0.35),
        0 20px 50px rgba(0,0,0,0.2);
}

.hero-dashboard-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 34px;
    pointer-events: none;
    background:
        linear-gradient(to bottom,
            rgba(255,255,255,0.06) 0%,
            rgba(255,255,255,0.02) 8%,
            rgba(0,0,0,0) 20%);
}

.hero-dashboard-frame img {
    width: 100%;
    height: auto;
    border-radius: 34px;
    display: block;
    opacity: 1;
}

.hero-visual-glow {
    opacity: 0.85;
    filter: blur(70px);
}

.hero-benefit-cards {
    position: absolute;
    right: -50px;
    bottom: 10px;
    z-index: 10;
    display: flex;
    align-items: stretch;
    gap: 14px;
    max-width: 760px;
}

.hero-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 220px;
    min-height: 108px;
    padding: 16px 16px 15px;
    border-radius: 22px;
    background: rgba(8, 18, 32, .62);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .24);
}

.hero-benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(124, 58, 237, .24), rgba(159, 95, 255, .14));
    border: 1px solid rgba(255, 255, 255, .08);
    color: #d9c9ff;
    font-size: 15px;
}

.hero-benefit-content strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 700;
}

.hero-benefit-content p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    line-height: 1.5;
}

/* ===== Benefits ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    padding: 28px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
}

.benefit-card.featured {
    background: linear-gradient(180deg, #fff 0%, #f6faff 100%);
    transform: translateY(-10px);
}

.benefit-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #e8f3ff, #d6e9ff);
    color: var(--primary);
    font-size: 1.2rem;
}

.benefit-card h3 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: 1.3rem;
}

.benefit-card p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.8;
}

.benefit-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.benefit-card li {
    position: relative;
    padding-left: 20px;
    color: #314254;
    line-height: 1.6;
}

.benefit-card li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-4);
}

/* ===== Modules ===== */
.module-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 72px;
    margin-bottom: 120px;
}

.module-block.reverse {
    flex-direction: row-reverse;
}

.module-copy,
.module-shot {
    flex: 0 0 calc(50% - 36px);
}

.module-copy {
    max-width: 560px;
}

.module-block:not(.reverse) .module-copy {
    transform: translateX(-36px);
}

.module-block.reverse .module-copy {
    transform: translateX(36px);
}

.module-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #eef5fd;
    color: var(--primary);
    font-size: .88rem;
    font-weight: 700;
}

.module-copy h3 {
    margin: 0 0 14px;
    color: var(--primary);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.module-copy p {
    margin: 0 0 24px;
    color: var(--muted);
    line-height: 1.9;
}

.module-points {
    display: grid;
    gap: 14px;
}

.module-points div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #314254;
    line-height: 1.7;
}

.module-points i {
    margin-top: 4px;
    color: var(--primary-4);
}

.module-shot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

.module-shot-bg {
    position: absolute;
    z-index: 1;
    width: 88%;
    height: 88%;
    border-radius: 42px;
    opacity: 0;
    transition: opacity .9s ease, transform .9s cubic-bezier(.22, 1, .36, 1);
    background: linear-gradient(135deg, rgba(16, 182, 160, .12), rgba(245, 130, 32, .16));
}

.module-block:not(.reverse) .module-shot-bg {
    right: -20px;
    transform: rotate(-6deg) scale(.94);
}

.module-block.reverse .module-shot-bg {
    left: -20px;
    transform: rotate(6deg) scale(.94);
}

.module-shot-frame {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 560px;
    overflow: hidden;
    border-radius: 26px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(15, 34, 51, .08);
    box-shadow: 0 30px 70px rgba(15, 34, 51, .15), 0 12px 30px rgba(15, 34, 51, .08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .4s ease, box-shadow .4s ease;
}

.module-block:not(.reverse) .module-shot-frame {
    transform: translateY(-10px);
}

.module-block.reverse .module-shot-frame {
    transform: translateY(10px);
}

.module-shot-frame:hover {
    transform: translateY(0) scale(1.015);
    box-shadow: 0 40px 90px rgba(15, 34, 51, .18), 0 16px 40px rgba(15, 34, 51, .10);
}

.module-shot-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(245, 247, 250, .92));
    border-bottom: 1px solid rgba(15, 34, 51, .06);
}

.module-shot-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(15, 34, 51, .14);
}

.module-shot-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    background: #fff;
    cursor: zoom-in;
    transition: transform .25s ease;
}

.module-shot-image:hover {
    transform: scale(1.02);
}

.module-shot-agenda .module-shot-bg {
    background: linear-gradient(135deg, rgba(16, 182, 160, .14), rgba(15, 34, 51, .08));
}

.module-shot-profile .module-shot-bg {
    background: linear-gradient(135deg, rgba(15, 34, 51, .08), rgba(16, 182, 160, .16));
}

.module-shot-reports .module-shot-bg {
    background: linear-gradient(135deg, rgba(15, 34, 51, .10), rgba(245, 130, 32, .14));
}

.module-block .module-copy,
.module-block .module-shot {
    opacity: 0;
    transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
}

.module-block:not(.reverse) .module-shot {
    transform: translateX(36px);
}

.module-block.reverse .module-shot {
    transform: translateX(-36px);
}

.module-block .module-shot {
    transition-delay: .08s;
}

.module-block.is-visible .module-copy,
.module-block.is-visible .module-shot {
    opacity: 1;
    transform: translateX(0);
}

.module-block.is-visible .module-shot-bg {
    opacity: 1;
}

.module-block:not(.reverse).is-visible .module-shot-bg {
    transform: rotate(-6deg) scale(1);
}

.module-block.reverse.is-visible .module-shot-bg {
    transform: rotate(6deg) scale(1);
}

/* ===== Pricing ===== */
.section-pricing .pricing-head {
    max-width: 860px;
}

.pricing-compare {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    max-width: 980px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(15, 34, 51, .08);
    box-shadow: 0 20px 50px rgba(15, 34, 51, .08);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px rgba(15, 34, 51, .12);
}

.pricing-card.featured {
    background:
        radial-gradient(circle at top right, rgba(124, 58, 237, .10), transparent 34%),
        linear-gradient(180deg, #fff 0%, #f7f9ff 100%);
    border-color: rgba(124, 58, 237, .18);
    box-shadow: 0 26px 60px rgba(124, 58, 237, .10);
}

.pricing-label {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(15, 34, 51, .05);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.pricing-card-top h3 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: 1.9rem;
    line-height: 1.05;
}

.pricing-note {
    color: #516376;
    line-height: 1.7;
}

.pricing-subtitle {
    position: relative;
    margin: 20px 0 1px;
    padding-bottom: 10px;
    color: #6d7f92;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pricing-subtitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #7c3aed, #9f5fff);
}

.pricing-features {
    column-count: 2;
    margin-top: 20px;
}

.pricing-features div {
    break-inside: avoid;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #304254;
    font-size: 14px;
    line-height: 1.6;
}

.pricing-features i {
    margin-top: 4px;
    color: #2e6da3;
}

.pricing-footer {
    margin-top: auto;
}

.pricing-footer p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.6;
    text-align: center;
}

.pricing-bottom-note {
    max-width: 760px;
    margin: 24px auto 0;
    text-align: center;
}

.pricing-bottom-note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

/* ===== FAQ ===== */
.faq-list {
    display: grid;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 24px 26px;
    border: none;
    background: none;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.faq-question i {
    transition: .25s ease;
}

.faq-answer {
    display: none;
    padding: 0 26px 24px;
    color: var(--muted);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ===== Contact ===== */
.section-contact-split {
    padding-top: 110px;
    padding-bottom: 110px;
}

.contact-split-card {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    overflow: hidden;
    border-radius: 34px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(15, 34, 51, .08);
    box-shadow: 0 24px 60px rgba(15, 34, 51, .10);
}

.contact-split-aside {
    padding: 52px 46px;
    background:
        radial-gradient(circle at bottom left, rgba(124, 58, 237, .08), transparent 34%),
        linear-gradient(180deg, #fff 0%, #f8fbff 100%);
    border-right: 1px solid rgba(15, 34, 51, .06);
}

.contact-split-aside h2 {
    max-width: 440px;
    margin: 0 0 16px;
    color: var(--primary);
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    line-height: 1.06;
    letter-spacing: -.04em;
}

.contact-split-aside > p {
    max-width: 440px;
    margin: 0 0 34px;
    color: var(--muted);
    line-height: 1.9;
}

.contact-info-list {
    display: grid;
    gap: 24px;
    max-width: 440px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eef4ff, #e4eeff);
    color: var(--primary);
    font-size: 1rem;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--primary);
    font-size: 1.02rem;
}

.contact-info-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.contact-info-item a {
    color: var(--muted);
    transition: .25s ease;
}

.contact-info-item a:hover {
    color: var(--primary);
}

.contact-split-form {
    padding: 52px 46px;
    background: #f7f9fc;
}

.contact-form-head {
    margin-bottom: 26px;
}

.contact-form-head h3 {
    margin: 0 0 10px;
    color: var(--primary);
    font-size: 2rem;
    line-height: 1.08;
}

.contact-form-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

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

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

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

.form-field label {
    color: var(--primary);
    font-size: .92rem;
    font-weight: 700;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 16px 18px;
    color: var(--text);
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(15, 34, 51, .08);
    border-radius: 18px;
    transition: .2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    background: #fff;
    border-color: rgba(46, 109, 163, .42);
    box-shadow: 0 0 0 4px rgba(46, 109, 163, .08);
}

.check-field {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 18px 0 22px;
    color: #55687b;
    font-size: .94rem;
    line-height: 1.7;
}

.check-field input {
    margin-top: 4px;
}

/* ===== Footer ===== */
.site-footer {
    position: relative;
    overflow: hidden;
    padding: 80px 0 30px;
    color: rgba(255, 255, 255, .85);
    background:
        radial-gradient(circle at top right, rgba(124, 58, 237, .12), transparent 35%),
        radial-gradient(circle at bottom left, rgba(46, 109, 163, .12), transparent 40%),
        linear-gradient(180deg, #0b1824 0%, #0f2233 100%);
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, rgba(11, 24, 36, 0) 0%, rgba(11, 24, 36, .6) 60%, #0b1824 100%);
    pointer-events: none;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-brand img {
    width: auto;
    height: 42px;
}

.footer-brand span {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.footer-text {
    max-width: 420px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
    line-height: 1.7;
}

.footer-col h4 {
    margin-bottom: 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .02em;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    transition: .25s ease;
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.4;
}

.footer-contact-item i {
    display: inline-flex;
    justify-content: center;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    line-height: 1;
    text-align: center;
}

.footer-contact-item i.fa-whatsapp {
    color: #25d366;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, .75);
    transition: .25s ease;
}

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

.footer-divider {
    height: 1px;
    margin: 40px 0 20px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    position: relative;
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
}

.footer-bottom a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .85);
    transform: scaleX(0);
    transform-origin: left;
    transition: .25s ease;
}

.footer-bottom a:hover::after {
    transform: scaleX(1);
}

/* ===== Legal pages ===== */
.legal-page {
    background: #f7f9fc;
}

.legal-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 10px 0;
    background: rgba(7, 19, 29, .94);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.legal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.legal-main {
    min-height: 100vh;
}

.legal-hero {
    padding: 30px 0 25px;
    color: #fff;
    background:
        radial-gradient(circle at 12% 10%, rgba(124, 58, 237, .18), transparent 32%),
        radial-gradient(circle at 80% 30%, rgba(46, 109, 163, .18), transparent 34%),
        linear-gradient(135deg, #07131d 0%, #0b1824 42%, #0f2233 100%);
}

.legal-hero h1 {
    max-width: 900px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -.04em;
}

.legal-hero p {
    max-width: 680px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .76);
    font-size: 18px;
    line-height: 1.75;
}

.legal-updated {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    color: #e9edff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    font-size: 14px;
    font-weight: 700;
}

.legal-section {
    padding: 64px 0 100px;
}

.legal-document {
    max-width: 920px;
    margin: 0 auto;
    padding: 52px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(15, 34, 51, .08);
    box-shadow: var(--shadow-sm);
}

.legal-document h2 {
    margin: 38px 0 14px;
    color: var(--primary);
    font-size: 1.35rem;
    line-height: 1.25;
    letter-spacing: -.02em;
}

.legal-document h2:first-of-type {
    margin-top: 28px;
}

.legal-document p,
.legal-document li {
    color: #314254;
    font-size: 15px;
    line-height: 1.85;
}

.legal-document p {
    margin: 0 0 16px;
}

.legal-document ul {
    display: grid;
    gap: 8px;
    margin: 0 0 18px;
    padding-left: 22px;
}

.legal-document a {
    color: var(--primary-4);
    font-weight: 700;
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(5, 10, 18, .92);
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 95%;
    max-height: 90%;
    border-radius: 18px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, .6);
    animation: zoomIn .25s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    opacity: .8;
    transition: .2s;
}

.lightbox-close:hover {
    opacity: 1;
}

/* ===== Animations ===== */
@keyframes heroBadgeShine {
    0% {
        transform: translateX(0) rotate(26deg);
        opacity: 0;
    }
    8% {
        opacity: .55;
    }
    18% {
        transform: translateX(520%) rotate(26deg);
        opacity: 0;
    }
    100% {
        transform: translateX(520%) rotate(26deg);
        opacity: 0;
    }
}

@keyframes dashboardFloat {
    0% {
        transform: perspective(1900px) rotateY(-14deg) rotateX(6deg) rotateZ(-1deg) translateY(0);
    }
    50% {
        transform: perspective(1900px) rotateY(-14deg) rotateX(6deg) rotateZ(-1deg) translateY(-8px);
    }
    100% {
        transform: perspective(1900px) rotateY(-14deg) rotateX(6deg) rotateZ(-1deg) translateY(0);
    }
}

@keyframes glowPulse {
    0% {
        opacity: .8;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.04);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(.92);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== Responsive ===== */
@media (min-width: 1600px) {
    .hero-dashboard .container {
        max-width: 1540px;
    }

    .hero-dashboard-wrap {
        gap: 56px;
    }

    .hero-copy {
        width: 40%;
        max-width: 500px;
    }

    .hero-copy h1 {
        max-width: 15ch;
        font-size: clamp(58px, 3vw, 78px);
        line-height: .96;
    }

    .hero-copy p {
        max-width: 500px;
        font-size: 18px;
    }

    .hero-visual {
        width: 60%;
        min-height: 760px;
    }

    .hero-dashboard-stage {
        width: min(100%, 980px);
        transform: translate(40px, -10px) scale(1.04);
    }

    .hero-benefit-cards {
        gap: 16px;
    }
}

@media (max-width: 1599px) and (min-width: 1300px) {
    .hero-copy {
        width: 42%;
        max-width: 500px;
    }

    .hero-copy h1 {
        max-width: 15ch;
        font-size: clamp(52px, 4.2vw, 70px);
        line-height: .98;
    }

    .hero-copy p {
        max-width: 500px;
        font-size: 16px;
    }

    .hero-visual {
        width: 58%;
    }

    .hero-dashboard-stage {
        width: min(100%, 840px);
        transform: translate(22px, -8px) scale(.98);
    }
}

@media (max-width: 1399px) and (min-width: 992px) {
    .hero-dashboard-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 24px 30px;
        overflow: hidden;
    }

    .hero-copy {
        width: 44%;
        max-width: 470px;
    }

    .hero-copy h1 {
        max-width: 15ch;
        font-size: clamp(46px, 4vw, 62px);
        line-height: 1;
    }

    .hero-copy p {
        max-width: 460px;
        font-size: 15px;
    }

    .hero-visual {
        width: 56%;
        min-height: 620px;
        margin-bottom: 0;
    }

    .hero-dashboard-stage {
        width: min(100%, 740px);
        transform: translate(0, -6px) scale(.94);
    }

    .hero-benefit-cards {
        position: static;
        order: 3;
        width: 56%;
        max-width: 740px;
        margin-top: -150px;
        margin-left: auto;
        gap: 12px;
        justify-content: center;
        align-items: stretch;
    }

    .hero-benefit-card {
        width: 200px;
        min-height: 80px;
        padding: 12px 14px;
        border-radius: 18px;
        align-items: center;
    }

    .hero-benefit-icon {
        flex: 0 0 34px;
        width: 34px;
        height: 34px;
        border-radius: 10px;
        font-size: 13px;
    }

    .hero-benefit-content strong {
        margin: 0;
        font-size: 14px;
        line-height: 1.2;
    }

    .hero-benefit-content p {
        display: none;
    }
}

@media (max-width: 1199px) {
    .hero-dashboard {
        min-height: auto;
        padding: 18px 0 60px;
    }

    .hero-dashboard-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 34px;
        min-height: auto;
        padding-top: 24px;
    }

    .hero-copy,
    .hero-visual {
        width: 100%;
        max-width: none;
    }

    .hero-copy h1 {
        max-width: 15ch;
        font-size: clamp(42px, 7vw, 64px);
    }

    .hero-copy p {
        max-width: 680px;
        font-size: 16px;
    }

    .hero-visual {
        min-height: 520px;
        overflow: hidden;
    }

    .hero-dashboard-stage {
        width: min(100%, 860px);
        margin: 0 auto;
        transform: translate(40px, 0);
    }

    .hero-benefit-cards {
        position: relative;
        right: auto;
        bottom: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        max-width: 100%;
        margin-top: 22px;
        gap: 14px;
    }

    .hero-benefit-card {
        width: 100%;
        min-height: 100px;
    }

    .module-block {
        gap: 48px;
    }
}

@media (max-width: 991px) {
    .hero-header .nav-wrap {
        position: relative;
        gap: 16px;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 16px;
        border-radius: 20px;
        background: rgba(10, 20, 35, .94);
        border: 1px solid rgba(255, 255, 255, .08);
        box-shadow: 0 20px 40px rgba(0, 0, 0, .28);
        backdrop-filter: blur(14px);
    }

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

    .main-nav a {
        width: 100%;
        padding: 12px 10px;
        border-radius: 12px;
    }

    .main-nav a:hover {
        background: rgba(255, 255, 255, .06);
    }

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

    .nav-actions {
        gap: 8px;
        margin-left: auto;
    }

    .menu-toggle,
    .btn-mobile-login {
        display: inline-flex;
    }

    .nav-actions .btn-nav {
        display: none;
    }

    .hero-copy h1 {
        max-width: 15ch;
        font-size: clamp(38px, 8vw, 56px);
    }

    .hero-copy p {
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

    .hero-visual {
        min-height: 440px;
    }

    .hero-dashboard-stage {
        width: min(100%, 760px);
        transform: translate(10px, 0);
    }

    .benefits-grid,
    .pricing-compare {
        grid-template-columns: 1fr;
    }

    .module-block,
    .module-block.reverse {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 80px;
    }

    .module-copy,
    .module-shot {
        flex: none;
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .module-shot {
        min-height: auto;
    }

    .module-shot-frame,
    .module-block.reverse .module-shot-frame,
    .module-block:not(.reverse) .module-shot-frame {
        transform: none;
    }

    .module-shot-bg,
    .module-block.reverse .module-shot-bg,
    .module-block:not(.reverse) .module-shot-bg {
        left: auto;
        right: auto;
        transform: rotate(-4deg);
    }

    .module-block .module-copy,
    .module-block .module-shot,
    .module-block:not(.reverse) .module-copy,
    .module-block:not(.reverse) .module-shot,
    .module-block.reverse .module-copy,
    .module-block.reverse .module-shot {
        transform: translateY(28px);
    }

    .module-block.is-visible .module-copy,
    .module-block.is-visible .module-shot {
        transform: translateY(0);
    }

    .pricing-card {
        padding: 26px;
    }

    .contact-split-card {
        grid-template-columns: 1fr;
    }

    .contact-split-aside {
        border-right: none;
        border-bottom: 1px solid rgba(15, 34, 51, .06);
    }

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

    .footer-text {
        max-width: 100%;
    }

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

@media (max-width: 767px) {
    .container {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .section {
        padding: 86px 0;
    }

    .hero-dashboard {
        min-height: auto;
        padding: 96px 0 36px;
    }

    .hero-header {
        background: rgba(7, 19, 29, .55);
        backdrop-filter: blur(10px);
    }

    .hero-header .nav-wrap {
        flex-wrap: wrap;
        gap: 10px;
    }

    .brand img {
        height: 42px;
        max-width: 115px;
    }

    .hero-dashboard-wrap {
        flex-direction: column;
        align-items: center;
        gap: 22px;
        min-height: auto;
        padding-top: 0;
        text-align: center;
    }

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

    .hero-badge {
        justify-content: center;
        max-width: 100%;
        padding: 8px 14px;
        margin: 0 auto 18px;
        font-size: 12px;
        line-height: 1.35;
    }

    .hero-copy h1 {
        max-width: 15ch;
        margin: 0 auto 16px;
        font-size: clamp(34px, 10vw, 46px);
        line-height: .97;
        text-align: center;
    }

    .hero-copy p {
        max-width: 100%;
        margin: 0 auto;
        font-size: 15px;
        line-height: 1.65;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
        margin-top: 22px;
    }

    .hero-actions .btn,
    .hero-actions a,
    .btn-lg {
        width: 100%;
        min-height: 48px;
        padding: 0 18px;
        justify-content: center;
    }

    .hero-visual,
    .hero-dashboard-stage,
    .hero-dashboard-frame,
    .hero-visual-glow {
        display: none !important;
    }

    .hero-benefit-cards {
        position: relative;
        right: auto;
        bottom: auto;
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        margin-top: 16px;
        gap: 10px;
    }

    .hero-benefit-card {
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        min-height: auto;
        padding: 12px 14px;
        border-radius: 16px;
        text-align: left;
    }

    .hero-benefit-icon {
        flex: 0 0 36px;
        width: 36px;
        height: 36px;
        border-radius: 12px;
        font-size: 14px;
    }

    .hero-benefit-content strong {
        margin: 0;
        font-size: 16px;
        line-height: 1.2;
    }

    .hero-benefit-content p {
        display: none;
    }

    .module-block {
        margin-bottom: 64px;
    }

    .module-shot-bg {
        width: 94%;
        height: 92%;
        border-radius: 28px;
    }

    .module-shot-frame {
        border-radius: 20px;
    }

    .module-shot-top {
        padding: 12px 14px;
    }

    .module-shot-top span {
        width: 8px;
        height: 8px;
    }

    .pricing-features,
    .form-grid {
        column-count: 1;
        grid-template-columns: 1fr;
    }

    .benefit-card,
    .pricing-card,
    .contact-split-aside,
    .contact-split-form {
        padding: 24px;
    }

    .contact-split-aside h2 {
        font-size: 2rem;
    }

    .legal-hero {
        padding: 52px 0 38px;
    }

    .legal-hero h1 {
        font-size: 2.35rem;
    }

    .legal-hero p {
        font-size: 15px;
    }

    .legal-document {
        padding: 28px;
        border-radius: 22px;
    }

    .legal-document h2 {
        font-size: 1.15rem;
    }
}

@media (max-width: 600px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }

    .site-footer {
        padding: 50px 0 24px;
    }

    .footer-text,
    .footer-col a,
    .footer-col h4 {
        font-size: 13px;
    }

    .footer-bottom {
        gap: 8px;
    }

    .legal-nav {
        align-items: flex-start;
        flex-direction: column;
    }

    .legal-nav .btn {
        width: 100%;
        min-height: 46px;
    }
}

@media (max-width: 560px) {
    .hero-copy h1 {
        font-size: 2.15rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .module-block .module-copy,
    .module-block .module-shot {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .module-shot-bg {
        opacity: 1;
        transition: none;
    }

    .hero-dashboard-frame,
    .hero-visual-glow,
    .hero-badge::after {
        animation: none !important;
    }
}

.is-whatsapp-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9400;
    font-family: 'Inter', sans-serif;
}

.is-whatsapp-float {
    position: relative;
    isolation: isolate;
    width: 68px;
    height: 68px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #ffffff;
    font-size: 36px;
    cursor: pointer;
    box-shadow: 0 18px 34px rgba(37, 211, 102, .34), 0 6px 14px rgba(15, 34, 51, .16);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.is-whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -8px;
    z-index: -1;
    border-radius: inherit;
    background: rgba(37, 211, 102, .28);
    animation: isWhatsappPulse 2.2s ease-out infinite;
}

.is-whatsapp-widget.is-open .is-whatsapp-float::before {
    opacity: 0;
    animation: none;
}

.is-whatsapp-float:hover,
.is-whatsapp-float:focus {
    background: #22c35e;
    transform: translateY(-2px);
    box-shadow: 0 22px 38px rgba(37, 211, 102, .38), 0 8px 18px rgba(15, 34, 51, .18);
    outline: none;
}

.is-whatsapp-chat {
    position: absolute;
    right: 0;
    bottom: 86px;
    width: 360px;
    max-width: calc(100vw - 32px);
    overflow: hidden;
    border-radius: 24px;
    background: #f3f4f1;
    box-shadow: 0 24px 70px rgba(15, 34, 51, .22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px) scale(.96);
    transform-origin: bottom right;
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}

@keyframes isWhatsappPulse {
    0% {
        transform: scale(.82);
        opacity: .7;
    }

    70%,
    100% {
        transform: scale(1.28);
        opacity: 0;
    }
}

.is-whatsapp-widget.is-open .is-whatsapp-chat {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.is-whatsapp-header {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 92px;
    padding: 18px 18px 18px 20px;
    background: #075e54;
    color: #ffffff;
}

.is-whatsapp-avatar {
    position: relative;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    border-radius: 50%;
    background: #202c33;
    /*border: 2px solid rgba(255, 255, 255, .55);*/
}

.is-whatsapp-avatar::after {
    content: "";
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 14px;
    height: 14px;
    z-index: 2;
    border-radius: 50%;
    background: #25d366;
    border: 3px solid #075e54;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .08);
}

.is-whatsapp-avatar img {
    width: 78%;
    height: auto;
    object-fit: contain;
    border-radius: 50%;
}

.is-whatsapp-heading {
    min-width: 0;
    flex: 1;
}

.is-whatsapp-heading strong,
.is-whatsapp-heading span {
    display: block;
}

.is-whatsapp-heading strong {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}

.is-whatsapp-heading span {
    margin-top: 4px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    line-height: 1.3;
}

.is-whatsapp-close {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    transition: background .18s ease;
}

.is-whatsapp-close:hover,
.is-whatsapp-close:focus {
    background: rgba(255, 255, 255, .12);
    outline: none;
}

.is-whatsapp-body {
    min-height: 250px;
    padding: 24px;
    background-color: #e9e3d8;
    background-image:
        radial-gradient(circle at 20px 20px, rgba(255, 255, 255, .55) 0 2px, transparent 2px),
        radial-gradient(circle at 80px 68px, rgba(255, 255, 255, .42) 0 2px, transparent 2px),
        linear-gradient(45deg, rgba(255, 255, 255, .18) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, .18) 25%, transparent 25%);
    background-size: 96px 96px, 120px 120px, 34px 34px, 34px 34px;
}

.is-whatsapp-bubble {
    position: relative;
    max-width: 86%;
    padding: 16px 18px 12px;
    border-radius: 0 18px 18px 18px;
    background: #ffffff;
    color: #202c33;
    box-shadow: 0 2px 8px rgba(15, 34, 51, .10);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .24s ease, transform .24s ease;
}

.is-whatsapp-widget.is-ready .is-whatsapp-bubble {
    opacity: 1;
    transform: translateY(0);
}

.is-whatsapp-bubble::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid #ffffff;
    border-left: 10px solid transparent;
}

.is-whatsapp-bubble strong {
    display: block;
    margin-bottom: 6px;
    color: #7a8792;
    font-size: 13px;
    font-weight: 800;
}

.is-whatsapp-bubble p {
    margin: 0;
    color: #22313f;
    font-size: 15px;
    line-height: 1.55;
}

.is-whatsapp-bubble span {
    display: block;
    margin-top: 8px;
    color: #9aa4ad;
    font-size: 11px;
    line-height: 1;
    text-align: right;
}

.is-whatsapp-typing {
    position: relative;
    width: fit-content;
    min-width: 72px;
    min-height: 42px;
    display: none;
    align-items: center;
    gap: 5px;
    padding: 14px 18px;
    border-radius: 0 18px 18px 18px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(15, 34, 51, .10);
}

.is-whatsapp-widget.is-typing .is-whatsapp-typing {
    display: inline-flex;
}

.is-whatsapp-typing::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid #ffffff;
    border-left: 10px solid transparent;
}

.is-whatsapp-typing span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9aa4ad;
    animation: isWhatsappTyping 1s ease-in-out infinite;
}

.is-whatsapp-typing span:nth-child(2) {
    animation-delay: .15s;
}

.is-whatsapp-typing span:nth-child(3) {
    animation-delay: .3s;
}

@keyframes isWhatsappTyping {
    0%,
    70%,
    100% {
        transform: translateY(0);
        opacity: .45;
    }

    35% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

.is-whatsapp-compose {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: #f0f2f5;
}

.is-whatsapp-compose input,
.is-whatsapp-compose textarea {
    min-width: 0;
    flex: 1;
    height: 68px;
    border: 0;
    border-radius: 28px;
    padding: 13px 18px;
    background: #ffffff;
    color: #22313f;
    font-size: 14px;
    line-height: 1.45;
    outline: none;
    resize: none;
}

.is-whatsapp-compose input::placeholder,
.is-whatsapp-compose textarea::placeholder {
    color: #98a2ad;
}

.is-whatsapp-compose input:focus,
.is-whatsapp-compose textarea:focus {
    box-shadow: 0 0 0 3px rgba(37, 211, 102, .16);
}

.is-whatsapp-send {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.is-whatsapp-send:hover,
.is-whatsapp-send:focus {
    background: #22c35e;
    transform: translateY(-1px);
    outline: none;
}

@media (max-width: 600px) {
    .is-whatsapp-widget {
        right: 16px;
        bottom: 16px;
        left: 16px;
        display: flex;
        justify-content: flex-end;
        pointer-events: none;
    }

    .is-whatsapp-widget > * {
        pointer-events: auto;
    }

    .is-whatsapp-chat {
        right: 0;
        left: 0;
        bottom: 82px;
        width: auto;
        max-width: none;
        border-radius: 22px;
    }

    .is-whatsapp-header {
        min-height: 84px;
        padding: 16px;
    }

    .is-whatsapp-avatar {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .is-whatsapp-body {
        min-height: 220px;
        padding: 20px;
    }

    .is-whatsapp-float {
        width: 62px;
        height: 62px;
        font-size: 32px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .is-whatsapp-chat,
    .is-whatsapp-float,
    .is-whatsapp-send,
    .is-whatsapp-bubble {
        transition: none;
    }

    .is-whatsapp-typing span {
        animation: none;
    }

    .is-whatsapp-float::before {
        animation: none;
        opacity: 0;
    }
}

.contact-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
    border: 1px solid transparent;
}

.contact-alert-success {
    color: #0f5132;
    background: #eaf8f0;
    border-color: #b7e4c7;
}

.contact-alert-error {
    color: #842029;
    background: #fdecef;
    border-color: #f5c2c7;
}

.contact-alert div + div {
    margin-top: 4px;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.contact-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
    border: 1px solid transparent;
}

.contact-alert-success {
    color: #0f5132;
    background: #eaf8f0;
    border-color: #b7e4c7;
}

.contact-alert-error {
    color: #842029;
    background: #fdecef;
    border-color: #f5c2c7;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

#contactSubmitBtn:disabled {
    opacity: .75;
    cursor: not-allowed;
}

#contactSubmitBtn.is-loading {
    pointer-events: none;
}
