@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Brand Colors (Matching Logo Signature Palette) */
    --brand-navy: #0b3c91;
    --brand-navy-dark: #071d49;
    --brand-cyan: #0084ff;
    --brand-cyan-glow: rgba(0, 132, 255, 0.15);
    
    /* Dark Theme Colors */
    --bg-dark-primary: #071d49;
    --bg-dark-secondary: #0b2545;
    --bg-dark-tertiary: #10315e;
    --border-dark: rgba(255, 255, 255, 0.12);
    
    /* Light Theme Colors (Content Sections & Nav) */
    --bg-light-primary: #ffffff;
    --bg-light-secondary: #f4f7fc;
    --bg-light-tertiary: #ebf1fa;
    --border-light: #e2e8f0;
    
    /* Accent Colors */
    --primary: #0b3c91;
    --primary-hover: #072a6b;
    --accent-cyan: #0084ff;
    --accent-cyan-glow: rgba(0, 132, 255, 0.15);
    --green: #10b981;
    --green-hover: #059669;
    --purple: #8b5cf6;
    --purple-hover: #7c3aed;
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-gray-light: #94a3b8;
    --text-gray-medium: #64748b;
    --text-dark: #0b2545;
    --text-dark-secondary: #334155;
    
    /* Layout Variables */
    --max-width: 1440px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 50px rgba(30, 80, 255, 0.1);
    
    /* Animation Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Global Resets & Setup --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light-primary);
    color: var(--text-dark-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Utility Classes --- */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-header p {
    color: var(--text-gray-medium);
    font-size: 1.1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #0b3c91 0%, #0084ff 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 132, 255, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #072a6b 0%, #0066cc 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 132, 255, 0.4);
}

.btn-outline {
    background-color: #ffffff;
    color: #0b3c91;
    border: 1.5px solid rgba(11, 60, 145, 0.25);
}

.btn-outline:hover {
    border-color: #0084ff;
    color: #0084ff;
    background-color: #f4f7fc;
    transform: translateY(-2px);
}

.btn-green {
    background-color: var(--green);
    color: var(--text-white);
    width: 100%;
}

.btn-green:hover {
    background-color: var(--green-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-purple {
    background-color: var(--purple);
    color: var(--text-white);
    width: 100%;
}

.btn-purple:hover {
    background-color: var(--purple-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #1e50ff 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Header & Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 16px 0;
    background-color: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(11, 60, 145, 0.08);
    box-shadow: 0 4px 20px rgba(11, 60, 145, 0.04);
}

.header.sticky {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(11, 60, 145, 0.12);
    box-shadow: 0 6px 25px rgba(11, 60, 145, 0.08);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.03);
    background: transparent;
    box-shadow: none;
}

.logo img {
    height: 66px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.header.sticky .logo {
    padding: 0;
}

.header.sticky .logo img {
    height: 54px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #0b2545;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: #0084ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0b3c91, #0084ff);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu styling */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item.dropdown svg {
    width: 12px;
    height: 12px;
    transition: var(--transition);
}

.nav-item.dropdown:hover svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--bg-dark-secondary);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    padding: 12px 0;
    width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
}

.dropdown-item:hover {
    color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.05);
}

.header-cta .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2.5px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    background-color: #f4f7fc;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 132, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(11, 60, 145, 0.06) 0%, transparent 40%),
        linear-gradient(rgba(11, 60, 145, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 60, 145, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    padding: 160px 0 90px;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    color: #0b2545;
}

.hero-tag {
    color: #0084ff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
}

.hero h1 {
    color: #0b2545;
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 span.highlight {
    background: linear-gradient(135deg, #0b3c91 0%, #0084ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: #475569;
    font-size: 1.15rem;
    margin-bottom: 30px;
    max-width: 580px;
}

.hero-bullets {
    margin-bottom: 35px;
    display: grid;
    gap: 16px;
}

.hero-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #1e293b;
    font-weight: 500;
}

.hero-bullet svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    fill: #0084ff;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

/* Stats Strip */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background-color: rgba(0, 132, 255, 0.1);
    border: 1px solid rgba(0, 132, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 20px;
    height: 20px;
    color: #0084ff;
}

.stat-text h4 {
    color: #0b2545;
    font-size: 1.25rem;
    line-height: 1.2;
}

.stat-text p {
    color: #64748b;
    font-size: 0.75rem;
}

/* --- Hero Mockup Dashboard --- */
.hero-mockup {
    position: relative;
    width: 100%;
}

.mockup-wrapper {
    background: #090e24;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.1);
    overflow: hidden;
    display: flex;
    height: 480px;
    font-size: 11px;
}

/* Sidebar Mockup */
.mockup-sidebar {
    width: 180px;
    background: #04081c;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    padding: 12px 10px;
    gap: 4px;
    justify-content: space-between;
    flex-shrink: 0;
}

.mockup-sidebar-logo-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding-left: 6px;
}

.mockup-logo-icon {
    width: 24px;
    height: 24px;
    background-color: #0056b3;
    color: #ffffff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 11px;
}

.mockup-logo-text {
    font-weight: 700;
    font-size: 11px;
    color: #ffffff;
    font-family: var(--font-heading);
}

.mockup-sidebar-section-title {
    font-size: 7.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #556080;
    font-weight: 700;
    margin-bottom: 6px;
    padding-left: 6px;
}

.mockup-sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex-grow: 1;
    overflow-y: auto;
}

