@font-face {
    font-family: 'GeorgianPrimary';
    src: url('../fonts/font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root:lang(ka) {
    --font-heading: 'GeorgianPrimary', 'Outfit', sans-serif;
    --font-body: 'GeorgianPrimary', 'Inter', sans-serif;
}

:root {
    --primary: #020617;
    --accent: #6366f1;
    --accent-glow: rgba(99, 102, 241, 0.4);
    --white: #ffffff;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --primary-light: #818cf8;
    --primary-glow: rgba(99, 102, 241, 0.5);
}

html,
body {
    background-color: var(--primary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.aurora-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: #020617;
}

.aurora-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
    mix-blend-mode: screen;
    animation: drift 30s infinite alternate ease-in-out;
}

.blob-1 {
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, #4f46e5 0%, transparent 70%);
    top: -15%;
    left: -10%;
}

.blob-2 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #9333ea 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-5%, 5%) scale(1.1);
    }
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    background: rgba(2, 6, 23, 0.6);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.brand span {
    color: var(--accent);
}

.btn-primary {
    background: var(--accent);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
}

.btn-secondary {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    padding: 1rem 2rem;
    border-radius: 99px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Section Styles */
.hero {
    padding: 10rem 1.5rem 6rem;
    text-align: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-gradient {
    background: linear-gradient(to right, #6366f1, #a855f7);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.main-cta {
    padding: 1.2rem 2.8rem;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px var(--accent-glow);
}

.video-cta i {
    font-size: 1.8rem;
    color: var(--accent);
}

/* Showcase Section */
.showcase-section {
    padding: 8rem 1.5rem;
    position: relative;
    z-index: 1;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-slider {
    position: relative;
    width: 100%;
    margin-top: 4rem;
    overflow: hidden;
}

.showcase-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-item {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.showcase-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-light);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    width: fit-content;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.showcase-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.slider-nav {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 4rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--primary-light);
    transform: scale(1.2);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Features Section Styles */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-wide {
    grid-column: span 2;
}

.glass-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.glass-card p {
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Demo Section Styles */
.demo-section {
    padding: 8rem 1.5rem;
}

.demo-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    padding: 4.5rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(168, 85, 247, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.demo-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.demo-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

.demo-feature-item i {
    color: #10b981;
    font-size: 1.5rem;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-input,
.form-select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    color: var(--white);
    outline: none;
    transition: 0.3s;
    font-size: 1rem;
    width: 100%;
}

.form-select {
    background-color: #0f172a;
}

.form-input:focus,
.form-select:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.flex-1 {
    flex: 1;
}

.submit-btn {
    padding: 1rem;
    justify-content: center;
    margin-top: 1rem;
    width: 100%;
}

/* Code-based Mockups Styles - Dark Theme Mode */
.mockup-wrapper {
    width: 100%;
    aspect-ratio: 16/10;
    background: #0a0b1e;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.mockup-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.6rem 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red {
    background: #ff5f56;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #27c93f;
}

.dot-close {
    background: #ff5f56;
}

.mockup-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.mockup-sidebar {
    width: 160px;
    background: rgba(255, 255, 255, 0.01);
    border-right: 2px solid rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex-shrink: 0;
}

.side-nav-item {
    font-size: 0.55rem;
    font-weight: 700;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
}

.side-nav-item.active {
    background: #4f46e5;
    color: #fff;
}

.mockup-main {
    flex: 1;
    padding: 1.2rem;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.05), transparent);
    overflow-y: auto;
}

.mockup-title-text {
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Dashboard Specifics */
.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.6rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-label-text {
    font-size: 0.45rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.1rem;
}

.stat-val-text {
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
}

.widget-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.widget-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.weather-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.weather-icon-css {
    font-size: 1.5rem;
}

.weather-temp-text {
    font-size: 1.2rem;
    font-weight: 800;
}

.curr-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
}

.curr-item-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 0.4rem;
    border-radius: 6px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.status-box-list {
    margin-top: 0.5rem;
}

.status-item-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.4rem;
}

.status-label-text {
    font-size: 0.5rem;
    font-weight: 700;
    width: 70px;
    color: var(--text-muted);
}

.status-bar-container {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    position: relative;
}

.status-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 3px;
}

/* Integrations Specifics */
.api-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.api-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: 0.3s;
}

.api-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
}

