﻿:root{
    --ink:#0f172a;
    --text:#334155;
    --muted:#64748b;
    --line:#dbeafe;
    --soft:#eff6ff;
    --paper:#ffffff;
    --blue:#2563eb;
    --blue-dark:#1e40af;
    --navy:#111827;
    --green:#16a34a;
    --amber:#f59e0b;
    --shadow:0 18px 45px rgba(15,23,42,0.08);
}

[data-theme="dark"] {
    --ink:#f8fafc;
    --text:#e2e8f0;
    --muted:#94a3b8;
    --line:#1e293b;
    --soft:#0f172a;
    --paper:#1e293b;
    --navy:#f1f5f9;
    --shadow:0 18px 45px rgba(0,0,0,0.5);
    --bg-color:#0f172a;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Inter",Arial,sans-serif;
    color:var(--ink);
    background:var(--bg-color, var(--paper));
    overflow-x:hidden;
}

a{
    color:inherit;
}

.section-label,
.industrial-label,
.industries-label,
.booking-label,
.contact-label{
    color:var(--blue);
    font-size:13px;
    font-weight:900;
    letter-spacing:1px;
    text-transform:uppercase;
    text-align:center;
    margin-bottom:16px;
}

.section-title,
.industrial-title,
.industries-title,
.booking-title,
.contact-title{
    max-width:920px;
    margin:0 auto 20px;
    color:var(--ink);
    text-align:center;
    font-size:clamp(34px,4vw,52px);
    line-height:1.12;
    font-weight:900;
    letter-spacing:0;
}

.section-description,
.industrial-description,
.industries-description,
.booking-description,
.contact-description{
    max-width:900px;
    margin:0 auto 64px;
    color:var(--muted);
    text-align:center;
    font-size:18px;
    line-height:1.75;
}

.hero{
    min-height:100vh;
    display:grid;
    grid-template-columns:minmax(0,1.02fr) minmax(420px,0.98fr);
    align-items:center;
    gap:48px;
    padding:130px 7% 78px;
    background:
        radial-gradient(circle at 10% 10%,rgba(37,99,235,0.15),transparent 30%),
        radial-gradient(circle at 86% 78%,rgba(22,163,74,0.12),transparent 28%),
        linear-gradient(135deg,var(--paper) 0%,var(--soft) 100%);
}

[data-theme="dark"] .hero {
    background:
        radial-gradient(circle at 10% 10%,rgba(37,99,235,0.15),transparent 30%),
        radial-gradient(circle at 86% 78%,rgba(22,163,74,0.12),transparent 28%),
        linear-gradient(135deg,var(--bg-color) 0%,var(--paper) 100%);
}

.hero-subtitle{
    display:inline-flex;
    max-width:100%;
    padding:9px 16px;
    color:var(--blue);
    background:var(--soft);
    border:1px solid var(--line);
    border-radius:999px;
    font-size:13px;
    font-weight:900;
    margin-bottom:26px;
}

.hero h1{
    max-width:780px;
    color:var(--ink);
    font-size:clamp(38px,5vw,58px);
    line-height:1.04;
    font-weight:900;
    letter-spacing:0;
    margin-bottom:28px;
}

.hero h1 span{
    color:var(--blue);
}

.hero p{
    max-width:690px;
    color:#475569;
    font-size:19px;
    line-height:1.8;
    margin-bottom:34px;
}

.hero-buttons,
.hero-stats{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
}

.hero-stats{
    gap:38px;
    margin-top:42px;
}

.stat h3{
    font-size:31px;
    line-height:1;
    color:var(--ink);
    margin-bottom:7px;
}

.stat p{
    font-size:14px;
    color:var(--muted);
    margin:0;
}

.hero-visual{
    position:relative;
    min-height:560px;
}

.dashboard{
    --hero-float-x:0;
    position:absolute;
    inset:90px 0 auto auto;
    width:min(100%,540px);
    padding:24px;
    background:var(--paper);
    border:1px solid var(--line);
    border-radius:24px;
    box-shadow:var(--shadow);
    animation:floatDashboard 6s ease-in-out infinite;
}

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

.dashboard-title{
    font-size:18px;
    font-weight:900;
}

.live-pill{
    padding:6px 10px;
    color:#166534;
    background:#dcfce7;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
}

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

.widget{
    min-height:124px;
    padding:18px;
    border:1px solid var(--line);
    border-radius:18px;
    background:linear-gradient(145deg,var(--soft),var(--paper));
}