.mockup-sidebar-menu::-webkit-scrollbar {
    display: none;
}

.mockup-side-item {
    width: 100%;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    gap: 8px;
    color: #8c9bb4;
    cursor: pointer;
    transition: var(--transition);
    font-size: 9px;
    font-weight: 500;
    justify-content: flex-start;
}

.mockup-side-item:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.04);
}

.mockup-side-item.active {
    color: #0056b3;
    background-color: #ffffff;
    font-weight: 600;
}

.mockup-side-item svg {
    width: 12px;
    height: 12px;
    color: inherit;
    flex-shrink: 0;
}

.mockup-badge {
    background-color: #ef4444;
    color: #ffffff;
    font-size: 7.5px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 8px;
    margin-left: auto;
}

.mockup-sidebar-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 8px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mockup-btn-logout {
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    background-color: transparent;
    padding: 5px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 8.5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.mockup-btn-logout:hover {
    background-color: rgba(239, 68, 68, 0.08);
    border-color: #ef4444;
}

.mockup-btn-logout svg {
    width: 11px;
    height: 11px;
}

.mockup-sidebar-info {
    font-size: 7px;
    color: #475569;
    text-align: center;
    line-height: 1.2;
}

/* Main Content Mockup */
.mockup-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #080c20;
    overflow-y: auto;
}

.mockup-header {
    height: 50px;
    background: #060918;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.mockup-header-title {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
}

.mockup-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray-light);
}

.mockup-user {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mockup-user-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 9px;
}

/* Dashboard Content Grid */
.mockup-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Mini Cards Grid */
.mockup-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.mockup-card {
    background: #0d122d;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 6px;
    padding: 10px;
}

.mockup-card-label {
    color: var(--text-gray-light);
    font-size: 9px;
    margin-bottom: 4px;
}

.mockup-card-value {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.mockup-card-sub {
    font-size: 8px;
    color: var(--green);
    margin-top: 2px;
}

.mockup-card-sub.absent {
    color: #ef4444;
}

/* Central charts row */
.mockup-charts-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mockup-chart-card {
    background: #0d122d;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 6px;
    padding: 12px;
}

.mockup-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-white);
    font-weight: 600;
}

.mockup-chart-visual {
    height: 70px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding-top: 10px;
}

/* Mock attendance circle */
.mock-circle-container {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    width: 100%;
}

.mock-donut {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) 0% 77%, #ef4444 77% 93%, #eab308 93% 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-donut::before {
    content: '77%';
    position: absolute;
    width: 38px;
    height: 38px;
    background: #0d122d;
    border-radius: 50%;
    color: var(--text-white);
    font-weight: 700;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-legend {
    display: grid;
    gap: 4px;
    font-size: 8px;
    color: var(--text-gray-light);
}

.mock-legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mock-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.mock-dot.present { background-color: var(--primary); }
.mock-dot.absent { background-color: #ef4444; }
.mock-dot.leave { background-color: #eab308; }

/* Mock line chart */
.mock-line-chart {
    flex: 1;
    height: 55px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.mock-line-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Bottom elements grid */
.mockup-bottom-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 12px;
}

.mockup-table-card {
    background: #0d122d;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 6px;
    padding: 12px;
}

.mockup-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}

.mockup-table th {
    text-align: left;
    color: var(--text-gray-light);
    font-weight: 500;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mockup-table td {
    padding: 6px 0;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.mockup-status-badge {
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 7px;
    font-weight: 600;
    display: inline-block;
}

.mockup-status-badge.low {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.mockup-status-badge.ok {
    background: rgba(16, 185, 129, 0.15);
    color: var(--green);
}

.mockup-logs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.mockup-log-item {
    display: flex;
    gap: 8px;
    align-items: center;
}

.mockup-log-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary);
}

.mockup-log-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.8);
}