.api-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.api-info h4 {
    font-size: 0.65rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.api-info p {
    font-size: 0.45rem;
    color: var(--text-muted);
}

.api-badge-tag {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    font-size: 0.45rem;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    font-weight: 800;
}

.badge-connected {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-inactive {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.table-layout {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-collapse: collapse;
    font-size: 0.55rem;
    overflow: hidden;
}

.table-layout th {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem;
    text-align: left;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-layout td {
    padding: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    color: var(--text-muted);
}

/* Finance Breakdown */
.breakdown-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.breakdown-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.6rem;
}

.breakdown-bar-bg {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    margin: 0 0.8rem;
    position: relative;
}

.breakdown-val-text {
    font-size: 0.6rem;
    font-weight: 800;
    width: 50px;
    text-align: right;
    color: #fff;
}

/* Modal Design */
.res-modal-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.res-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.res-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.res-field label {
    display: block;
    font-size: 0.45rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    letter-spacing: 0.05em;
}

.res-field div {
    height: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding-left: 0.6rem;
    color: #fff;
    font-size: 0.55rem;
}

.res-btn-continue {
    background: var(--accent);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 800;
    margin-top: 1.5rem;
    border: none;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--accent-glow);
    transition: 0.3s;
}

.res-btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

/* Original Pricing & Floating Styles */
.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.switch-label {
    font-weight: 600;
    color: var(--text-muted);
    transition: 0.3s;
}

.switch-label.active {
    color: var(--white);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 3px;
    background-color: var(--accent);
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider:before {
    transform: translateX(28px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-btn {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25d366;
}

.phone-btn {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    color: var(--accent);
}

/* --- Navigation Styles --- */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--white);
}

.nav-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.lang-switcher {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    background: var(--glass-bg);
    padding: 0.4rem 1rem;
    border-radius: 99px;
    border: 1px solid var(--glass-border);
}

.lang-switcher a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.8rem;
    transition: 0.3s;
}

.lang-switcher a.active {
    color: var(--white);
}

.lang-switcher .divider {
    width: 1px;
    height: 12px;
    background: var(--glass-border);
}

/* --- Footer Styles --- */
.main-footer {
    padding: 6rem 1.5rem 3rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 6rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.footer-tagline {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links-grid {
    display: flex;
    gap: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-title {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-link:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* Navigation */
    .nav-toggle {
        display: block;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(2, 6, 23, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 4rem 2rem;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
    }

    .nav-wrapper.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .nav-cta {
        flex-direction: column;
        width: 100%;
        margin-top: 2rem;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    /* Hero Styles */
    .hero {
        padding: 4rem 1.5rem !important;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
    }

    .hero p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem !important;
        width: 100%;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-secondary {
        width: 100% !important;
        justify-content: center;
    }

    /* Showcase Section Optimization for Mobile */
    .showcase-slider {
        margin-top: 2rem;
    }

    .showcase-item {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        text-align: center;
        padding: 0 0.5rem;
    }

    .showcase-content {
        align-items: center;
    }

    .showcase-tag {
        margin-bottom: 0.5rem;
    }

    .showcase-title {
        font-size: 2rem !important;
        margin-bottom: 0.8rem !important;
    }

    .showcase-desc {
        font-size: 1rem !important;
        max-width: 100%;
    }

    .mockup-wrapper {
        margin-top: 1rem;
        min-height: auto !important;
        aspect-ratio: auto !important;
        height: 520px !important;
        max-width: 290px !important;
        margin-left: auto;
        margin-right: auto;
        border-radius: 35px !important;
        border: 4px solid rgba(255, 255, 255, 0.1) !important;
        overflow-y: auto !important;
    }

    .mockup-sidebar {
        display: none !important;
    }

    .mockup-header {
        padding: 1rem 1.5rem !important;
        justify-content: center !important;
    }

    .mockup-header .dot {
        display: none;
    }

    .mockup-main {
        padding: 1.2rem !important;
    }

    .mockup-title-text {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
        text-align: center;
        justify-content: center;
    }

    /* Global Mockup Layout Elements - Mobile Optimization */
    .stat-row {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.8rem !important;
        margin-bottom: 1.2rem !important;
    }

    .stat-card {
        padding: 0.8rem !important;
    }

    .stat-label-text {
        font-size: 0.65rem !important;
        margin-bottom: 0.3rem !important;
    }

    .stat-val-text {
        font-size: 1.1rem !important;
    }

    .widget-row {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }

    .weather-box {
        padding: 1rem !important;
    }

    .weather-icon-css {
        font-size: 1.8rem !important;
    }

    .weather-temp-text {
        font-size: 1.3rem !important;
    }

    .curr-item-box {
        padding: 0.7rem 0.5rem !important;
    }

    .curr-code {
        font-size: 0.75rem !important;
    }

    .curr-val {
        font-size: 0.9rem !important;
    }

    /* API and Integration Optimization */
    .api-grid-layout {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }

    .api-box {
        padding: 1rem !important;
    }

    .api-icon {
        width: 35px !important;
        height: 35px !important;
        font-size: 1.3rem !important;
    }

    .api-name {
        font-size: 0.8rem !important;
    }

    /* Table Optimization */
    .table-layout {
        width: 100% !important;
        display: block !important;
        font-size: 0.75rem !important;
    }

    .table-layout th,
    .table-layout td {
        padding: 0.5rem !important;
    }

    /* Finance & Bars */
    .status-item-row,
    .breakdown-item-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.4rem !important;
    }

    .status-label-text {
        width: auto !important;
        margin-bottom: 0.2rem !important;
    }

    .status-bar-container,
    .breakdown-bar-bg {
        width: 100% !important;
        margin: 0 !important;
    }

    /* Reservation Modal In Hero/Showcase */
    .res-modal-box {
        width: 95% !important;
        padding: 1.2rem !important;
    }

    .res-content {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }

    .res-field div {
        height: 35px !important;
        font-size: 0.7rem !important;
    }

    .features-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 1rem 0 2rem;
        gap: 1.2rem !important;
        -ms-overflow-style: none;
        scrollbar-width: none;
        margin: 0 -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .features-grid::-webkit-scrollbar {
        display: none;
    }

    .features-grid .glass-card {
        min-width: 280px;
        scroll-snap-align: center;
        grid-column: span 1 !important;
        padding: 1.5rem !important;
    }

    /* Pricing Section Swipe */
    .pricing-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 1rem 0 2.5rem;
        gap: 1.5rem !important;
        -ms-overflow-style: none;
        scrollbar-width: none;
        margin: 0 -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .pricing-grid::-webkit-scrollbar {
        display: none;
    }

    .pricing-card {
        min-width: 290px;
        scroll-snap-align: center;
        transform: none !important;
        margin-bottom: 0 !important;
    }

    .pricing-card.popular-target {
        transform: scale(1) !important;
        z-index: 1;
    }

    /* Order Form */
    #demo {
        padding: 4rem 1.5rem !important;
    }

    .demo-grid {
        grid-template-columns: 1fr !important;
        padding: 2.5rem 1.5rem !important;
        gap: 2.5rem !important;
    }

    .demo-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    .demo-form {
        width: 100%;
    }

    .form-row {
        flex-direction: column !important;
        gap: 1.2rem !important;
    }

    .submit-btn {
        padding: 1.2rem !important;
        max-width: 100%;
        border-radius: 15px !important;
    }

    /* Floating Actions */
    .floating-actions {
        bottom: 20px !important;
        right: 20px !important;
        gap: 0.8rem !important;
    }

    .floating-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.4rem !important;
    }

    /* Video Modal */
    .modal-close {
        top: 20px;
        right: 20px;
        font-size: 2rem;
        z-index: 10;
        background: rgba(0, 0, 0, 0.5);
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .video-modal {
        padding: 1rem;
    }
}

/* Video Modal Design */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.video-modal.active {
    display: flex;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.video-container {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}