:root {
    --bg-base: #0b1220;
    --bg-surface: #0d1628;
    --bg-surface-light: #111e33;
    --bg-card: #0f1a2e;

    --theme-dark: #0b1220;
    --theme-darker: #091019;
    --theme-darkest: #070d15;

    --primary: #4f8ef7;
    --primary-hover: #7aaeff;
    --primary-glow: rgba(79, 142, 247, 0.30);
    --primary-subtle: rgba(79, 142, 247, 0.07);

    --secondary: #60c8f5;
    --purple: #8b9cf4;
    --green: #4ade9a;
    --pink: #a78bfa;

    --text-primary: #e8edf5;
    --text-secondary: #8a9bbf;
    --text-muted: #4a5a7a;

    --border-glass: rgba(79, 142, 247, 0.08);
    --border-subtle: rgba(255, 255, 255, 0.04);
    --bg-glass: rgba(11, 18, 32, 0.75);
    --bg-glass-heavy: rgba(9, 14, 25, 0.94);

    --panel-bg: rgba(11, 18, 32, 0.92);

    --font-display: 'Liberation Serif', Georgia, serif;
    --font-body: 'Liberation Serif', Georgia, serif;

    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);

    --container-max: 1280px;
    --container-padding: 2rem;
    --border-radius: 14px;
    --border-radius-sm: 8px;
}


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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--theme-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background-color 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

body[data-current-theme="darker"] {
    background-color: var(--theme-darker);
}

body[data-current-theme="darkest"] {
    background-color: var(--theme-darkest);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-inline: auto;
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none !important;
    }
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #60c8f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dot {
    color: var(--primary);
}


.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(79, 142, 247, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 20%, rgba(96, 200, 245, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(139, 156, 244, 0.04) 0%, transparent 50%);
    animation: bgPulse 25s ease-in-out infinite alternate;
}

@keyframes bgPulse {
    0% {
        transform: scale(1) rotate(0deg);
    }

    100% {
        transform: scale(1.08) rotate(1deg);
    }
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(79, 142, 247, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 142, 247, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}


.section-header {
    max-width: 680px;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    border: 1px solid rgba(79, 142, 247, 0.25);
    background: rgba(79, 142, 247, 0.06);
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 20px 0 var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px 0 rgba(79, 142, 247, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.1rem;
    font-size: 0.83rem;
}

.btn-full {
    width: 100%;
}


.glass-panel {
    background: rgba(11, 18, 32, 0.85);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.6);
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--transition-normal);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: var(--bg-glass-heavy);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border-glass);
    padding: 0.875rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.logo span {
    color: var(--primary);
}

.logo-icon {
    color: var(--primary);
}

.nav-links {
    display: none;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width var(--transition-normal);
}

.nav-links a:hover {
    color: var(--text-primary);
}

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

@media (min-width: 900px) {
    .nav-links {
        display: flex;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

@media (min-width: 900px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(8, 10, 15, 0.97);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.mobile-menu nav a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.mobile-menu nav a:hover {
    color: var(--primary);
}


.hero {
    position: relative;
    padding-top: 9rem;
    padding-bottom: 3rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1.15fr 1fr;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-subtle);
    border: 1px solid rgba(79, 142, 247, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.75rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

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

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.75rem;
}

.hero-text .subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: left;
}

.hstat-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat p {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-glass);
}


.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.erp-diagram {
    position: relative;
    width: 340px;
    height: 340px;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .erp-diagram {
        width: 420px;
        height: 420px;
    }
}

.orbit-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: orbitSpin 60s linear infinite;
}

@keyframes orbitSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.erp-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
}

.erp-hub span {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0.9;
}

.erp-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: rgba(13, 16, 23, 0.9);
    border: 1px solid rgba(79, 142, 247, 0.2);
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    color: var(--text-secondary);
    font-size: 0.65rem;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.erp-node:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.1);
}

.node-1 {
    top: 0%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.node-2 {
    top: 20%;
    right: -2%;
    transform: translateY(-50%);
}

.node-3 {
    top: 62%;
    right: -2%;
    transform: translateY(-50%);
}

.node-4 {
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
}

.node-5 {
    top: 62%;
    left: -2%;
    transform: translateY(-50%);
}

.node-6 {
    top: 20%;
    left: -2%;
    transform: translateY(-50%);
}


.trust-marquee-wrapper {
    margin-top: 2rem;
}

.trust-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.marquee-container {
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
    display: flex;
    gap: 3rem;
    padding-right: 3rem;
    animation: marquee 30s linear infinite;
    flex-shrink: 0;
    align-items: center;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.marquee-item:hover {
    color: var(--text-secondary);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}


.services-section {
    padding: 8rem 0;
}

.services-featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .services-featured {
        grid-template-columns: 1fr 1fr;
    }
}

.service-featured-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-featured-card:hover {
    border-color: rgba(79, 142, 247, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.6), 0 0 30px -10px var(--primary-glow);
}

.service-featured-card:hover::before {
    opacity: 1;
}

.sfcard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.75rem;
}