.mockup-log-time {
    color: var(--text-gray-light);
    font-size: 8px;
}

/* --- Features Section & Demo Form Grid --- */
.features-demo-section {
    background-color: var(--bg-light-secondary);
}

.features-demo-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: flex-start;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background-color: var(--bg-light-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(30, 80, 255, 0.2);
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition);
}

/* Color codes for feature icons matching the image cards */
.feature-card:nth-child(1) .feature-icon-box { background-color: rgba(30, 80, 255, 0.08); color: var(--primary); }
.feature-card:nth-child(2) .feature-icon-box { background-color: rgba(16, 185, 129, 0.08); color: var(--green); }
.feature-card:nth-child(3) .feature-icon-box { background-color: rgba(139, 92, 246, 0.08); color: var(--purple); }
.feature-card:nth-child(4) .feature-icon-box { background-color: rgba(245, 158, 11, 0.08); color: #f59e0b; }
.feature-card:nth-child(5) .feature-icon-box { background-color: rgba(6, 182, 212, 0.08); color: #06b6d4; }
.feature-card:nth-child(6) .feature-icon-box { background-color: rgba(236, 72, 153, 0.08); color: #ec4899; }
.feature-card:nth-child(7) .feature-icon-box { background-color: rgba(239, 68, 68, 0.08); color: #ef4444; }
.feature-card:nth-child(8) .feature-icon-box { background-color: rgba(139, 92, 246, 0.08); color: var(--purple); }
.feature-card:nth-child(9) .feature-icon-box { background-color: rgba(30, 80, 255, 0.08); color: var(--primary); }

.feature-icon-box svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-gray-medium);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* Demo Booking Form Card */
.demo-form-card {
    background-color: var(--bg-light-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.demo-form-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.demo-form-card h3 span {
    color: var(--primary);
}

.demo-form-card p {
    color: var(--text-gray-medium);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    position: relative;
    display: flex;
    align-items: center;
}

.form-group svg {
    position: absolute;
    left: 14px;
    color: var(--text-gray-medium);
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.form-input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background-color: var(--bg-light-secondary);
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--primary);
    background-color: var(--bg-light-primary);
    box-shadow: 0 0 0 3px rgba(30, 80, 255, 0.1);
}

textarea.form-input {
    padding-left: 14px;
    min-height: 90px;
    resize: vertical;
}

.form-security-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-gray-medium);
    margin-top: 10px;
    justify-content: center;
}

.form-security-note svg {
    width: 14px;
    height: 14px;
    color: var(--green);
}

/* AJAX Message styles */
.form-message {
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    display: none;
    margin-bottom: 10px;
    text-align: center;
}

.form-message.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--green);
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: block;
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
    display: block;
}

/* --- Pricing Plans --- */
.pricing-section {
    background-color: var(--bg-light-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background-color: var(--bg-light-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Highlighted Popular Plan */
.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
    background-image: linear-gradient(180deg, rgba(30, 80, 255, 0.01) 0%, transparent 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
    color: var(--text-white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(30, 80, 255, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-name {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
}

.pricing-card:nth-child(1) .plan-name { color: var(--green); }
.pricing-card:nth-child(2) .plan-name { color: var(--primary); }
.pricing-card:nth-child(3) .plan-name { color: var(--purple); }

.plan-price {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-gray-medium);
}

.plan-price-subtitle {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 4px;
}

.pricing-features {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-dark-secondary);
}

.pricing-feature svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--green);
}

/* Pricing Footer stats strip */
.pricing-footer-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid var(--border-light);
    padding-top: 40px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.benefit-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--bg-light-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.benefit-text h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
}

.benefit-text p {
    font-size: 0.75rem;
    color: var(--text-gray-medium);
}

/* --- Why Choose Us --- */
.why-choose-section {
    background-color: var(--bg-light-secondary);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.why-choose-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.why-choose-bullets {
    display: grid;
    gap: 16px;
    margin-bottom: 40px;
}

.why-choose-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-dark-secondary);
    font-weight: 500;
}

.why-choose-bullet svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* Callout Panel inside Why Choose Us */
.why-choose-callout {
    background-color: var(--bg-light-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: var(--shadow-sm);
}

.callout-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-gray-medium);
}

.callout-info p {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
}

