:root {
    --brand-blue: #0d66b2;
    --brand-blue-deep: #083a68;
    --brand-cyan: #4cc1e0;
    --brand-green: #20c997;
    --brand-lime: #8be35a;
    --light-aqua: #ddf3fb;
    --deep-blue: #083b7a;

    --text-dark: #123d67;
    --text-soft: #667085;

    --bg-surface: #ffffff;
    --bg-surface-strong: #ffffff;

    --border-soft: rgba(76, 193, 224, 0.22);

    --container: 1180px;

    --shadow-soft: 0 14px 34px rgba(8, 58, 104, 0.08);
    --shadow-card: 0 20px 48px rgba(8, 58, 104, 0.1);

    --gradient-main: linear-gradient(135deg, #083b7a 0%, #0a5db7 45%, #4cc1e0 75%, #20c997 100%);
    --gradient-deep: linear-gradient(135deg, #061d3a 0%, #083b7a 42%, #0e7c6b 100%);
    --gradient-soft: linear-gradient(135deg, #f8fcff, #ecfff8);
    --gradient-page:
        radial-gradient(circle at 10% 14%, rgba(76, 193, 224, 0.18), transparent 24%),
        radial-gradient(circle at 88% 12%, rgba(32, 201, 151, 0.12), transparent 22%),
        radial-gradient(circle at 84% 78%, rgba(10, 93, 183, 0.1), transparent 24%),
        linear-gradient(180deg, #fcfeff 0%, #eefaff 50%, #f7fffb 100%);
}

:root[data-theme="dark"] {
    --text-dark: #e7f8ff;
    --text-soft: #9ab7ca;

    --bg-surface: rgba(10, 28, 46, 0.9);
    --bg-surface-strong: rgba(10, 28, 46, 0.98);

    --border-soft: rgba(125, 221, 236, 0.14);

    --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.18);
    --shadow-card: 0 26px 56px rgba(0, 0, 0, 0.22);

    --gradient-main: linear-gradient(135deg, #083b7a 0%, #0a5db7 40%, #4cc1e0 72%, #20c997 100%);
    --gradient-deep: linear-gradient(135deg, #061d3a 0%, #083b7a 42%, #0e7c6b 100%);
    --gradient-soft: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    --gradient-page:
        radial-gradient(circle at 12% 12%, rgba(76, 193, 224, 0.18), transparent 24%),
        radial-gradient(circle at 86% 12%, rgba(32, 201, 151, 0.14), transparent 22%),
        radial-gradient(circle at 80% 74%, rgba(10, 93, 183, 0.16), transparent 24%),
        linear-gradient(180deg, #04111f 0%, #07243d 45%, #04111a 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--gradient-page);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

body::before,
body::after {
    content: "";
    position: fixed;
    width: 32rem;
    height: 32rem;
    border-radius: 999px;
    filter: blur(26px);
    z-index: -2;
    opacity: 0.6;
    pointer-events: none;
    animation: drift 18s ease-in-out infinite alternate;
}

body::before {
    top: -10rem;
    left: -8rem;
    background: radial-gradient(circle, rgba(76, 193, 224, 0.28) 0%, rgba(76, 193, 224, 0) 68%);
}

body::after {
    right: -12rem;
    bottom: -12rem;
    background: radial-gradient(circle, rgba(32, 201, 151, 0.22) 0%, rgba(32, 201, 151, 0) 70%);
    animation-duration: 22s;
}

.site-orb {
    position: fixed;
    width: 26rem;
    height: 26rem;
    border-radius: 999px;
    filter: blur(26px);
    opacity: 0.45;
    z-index: -2;
    pointer-events: none;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-a {
    top: 28%;
    left: 62%;
    background: radial-gradient(circle, rgba(10, 93, 183, 0.16) 0%, rgba(10, 93, 183, 0) 72%);
}

.orb-b {
    top: 66%;
    left: 4%;
    background: radial-gradient(circle, rgba(32, 201, 151, 0.18) 0%, rgba(32, 201, 151, 0) 72%);
    animation-delay: -5s;
}

.site-grid {
    position: fixed;
    inset: 0;
    z-index: -3;
    background-image:
        linear-gradient(rgba(10, 93, 183, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 93, 183, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 88%);
    pointer-events: none;
}

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

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

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

/* TOP BAR */

.top-bar {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(76, 193, 224, 0.18);
    color: var(--text-dark);
}

:root[data-theme="dark"] .top-bar {
    background: rgba(4, 17, 31, 0.72);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 10px 0;
    font-size: 13px;
}

.top-info {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.top-info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-soft);
}

/* HEADER / NAV */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(76, 193, 224, 0.16);
}

:root[data-theme="dark"] .main-nav {
    background: rgba(4, 17, 31, 0.78);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 82px;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: max-content;
}

.brand-logo {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    padding: 10px;
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    display: grid;
    gap: 4px;
}

.brand-text strong {
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.brand-text small {
    font-size: 12px;
    color: var(--text-soft);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-menu a {
    position: relative;
    color: var(--text-soft);
    font-weight: 700;
    font-size: 14px;
    transition: color 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--brand-blue);
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    border-radius: 999px;
    background: var(--gradient-main);
}

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

.theme-toggle,
.btn,
.mobile-menu-btn {
    border: none;
    cursor: pointer;
    transition: 0.25s ease;
    font-family: inherit;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--border-soft);
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
}

.mobile-menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--text-dark);
    border: 1px solid var(--border-soft);
}

.mobile-menu-btn.active {
    background: var(--gradient-main);
    color: #ffffff;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
}

.btn-primary {
    background: var(--gradient-main);
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(13, 102, 178, 0.22);
}

.btn-light {
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand-blue-deep);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost {
    background: rgba(221, 243, 251, 0.55);
    color: var(--brand-blue-deep);
    border: 1px solid rgba(76, 193, 224, 0.24);
}

.btn:hover,
.theme-toggle:hover,
.mobile-menu-btn:hover {
    transform: translateY(-2px);
}

.full-btn {
    width: 100%;
}

/* HERO */

.hero-premium {
    min-height: 760px;
    padding: 110px 0 90px;
    background:
        radial-gradient(circle at 18% 15%, rgba(76, 193, 224, 0.26), transparent 30%),
        radial-gradient(circle at 88% 20%, rgba(40, 167, 69, 0.20), transparent 28%),
        linear-gradient(135deg, #061d3a 0%, #083b7a 42%, #0e7c6b 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-premium::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    right: -160px;
    top: -150px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: clamp(32px, 5vw, 60px);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge,
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 800;
}

.hero-badge {
    background: rgba(221, 243, 251, 0.14);
    border: 1px solid rgba(221, 243, 251, 0.24);
    color: #ddf3fb;
    margin-bottom: 22px;
}

.hero-content h1 {
    font-size: clamp(42px, 6vw, 74px);
    line-height: 1.03;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #4cc1e0, #20c997, #8be35a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 720px;
    margin-bottom: 14px;
}

.hero-english {
    font-size: 15px;
    color: rgba(221, 243, 251, 0.85);
    max-width: 720px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.center-buttons {
    justify-content: center;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 650px;
}

.trust-row div {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    padding: 18px;
    backdrop-filter: blur(10px);
}

.trust-row strong {
    display: block;
    font-size: 25px;
    color: #4cc1e0;
}

.trust-row span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
}

.hero-panel,
.premium-card,
.intro-card,
.ecosystem-module,
.flow-node,
.plan-card-modern,
.content-card,
.form-card,
.process-card,
.roadmap-card {
    box-shadow: var(--shadow-card);
}

.hero-panel {
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 34px;
    padding: 28px;
    backdrop-filter: blur(16px);
}

.hero-logo-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    border-radius: 28px;
    padding: 30px;
    margin-bottom: 20px;
}

.hero-logo-card img {
    width: 145px;
    height: 145px;
    object-fit: contain;
    margin: 0 auto 14px;
}

.hero-logo-card h3 {
    color: var(--deep-blue);
    font-size: 25px;
    margin-bottom: 8px;
}

.hero-logo-card p {
    color: #667085;
}

.system-map {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.map-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 74px;
    padding: 16px;
    border-radius: 20px;
    color: #ffffff;
    font-weight: 800;
}

.map-item.blue {
    background: linear-gradient(135deg, #083b7a, #0a5db7);
}

.map-item.green {
    background: linear-gradient(135deg, #0e7c6b, #28a745);
}

.map-item.teal {
    background: linear-gradient(135deg, #4cc1e0, #20c997);
}

/* SECTIONS */

.section,
.page-section {
    padding: 90px 0;
}

.section-tag {
    color: var(--brand-blue);
    background: var(--light-aqua);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.section-tag.light {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

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

.section-head h2,
.page-hero h1 {
    font-size: clamp(32px, 4vw, 50px);
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}

.section-head p,
.page-hero p {
    color: var(--text-soft);
    font-size: 17px;
}

.page-hero {
    padding: 84px 0 48px;
}

.dark-page-hero {
    background: var(--gradient-deep);
    color: #ffffff;
}

.dark-page-hero h1,
.dark-page-hero p {
    color: #ffffff;
}

/* INTRO / CARDS */

.intro-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.4fr) repeat(3, minmax(220px, 1fr));
    gap: 22px;
    align-items: stretch;
}

.intro-card,
.premium-card,
.ecosystem-module,
.flow-node,
.plan-card-modern,
.content-card,
.form-card,
.process-card,
.roadmap-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    border-radius: 28px;
    padding: 28px;
    height: 100%;
}

.main-intro {
    background: var(--gradient-soft);
    min-height: 100%;
}

.intro-card i,
.premium-card i,
.ecosystem-module i,
.plan-top i {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--gradient-main);
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 16px;
}

.intro-card h2,
.intro-card h3,
.premium-card h3,
.ecosystem-module h3,
.flow-node h3,
.content-card h3,
.form-card h2,
.plan-card-modern h2 {
    color: var(--text-dark);
    margin-bottom: 12px;
}

.intro-card p,
.premium-card p,
.ecosystem-module p,
.flow-node p,
.content-card p,
.plan-card-modern p,
.form-note,
.alert-info {
    color: var(--text-soft);
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.four-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compact-card {
    padding: 24px;
}

.premium-card,
.ecosystem-module,
.plan-card-modern,
.content-card,
.form-card,
.process-card,
.roadmap-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    position: relative;
    overflow: hidden;
}

.premium-card::before,
.plan-card-modern::before,
.process-card::before,
.roadmap-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: var(--gradient-main);
}

.premium-card:hover,
.ecosystem-module:hover,
.plan-card-modern:hover,
.content-card:hover,
.form-card:hover,
.process-card:hover,
.roadmap-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 55px rgba(8, 59, 122, 0.14);
    border-color: rgba(76, 193, 224, 0.32);
}

.center-action {
    text-align: center;
    margin-top: 38px;
}

/* PROCESS / ROADMAP */

.process-grid,
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.process-card span,
.roadmap-card span {
    display: inline-grid;
    place-items: center;
    min-width: 48px;
    height: 48px;
    padding: 0 14px;
    border-radius: 16px;
    background: var(--gradient-main);
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 18px;
}

.process-card h3,
.roadmap-card h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.process-card p,
.roadmap-card p {
    color: var(--text-soft);
}

.roadmap-card.active {
    background: var(--gradient-soft);
    border-color: rgba(32, 201, 151, 0.32);
}

/* BADGES */

.plan-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 18px;
}

.active-status {
    background: rgba(32, 201, 151, 0.14);
    color: #0e7c6b;
    border: 1px solid rgba(32, 201, 151, 0.24);
}

.coming-status {
    background: rgba(76, 193, 224, 0.14);
    color: var(--brand-blue);
    border: 1px solid rgba(76, 193, 224, 0.24);
}

.active-module {
    border-color: rgba(32, 201, 151, 0.34);
}

.coming-module {
    opacity: 0.96;
}

/* TECH BAND */

.tech-band {
    background: var(--gradient-deep);
    color: #ffffff;
}

.tech-band-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
}

.tech-band h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    margin-bottom: 15px;
}

.tech-band p {
    color: rgba(255, 255, 255, 0.82);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-stack span {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 12px 16px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 800;
}

/* ECOSYSTEM */

.ecosystem-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 30px;
    align-items: start;
}

.ecosystem-core {
    background: linear-gradient(135deg, #083b7a, #0a5db7, #20c997);
    color: #ffffff;
    border-radius: 34px;
    padding: 35px;
    text-align: center;
    position: sticky;
    top: 110px;
    box-shadow: 0 28px 60px rgba(8, 59, 122, 0.22);
}

.ecosystem-core img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 0 auto 18px;
}

.ecosystem-core h2 {
    margin-bottom: 10px;
}

.ecosystem-core p {
    color: rgba(255, 255, 255, 0.84);
}

.ecosystem-modules {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

/* FLOW */

.flow-page {
    background: transparent;
}

.flow-timeline {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.flow-node {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 20px;
    align-items: center;
}

.flow-node span {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: var(--gradient-main);
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
}

/* PLANS */

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

.featured-plan {
    background: var(--gradient-deep);
    color: #ffffff;
    transform: translateY(-18px);
}

.featured-plan h2,
.featured-plan p,
.featured-plan li {
    color: #ffffff;
}

.featured-plan .plan-top span {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.plan-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.plan-top span {
    background: var(--light-aqua);
    color: var(--deep-blue);
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.plan-card-modern h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.plan-card-modern p {
    margin-bottom: 22px;
}

.plan-card-modern ul,
.site-footer ul {
    list-style: none;
}

.plan-card-modern ul {
    display: grid;
    gap: 13px;
    margin-bottom: 28px;
}

.plan-card-modern li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #475467;
    font-weight: 700;
    position: relative;
    padding-left: 0;
}

.plan-card-modern li::before {
    content: none;
}

.plan-card-modern li i {
    color: var(--brand-green);
    margin-top: 4px;
}

.featured-plan li {
    color: #ffffff;
}

.plan-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(76, 193, 224, 0.1);
    color: var(--text-soft);
    font-weight: 700;
    margin-bottom: 20px;
}

.featured-plan .plan-note {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.86);
}

/* SIMPLE GRID */

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

/* FORMS */

.form-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.form-card p {
    margin-bottom: 18px;
}

.alert-info {
    background: rgba(88, 214, 238, 0.1);
    border: 1px solid rgba(88, 214, 238, 0.18);
    padding: 16px 18px;
    border-radius: 18px;
    margin-bottom: 22px;
}

.pilot-form {
    margin-top: 24px;
}

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

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

.form-group {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.form-group label {
    font-weight: 800;
    color: var(--text-dark);
}

.form-group label span {
    color: var(--brand-green);
}

.form-group input,
.form-group select,
.form-group textarea,
.form-control {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.74);
    color: var(--text-dark);
    font: inherit;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

:root[data-theme="dark"] .form-group input,
:root[data-theme="dark"] .form-group select,
:root[data-theme="dark"] .form-group textarea,
:root[data-theme="dark"] .form-control {
    background: rgba(255, 255, 255, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-control:focus {
    border-color: rgba(13, 102, 178, 0.34);
    box-shadow: 0 0 0 4px rgba(88, 214, 238, 0.16);
}

.form-group textarea,
textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 18px;
    margin: 20px 0;
    font-weight: 700;
}

.success-alert {
    background: rgba(32, 201, 151, 0.12);
    color: #0e7c6b;
    border: 1px solid rgba(32, 201, 151, 0.22);
}

.error-alert {
    background: rgba(255, 99, 99, 0.1);
    color: #b42318;
    border: 1px solid rgba(255, 99, 99, 0.22);
}

.form-note {
    margin-top: 18px;
    text-align: center;
}

.form-note a {
    color: var(--brand-blue);
    font-weight: 800;
}

/* FINAL CTA */

.final-cta {
    background: var(--gradient-deep);
    color: #ffffff;
}

.final-cta-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.1;
    margin-bottom: 14px;
    color: #ffffff;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    margin-bottom: 26px;
}

/* FOOTER */

.site-footer {
    padding: 72px 0 26px;
    background: linear-gradient(180deg, rgba(8, 58, 104, 0.04), rgba(8, 58, 104, 0.08));
    border-top: 1px solid var(--border-soft);
}

:root[data-theme="dark"] .site-footer {
    background: rgba(1, 10, 18, 0.55);
}

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

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

.brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    padding: 10px;
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    flex: 0 0 auto;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-footer h3,
.site-footer h4 {
    color: var(--text-dark);
    margin-bottom: 12px;
}

.site-footer p,
.site-footer a {
    color: var(--text-soft);
}

.footer-links {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-links a:hover,
.site-footer a:hover {
    color: var(--brand-blue);
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid var(--border-soft);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--text-soft);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--brand-blue);
    font-weight: 800;
}

/* COMPACT LANDING IMPROVEMENTS */

.compact-section {
    padding: 64px 0;
}

.compact-head {
    margin-bottom: 30px;
}

.compact-head h2 {
    font-size: clamp(26px, 3vw, 38px);
    letter-spacing: -1px;
}

.compact-head p {
    font-size: 15.5px;
}

.compact-grid {
    gap: 18px;
}

.compact-card-grid {
    gap: 18px;
}

.compact-main-card,
.compact-info-card,
.compact-service-card,
.compact-process-card {
    padding: 22px;
    border-radius: 22px;
}

.compact-service-card i,
.compact-info-card i {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 18px;
    margin-bottom: 12px;
}

.compact-service-card h3,
.compact-info-card h3,
.compact-process-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.compact-service-card p,
.compact-info-card p,
.compact-process-card p {
    font-size: 14px;
    line-height: 1.55;
}

.compact-process-card span {
    min-width: 42px;
    height: 42px;
    border-radius: 14px;
    margin-bottom: 14px;
    font-size: 14px;
}

.compact-action {
    margin-top: 28px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--brand-blue);
    font-weight: 900;
    font-size: 13px;
}

.card-link i {
    width: auto;
    height: auto;
    margin: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font-size: 12px;
}

.card-link:hover {
    color: var(--brand-green);
}

.compact-stack {
    gap: 10px;
}

.compact-stack span {
    padding: 10px 14px;
    font-size: 13px;
}

/* Slightly reduce global section feeling */
.section-head h2 {
    font-size: clamp(28px, 3.4vw, 44px);
}

.section-head p {
    font-size: 16px;
}

.premium-card,
.intro-card,
.process-card,
.roadmap-card {
    border-radius: 24px;
}

/* ANIMATIONS */

@keyframes drift {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(2rem, 1.5rem, 0) scale(1.08);
    }
}

