:root {
    --color-bg: #ffffff;
    --color-text: #0f172a;
    --color-muted: #64748b;

    --primary: #6366f1;
    --primary-strong: #4f46e5;
    --accent-pink: #ec4899;
    --accent-blue: #38bdf8;
    --accent-purple: #7c3aed;

    --radius-xl: 24px;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.28);

    --nav-height: 76px;
}

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

html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont,
        sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
}

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

.container {
    width: min(1120px, 100% - 32px);
    margin-inline: auto;
}

/* HEADER / NAV */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.92),
        rgba(15, 23, 42, 0)
    );
    color: #fff;
}

.nav-container {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.logo-mark {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(15, 23, 42, 0.7);
}

.logo-accent {
    color: var(--accent-blue);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
    padding-bottom: 4px;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-blue));
    transition: width 0.22s ease-out;
}

.nav-link:hover::after {
    width: 100%;
}

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

.btn-primary,
.btn-ghost {
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: 20px;
    padding-block: 10px;
    font-size: 14px;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(
        90deg,
        var(--primary-strong),
        var(--accent-purple)
    );
    color: #fff;
    box-shadow: 0 12px 32px rgba(79, 70, 229, 0.55);
}

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

.btn-primary.small,
.btn-ghost.small {
    padding-block: 8px;
    padding-inline: 18px;
    font-size: 13px;
}

.btn-primary.large {
    padding-block: 14px;
    padding-inline: 28px;
    font-size: 15px;
}

.page-gradient-bg {
    background: radial-gradient(
            circle at 0% 0%,
            rgba(99, 102, 241, 0.26),
            transparent 55%
        ),
        radial-gradient(
            circle at 100% 0%,
            rgba(236, 72, 153, 0.22),
            transparent 55%
        ),
        #020617;
    background-attachment: fixed;
}

/* MOBILE NAV TOGGLE */

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 0;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

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

.nav-toggle.active span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
}

/* SOLUTIONS DROPDOWN */

.nav-item {
    position: relative;
}

.nav-link-btn {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(6px) scale(0.98);
    transform-origin: top center;
    min-width: 520px;
    max-width: 640px;
    padding: 18px 22px 16px;
    border-radius: 20px;
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.32);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-out,
        transform 0.22s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 40;
    font-family: inherit;
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 9px 9px 9px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown,
.has-dropdown.open .nav-dropdown {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.nav-dropdown-header {
    margin-bottom: 10px;
}

.nav-dropdown-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #94a3b8;
    font-weight: 600;
}

.nav-dropdown-sub {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: #64748b;
}

.nav-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 28px;
    margin-top: 8px;
}

.nav-dropdown-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    text-decoration: none;
    color: #0f172a;
    transition: background 0.15s ease-out, transform 0.15s ease-out;
}

.nav-dropdown-item:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

.nav-dropdown-item .icon {
    padding: 6px;
    border-radius: 999px;
    background: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-dropdown-item .icon svg {
    width: 18px;
    height: 18px;
    stroke: #e5e7eb;
    stroke-width: 1.8;
}

.nav-dropdown-text strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.nav-dropdown-text small {
    display: block;
    font-size: 12px;
    color: #64748b;
}

/* HERO + LAVA */

.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 80px;
    background: #0b1020;
    color: #fff;
}

.hero-gradient {
    position: absolute;
    inset: -100px -60px 0;
    pointer-events: none;
    background: radial-gradient(
            circle at 0% 0%,
            rgba(255, 77, 166, 0.75),
            transparent 55%
        ),
        radial-gradient(
            circle at 100% 0%,
            rgba(59, 189, 248, 0.9),
            transparent 60%
        ),
        radial-gradient(
            circle at 20% 100%,
            rgba(124, 58, 237, 0.85),
            transparent 55%
        );
    overflow: hidden;
}

.hero-gradient::before,
.hero-gradient::after {
    content: "";
    position: absolute;
    inset: -40%;
    filter: blur(22px);
    will-change: transform, filter;
}

.hero-gradient::before {
    background: radial-gradient(
            circle at 8% 10%,
            rgba(236, 72, 153, 0.95),
            transparent 55%
        ),
        radial-gradient(
            circle at 85% 8%,
            rgba(56, 189, 248, 0.95),
            transparent 60%
        ),
        radial-gradient(
            circle at 15% 90%,
            rgba(129, 140, 248, 0.9),
            transparent 60%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(251, 113, 133, 0.9),
            transparent 55%
        );
    animation: lavaBlob1 22s ease-in-out infinite alternate;
}

