/* ============================================
   IonicWallz - Complete Security Platform
   CSS Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --primary: #4F46E5;
    --primary-dark: #4338CA;
    --primary-light: #6366F1;
    --secondary: #0EA5E9;
    --accent-yellow: #FBBF24;
    --accent-orange: #F97316;
    --accent-pink: #EC4899;
    --accent-cyan: #06B6D4;
    --accent-purple: #8B5CF6;
    --text-dark: #1E293B;
    --text-gray: #64748B;
    --text-light: #94A3B8;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-gray: #F1F5F9;
    --border-color: #E2E8F0;
    --gradient-primary: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    --gradient-hero: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 10rem;
    
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    color: var(--text-gray);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--text-dark);
    background: var(--bg-light);
}

.nav-link i {
    font-size: 0.625rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-gray);
    padding: 8px 16px;
}

.btn-text:hover {
    color: var(--primary);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-primary.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    color: var(--text-dark);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline.btn-lg {
    padding: 12px 24px;
    font-size: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-md);
    transition: background 0.2s ease;
}

.mobile-menu-btn:hover {
    background: var(--bg-light);
}

.mobile-menu-btn:active {
    background: var(--bg-gray);
}
/* Behav */

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.capability-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    margin: 20px 0px;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.capability-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.capability-icon i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.capability-icon.purple {
    background: linear-gradient(135deg, #e9d5ff 0%, #faf5ff 100%);
}

.capability-icon.purple i {
    color: #8b5cf6;
}

.capability-icon.orange {
    background: linear-gradient(135deg, #fed7aa 0%, #fff7ed 100%);
}

.capability-icon.orange i {
    color: #f97316;
}

.capability-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.capability-desc {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}
.bg-slate-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
}

.faq-container {
  max-width: 700px;
  margin: 40px auto;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 15px;
  text-align: left;
  background: #f9f9f9;
  border: none;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  color: #000;
}

.faq-question:hover {
  background: #eee;
  color: #000;
}

.faq-answer {
  display: none;
  padding: 15px;
  background: #fff;
}
.seat-select-wrapper {
    display: flex;
    justify-content: flex-start; /* left side */
    margin-bottom: 20px;
}

.seat-select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
}
/* register page */
.otp__box {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.otp__box input {
    width: 55px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    text-align: center;
    font-weight: normal;
    border: 1px solid #a7a7a7;
    border-radius: 4px;
    padding: 0px 7px !important;
}

.otp__box input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.resend__otp {
    all: unset;
    cursor: pointer;
    color: var(--primary-color);
}
.about h1
{
    font-size: 2.25rem;
    line-height: 2.5rem;
    --tw-text-opacity: 1;
    color: rgb(15 23 42 / var(--tw-text-opacity, 1));
    font-weight: 700;

}
.about 
{
    min-height: 500px;
    margin: 5rem 0px;
}
.about p
{
    margin: 10px 0px;
    line-height: 30px;
}
/* Touch-friendly tap targets */
@media (hover: none) and (pointer: coarse) {
    .btn-primary,
    .btn-outline,
    .btn-white,
    .btn-outline-white,
    .nav-link,
    .dropdown-item,
    .dropdown-item-simple {
        min-height: 44px;
    }
    
    .feature-card:hover,
    .team-card:hover,
    .testimonial-card:hover {
        transform: none;
    }
}

/* ============================================
   Mobile Menu Drawer
   ============================================ */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: white;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background: var(--bg-gray);
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    text-decoration: none;
}

.mobile-nav-link:hover {
    background: var(--bg-light);
}

.mobile-nav-link.active {
    color: var(--primary);
    background: rgba(79, 70, 229, 0.05);
}

.mobile-nav-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.mobile-nav-link.active i {
    transform: rotate(180deg);
}

.mobile-nav-link.single {
    justify-content: flex-start;
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    background: var(--bg-light);
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active {
    max-height: 1000px;
}

.mobile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px 14px 28px;
    font-size: 0.9375rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-dropdown-item:hover {
    background: var(--bg-gray);
    color: var(--text-dark);
}

.mobile-dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--primary);
    font-size: 0.875rem;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
}

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* ============================================
   Dropdown Menu Styles
   ============================================ */
.nav-item {
    position: relative;
}