@keyframes floatOrb {
    0% {
        transform: translateY(0) translateX(0) scale(1);
    }

    50% {
        transform: translateY(-20px) translateX(16px) scale(1.05);
    }

    100% {
        transform: translateY(14px) translateX(-12px) scale(0.98);
    }
}

@media (max-width: 760px) {
    .compact-section {
        padding: 50px 0;
    }

    .compact-main-card,
    .compact-info-card,
    .compact-service-card,
    .compact-process-card {
        padding: 20px;
    }

    .compact-head {
        margin-bottom: 24px;
    }
}

/* ACNOVA INVESTOR DEMO UPGRADES */
.compact-section {
    padding: 72px 0;
}

.compact-head {
    margin-bottom: 32px;
}

.compact-grid,
.compact-card-grid {
    gap: 18px;
}

.compact-main-card,
.compact-info-card,
.compact-service-card {
    padding: 24px;
}

.dashboard-preview-card .hero-logo-card {
    margin-bottom: 18px;
}

.mini-dashboard,
.impact-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.mini-dashboard div,
.impact-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 18px;
    color: #ffffff;
    backdrop-filter: blur(12px);
}

.mini-dashboard span,
.impact-card span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 900;
    color: rgba(221, 243, 251, 0.82);
    margin-bottom: 7px;
}