.hero-gradient::after {
    background: radial-gradient(
            circle at 30% 30%,
            rgba(244, 114, 182, 0.75),
            transparent 55%
        ),
        radial-gradient(
            circle at 80% 40%,
            rgba(56, 189, 248, 0.7),
            transparent 55%
        ),
        radial-gradient(
            circle at 60% 85%,
            rgba(129, 140, 248, 0.7),
            transparent 55%
        );
    mix-blend-mode: screen;
    opacity: 0.9;
    animation: lavaBlob2 28s ease-in-out infinite alternate;
}

@keyframes lavaBlob1 {
    0% {
        transform: translate3d(-6%, -4%, 0) scale(1.05);
        filter: blur(20px);
    }
    50% {
        transform: translate3d(4%, 3%, 0) scale(1.16);
        filter: blur(26px);
    }
    100% {
        transform: translate3d(-2%, 6%, 0) scale(1.09);
        filter: blur(22px);
    }
}

@keyframes lavaBlob2 {
    0% {
        transform: translate3d(4%, 6%, 0) scale(1.14) rotate(0deg);
        filter: blur(18px);
    }
    50% {
        transform: translate3d(-3%, -3%, 0) scale(1.24) rotate(10deg);
        filter: blur(26px);
    }
    100% {
        transform: translate3d(5%, 0, 0) scale(1.17) rotate(-8deg);
        filter: blur(22px);
    }
}

.hero-section::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -20%;
    height: 45%;
    background: #ffffff;
    border-top-left-radius: 45% 60%;
    border-top-right-radius: 50% 70%;
    box-shadow: 0 -28px 80px rgba(15, 23, 42, 0.9);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 40px;
    padding-top: 40px;
}

.eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(248, 250, 252, 0.85);
    margin-bottom: 12px;
}

.hero-left h1 {
    font-size: clamp(38px, 3.6vw + 16px, 56px);
    line-height: 1.03;
    margin: 0 0 18px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(226, 232, 240, 0.9);
    max-width: 430px;
    margin-bottom: 22px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.5);
    font-size: 13px;
}

.rating-label {
    font-weight: 600;
}

.rating-stars {
    letter-spacing: 2px;
    font-size: 14px;
    color: #22c55e;
}

.rating-source {
    opacity: 0.9;
}

.hero-right {
    display: flex;
    justify-content: center;
}

.phone-wrapper {
    position: relative;
    transform: rotate(11deg) translateY(8px);
}

.phone-shadow {
    position: absolute;
    inset: 45% 8% -5% 8%;
    background: radial-gradient(
        circle at 50% 30%,
        rgba(15, 23, 42, 0.55),
        transparent 70%
    );
    filter: blur(18px);
    opacity: 0.9;
}

.phone-body {
    position: relative;
    width: min(320px, 70vw);
    border-radius: 85px;
    background: linear-gradient(145deg, #0f172a, #111827);
    box-shadow: var(--shadow-soft);
}

.phone-screen {
    display: block;
    width: 100%;
    border-radius: 28px;
}

/* FADE-IN */

.fade-in-left,
.fade-in-right,
.fade-in-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease-out,
        transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: opacity, transform;
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-right {
    transform: translateX(30px);
}

.fade-in-left.in-view,
.fade-in-right.in-view,
.fade-in-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

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

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

/* =========================
   MODERN FOOTER
   ========================= */

.site-footer-modern {
    background: #0b1020;
    color: #cbd5f5;
    padding: 60px 0 20px;
    position: relative;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-col {
    max-width: 380px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.18em;
    color: #f9fafb;
}

.footer-about {
    margin-top: 14px;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #e2e8f0;
}

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

.footer-links li + li {
    margin-top: 8px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s, transform 0.2s;
}

.footer-links a:hover {
    color: #6366f1;
    transform: translateX(3px);
}

/* Bottom Row */

.footer-bottom {
    margin-top: 40px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
    font-size: 13px;
    color: #64748b;
}

/* RESPONSIVE */

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

    .footer-bottom-inner {
        text-align: center;
    }
}

/* RESPONSIVE NAV + HERO */

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding-top: 24px;
    }

    .hero-right {
        order: -1;
    }
}


