/* ============================================
   UTD Software Solutions - Landing Page Styles v4
   Uses unified design tokens
   ============================================ */
@import url('design-tokens.css');

/* Landing-specific aliases mapped to unified tokens */
:root {
    --land-primary:       var(--primary);
    --land-primary-dark:  var(--primary-dark);
    --land-secondary:     #1a1a80;
    --land-accent:        #06b6d4;
    --land-dark:          var(--dark);
    --land-dark-2:        var(--dark-2);
    --land-gray:          var(--secondary);
    --land-light:         var(--light);
    --land-white:         var(--white);
    --land-gradient:      linear-gradient(135deg, var(--primary) 0%, #1a1a80 50%, #06b6d4 100%);
    --land-gradient-dark: var(--gradient-dark);
    --land-gradient-card: linear-gradient(135deg, rgba(15,12,96,0.05), rgba(26,26,128,0.05));
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    overflow-x: hidden;
    max-width: 100%;
}

body.landing-page {
    font-family: 'Cairo', 'Inter', -apple-system, sans-serif;
    color: var(--land-white);
    background: #0a1929;
    overflow-x: hidden;
    direction: ltr;
}

/* ===== NAVBAR ===== */
.land-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: transparent;
}
.land-nav.scrolled {
    background: rgba(10, 8, 40, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(15, 12, 96, 0.5);
    padding: 10px 0;
}
.land-nav .container {
    max-width: 1280px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.land-logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 24px; font-weight: 800; color: var(--land-white);
    text-decoration: none;
    transition: color 0.3s;
}
.land-nav.scrolled .land-logo { color: var(--land-white); }
.land-logo i { font-size: 28px; }
.land-logo span { background: var(--land-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.land-nav.scrolled .land-logo span { -webkit-text-fill-color: transparent; background: var(--land-gradient); -webkit-background-clip: text; }

.land-nav-links {
    display: flex; align-items: center; gap: 32px; list-style: none;
}
.land-nav-links a {
    color: rgba(255,255,255,0.85); text-decoration: none; font-size: 15px; font-weight: 500;
    transition: color 0.3s; position: relative;
}
.land-nav.scrolled .land-nav-links a { color: rgba(255,255,255,0.85); }
.land-nav-links a:hover { color: var(--land-white); }
.land-nav.scrolled .land-nav-links a:hover { color: #22d3ee; }

.land-nav-right { display: flex; align-items: center; gap: 12px; }
.btn-land-login {
    padding: 10px 28px; border-radius: 50px; font-size: 15px; font-weight: 600;
    text-decoration: none; transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.4); color: var(--land-white);
    background: transparent;
}
.btn-land-login:hover { background: rgba(255,255,255,0.15); border-color: var(--land-white); }
.land-nav.scrolled .btn-land-login { border-color: rgba(255,255,255,0.4); color: var(--land-white); }
.land-nav.scrolled .btn-land-login:hover { background: rgba(255,255,255,0.15); border-color: var(--land-white); }

.btn-land-cta {
    padding: 10px 28px; border-radius: 50px; font-size: 15px; font-weight: 600;
    text-decoration: none; transition: all 0.3s;
    background: linear-gradient(135deg, var(--land-primary), #1a1a80); color: #fff;
}
.land-nav.scrolled .btn-land-cta { background: linear-gradient(135deg, var(--land-primary), #1a1a80); color: #fff; }
.btn-land-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(15,12,96,0.6); }

.mobile-menu-btn {
    display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer;
}
.land-nav.scrolled .mobile-menu-btn { color: #fff; }

/* ===== HERO ===== */
.land-hero {
    min-height: 100vh; display: flex; align-items: center; position: relative;
    background: var(--land-gradient-dark);
    overflow: hidden;
}
.land-hero::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(15,12,96,0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(26,26,128,0.12) 0%, transparent 50%),
                radial-gradient(circle at 90% 20%, rgba(6,182,212,0.1) 0%, transparent 50%);
    animation: heroGlow 15s ease-in-out infinite;
}
@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, 10px) rotate(2deg); }
    66% { transform: translate(20px, -10px) rotate(-2deg); }
}

/* Grid dots bg */
.land-hero::after {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(15, 12, 96, 0.3) 1px, transparent 1px);
    background-size: 40px 40px;
}

.land-hero .container {
    max-width: 1280px; margin: 0 auto; padding: 120px 24px 80px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    position: relative; z-index: 2;
}

.hero-content h1 {
    font-size: 56px; font-weight: 800; line-height: 1.15;
    color: var(--land-white); margin-bottom: 20px;
}
.hero-content h1 .gradient-text {
    background: linear-gradient(135deg, #1a1a80, #2a2a90, #22d3ee);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-content p {
    font-size: 19px; line-height: 1.7; color: rgba(255,255,255,0.7);
    margin-bottom: 36px; max-width: 520px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-hero-primary {
    padding: 16px 40px; border-radius: 50px; font-size: 17px; font-weight: 700;
    background: var(--land-gradient); color: #fff; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.3s; border: none; cursor: pointer;
    box-shadow: 0 8px 30px rgba(15,12,96,0.4);
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(15,12,96,0.5); }
.btn-hero-secondary {
    padding: 16px 40px; border-radius: 50px; font-size: 17px; font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3); color: #fff; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s;
}
.btn-hero-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.hero-visual {
    display: flex; justify-content: center; align-items: center;
    position: relative;
}
.hero-dashboard-mockup {
    width: 100%; max-width: 560px; border-radius: 16px;
    background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 24px; position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    animation: floatUp 6s ease-in-out infinite;
}
@keyframes floatUp {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.mockup-header {
    display: flex; gap: 8px; margin-bottom: 20px;
}
.mockup-dot { width: 12px; height: 12px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #eab308; }
.mockup-dot:nth-child(3) { background: #22c55e; }

.mockup-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px;
}
.mockup-stat {
    background: rgba(255,255,255,0.08); border-radius: 12px; padding: 16px;
    text-align: center;
}
.mockup-stat .stat-num { font-size: 22px; font-weight: 800; color: #22d3ee; }
.mockup-stat .stat-lbl { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; }

.mockup-chart {
    background: rgba(255,255,255,0.05); border-radius: 12px; padding: 20px;
    height: 120px; display: flex; align-items: flex-end; gap: 8px;
}
.chart-bar {
    flex: 1; border-radius: 6px 6px 0 0;
    animation: chartGrow 2s ease-out forwards;
    opacity: 0;
}
@keyframes chartGrow {
    from { height: 0; opacity: 0; }
    to { opacity: 1; }
}
.chart-bar:nth-child(1) { height: 40%; background: linear-gradient(to top, #0f0c60, #1a1a80); animation-delay: 0.1s; }
.chart-bar:nth-child(2) { height: 65%; background: linear-gradient(to top, #1a1a80, #2a2a90); animation-delay: 0.2s; }
.chart-bar:nth-child(3) { height: 45%; background: linear-gradient(to top, #0f0c60, #1a1a80); animation-delay: 0.3s; }
.chart-bar:nth-child(4) { height: 80%; background: linear-gradient(to top, #06b6d4, #22d3ee); animation-delay: 0.4s; }
.chart-bar:nth-child(5) { height: 55%; background: linear-gradient(to top, #1a1a80, #2a2a90); animation-delay: 0.5s; }
.chart-bar:nth-child(6) { height: 70%; background: linear-gradient(to top, #0f0c60, #1a1a80); animation-delay: 0.6s; }
.chart-bar:nth-child(7) { height: 90%; background: linear-gradient(to top, #06b6d4, #22d3ee); animation-delay: 0.7s; }

/* Floating elements */
.float-badge {
    position: absolute; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 12px 18px;
    display: flex; align-items: center; gap: 10px; color: #fff; font-size: 13px;
    animation: floatBadge 4s ease-in-out infinite;
}
.float-badge i { font-size: 20px; }
.float-badge.b1 { top: 10%; right: -40px; animation-delay: 0s; }
.float-badge.b2 { bottom: 20%; left: -50px; animation-delay: 1.5s; }
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== SECTION COMMON ===== */
.land-section {
    padding: 100px 0; position: relative;
}
.land-section .container {
    max-width: 1280px; margin: 0 auto; padding: 0 24px;
}
.section-header {
    text-align: center; margin-bottom: 60px;
}
.section-badge {
    display: inline-block; padding: 6px 20px; border-radius: 50px;
    background: linear-gradient(135deg, rgba(15,12,96,0.1), rgba(26,26,128,0.1));
    color: var(--land-primary); font-size: 14px; font-weight: 600;
    margin-bottom: 16px;
}
.section-header h2 {
    font-size: 42px; font-weight: 800; color: var(--land-white);
    margin-bottom: 16px; line-height: 1.2;
}
.section-header p {
    font-size: 18px; color: rgba(255,255,255,0.7); max-width: 640px; margin: 0 auto; line-height: 1.7;
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
    background: rgba(10, 8, 40, 0.6); border: 1px solid rgba(15, 12, 96, 0.4);
    border-radius: 20px; padding: 36px; transition: all 0.4s;
    position: relative; overflow: hidden;
    backdrop-filter: blur(10px);
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--land-gradient); opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(15, 12, 96, 0.6); border-color: rgba(15, 12, 96, 0.8); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin-bottom: 20px;
}
.feature-icon.blue { background: rgba(15,12,96,0.1); color: #0f0c60; }
.feature-icon.purple { background: rgba(26,26,128,0.1); color: #1a1a80; }
.feature-icon.cyan { background: rgba(6,182,212,0.1); color: #06b6d4; }
.feature-icon.green { background: rgba(34,197,94,0.1); color: #22c55e; }
.feature-icon.orange { background: rgba(249,115,22,0.1); color: #f97316; }
.feature-icon.red { background: rgba(239,68,68,0.1); color: #ef4444; }
.feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--land-white); }
.feature-card p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ===== SERVICES ===== */
.land-section.services-section { background: transparent; }
.services-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.service-card {
    background: rgba(10, 8, 40, 0.6); border-radius: 20px; padding: 36px;
    display: flex; gap: 20px; align-items: flex-start;
    border: 1px solid rgba(15, 12, 96, 0.4); transition: all 0.3s;
    backdrop-filter: blur(10px);
}
.service-card:hover { box-shadow: 0 10px 40px rgba(15, 12, 96, 0.6); transform: translateY(-4px); border-color: rgba(15, 12, 96, 0.8); }
.service-icon {
    width: 56px; height: 56px; min-width: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; font-size: 24px;
    background: var(--land-gradient); color: #fff;
}
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--land-white); }
.service-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ===== PRICING ===== */
.pricing-table-wrap {
    background: rgba(10, 8, 40, 0.6); border-radius: 20px; overflow: hidden;
    box-shadow: 0 10px 40px rgba(15, 12, 96, 0.4); border: 1px solid rgba(15, 12, 96, 0.4);
    backdrop-filter: blur(10px);
}
.pricing-table {
    width: 100%; border-collapse: collapse;
}
.pricing-table thead { background: var(--land-gradient-dark); }
.pricing-table th {
    padding: 18px 24px; color: #fff; font-weight: 600; font-size: 15px; text-align: left;
}
.pricing-table td {
    padding: 16px 24px; border-bottom: 1px solid rgba(15, 12, 96, 0.3); font-size: 15px; color: rgba(255,255,255,0.8);
}
.pricing-table tbody tr:hover { background: rgba(15,12,96,0.3); }
.pricing-table .price-val { font-weight: 700; color: #22d3ee; font-size: 17px; }
.pricing-table .price-unit { color: rgba(255,255,255,0.6); font-size: 13px; }

/* ===== HOW IT WORKS ===== */
.land-section.how-section { background: transparent; }
.steps-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
    position: relative;
}
.steps-grid::before {
    content: ''; position: absolute; top: 48px; left: 15%; right: 15%; height: 3px;
    background: linear-gradient(90deg, var(--land-primary), var(--land-secondary), var(--land-accent));
    border-radius: 4px; z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--land-gradient); color: #fff;
    font-size: 24px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; box-shadow: 0 8px 25px rgba(15,12,96,0.3);
    position: relative;
}
.step-num::after {
    content: ''; position: absolute; inset: -6px; border-radius: 50%;
    border: 3px solid rgba(15,12,96,0.2);
}
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--land-white); }
.step-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ===== STATS ===== */
.land-section.stats-section {
    background: var(--land-gradient-dark); color: #fff;
    position: relative; overflow: hidden;
}
.land-section.stats-section::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(15, 12, 96, 0.3) 1px, transparent 1px);
    background-size: 30px 30px;
}
.stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
    position: relative; z-index: 1;
}
.stat-item { text-align: center; }
.stat-item .stat-number {
    font-size: 48px; font-weight: 800;
    background: linear-gradient(135deg, #1a1a80, #22d3ee);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-item .stat-label { font-size: 16px; color: rgba(255,255,255,0.6); margin-top: 8px; }

/* ===== CTA ===== */
.land-section.cta-section {
    background: var(--land-gradient); text-align: center; padding: 80px 0;
}
.cta-section h2 { font-size: 38px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.btn-cta-white {
    padding: 16px 48px; border-radius: 50px; font-size: 18px; font-weight: 700;
    background: #fff; color: var(--land-primary); text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.3s; border: none; cursor: pointer;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

/* ===== FOOTER ===== */
/* Footer styles are defined in includes/footer.html */

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .land-hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 42px; }
    .hero-content p { margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }
    .hero-visual { margin-top: 40px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .land-nav-links { display: none; }
    .land-nav-right { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-content h1 { font-size: 32px; }
    .hero-content p { font-size: 16px; }
    .btn-hero-primary, .btn-hero-secondary { padding: 14px 28px; font-size: 15px; }
    .section-header h2 { font-size: 30px; }
    .features-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-item .stat-number { font-size: 36px; }
    .mockup-stats { grid-template-columns: repeat(2, 1fr); }
    .float-badge { display: none; }
    .cta-section h2 { font-size: 28px; }
}

/* Mobile menu overlay */
.mobile-nav-overlay {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
}
.mobile-nav-overlay.open { display: block; }
.mobile-nav-panel {
    position: fixed; top: 0; right: -300px; width: 285px; height: 100%;
    background: #0d1117; z-index: 1000; transition: right 0.3s ease;
    display: flex; flex-direction: column; overflow-y: auto;
    border-left: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav-panel.open { right: 0; }
.mobile-nav-close {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7); font-size: 16px; cursor: pointer;
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* ── Mobile nav new structure ── */
.mnav-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 18px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mnav-logo { height: 28px; }
.mnav-body { padding: 8px 18px 20px; display: flex; flex-direction: column; }
.mnav-section-label {
    font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
    color: rgba(255,255,255,0.35); text-transform: uppercase;
    padding: 14px 0 6px; display: flex; align-items: center; gap: 6px;
    cursor: pointer; user-select: none; justify-content: space-between;
    transition: color 0.2s;
}
.mnav-section-label:hover { color: rgba(255,255,255,0.6); }
.mnav-section-label > span { display: flex; align-items: center; gap: 6px; }
.mnav-section-arrow {
    font-size: 10px; color: rgba(255,255,255,0.3);
    transition: transform 0.3s ease; flex-shrink: 0;
}
.mnav-section-label.open .mnav-section-arrow { transform: rotate(180deg); }
.mnav-section-body {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
}
.mnav-section-body.open { max-height: 500px; }
.mnav-link {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
    text-decoration: none; transition: all 0.2s; color: rgba(255,255,255,0.82);
    font-size: 13.5px; font-weight: 600;
}
.mnav-link:last-child { border-bottom: none; }
.mnav-link:hover { color: #fff; }
.mnav-icon {
    width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: #fff;
}
.mnav-icon-img {
    width: 32px; height: 32px; border-radius: 8px; object-fit: cover; flex-shrink: 0;
}
.mnav-name { flex: 1; }
.mnav-arrow { font-size: 10px; color: rgba(255,255,255,0.2); }
.mnav-link:hover .mnav-arrow { color: rgba(255,255,255,0.55); }
.mnav-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 8px 0; }
.mnav-footer-link {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 0; color: rgba(255,255,255,0.55); text-decoration: none;
    font-size: 13.5px; border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s;
}
.mnav-footer-link:hover { color: #fff; }
.mnav-btns { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.mnav-btn-login {
    display: block; text-align: center; padding: 11px;
    color: #10b981; font-weight: 700; font-size: 14px;
    background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3);
    border-radius: 10px; text-decoration: none; transition: background 0.2s;
}
.mnav-btn-login:hover { background: rgba(16,185,129,0.18); }
.mnav-btn-cta {
    display: block; text-align: center; padding: 11px;
    color: #fff; font-weight: 700; font-size: 14px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 10px; text-decoration: none;
}

/* ===== NEW: HERO CARDS ===== */
.hero-badge {
    display:inline-block;background:rgba(255,255,255,0.1);border:1px solid rgba(255,255,255,0.2);
    color:#fff;padding:8px 20px;border-radius:50px;font-size:14px;font-weight:600;margin-bottom:20px;
    backdrop-filter:blur(10px);
}
.hero-trust {
    display:flex;gap:24px;margin-top:24px;flex-wrap:wrap;
}
.hero-trust span {
    font-size:13px;color:rgba(255,255,255,0.7);display:flex;align-items:center;gap:6px;
}
.hero-cards {
    position:relative;width:100%;max-width:540px;
}
.hero-service-card {
    display:flex;align-items:center;gap:14px;
    background:rgba(255,255,255,0.08);backdrop-filter:blur(16px);
    border:1px solid rgba(255,255,255,0.12);border-radius:14px;
    padding:14px 18px;margin-bottom:12px;transition:all 0.3s;
}
.hero-service-card:hover { transform:translateX(-6px);background:rgba(255,255,255,0.12); }
.hsc-icon {
    width:44px;height:44px;border-radius:10px;display:flex;align-items:center;justify-content:center;
    font-size:20px;color:#fff;flex-shrink:0;
    background:linear-gradient(135deg,#0f0c60,#1a1a80);
}
.hsc-info { flex:1; }
.hsc-name { font-size:15px;font-weight:700;color:#fff; }
.hsc-desc { font-size:12px;color:rgba(255,255,255,0.5);margin-top:2px; }
.hsc-status { font-size:20px;color:#22c55e; }
.hero-mockup {
    background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);
    border-radius:14px;padding:20px;margin-top:12px;
    animation:floatUp 6s ease-in-out infinite;
}

/* ===== NEW: SERVICES OVERVIEW ===== */
.services-overview-grid {
    display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
}
.sov-card {
    background:rgba(10, 8, 40, 0.6);border:1px solid rgba(15, 12, 96, 0.4);border-radius:24px;
    padding:36px;transition:all 0.4s;position:relative;overflow:hidden;
    backdrop-filter:blur(10px);
}
.sov-card:hover { transform:translateY(-8px);box-shadow:0 24px 64px rgba(15, 12, 96, 0.6); border-color: rgba(15, 12, 96, 0.8); }
.sov-featured {
    border-color:transparent;
    background:linear-gradient(rgba(10, 8, 40, 0.8),rgba(10, 8, 40, 0.8)) padding-box,
               linear-gradient(135deg,#059669,#34d399) border-box;
    border:2px solid transparent;
    box-shadow:0 8px 32px rgba(5,150,105,0.3);
}
.sov-badge {
    position:absolute;top:20px;left:20px;
    background:linear-gradient(135deg,#059669,#34d399);
    color:#fff;font-size:12px;font-weight:700;padding:4px 12px;border-radius:20px;
}
.sov-header { display:flex;align-items:center;gap:14px;margin-bottom:20px; }
.sov-logo {
    width:52px;height:52px;border-radius:14px;display:flex;align-items:center;justify-content:center;
    font-size:24px;color:#fff;flex-shrink:0;
    background:linear-gradient(135deg,#0f0c60,#1a1a80);
}
.sov-brand { font-size:18px;font-weight:800;color:#fff; }
.sov-partner { font-size:11px;color:rgba(255,255,255,0.6);margin-top:2px; }
.sov-card h3 { font-size:18px;font-weight:700;color:#fff;margin-bottom:10px; }
.sov-card p { font-size:14px;color:rgba(255,255,255,0.7);line-height:1.7;margin-bottom:20px; }
.sov-features {
    display:flex;flex-wrap:wrap;gap:8px;margin-bottom:20px;
}
.sov-features span {
    font-size:12px;background:rgba(15, 12, 96, 0.3);border:1px solid rgba(15, 12, 96, 0.4);
    border-radius:20px;padding:4px 12px;color:rgba(255,255,255,0.8);
    display:flex;align-items:center;gap:6px;
}
.sov-features span i { color:#0f0c60; }
.sov-pricing { margin-bottom:24px;border-top:1px solid #f1f5f9;padding-top:16px; }
.sov-price-item { display:flex;align-items:center;gap:8px;margin-bottom:8px; }
.sov-price-val { font-size:18px;font-weight:800;color:#0f0c60; }
.sov-price-lbl { font-size:12px;color:#94a3b8; }
.sov-btn {
    display:block;text-align:center;padding:14px 24px;border-radius:12px;
    font-size:15px;font-weight:700;text-decoration:none;transition:all 0.3s;
}
.voice-btn { background:linear-gradient(135deg,#0f0c60,#1a1a80);color:#fff; }
.cloud-btn { background:linear-gradient(135deg,#059669,#34d399);color:#fff; }
.otp-btn { background:linear-gradient(135deg,#d97706,#fbbf24);color:#fff; }
.sov-btn:hover { transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,0.2); }

/* ===== NEW: WHY SECTION ===== */
.why-section { background:#f8fafc; }
.why-grid {
    display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
}
.why-card {
    background:#fff;border:1px solid #e2e8f0;border-radius:20px;
    padding:32px;transition:all 0.3s;
}
.why-card:hover { transform:translateY(-4px);box-shadow:0 12px 40px rgba(0,0,0,0.08); }
.why-icon {
    width:56px;height:56px;border-radius:14px;
    background:rgba(15,12,96,0.1);color:#0f0c60;
    display:flex;align-items:center;justify-content:center;
    font-size:24px;margin-bottom:16px;
}
.why-card h3 { font-size:17px;font-weight:700;color:#1e293b;margin-bottom:8px; }
.why-card p { font-size:14px;color:#64748b;line-height:1.7; }

/* CTA WhatsApp button */
.btn-cta-wa {
    padding:16px 40px;border-radius:50px;font-size:17px;font-weight:700;
    background:#25d366;color:#fff;text-decoration:none;
    display:inline-flex;align-items:center;gap:10px;
    transition:all 0.3s;box-shadow:0 8px 24px rgba(37,211,102,0.4);
}
.btn-cta-wa:hover { transform:translateY(-3px);box-shadow:0 12px 32px rgba(37,211,102,0.5); }

/* Responsive new */
@media (max-width:1024px) {
    .services-overview-grid { grid-template-columns:1fr; }
    .why-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px) {
    .services-overview-grid { grid-template-columns:1fr; }
    .why-grid { grid-template-columns:1fr; }
    .hero-cards { max-width:100%; }
}