.widget h4,
.floating-card h4{
    font-size:14px;
    margin-bottom:14px;
}

.widget-bar,
.progress{
    height:10px;
    overflow:hidden;
    background:#dbeafe;
    border-radius:999px;
}

.widget-fill,
.progress span{
    display:block;
    height:100%;
    width:72%;
    border-radius:999px;
    background:linear-gradient(90deg,var(--blue),#60a5fa);
    transform-origin:left center;
    animation:barPulse 3.6s ease-in-out infinite;
}

.mini-chart{
    display:flex;
    align-items:flex-end;
    gap:8px;
    height:48px;
    margin-top:18px;
}

.mini-chart span{
    flex:1;
    min-width:10px;
    border-radius:8px 8px 0 0;
    background:linear-gradient(180deg,#60a5fa,var(--blue));
}

.floating-card{
    position:absolute;
    width:220px;
    padding:20px;
    background:var(--paper);
    border:1px solid var(--line);
    border-radius:18px;
    box-shadow:var(--shadow);
    animation:floatCard 5.4s ease-in-out infinite;
}

.card-1{
    top:20px;
    left:0;
    animation-delay:-0.8s;
}

.card-2{
    right:18px;
    bottom:18px;
    animation-delay:-1.6s;
}

.card-3{
    left:34px;
    bottom:78px;
    animation-delay:-2.4s;
}

@keyframes floatDashboard{
    0%,100%{
        transform:translate(var(--hero-float-x),0);
    }
    50%{
        transform:translate(var(--hero-float-x),-18px);
    }
}

@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-14px);
    }
}

@keyframes barPulse{
    0%,100%{
        filter:saturate(1);
        opacity:0.9;
    }
    50%{
        filter:saturate(1.25);
        opacity:1;
    }
}

.products-section,
.booking-section,
.contact-section{
    padding:112px 7%;
    background:var(--bg-color, var(--paper));
}

.products-grid,
.industrial-grid,
.industry-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:26px;
}

.product-card,
.industrial-card,
.industry-card,
.kpi-card{
    position:relative;
    overflow:hidden;
    background:var(--paper);
    border:1px solid var(--line);
    border-radius:22px;
    padding:32px;
    box-shadow:var(--shadow);
    transition:transform 0.28s ease,box-shadow 0.28s ease,border-color 0.28s ease;
}

.product-card:hover,
.industrial-card:hover,
.industry-card:hover{
    transform:translateY(-8px);
    border-color:#bfdbfe;
    box-shadow:0 22px 48px rgba(15,23,42,0.09);
}

.product-card:before,
.industrial-card:before,
.industry-card:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,var(--blue),#60a5fa);
}

.product-icon,
.industrial-icon,
.industry-icon{
    width:66px;
    height:66px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--blue);
    background:var(--soft);
    border-radius:18px;
    font-size:26px;
    font-weight:900;
    margin-bottom:22px;
}

.product-card h3,
.industrial-card h3,
.industry-card h3{
    color:var(--ink);
    font-size:25px;
    margin-bottom:14px;
}

.product-card p,
.industrial-card p,
.industry-card p{
    color:var(--muted);
    font-size:15px;
    line-height:1.75;
    margin-bottom:20px;
}

.product-features,
.industry-features,
.booking-info ul,
.tech-list{
    list-style:none;
}

.product-features li,
.industry-features li,
.tech-list li,
.booking-info li{
    padding:7px 0;
    color:var(--text);
    font-size:14px;
}

.product-features li:before,
.industry-features li:before,
.tech-list li:before,
.booking-info li:before{
    content:"\2713";
    display:inline-block;
    color:var(--green);
    font-weight:900;
    margin-right:9px;
}

.learn-btn{
    display:inline-flex;
    align-items:center;
    min-height:42px;
    padding:10px 16px;
    color:#fff;
    background:var(--blue);
    border-radius:10px;
    text-decoration:none;
    font-size:14px;
    font-weight:800;
}

.learn-btn:hover{
    background:var(--blue-dark);
}