@media (max-width: 600px) {
    .hero-section {
        padding-top: 24px;
        padding-bottom: 52px;
    }

    .hero-section::after {
        bottom: -22%;
        height: 35%;
        left: -95%;
        right: -65%;
    }

    .hero-actions {
        align-items: flex-start;
    }

    .btn-primary.large {
        width: 100%;
        justify-content: center;
    }

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

    .phone-wrapper {
        transform: rotate(360deg) translateY(8px);
    }
}

#lava-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

/* WHY MENIFY */

.why-menify {
    padding: 100px 0 80px;
    background: #ffffff;
    color: #0f172a;
    text-align: center;
}

.why-menify .section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-menify .section-subtitle {
    font-size: 18px;
    color: #475569;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-item {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px 24px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.why-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 14px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 28px;
    height: 28px;
    stroke: #4f46e5;
    stroke-width: 1.8;
}

.why-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-item p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

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

    .why-menify {
        padding: 60px 0;
    }
}

/* HOW IT WORKS – ALT */

.how-it-works-alt {
    position: relative;
    padding: 0;
}

.how-it-works-bg {
    background: transparent;
    color: #f9fafb;
    padding: 80px 0 90px;
}

.section-title-alt {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px;
}

.section-subtitle-alt {
    text-align: center;
    font-size: 16px;
    color: #cbd5f5;
    max-width: 520px;
    margin: 0 auto 50px;
}

.how-steps-alt {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.how-steps-alt::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 6%;
    right: 6%;
    height: 0;
    border-top: 2px dashed rgba(148, 163, 184, 0.6);
    z-index: 0;
}

.how-step-alt {
    position: relative;
    text-align: center;
    padding-top: 10px;
    z-index: 1;
}

.how-step-alt h3 {
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
}

.how-step-alt p {
    font-size: 14px;
    line-height: 1.7;
    color: #cbd5f5;
    max-width: 280px;
    margin: 0 auto;
}

.step-circle {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: #0b1120;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.6);
    border: 3px solid rgba(15, 23, 42, 0.8);
    background: #e5e7eb;
}

.step-circle span {
    transform: translateY(1px);
}

.step-1 {
    background: radial-gradient(circle at 30% 10%, #ede9fe, #6366f1);
    color: #f9fafb;
}

.step-2 {
    background: radial-gradient(circle at 30% 10%, #fce7f3, #ec4899);
    color: #fdf2f8;
}

.step-3 {
    background: radial-gradient(circle at 30% 10%, #e0f2fe, #38bdf8);
    color: #eff6ff;
}

@media (max-width: 900px) {
    .how-it-works-bg {
        padding: 60px 0 70px;
    }

    .how-steps-alt {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .how-steps-alt::before {
        display: none;
    }

    .how-step-alt {
        text-align: left;
    }

    .how-step-alt p {
        max-width: 100%;
    }
}

/* QR DEMO */

.qr-demo-section {
    padding: 0;
}

.qr-demo-bg {
    background: transparent;
    color: #e5e7eb;
    padding: 80px 0 90px;
}

.qr-demo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 56px;
    align-items: center;
}

.qr-demo-left {
    max-width: 400px;
}

.qr-mockup-frame {
    position: relative;
    border-radius: 80px;
    background: radial-gradient(
            circle at 0% 0%,
            rgba(148, 163, 253, 0.4),
            transparent 60%
        ),
        radial-gradient(
            circle at 100% 100%,
            rgba(248, 113, 113, 0.3),
            transparent 60%
        ),
        rgba(15, 23, 42, 0.9);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.85);
    overflow: hidden;
}

.qr-mockup-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
}

.qr-card {
    background: rgba(15, 23, 42, 0.96);
    border-radius: 24px;
    padding: 32px 30px 28px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.28);
}

.qr-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f9fafb;
}

.qr-text {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5f5;
    margin-bottom: 26px;
}

.qr-code-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.qr-code-box {
    width: 180px;
    height: 180px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.65);
}

.qr-code-img {
    width: 78%;
    height: auto;
}

.qr-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.qr-btn {
    padding-left: 26px;
    padding-right: 26px;
}

.qr-hint {
    font-size: 12px;
    color: #9ca3af;
}

@media (max-width: 992px) {
    .qr-demo-bg {
        padding: 70px 0 70px;
    }

    .qr-demo-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .qr-card {
        padding: 26px 22px 24px;
    }

    .qr-actions {
        align-items: center;
        text-align: center;
    }
}

/* PRICING */