.why-choose-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-image-bg {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background-color: rgba(30, 80, 255, 0.05);
    z-index: 1;
}

.why-choose-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    border: 4px solid var(--bg-light-primary);
    box-shadow: var(--shadow-lg);
}

/* --- How It Works --- */
.how-it-works-section {
    background-color: var(--bg-light-primary);
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.how-step {
    text-align: center;
    position: relative;
}

.step-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--bg-light-secondary);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    transition: var(--transition);
}

.how-step:hover .step-icon-wrapper {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(30, 80, 255, 0.2);
}

.how-step:hover .step-icon-wrapper svg {
    color: var(--text-white);
}

.step-icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary);
    color: var(--text-white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-light-primary);
}

.how-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.how-step p {
    font-size: 0.85rem;
    color: var(--text-gray-medium);
    padding: 0 10px;
}

/* Dotted connection line between steps */
.how-step::after {
    content: '→';
    font-size: 1.5rem;
    color: var(--text-gray-light);
    position: absolute;
    top: 24px;
    right: -25px;
    z-index: 10;
}

.how-step:last-child::after {
    display: none;
}

/* --- Testimonials --- */
.testimonials-section {
    background-color: var(--bg-light-secondary);
    overflow: hidden;
}

.testimonial-slider-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    padding: 10px;
}

.testimonial-card {
    background-color: var(--bg-light-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: #f59e0b;
}

.testimonial-content {
    font-size: 1.25rem;
    color: var(--text-dark-secondary);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.5;
}

.testimonial-client {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.client-logo-box {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
}

.client-logo-box span {
    color: var(--primary);
}

.client-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Testimonial Nav Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-light-primary);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 10;
}

.slider-arrow:hover {
    background-color: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(30, 80, 255, 0.2);
}

.slider-arrow-prev { left: 0; }
.slider-arrow-next { right: 0; }

.slider-arrow svg {
    width: 18px;
    height: 18px;
}

/* Dots indicator */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--text-gray-light);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: var(--primary);
}

/* --- Footer --- */
.footer {
    background-color: #061329;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.7fr 0.8fr 1.1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.footer-logo img {
    height: 62px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-2px) scale(1.02);
    background: #ffffff;
    box-shadow: 0 6px 25px rgba(0, 132, 255, 0.4);
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #94a3b8;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: var(--transition);
}

.social-link:hover {
    background-color: #0084ff;
    border-color: #0084ff;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.05rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    font-weight: 700;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2.5px;
    background: linear-gradient(90deg, #0084ff, #38bdf8);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    color: #94a3b8;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #0084ff;
    padding-left: 4px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 0.88rem;
    color: #cbd5e1;
}

.contact-info-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-info-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: #0084ff;
    margin-top: 3px;
}

/* Newsletter Input Form */
.newsletter-form {
    display: flex;
    position: relative;
    margin-top: 15px;
}

.newsletter-input {
    width: 100%;
    padding: 12px 50px 12px 16px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-size: 0.85rem;
    transition: var(--transition);
}

.newsletter-input:focus {
    border-color: #0084ff;
    background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #0b3c91 0%, #0084ff 100%);
    color: #ffffff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #072a6b 0%, #0066cc 100%);
}