.enterprise-banner,
.ai-enterprise,
.global-enterprise{
    margin-top:72px;
    padding:50px;
    color:#fff;
    text-align:center;
    border-radius:26px;
    background:linear-gradient(135deg,#0f172a,#1e40af);
}

.enterprise-banner h2,
.ai-enterprise h2,
.global-enterprise h2{
    font-size:clamp(30px,4vw,44px);
    line-height:1.15;
    margin-bottom:18px;
}

.enterprise-banner p,
.ai-enterprise p,
.global-enterprise p{
    max-width:940px;
    margin:0 auto;
    color:#dbeafe;
    font-size:17px;
    line-height:1.75;
}

.industrial-section{
    padding:112px 7%;
    background:linear-gradient(135deg,#f8fbff,#eef4ff);
}

.industrial-container,
.industries-container,
.booking-container,
.contact-container{
    max-width:1500px;
    margin:auto;
}

.tech-tag{
    display:inline-flex;
    padding:9px 12px;
    color:var(--blue);
    background:var(--soft);
    border-radius:999px;
    font-size:12px;
    font-weight:900;
}

.ai-grid,
.global-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
    margin-top:38px;
}

.ai-box,
.global-box{
    padding:22px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:16px;
}

.ai-box h4,
.global-box h4{
    color:#fff;
    font-size:22px;
    margin-bottom:8px;
}

.ai-box span,
.global-box span{
    color:#cbd5e1;
    font-size:14px;
}

.industries-section{
    padding:112px 7%;
    background:var(--bg-color, var(--paper));
}

.booking-section{
    background:linear-gradient(135deg,var(--soft),var(--paper));
}

.booking-grid,
.contact-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(360px,520px);
    gap:42px;
}

.booking-form,
.contact-form{
    padding:40px;
    background:var(--paper);
    border:1px solid var(--line);
    border-radius:24px;
    box-shadow:var(--shadow);
}

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

.input-group.full,
.contact-group.full{
    grid-column:1 / -1;
}

label{
    display:block;
    margin-bottom:9px;
    color:var(--text);
    font-size:14px;
    font-weight:800;
}

input,
select,
textarea{
    width:100%;
    min-height:48px;
    padding:13px 14px;
    color:var(--ink);
    background:var(--soft);
    border:1px solid var(--line);
    border-radius:10px;
    font:inherit;
    outline:none;
}

input:focus,
select:focus,
textarea:focus{
    border-color:var(--blue);
    box-shadow:0 0 0 4px rgba(37,99,235,0.1);
    background:var(--paper);
}

textarea{
    min-height:145px;
    resize:vertical;
}

.book-btn,
.send-btn{
    width:100%;
    margin-top:22px;
    padding:16px;
    color:#fff;
    background:var(--blue);
    border:0;
    border-radius:12px;
    font-size:15px;
    font-weight:900;
    cursor:pointer;
}

.book-btn:hover,
.send-btn:hover{
    background:var(--blue-dark);
}

.booking-info,
.contact-info{
    padding:40px;
    color:#fff;
    background:var(--ink);
    border-radius:24px;
}

.booking-info h3,
.contact-info h3{
    font-size:30px;
    margin-bottom:26px;
}

.booking-info li{
    color:#dbeafe;
}

.calendar-actions{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:30px;
}

.calendar-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:13px 16px;
    color:#fff;
    text-align:center;
    text-decoration:none;
    border-radius:10px;
    font-weight:900;
}

.google{
    background:var(--blue);
}

.outlook{
    background:#111827;
    border:1px solid rgba(255,255,255,0.16);
}

.timezone-box{
    margin-top:24px;
    padding:18px;
    color:#bfdbfe;
    background:rgba(37,99,235,0.12);
    border:1px solid rgba(147,197,253,0.24);
    border-radius:14px;
    line-height:1.6;
    font-weight:700;
}

.kpi-section{
    padding:90px 7%;
    background:linear-gradient(135deg,var(--soft),var(--paper));
}

.kpi-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:24px;
    max-width:1300px;
    margin:auto;
}

.kpi-card{
    text-align:center;
    border-radius:20px;
}

.kpi-number{
    color:var(--blue);
    font-size:48px;
    font-weight:900;
    margin-bottom:10px;
}

.kpi-card p{
    color:var(--text);
    font-weight:700;
}

.info-box{
    margin-bottom:24px;
}

.info-box h4{
    color:#93c5fd;
    margin-bottom:8px;
}

.info-box p{
    color:#cbd5e1;
    line-height:1.7;
}

.footer{
    padding:66px 7% 34px;
    color:#fff;
    background:var(--ink);
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:38px;
}

.footer h3{
    font-size:21px;
    margin-bottom:18px;
}

.footer p,
.footer li{
    color:#cbd5e1;
    line-height:1.8;
}

.footer ul{
    list-style:none;
}

