:root {
    --bg-1: #6e53ff;
    --bg-2: #b948d5;
    --bg-3: #120f2c;
    --card: rgba(17, 16, 45, 0.74);
    --card-strong: rgba(14, 12, 36, 0.92);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.72);
    --soft: rgba(255, 255, 255, 0.12);
    --border: rgba(255, 255, 255, 0.08);
    --accent: #7cf7d4;
    --accent-2: #6cc4ff;
    --shadow: 0 30px 80px rgba(9, 7, 29, 0.45);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --max: 1220px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.15), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.08), transparent 20%),
        radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(135deg, var(--bg-1), var(--bg-2));
    min-height: 100vh;
    overflow-x: hidden;
    background-attachment: fixed;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

body::before {
    width: 680px;
    height: 680px;
    left: -180px;
    top: -140px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02) 58%, transparent 72%);
    opacity: 0.7;
}

body::after {
    width: 540px;
    height: 540px;
    right: -140px;
    top: 120px;
    background: radial-gradient(circle, rgba(117, 213, 255, 0.18), rgba(255, 255, 255, 0.01) 60%, transparent 76%);
    opacity: 0.55;
}

.wrap {
    position: relative;
    z-index: 1;
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

/* ─── NAV ─── */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    position: relative;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-decoration: none;
    color: white;
    font-size: 1.55rem;
    z-index: 102;
}

.logo-mark {
    width: 13px;
    height: 13px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--accent), #b6fff0);
    box-shadow: 0 0 0 5px rgba(124, 247, 212, 0.09);
    position: relative;
}

.logo-mark::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    right: -7px;
    top: -4px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-left: 0;
    border-bottom: 0;
    border-radius: 0 8px 0 0;
    transform: rotate(10deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 999px;
    backdrop-filter: blur(16px);
}

.nav-links a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 12px 16px;
    border-radius: 999px;
    transition: 0.25s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.08);
}

.nav-links .cta {
    background: #120f2c;
    color: white;
    padding-inline: 24px;
    box-shadow: 0 14px 35px rgba(5, 4, 18, 0.35);
}

/* ─── HAMBURGER ─── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    cursor: pointer;
    z-index: 102;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE OVERLAY ─── */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 12, 36, 0.98), rgba(110, 83, 255, 0.92));
    z-index: 100;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-overlay a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 18px;
    transition: background 0.25s ease, transform 0.25s ease;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-overlay.open a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-overlay a:nth-child(1) {
    transition-delay: 0.06s;
}

.mobile-overlay a:nth-child(2) {
    transition-delay: 0.12s;
}

.mobile-overlay a:nth-child(3) {
    transition-delay: 0.18s;
}

.mobile-overlay a:nth-child(4) {
    transition-delay: 0.24s;
}

.mobile-overlay a:nth-child(5) {
    transition-delay: 0.30s;
}

.mobile-overlay a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.mobile-overlay .cta-mobile {
    margin-top: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 18px 40px;
    border-radius: 999px;
    font-size: 1.15rem;
}

body.menu-open {
    overflow: hidden;
}

/* ─── HERO ─── */
.hero {
    display: grid;
    grid-template-columns: 1.02fr 1fr;
    gap: 48px;
    align-items: center;
    min-height: calc(100vh - 110px);
    padding: 28px 0 60px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    margin-bottom: 22px;
    backdrop-filter: blur(10px);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 8px rgba(124, 247, 212, 0.08);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 8px rgba(124, 247, 212, 0.08);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(124, 247, 212, 0.04);
    }
}

h1 {
    margin: 0;
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    max-width: 680px;
}

.hero p {
    margin: 24px 0 0;
    font-size: 1.14rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 590px;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
    font-weight: 600;
    letter-spacing: -0.01em;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
}

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

.btn-primary {
    background: #120f2c;
    color: white;
    box-shadow: 0 18px 44px rgba(8, 7, 22, 0.34);
}