.pricing-section {
    padding: 100px 0 100px;
    background: #ffffff;
    color: #0f172a;
}

.pricing-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 50px;
}

.pricing-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-header p {
    font-size: 16px;
    color: #64748b;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.pricing-card {
    position: relative;
    background: #f9fafb;
    border-radius: 24px;
    padding: 26px 22px 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease,
        border-color 0.25s ease;
    overflow: hidden;
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(
        circle at 0% 0%,
        rgba(129, 140, 248, 0.12),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.13);
    border-color: rgba(129, 140, 248, 0.6);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.pricing-subtitle {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 18px;
}

.pricing-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4f46e5;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.pricing-tag.soft {
    background: #f1f5f9;
    color: #64748b;
}

.pricing-price {
    margin-bottom: 18px;
}

.price-main {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.price-note {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}

.price-strike {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    color: #9ca3af;
    text-decoration: line-through;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 6px;
}

.pricing-features li svg {
    width: 15px;
    height: 15px;
    stroke: #22c55e;
    stroke-width: 2;
}

.pricing-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 14px;
}

.btn-secondary {
    background: #e5e7eb;
    color: #111827;
    border-radius: 999px;
    padding: 10px 16px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background: #d1d5db;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border-radius: 999px;
    padding: 10px 16px;
    border: 1px solid #4f46e5;
    color: #4f46e5;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-outline:hover {
    background: #4f46e5;
    color: #ffffff;
    transform: translateY(-1px);
}

.pricing-btn.wide {
    padding-left: 10px;
    padding-right: 10px;
}

.pricing-featured {
    border: 1px solid rgba(129, 140, 248, 0.9);
    background: radial-gradient(circle at 0% 0%, #eef2ff, #f9fafb);
    box-shadow: 0 24px 70px rgba(79, 70, 229, 0.22);
    transform: translateY(-4px);
}

.pricing-featured::before {
    opacity: 1;
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: #f9fafb;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.pricing-trial {
    background: #f9fafb;
    border-style: dashed;
    border-color: #e5e7eb;
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 70px 0 80px;
    }

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

    .pricing-featured {
        transform: none;
    }
}

/* FAQ */

.faq-section {
    padding: 90px 0 100px;
    background: #f8fafc;
    color: #0f172a;
}

.faq-header {
    max-width: 640px;
    margin: 0 auto 40px;
    text-align: center;
}

.faq-header h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-header p {
    font-size: 15px;
    color: #64748b;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease,
        transform 0.2s ease;
}

.faq-item.open {
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 0 18px 40px rgba(79, 70, 229, 0.18);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.faq-question span {
    flex: 1;
}

.faq-icon svg {
    width: 18px;
    height: 18px;
    stroke: #9ca3af;
    stroke-width: 2;
    transition: transform 0.2s ease, stroke 0.2s ease;
}

.faq-item.open .faq-icon svg {
    transform: rotate(180deg);
    stroke: #4f46e5;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.25s ease, padding-bottom 0.25s ease;
}

.faq-item.open .faq-answer {
    padding-bottom: 16px;
    max-height: 260px;
}

.faq-answer p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 70px 0 80px;
    }

    .faq-header h2 {
        font-size: 26px;
    }
}

/* CONTACT */

.contact-hero {
    padding: 100px 0 120px;
    background: radial-gradient(
            circle at 0% 0%,
            rgba(99, 102, 241, 0.12),
            transparent 55%
        ),
        radial-gradient(
            circle at 100% 0%,
            rgba(236, 72, 153, 0.12),
            transparent 55%
        ),
        #020617;
    color: #e5e7eb;
}

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

.contact-card {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 24px;
    padding: 28px 24px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.24);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(
        circle at 0% 0%,
        rgba(129, 140, 248, 0.28),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.25s ease;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card h1,
.contact-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #f9fafb;
    position: relative;
    z-index: 1;
}

.contact-card p {
    font-size: 14px;
    color: #cbd5f5;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.contact-card .btn-primary,
.contact-card .btn-outline {
    position: relative;
    z-index: 1;
}

.callback-form {
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.callback-form .form-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.callback-form label {
    font-size: 12px;
    color: #9ca3af;
}

.callback-form input {
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.8);
    color: #e5e7eb;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
}

.callback-form input::placeholder {
    color: #64748b;
}

.callback-form input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.6);
}

.callback-form .btn-primary.full {
    width: 100%;
    margin-top: 4px;
}