.sfcard-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-normal);
}

.sfcard-icon.orange {
    background: rgba(79, 142, 247, 0.1);
    color: #4f8ef7;
    border: 1px solid rgba(79, 142, 247, 0.15);
}

.sfcard-icon.blue {
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.15);
}

.service-featured-card:hover .sfcard-icon {
    transform: scale(1.08);
}

.sfcard-tag {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
}

.service-featured-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.service-list li::before {
    content: '→';
    color: var(--primary);
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 1px;
}

.sfcard-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.02em;
    transition: gap var(--transition-fast);
}

.sfcard-link:hover {
    gap: 0.7rem;
}

.services-grid.small-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid.small-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.5);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-normal);
}

.card-icon.purple {
    background: rgba(167, 139, 250, 0.1);
    color: var(--purple);
    border: 1px solid rgba(167, 139, 250, 0.15);
}

.card-icon.green {
    background: rgba(52, 211, 153, 0.1);
    color: var(--green);
    border: 1px solid rgba(52, 211, 153, 0.15);
}

.card-icon.pink {
    background: rgba(244, 114, 182, 0.1);
    color: var(--pink);
    border: 1px solid rgba(244, 114, 182, 0.15);
}

.service-card:hover .card-icon {
    transform: scale(1.08);
}

.service-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.82rem;
    transition: all var(--transition-fast);
}

.card-link:hover {
    color: var(--primary);
    gap: 0.7rem;
}


.industries-section {
    padding: 8rem 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.industry-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    padding: 2rem 1.75rem;
    transition: all var(--transition-normal);
    cursor: default;
}

.industry-card:hover {
    border-color: rgba(79, 142, 247, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.5);
}

.ind-icon {
    color: var(--primary);
    margin-bottom: 1.25rem;
    transition: transform var(--transition-normal);
}

.industry-card:hover .ind-icon {
    transform: scale(1.1);
}

.industry-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.industry-card p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.6;
}


.why-us {
    padding: 8rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    padding: 2.25rem;
    position: relative;
    transition: all var(--transition-normal);
    overflow: hidden;
}

.why-card:hover {
    border-color: rgba(79, 142, 247, 0.2);
    transform: translateY(-3px);
}

.why-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(79, 142, 247, 0.05);
    line-height: 1;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    letter-spacing: -0.05em;
    user-select: none;
    transition: color var(--transition-normal);
}

.why-card:hover .why-number {
    color: rgba(79, 142, 247, 0.12);
}

.why-icon {
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.why-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
}


.stats-section {
    padding: 5rem 0;
}

.stats-inner {
    display: flex;
    justify-content: center;
}

.stats-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 2.5rem;
    gap: 2rem;
}

@media (min-width: 640px) {
    .stats-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }
}

.stat-item-full {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #60c8f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider-v {
    width: 1px;
    background: var(--border-glass);
    align-self: stretch;
    display: none;
}

@media (min-width: 640px) {
    .stat-divider-v {
        display: block;
    }
}


.cta-section {
    padding: 8rem 0;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .cta-inner {
        grid-template-columns: 1fr 1fr;
    }
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.cta-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}


.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    border: 1px solid transparent;
    background: transparent;
    text-decoration: none;
    color: inherit;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact-info-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse at 0% 50%, rgba(79, 142, 247, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(79, 142, 247, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    transform: translateX(4px);
}

.contact-info-item:hover::before {
    opacity: 1;
}

.ci-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10, 18, 32, 0.9);
    border: 1px solid rgba(79, 142, 247, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-item:hover .ci-icon-wrap {
    color: var(--primary);
    border-color: rgba(79, 142, 247, 0.4);
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(79, 142, 247, 0.2);
}

.ci-label {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
    line-height: 1;
}

.ci-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
    transition: color 0.2s ease;
}

.contact-info-item:hover .ci-value {
    color: #fff;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cta-feature svg {
    color: var(--green);
    flex-shrink: 0;
}


.contact-form-wrapper {
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
}