.btn-primary:hover {
    box-shadow: 0 22px 50px rgba(8, 7, 22, 0.5);
}

.btn-secondary {
    color: white;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.96rem;
}

.hero-meta strong {
    color: white;
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

/* ─── VISUAL / DASHBOARD ─── */
.visual {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard {
    position: absolute;
    right: 0;
    top: 50px;
    width: min(100%, 650px);
    min-height: 560px;
    padding: 36px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(16, 14, 44, 0.98), rgba(11, 10, 34, 0.94));
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.dashboard::before {
    content: "";
    position: absolute;
    inset: -20% auto auto -20%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(140, 100, 255, 0.16), transparent 70%);
    pointer-events: none;
}

.dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 28px;
}

.dashboard-title h3,
.panel-title {
    margin: 0;
    letter-spacing: -0.03em;
}

.dashboard-title p,
.mini-item p,
.panel-sub,
.feature p,
.section-head p,
.contact-card p,
.footer p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.56);
    line-height: 1.6;
}

.chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chip {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.86rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.mini-card {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-card strong {
    display: block;
    font-size: 1.45rem;
    margin-top: 16px;
    letter-spacing: -0.03em;
}

.mini-label {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.chart {
    margin-top: 18px;
    height: 200px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 100% 40px, 70px 100%;
    opacity: 0.45;
}

.curve,
.curve2,
.curve3 {
    position: absolute;
    inset: 0;
}

.curve svg,
.curve2 svg,
.curve3 svg {
    width: 100%;
    height: 100%;
}

.glass-panel {
    position: absolute;
    left: -54px;
    bottom: 72px;
    width: min(88vw, 430px);
    padding: 24px;
    border-radius: 28px;
    background: rgba(28, 21, 69, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 70px rgba(7, 6, 24, 0.3);
}

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

.list {
    display: grid;
    gap: 12px;
}

.list-item {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 700;
    background: linear-gradient(135deg, #31d8b1, #44a7ff);
    font-size: 0.95rem;
}

.avatar.alt {
    background: linear-gradient(135deg, #ff56c2, #a561ff);
}

.avatar.dark {
    background: linear-gradient(135deg, #141327, #3f3c75);
}

.list-item strong {
    display: block;
    font-size: 0.98rem;
    letter-spacing: -0.02em;
}

.list-item span,
.muted-small {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.88rem;
}

.link {
    color: #7dc8ff;
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* ─── SECTIONS ─── */
.section {
    padding: 80px 0 40px;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.04em;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(124, 247, 212, 0.08);
    border: 1px solid rgba(124, 247, 212, 0.12);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* ─── FEATURES / SERVICES ─── */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature,
.contact-card,
.footer {
    background: rgba(18, 15, 44, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 60px rgba(10, 8, 29, 0.18);
}

.feature {
    padding: 30px;
    border-radius: 28px;
    min-height: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(10, 8, 29, 0.3);
    border-color: rgba(255, 255, 255, 0.14);
}

.icon-box {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(124, 247, 212, 0.18), rgba(108, 196, 255, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 22px;
    font-size: 1.3rem;
}

.icon-box.pink {
    background: linear-gradient(135deg, rgba(255, 86, 194, 0.18), rgba(165, 97, 255, 0.18));
}

.icon-box.orange {
    background: linear-gradient(135deg, rgba(255, 176, 80, 0.18), rgba(255, 100, 100, 0.18));
}

.feature h3,
.contact-card h3 {
    margin: 0;
    font-size: 1.3rem;
    letter-spacing: -0.03em;
}

/* ─── PROCESS ─── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    counter-reset: process;
}

.process-step {
    padding: 30px;
    border-radius: 28px;
    background: rgba(18, 15, 44, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-step:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.14);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(124, 247, 212, 0.14), rgba(108, 196, 255, 0.14));
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.process-step h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.process-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ─── WHY US ─── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.why-card {
    padding: 32px;
    border-radius: 28px;
    background: rgba(18, 15, 44, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
    transform: translateY(-3px);
    border-color: rgba(124, 247, 212, 0.18);
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 18px;
}

.why-card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.why-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    line-height: 1.65;
    font-size: 0.95rem;
}

/* ─── TECH STACK ─── */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 22px;
    border-radius: 18px;
    background: rgba(18, 15, 44, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    font-weight: 500;
    font-size: 0.95rem;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.tech-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.16);
}

.tech-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.tech-dot.blue {
    background: #6cc4ff;
    box-shadow: 0 0 12px rgba(108, 196, 255, 0.3);
}

.tech-dot.green {
    background: #7cf7d4;
    box-shadow: 0 0 12px rgba(124, 247, 212, 0.3);
}

.tech-dot.pink {
    background: #ff56c2;
    box-shadow: 0 0 12px rgba(255, 86, 194, 0.3);
}

.tech-dot.orange {
    background: #f3a36c;
    box-shadow: 0 0 12px rgba(243, 163, 108, 0.3);
}

.tech-dot.purple {
    background: #a561ff;
    box-shadow: 0 0 12px rgba(165, 97, 255, 0.3);
}

/* ─── CONTACT ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    padding-top: 10px;
}

.contact-info h2 {
    margin: 0 0 16px;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    letter-spacing: -0.04em;
    line-height: 1;
}

.contact-info>p {
    color: rgba(255, 255, 255, 0.56);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0 0 32px;
}

.contact-info-items {
    display: grid;
    gap: 12px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 16px;
    background: rgba(18, 15, 44, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    transition: border-color 0.25s ease;
}

.contact-info-item:hover {
    border-color: rgba(255, 255, 255, 0.16);
}

.contact-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.06);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ─── FORM CARD ─── */
.contact-form-card {
    padding: 36px;
    border-radius: 28px;
    background: rgba(10, 8, 28, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(5, 4, 18, 0.4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(124, 247, 212, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.5)' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6.5 6.5-6.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: #120f2c;
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    min-height: 56px;
    border: none;
    border-radius: 999px;
    background: #c8f542;
    color: #0a0820;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    letter-spacing: -0.01em;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(200, 245, 66, 0.2);
    background: #d4ff4a;
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 0.92rem;
    display: none;
    text-align: center;
}

.form-message.success {
    display: block;
    background: rgba(124, 247, 212, 0.1);
    border: 1px solid rgba(124, 247, 212, 0.2);
    color: #7cf7d4;
}

.form-message.error {
    display: block;
    background: rgba(255, 80, 80, 0.1);
    border: 1px solid rgba(255, 80, 80, 0.2);
    color: #ff6b6b;
}

/* ─── FOOTER ─── */
.footer {
    margin: 28px 0 40px;
    border-radius: 26px;
    padding: 30px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    font-size: 0.85rem;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.footer-bottom {
    width: 100%;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1120px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .visual {
        min-height: 720px;
    }

    .dashboard {
        position: relative;
        top: 0;
        right: 0;
    }

    .glass-panel {
        left: 24px;
        bottom: 18px;
    }

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

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

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

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

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

@media (max-width: 760px) {
    .wrap {
        width: min(var(--max), calc(100% - 24px));
    }

    .nav {
        padding-top: 18px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-overlay {
        display: flex;
    }

    h1 {
        font-size: clamp(2.4rem, 13vw, 4rem);
    }

    .hero p {
        font-size: 1rem;
    }

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

    .dashboard {
        padding: 22px;
        min-height: auto;
    }

    .glass-panel {
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        margin-top: 18px;
    }

    .visual {
        min-height: auto;
        display: block;
    }

    .list-item {
        grid-template-columns: 42px 1fr;
    }

    .list-item .link {
        grid-column: 2 / 3;
    }

    .footer {
        padding: 20px;
    }

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

    .section {
        padding: 60px 0 20px;
    }

    .hero-meta {
        gap: 20px;
    }

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

    .tech-grid {
        justify-content: flex-start;
    }
}