.callback-form .form-footnote {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 8px;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.contact-highlights {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    font-size: 13px;
    color: #cbd5e1;
}

.contact-highlights li + li {
    margin-top: 4px;
}

@media (max-width: 960px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        padding: 80px 0 90px;
    }
}

/* SWEETALERT – MENIFYO THEME */

.menifyo-modal.swal2-popup {
    border-radius: 24px;
    padding: 26px 26px 22px;
    background: radial-gradient(
            circle at 0% 0%,
            rgba(99, 102, 241, 0.18),
            transparent 60%
        ),
        radial-gradient(
            circle at 100% 0%,
            rgba(236, 72, 153, 0.16),
            transparent 60%
        ),
        #020617;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.7);
    color: #e5e7eb;
    max-width: 400px;
}

.menifyo-modal .swal2-title {
    font-size: 22px;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 6px;
}

.menifyo-step-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #a5b4fc;
    margin-bottom: 12px;
    display: block;
}

.menifyo-modal .swal2-html-container {
    margin: 0 0 14px;
}


.menifyo-modal .swal-form label {
    display: block;
    font-size: 12px;
    color: #cbd5f5;
    margin: 6px 0 2px;
}

.menifyo-modal .swal2-input,
.menifyo-modal .swal2-select,
.menifyo-modal .swal2-textarea {
    border-radius: 12px !important;
    border: 1px solid rgba(148, 163, 184, 0.7) !important;
    background: rgba(15, 23, 42, 0.9) !important;
    color: #e5e7eb !important;
    font-size: 14px;
}

.menifyo-modal .swal2-input::placeholder,
.menifyo-modal .swal2-textarea::placeholder {
    color: #64748b;
}

.menifyo-modal .swal2-input:focus,
.menifyo-modal .swal2-select:focus,
.menifyo-modal .swal2-textarea:focus {
    border-color: #6366f1 !important;
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.6);
}

.menifyo-modal .swal-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    font-size: 12px;
    color: #cbd5e1;
}

.menifyo-modal .swal-checkbox input[type="checkbox"] {
    margin-top: 2px;
}

.menifyo-confirm-btn {
    border-radius: 999px !important;
    padding: 8px 22px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    background: linear-gradient(135deg, #6366f1, #ec4899) !important;
    color: #f9fafb !important;
    border: none !important;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.65);
}

.menifyo-confirm-btn:hover {
    filter: brightness(1.05);
}

.menifyo-cancel-btn {
    border-radius: 999px !important;
    padding: 8px 18px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    background: rgba(15, 23, 42, 0.9) !important;
    color: #e5e7eb !important;
    border: 1px solid rgba(148, 163, 184, 0.5) !important;
}

.menifyo-cancel-btn:hover {
    background: rgba(15, 23, 42, 1) !important;
}

.menifyo-popup-show {
    animation: menifyoZoomIn 0.18s ease-out;
}

.menifyo-popup-hide {
    animation: menifyoZoomOut 0.18s ease-in forwards;
}

@keyframes menifyoZoomIn {
    from {
        transform: scale(0.92);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes menifyoZoomOut {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(0.9);
        opacity: 0;
    }
}
.applications-section {
    padding: 90px 0 100px;
    background: #ffffff;
}

.applications-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.applications-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.applications-header p {
    color: #64748b;
    font-size: 16px;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.applications-card {
    background: #f8fafc;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    transition: 0.2s ease;
}

.applications-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.13);
    border-color: rgba(99, 102, 241, 0.65);
}

.applications-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.12),
        rgba(236, 72, 153, 0.12)
    );
    margin-bottom: 12px;
}

.applications-icon svg {
    width: 26px;
    height: 26px;
    stroke: #4f46e5;
}

.applications-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.applications-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

/* Responsive  */
@media (max-width: 1100px) {
    .applications-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .applications-grid {
        grid-template-columns: 1fr;
    }

    .applications-header h2 {
        font-size: 26px;
    }
}
/* =========================
   LEGAL PAGES
   ========================= */

.legal-page {
    background: #f8fafc;
    color: #0f172a;
    padding: 80px 0 100px;
}

.legal-hero {
    margin-bottom: 40px;
}

.legal-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.08);
    color: #4f46e5;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.legal-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #6366f1;
}

.legal-title {
    font-size: 30px;
    font-weight: 700;
    margin: 16px 0 8px;
}

.legal-subtitle {
    font-size: 14px;
    color: #64748b;
    max-width: 640px;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 2.15fr);
    gap: 32px;
    align-items: flex-start;
}