.footer a{
    color:#cbd5e1;
    text-decoration:none;
}

.footer a:hover{
    color:#fff;
}

.footer-bottom{
    margin-top:42px;
    padding-top:26px;
    border-top:1px solid rgba(255,255,255,0.1);
    color:#94a3b8;
    text-align:center;
}

@media(max-width:1180px){
    .navbar{
        align-items:flex-start;
        flex-wrap:wrap;
    }

    .nav-links{
        order:3;
        width:100%;
        justify-content:flex-start;
        flex-wrap:wrap;
    }

    .hero{
        grid-template-columns:1fr;
        padding-top:160px;
    }

    .hero-visual{
        min-height:500px;
    }

    .dashboard{
        left:50%;
        right:auto;
        --hero-float-x:-50%;
    }
}

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

    .ai-grid,
    .global-grid,
    .kpi-grid,
    .footer-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:700px){
    .navbar{
        position:static;
        padding:18px 5%;
    }

    .nav-actions{
        width:100%;
    }

    .nav-actions .btn{
        flex:1;
    }

    .hero,
    .products-section,
    .industrial-section,
    .industries-section,
    .booking-section,
    .contact-section,
    .kpi-section,
    .footer{
        padding-left:5%;
        padding-right:5%;
    }

    .hero{
        padding-top:62px;
    }

    .hero-visual{
        min-height:auto;
    }

    .dashboard,
    .floating-card{
        position:relative;
        inset:auto;
        left:auto;
        right:auto;
        bottom:auto;
        width:100%;
        transform:none;
        margin-top:18px;
    }

    .dashboard{
        --hero-float-x:0;
    }

    .dashboard-grid,
    .form-grid,
    .contact-form-grid,
    .ai-grid,
    .global-grid,
    .kpi-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .enterprise-banner,
    .ai-enterprise,
    .global-enterprise,
    .booking-form,
    .booking-info,
    .contact-form,
    .contact-info{
        padding:28px;
    }
}
        /* Right Column Form with Glassmorphism */
        .form-side {
            background: var(--card-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: 24px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1) inset, var(--glow);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 40px;
            position: relative;
            overflow: hidden;
            transform: translateZ(0);
            backface-visibility: hidden;
        }

        .form-header {
            margin-bottom: 30px;
        }

        .form-header h2 {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            color: var(--text-main);
            margin-bottom: 8px;
            font-weight: 700;
        }

        .form-header p {
            font-size: 0.9rem;
            color: var(--muted);
        }

        .form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .form-label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 8px;
        }

        .form-control, .form-select {
            width: 100%;
            padding: 12px 16px;
            font-size: 0.95rem;
            border: 1px solid var(--input-border);
            border-radius: 10px;
            background-color: var(--input-bg);
            color: var(--text-main) !important;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            outline: none;
            border-color: var(--blue);
            background-color: var(--card-hover-bg);
            color: var(--text-main) !important;
            box-shadow: var(--glow);
        }

        .form-control::placeholder {
            color: var(--muted) !important;
            opacity: 0.7;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c6b73' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 16px;
            padding-right: 40px;
        }

        /* Calendly-style scheduling widget styling */
        .scheduler-container {
            background: var(--input-bg);
            border: 1px solid var(--input-border);
            border-radius: 12px;
            padding: 18px;
            margin-bottom: 20px;
        }
        
        .scheduler-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }
        
        .scheduler-title {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-main);
        }
        
        .custom-date-helper-btn {
            font-size: 0.78rem;
            color: var(--blue);
            background: none;
            border: none;
            cursor: pointer;
            font-weight: 600;
            text-decoration: underline;
        }
        
        .custom-date-helper-btn:hover {
            color: var(--blue-dark);
        }
        
        .date-scroller {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            padding: 5px 0 10px;
            scrollbar-width: thin;
            scrollbar-color: var(--card-border) transparent;
        }

        .date-scroller::-webkit-scrollbar {
            height: 4px;
        }
        .date-scroller::-webkit-scrollbar-thumb {
            background-color: var(--card-border);
            border-radius: 10px;
        }
        
        .date-card {
            flex: 0 0 65px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 10px 0;
            background: var(--card-bg);
            border: 1px solid var(--input-border);
            border-radius: 10px;
            cursor: pointer;
            user-select: none;
            transition: all 0.25s ease;
        }
        
        .date-card:hover {
            border-color: var(--blue);
            background: var(--card-hover-bg);
        }
        
        .date-card.active {
            background: var(--blue);
            border-color: var(--blue);
            color: #fff;
            box-shadow: var(--glow);
        }
        
        .date-card-day {
            font-size: 0.7rem;
            text-transform: uppercase;
            font-weight: 700;
            opacity: 0.8;
            margin-bottom: 3px;
        }
        
        .date-card.active .date-card-day {
            opacity: 1;
        }
        
        .date-card-num {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 700;
        }
        
        .time-slots-header {
            font-size: 0.8rem;
            font-weight: 700;
            margin: 15px 0 8px;
            color: var(--text-main);
        }
        
        .time-slots-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
        }
        
        .time-slots-grid.visible {
            max-height: 165px;
            overflow-y: auto;
            padding-right: 5px;
        }
        
        .time-slots-grid::-webkit-scrollbar {
            width: 6px;
        }
        
        .time-slots-grid::-webkit-scrollbar-thumb {
            background-color: var(--input-border);
            border-radius: 4px;
        }
        
        .time-slot {
            background: var(--card-bg);
            border: 1px solid var(--input-border);
            padding: 10px;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .time-slot:hover {
            border-color: var(--blue);
            background: var(--card-hover-bg);
        }
        
        .time-slot.active {
            background: var(--blue);
            border-color: var(--blue);
            color: #fff;
            box-shadow: var(--glow);
        }

        .time-slot.disabled {
            background: rgba(0, 0, 0, 0.05);
            color: var(--muted);
            border-color: var(--input-border);
            opacity: 0.45;
            cursor: not-allowed;
            pointer-events: none;
            box-shadow: none !important;
            transform: none !important;
        }

        [data-theme="dark"] .time-slot.disabled {
            background: rgba(255, 255, 255, 0.03);
        }

        .submit-btn {
            width: 100%;
            background-image: linear-gradient(to right, var(--blue) 0%, var(--blue-dark) 51%, var(--blue) 100%);
            background-size: 200% auto;
            color: #fff;
            border: none;
            padding: 14px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: 0.5s;
            margin-top: 10px;
            box-shadow: 0 4px 12px rgba(50, 140, 193, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .submit-btn:hover {
            background-position: right center;
            box-shadow: 0 0 20px rgba(50, 140, 193, 0.5);
            color: #fff;
            text-decoration: none;
        }

        .submit-btn:active {
            transform: scale(0.98);
        }

        .submit-btn:disabled {
            background-color: var(--line);
            color: var(--muted);
            cursor: not-allowed;
            box-shadow: none;
            transform: none;
        }

        /* Animated Spinner */
        .spinner {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 0.8s linear infinite;
            display: none;
        }
        
        .submit-btn.loading .spinner {
            display: inline-block;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Glassmorphic Loader Overlay */
        .form-loader-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--card-bg);
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 15px;
            z-index: 10;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .form-loader-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .loader-spinner {
            width: 48px;
            height: 48px;
            border: 4px solid rgba(50, 140, 193, 0.15);
            border-radius: 50%;
            border-top-color: var(--blue);
            animation: spin 0.8s linear infinite;
        }
        
        .loader-text {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-main);
            animation: pulse 1.5s infinite ease-in-out;
        }

        /* Success screen card styling */
        .success-screen {
            display: none;
            text-align: center;
            padding: 20px 0;
            animation: fadeIn 0.5s ease-in-out forwards;
        }
        
        .checkmark-circle {
            width: 68px;
            height: 68px;
            border-radius: 50%;
            background: rgba(46, 204, 113, 0.1);
            color: var(--green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin: 0 auto 20px;
            border: 2px solid var(--green);
            box-shadow: 0 0 15px rgba(46, 204, 113, 0.25);
        }
        
        .success-title {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 8px;
        }
        
        .success-desc {
            font-size: 0.9rem;
            color: var(--muted);
            margin-bottom: 24px;
        }
        
        .success-details-card {
            background: var(--input-bg);
            border: 1px solid var(--input-border);
            border-radius: 12px;
            padding: 18px;
            margin-bottom: 24px;
            text-align: left;
        }
        
        .success-detail-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--card-border);
            font-size: 0.9rem;
        }
        
        .success-detail-row:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .success-detail-row:first-child {
            padding-top: 0;
        }
        
        .detail-label {
            color: var(--muted);
            font-weight: 500;
        }
        
        .detail-val {
            color: var(--text-main);
            font-weight: 600;
        }