.newsletter-btn svg {
    width: 16px;
    height: 16px;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #64748b;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: #0084ff;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1100px) {
    .features-demo-grid {
        grid-template-columns: 1fr;
    }
    .demo-form-card {
        position: static;
        max-width: 600px;
        margin: 40px auto 0;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero {
        padding-top: 140px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 50px;
    }
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .why-choose-image {
        order: -1;
    }
    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .how-step::after {
        display: none;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-col:first-child {
        grid-column: span 2;
    }
    .footer-col:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .pricing-footer-benefits {
        margin-top: 15px;
        padding-top: 25px;
    }
    
    .header {
        padding: 10px 0;
        background-color: rgba(6, 9, 25, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border-dark);
    }
    
    .logo img, .header.sticky .logo img {
        height: 60px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(10, 15, 41, 0.96);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 24px;
        gap: 24px;
        transition: var(--transition);
        border-top: 1px solid var(--border-dark);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-mockup {
        display: flex;
        justify-content: center;
        overflow: hidden;
        width: 100%;
    }
    
    .mockup-wrapper {
        transform: scale(0.9);
        transform-origin: top center;
        margin-bottom: -50px;
        flex-shrink: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 100% !important;
        background-color: transparent !important;
        border: none !important;
        margin-top: 8px;
        box-shadow: none !important;
        display: none;
        padding: 0 0 0 12px;
    }
    
    .nav-item.dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-item {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .hero h1 {
        font-size: 2.6rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }
    .hero-ctas .btn {
        width: 100%;
    }
    .hero-stats {
        grid-template-columns: 1fr;
    }
    .mockup-wrapper {
        transform: scale(0.68);
        transform-origin: top center;
        margin-bottom: -150px;
    }
    .pricing-footer-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .why-choose-callout {
        flex-direction: column;
        text-align: center;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-col:first-child, .footer-col:last-child {
        grid-column: span 1;
    }
    .testimonial-slider-container {
        padding: 0 20px;
    }
    .slider-arrow {
        display: none;
    }
}

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-45px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(45px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Immediate reveal on hero load */
.hero-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    animation: heroReveal 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    animation: heroReveal 1s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.2s;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translate(0);
    }
}

/* --- Redesigned Why Choose Us Section --- */
.benefits-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-card-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: var(--bg-light-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.benefit-card-row:hover {
    transform: translateX(8px);
    border-color: rgba(30, 80, 255, 0.2);
    box-shadow: 0 10px 25px rgba(30, 80, 255, 0.05);
}

.benefit-card-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(30, 80, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    transition: var(--transition);
}

.benefit-card-row:hover .benefit-card-icon-box {
    background-color: var(--primary);
    color: var(--text-white);
    transform: scale(1.05);
}

.benefit-card-icon-box svg {
    width: 22px;
    height: 22px;
}

.benefit-card-text h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-weight: 700;
}

.benefit-card-text p {
    font-size: 0.9rem;
    color: var(--text-dark-secondary);
    line-height: 1.5;
}

/* Floating Widgets on Right Side */
.floating-widgets-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-image-circle-bg {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 80, 255, 0.08) 0%, rgba(6, 182, 212, 0.03) 70%);
    z-index: 1;
    animation: rotateSlow 25s linear infinite;
}

.why-choose-image-inner {
    position: relative;
    z-index: 2;
}

.why-choose-img-new {
    width: 270px;
    height: 270px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--bg-light-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 3;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 4;
    transition: var(--transition);
}

.floating-badge:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.floating-badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.floating-badge-icon.green-icon {
    background-color: var(--green);
}

.floating-badge-icon.cyan-icon {
    background-color: var(--accent-cyan);
}

.floating-badge-text {
    display: flex;
    flex-direction: column;
}

.floating-badge-text span {
    font-size: 10px;
    color: var(--text-gray-medium);
    text-transform: uppercase;
    font-weight: 600;
}

.floating-badge-text h5 {
    font-size: 12px;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0;
}

/* Positions & Floating Animations */
.badge-1 {
    top: 30px;
    right: 20px;
    animation: float1 4s ease-in-out infinite;
}

.badge-2 {
    bottom: 50px;
    left: 20px;
    animation: float2 5s ease-in-out infinite;
}

.badge-3 {
    top: 180px;
    left: -10px;
    animation: float3 4.5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes float3 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Redesigned Section */
@media (max-width: 991px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 480px) {
    .floating-widgets-wrapper {
        height: 340px;
    }
    .why-choose-img-new {
        width: 200px;
        height: 200px;
    }
    .why-choose-image-circle-bg {
        width: 260px;
        height: 260px;
    }
    .floating-badge {
        padding: 8px 12px;
    }
    .floating-badge-text h5 {
        font-size: 11px;
    }
    .badge-1 {
        top: 20px;
        right: 0;
    }
    .badge-2 {
        bottom: 20px;
        left: 0;
    }
    .badge-3 {
        top: 130px;
        left: -10px;
    }
}

@media (max-width: 400px) {
    .mockup-wrapper {
        transform: scale(0.52);
        transform-origin: top center;
        margin-bottom: -230px;
    }
}

/* --- Custom Modal Popup Styles --- */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 9, 25, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal-box {
    background-color: var(--bg-light-primary);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    padding: 35px 25px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
}

.custom-modal-overlay.active .custom-modal-box {
    transform: translateY(0);
}

.custom-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-gray-medium);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.custom-modal-close:hover {
    color: var(--text-dark);
}

.custom-modal-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-modal-icon-wrapper.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--green);
}

.custom-modal-icon-wrapper.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.custom-modal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.custom-modal-content p {
    font-size: 0.95rem;
    color: var(--text-dark-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.custom-modal-content .btn {
    width: 100%;
    padding: 12px;
}