/* Sol: içindekiler */

.legal-toc {
    position: sticky;
    top: calc(var(--nav-height) + 20px);
    align-self: flex-start;
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 18px 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
    font-size: 13px;
}

.legal-toc-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0f172a;
}

.legal-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-toc li + li {
    margin-top: 4px;
}

.legal-toc a {
    text-decoration: none;
    color: #64748b;
    transition: color 0.15s ease;
}

.legal-toc a:hover {
    color: #4f46e5;
}

/* Sağ: içerik kartı */

.legal-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 26px 24px 26px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
}

.legal-card h2 {
    font-size: 18px;
    margin: 18px 0 6px;
    color: #111827;
}

.legal-card h3 {
    font-size: 15px;
    margin: 16px 0 4px;
    color: #111827;
}

.legal-card p {
    margin: 4px 0 8px;
}

.legal-card ul {
    padding-left: 18px;
    margin: 4px 0 8px;
}

.legal-card li + li {
    margin-top: 2px;
}

.legal-tagline {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 10px;
}

/* Küçük ekranlar */

@media (max-width: 900px) {
    .legal-page {
        padding: 60px 0 80px;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .legal-toc {
        position: static;
        box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
    }
}
@media (max-width: 980px) {
    /* Desktop nav kapansın, toggle açılsın */
    .nav-toggle { display: flex; }
    .main-nav { display: none; }
    .nav-actions { display: none; }

    /* Header içinde mobil panel */
    .nav-container { position: relative; }

    /* Toggle ile açılan mobil menü */
    .main-nav.is-mobile {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;

        position: absolute;
        top: calc(var(--nav-height) + 10px);
        left: 50%;
        transform: translateX(-50%);

        width: calc(100vw - 32px);
        max-width: 420px;

        padding: 14px;
        border-radius: 18px;

        /* Mevcut tema: koyu + blur */
        background: rgba(15, 23, 42, 0.92);
        backdrop-filter: blur(18px);

        border: 1px solid rgba(255, 255, 255, 0.10);
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.50);

        z-index: 200; /* header(50) üstü, hero üstüne çıkar */
    }

    /* Linkler mobilde blok ve ortalı */
    .main-nav.is-mobile .nav-link,
    .main-nav.is-mobile .nav-link-btn {
        width: 100%;
        text-align: center;
        padding: 10px 12px;
        border-radius: 14px;
        color: rgba(255, 255, 255, 0.88);
        background: rgba(255, 255, 255, 0.04);
    }

    .main-nav.is-mobile .nav-link:hover::after { width: 0; } /* alt çizgi mobilde gereksiz taşma yapmasın */
    .main-nav.is-mobile .nav-link:hover,
    .main-nav.is-mobile .nav-link-btn:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    /* Dropdown mobilde panel içine gömülü açılacak */
    .main-nav.is-mobile .nav-item { width: 100%; }
    .main-nav.is-mobile .nav-dropdown {
        position: static;
        transform: none;
        min-width: unset;
        max-width: unset;
        width: 100%;
        margin-top: 8px;

        /* Desktop dropdown beyazdı; mobilde şemayı bozmadan koyu yapıyoruz */
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.10);
        box-shadow: none;

        opacity: 1;              /* mobilde hover yok; class ile yönetilecek */
        pointer-events: auto;
        display: none;           /* kapalı */
        padding: 12px;
        border-radius: 16px;
    }

    .main-nav.is-mobile .nav-dropdown::before { display: none; }

    /* dropdown içindeki metin tonları */
    .main-nav.is-mobile .nav-dropdown-title { color: rgba(255, 255, 255, 0.75); }
    .main-nav.is-mobile .nav-dropdown-sub { color: rgba(255, 255, 255, 0.70); }

    .main-nav.is-mobile .nav-dropdown-item {
        color: #fff;
        background: rgba(0,0,0,0.12);
    }
    .main-nav.is-mobile .nav-dropdown-item:hover {
        background: rgba(255,255,255,0.08);
        transform: none;
    }

    .main-nav.is-mobile .nav-dropdown-item .icon { background: rgba(0,0,0,0.35); }
    .main-nav.is-mobile .nav-dropdown-text small { color: rgba(255, 255, 255, 0.70); }

    /* Açık state: .has-dropdown.open */
    .main-nav.is-mobile .has-dropdown.open .nav-dropdown { display: block; }
}