/* =========================================================================
   FLOATING LABELS — Material Design Outlined
   =========================================================================
   Behaviour:
   · Resting : label sits centred inside the input (acts as placeholder)
   · Focused / filled : label rises to top-0, shrinks, turns blue, and a
     small background patch hides the border behind the text — exactly like
     the reference screenshots.

   Required HTML per field:
     <div class="fl-field">
       <input class="fl-input" placeholder=" " ...>   ← space placeholder!
       <label class="fl-label">Label text</label>
     </div>

   For textarea add .fl-textarea-field on the wrapper and .fl-textarea on
   the element. For the custom select use .fl-select-field and the helper
   classes described below.
   ========================================================================= */


.fl-field {
    position: relative;
    display: block;
}


.fl-field .fl-input {
    display: block;
    width: 100%;
    background: transparent;
    border: 1px solid rgba(79, 142, 247, 0.25);
    border-radius: var(--border-radius-sm);
    padding: 0.9rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.5;
    transition: border-color 0.22s ease;
    appearance: none;
    -webkit-appearance: none;
    caret-color: var(--primary);
}

.fl-field .fl-input::placeholder {
    color: transparent;
}


.fl-field .fl-input:focus {
    outline: none;
    border-color: var(--primary);
}


.fl-field .fl-textarea {
    resize: vertical;
    min-height: 118px;
}


.fl-field .fl-label {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);

    background: var(--panel-bg);
    padding: 0 0.3rem;
    border-radius: 2px;

    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.01em;
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
    z-index: 2;

    transition:
        top 0.2s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1),
        font-size 0.2s cubic-bezier(0.25, 0.8, 0.25, 1),
        color 0.2s ease;
}


.fl-field .fl-input:focus~.fl-label,
.fl-field .fl-input:not(:placeholder-shown)~.fl-label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--primary);
}


.fl-field .fl-input:not(:placeholder-shown):not(:focus)~.fl-label {
    color: var(--text-secondary);
}

.fl-textarea-field .fl-label {
    top: 1.05rem;
    transform: none;
}

.fl-textarea-field .fl-input:focus~.fl-label,
.fl-textarea-field .fl-input:not(:placeholder-shown)~.fl-label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary);
}

.fl-textarea-field .fl-input:not(:placeholder-shown):not(:focus)~.fl-label {
    color: var(--text-secondary);
}


.fl-select-field {
    position: relative;
}

flex layout and cursor on top */ .fl-select-field .fl-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.fl-select-trigger .fl-select-chevron {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.2s ease;
}


.fl-select-trigger.open {
    border-color: var(--primary);
}

.fl-select-trigger.open .fl-select-chevron {
    transform: rotate(180deg);
}


.fl-field .fl-label-active {
    top: 0 !important;
    transform: translateY(-50%) !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    color: var(--text-secondary) !important;
    background: var(--panel-bg);
    padding: 0 0.3rem;
}


.fl-select-field .fl-select-trigger.open~.fl-label-active {
    color: var(--primary) !important;
}

.native-select-hidden {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}


.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #0d1628;
    border: 1px solid rgba(79, 142, 247, 0.2);
    border-radius: var(--border-radius-sm);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(79, 142, 247, 0.05);
    overflow: hidden;
    z-index: 200;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    backdrop-filter: blur(20px);
}

.custom-select-dropdown.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.custom-select-option {
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    border-left: 2px solid transparent;
}

.custom-select-option:hover {
    background: rgba(79, 142, 247, 0.08);
    color: var(--text-primary);
    border-left-color: rgba(79, 142, 247, 0.4);
}

.custom-select-option.selected {
    background: rgba(79, 142, 247, 0.12);
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 600;
}


.site-footer {
    border-top: 1px solid var(--border-glass);
    padding: 5rem 0 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.9rem;
    max-width: 320px;
    line-height: 1.7;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--primary);
    margin-top: 1rem;
}

.footer-email:hover {
    text-decoration: underline;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-legal {
    grid-column: 1 / -1;
    border-top: 1px solid var(--border-glass);
    margin-top: 2rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.83rem;
}

@media (min-width: 768px) {
    .footer-legal {
        flex-direction: row;
        justify-content: space-between;
    }
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a:hover {
    color: var(--text-primary);
}


.chatbot-floating {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(79, 142, 247, 0.5);
    z-index: 1000;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.chatbot-floating:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 14px 32px rgba(79, 142, 247, 0.6);
}


.scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.85s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 1rem;
}
.lang-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.lang-btn:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.5);
}
.lang-btn.active {
    background: rgba(251, 146, 60, 0.1);
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.mobile-lang-switcher {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