.mini-dashboard strong,
.impact-card strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.35;
}

#partner-dashboard .impact-dashboard-grid,
.flow-overview + .process-section + .section .impact-dashboard-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

#partner-dashboard .impact-card,
.flow-overview + .process-section + .section .impact-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    color: var(--text-dark);
    box-shadow: var(--shadow-card);
}

#partner-dashboard .impact-card span,
.flow-overview + .process-section + .section .impact-card span {
    color: var(--brand-blue);
}

#partner-dashboard .impact-card strong,
.flow-overview + .process-section + .section .impact-card strong {
    color: var(--text-dark);
}

.stage-timeline .flow-node {
    border-left: 6px solid rgba(32, 201, 151, 0.45);
}

.stage-timeline .flow-node:nth-child(even) {
    border-left-color: rgba(76, 193, 224, 0.55);
}

.ecosystem-module h3,
.premium-card h3,
.process-card h3,
.roadmap-card h3 {
    line-height: 1.25;
}

@media (max-width: 1050px) {
    #partner-dashboard .impact-dashboard-grid,
    .flow-overview + .process-section + .section .impact-dashboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .compact-section {
        padding: 56px 0;
    }

    .mini-dashboard,
    .impact-dashboard-grid,
    #partner-dashboard .impact-dashboard-grid,
    .flow-overview + .process-section + .section .impact-dashboard-grid {
        grid-template-columns: 1fr;
    }
}