.nav-item.has-dropdown > .nav-link {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    padding: 20px;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu.dropdown-sm {
    min-width: 220px;
    padding: 12px;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: var(--bg-light);
}

.dropdown-item.dropdown-full {
    grid-column: span 1;
}

.dropdown-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.dropdown-icon-blue {
    background: rgba(14, 165, 233, 0.1);
    color: var(--secondary);
}

.dropdown-icon-purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
}

.dropdown-icon-gray {
    background: rgba(100, 116, 139, 0.1);
    color: var(--text-gray);
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
}

.dropdown-desc {
    font-size: 0.8125rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.dropdown-item-simple {
    display: block;
    padding: 10px 16px;
    font-size: 0.9375rem;
    color: var(--text-gray);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.dropdown-item-simple:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

/* Dropdown arrow indicator */
.nav-item.has-dropdown > .nav-link i {
    transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover > .nav-link i,
.nav-item.has-dropdown.active > .nav-link i {
    transform: rotate(180deg);
}

/* Active state for nav link when dropdown is open */
.nav-item.has-dropdown:hover > .nav-link,
.nav-item.has-dropdown.active > .nav-link {
    color: var(--primary);
    background: rgba(79, 70, 229, 0.05);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    padding: 140px 0 80px;
    
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-badge i {
    font-size: 0.875rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
   
    margin: 0 auto 32px;
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.hero-features {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: var(--text-gray);
}

.hero-feature i {
    color: #10B981;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-trust {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.trust-text {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-logo {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-light);
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.trust-logo:hover {
    opacity: 1;
}

/* ============================================
   Stats Section
   ============================================ */
.stats {
    padding: 60px 0;
    background: var(--gradient-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9375rem;
    opacity: 0.9;
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-description {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-icon-blue {
    background: rgba(14, 165, 233, 0.1);
    color: var(--secondary);
}

.feature-icon-purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
}

.feature-icon-yellow {
    background: rgba(251, 191, 36, 0.1);
    color: var(--accent-yellow);
}

.feature-icon-cyan {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-cyan);
}

.feature-icon-indigo {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
}

.feature-icon-orange {
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-orange);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step-card {
    text-align: center;
    padding: 32px 24px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #FBBF24 0%, #F97316 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-description {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================
   Dashboard Section
   ============================================ */
.dashboard-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dashboard-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
}

.dashboard-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.dashboard-description {
    font-size: 1.0625rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

.dashboard-features {
    margin-bottom: 32px;
}

.dashboard-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.dashboard-features li i {
    color: #10B981;
    font-size: 1.125rem;
}

.dashboard-preview {
    position: relative;
}

.dashboard-card {
    background: var(--primary);
    border-radius: var(--radius-2xl);
    padding: 32px;
    color: white;
    box-shadow: var(--shadow-xl);
}

.dashboard-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.dashboard-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-text {
    font-size: 0.75rem;
    opacity: 0.8;
}

.dashboard-subtitle {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 16px;
}

.dashboard-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
}

.chart-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px 4px 0 0;
    transition: background 0.3s ease;
}

.chart-bar:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--accent-yellow);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.author-role {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-gray);
}

/* ============================================
   Teams Section
   ============================================ */
.teams {
    padding: 100px 0;
    background: var(--bg-white);
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.team-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.team-icon-blue {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
}

.team-icon-cyan {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-cyan);
}

.team-icon-pink {
    background: rgba(236, 72, 153, 0.1);
    color: var(--accent-pink);
}

.team-icon-orange {
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-orange);
}

.team-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.team-description {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
    position: relative;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    position: relative;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto 32px;
    position: relative;
}

.cta-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature i {
    color: white;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: white;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Newsletter Section
   ============================================ */
.newsletter {
    padding: 60px 0;
    background: var(--text-dark);
}

.newsletter .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.newsletter-description {
    font-size: 0.9375rem;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-input {
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1rem;
    width: 300px;
    outline: none;
    transition: all 0.2s ease;
}

.newsletter-input::placeholder {
    color: var(--text-light);
}

.newsletter-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 80px 10rem 40px;
    background: var(--text-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);

}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
    color: white;
}

.footer-brand .logo-icon {
    background: rgba(255, 255, 255, 0.1);
}

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--primary);
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--text-light);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.footer-badges {
    display: flex;
    gap: 16px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-title,
.hero-description,
.hero-features,
.hero-cta {
    animation: fadeInUp 0.6s ease forwards;
}

.hero-description {
    animation-delay: 0.1s;
}

.hero-features {
    animation-delay: 0.2s;
}

.hero-cta {
    animation-delay: 0.3s;
}

.step-icon {
    animation: float 3s ease-in-out infinite;
}

.step-card:nth-child(2) .step-icon {
    animation-delay: 0.5s;
}

.step-card:nth-child(3) .step-icon {
    animation-delay: 1s;
}

.step-card:nth-child(4) .step-icon {
    animation-delay: 1.5s;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Large Tablets & Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid,
    .teams-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-brand {
        grid-column: span 3;
    }
    
    .dropdown-menu {
        min-width: 500px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    /* Navigation */
    .nav {
        height: 64px;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        padding: 20px;
        flex-direction: column;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        width: 100%;
        padding: 16px 0;
        justify-content: space-between;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        min-width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.3s ease;
        background: var(--bg-light);
        margin: 0 -16px;
        width: calc(100% + 32px);
    }
    
    .nav-item.has-dropdown.active .dropdown-menu {
        max-height: 2000px;
        padding: 16px;
    }
    
    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    
    .dropdown-item {
        padding: 12px;
        background: white;
        border-radius: var(--radius-md);
        margin-bottom: 4px;
    }
    
    .dropdown-menu.dropdown-sm {
        min-width: 100%;
    }
    
    .dropdown-item-simple {
        background: white;
        margin-bottom: 4px;
        border-radius: var(--radius-md);
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .trust-logos {
        gap: 24px;
        flex-wrap: wrap;
    }
    
    .trust-logo {
        font-size: 0.9rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 10px;
        margin-bottom: 40px;
    }
    
    /* Stats */
    .stats {
        padding: 40px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8125rem;
    }
    
    /* Features */
    .features {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    /* How It Works */
    .how-it-works {
        padding: 60px 0;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .step-card {
        padding: 24px 16px;
    }
    
    .step-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
    
    /* Dashboard Section */
    .dashboard-section {
        padding: 60px 0;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dashboard-content {
        text-align: center;
        order: 2;
    }
    
    .dashboard-preview {
        order: 1;
    }
    
    .dashboard-title {
        font-size: 1.75rem;
    }
    
    .dashboard-features {
        text-align: left;
    }
    
    .dashboard-features li {
        justify-content: flex-start;
    }
    
    .dashboard-content .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .dashboard-header {
        gap: 12px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    /* Teams */
    .teams {
        padding: 60px 0;
    }
    
    .teams-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .team-card {
        padding: 24px 16px;
    }
    
    .team-icon {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-buttons .btn-white,
    .cta-buttons .btn-outline-white {
        width: 100%;
        justify-content: center;
    }
    
    /* Newsletter */
    .newsletter {
        padding: 40px 0;
    }
    
    .newsletter .container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .newsletter-title {
        font-size: 1.25rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    .newsletter-form .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    /* Footer */
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }
    
    .footer-brand .nav-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 0.9375rem;
    }
    
    .btn-primary.btn-lg,
    .btn-outline.btn-lg {
        padding: 12px 20px;
        font-size: 0.9375rem;
    }
    
    .trust-logos {
        gap: 16px;
    }
    
    .trust-logo {
        font-size: 0.8rem;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 0.9375rem;
        margin-bottom: 32px;
    }
    
    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Teams */
    .teams-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Dashboard */
    .dashboard-title {
        font-size: 1.5rem;
    }
    
    .dashboard-card {
        padding: 20px;
    }
    
    .dashboard-header {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-text {
        font-size: 0.625rem;
    }
    
    .dashboard-chart {
        height: 80px;
    }
    
    /* CTA */
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 0.9375rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-links-group {
        text-align: center;
    }
    
    .footer-heading {
        margin-bottom: 12px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.375rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .dashboard-header {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .dashboard-stat {
        padding: 12px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-md);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;   /* kam padding */
    }

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links,
    .nav-actions {
        display: none;  /* desktop menu hide */
    }

    .mobile-menu-btn {
        display: block;
        font-size: 24px;
        background: none;
        border: none;
    }

    .nav-logo img {
        height: 40px;
    }
}