/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #0f172a;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-sm: 0 1px 2px 0 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);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

html {
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    height: 100%;
    touch-action: manipulation;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    flex-shrink: 0;
    margin-right: 2rem;
}

.logo h2 {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.logo a {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: nowrap;
}

/* Ensure all navbar buttons are vertically centered and have consistent height */
.nav-link,
.nav-mega-trigger,
.nav-dropdown-trigger,
.btn-secondary,
.btn-primary {
    display: flex;
    align-items: center;
    height: 40px;
    box-sizing: border-box;
    padding-top: 0;
    padding-bottom: 0;
}

/* Remove extra vertical padding from dropdown and mega menu triggers */
.nav-mega-trigger,
.nav-dropdown-trigger {
    padding-top: 0;
    padding-bottom: 0;
    height: 40px;
}

/* Standardize button heights */
.btn-secondary,
.btn-primary {
    min-height: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu a,
.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 2px;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.nav-link.active:hover {
    color: var(--primary-color);
}

/* Compact buttons inside navbar */
.nav-menu .btn-secondary {
    padding: 0.6rem 1.25rem;
    min-width: auto;
    min-height: auto;
    height: auto;
    font-size: 0.9375rem;
}

.nav-menu .btn-primary {
    padding: 0.6rem 1.5rem;
    min-width: auto;
    min-height: auto;
    height: auto;
    font-size: 0.875rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Pure CSS Dropdown Menu - Hover Based */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-trigger {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    display: block;
}

.nav-dropdown-trigger:hover {
    color: var(--primary-color);
}

/* Dropdown Content - Dark Theme */
.nav-dropdown-content {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 220px;
    background: rgba(99, 102, 241, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 0.75rem 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

/* Show dropdown on hover */
.nav-dropdown:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-content a {
    display: block;
    padding: 0.65rem 1.5rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
}

.nav-dropdown-content a:first-child {
    border-radius: 0.75rem 0.75rem 0 0;
}

.nav-dropdown-content a:last-child {
    border-radius: 0 0 0.75rem 0.75rem;
}

/* Hover effect on dropdown items */
.nav-dropdown-content a:hover {
    background-color: rgba(99, 102, 241, 0.15);
    color: #ffffff;
    padding-left: 2rem;
}

.nav-dropdown-content a:hover::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #6366f1;
    border-radius: 50%;
    opacity: 0;
    animation: dotPulse 0.3s ease forwards;
}

@keyframes dotPulse {
    0% {
        opacity: 1;
        transform: translateY(-50%) scale(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-50%) scale(1);
    }
}

/* ========================================
   MEGA MENU - Solutions Dropdown
   ======================================== */

.nav-mega-dropdown {
    position: relative;
    display: inline-block;
}

.nav-mega-trigger {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    display: block;
    position: relative;
}

.nav-mega-trigger:hover {
    color: var(--primary-color);
}

/* Mega Menu Content - Dark Theme */
.nav-mega-content {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 600px;
    background: rgba(99, 102, 241, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

/* Show mega menu on hover */
.nav-mega-dropdown:hover .nav-mega-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mega Menu Layout */
.mega-menu-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

/* Left Column - Main Menu Items */
.mega-menu-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 1.5rem;
}

.mega-menu-item {
    padding: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
}

.mega-menu-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
    transition: color 0.25s ease;
}

.mega-menu-item p {
    font-size: 0.75rem;
    color: #f1f5f9;
    margin: 0;
    transition: color 0.25s ease;
}

.mega-menu-item:hover {
    background-color: rgba(99, 102, 241, 0.15);
}

.mega-menu-item:hover h4 {
    color: #ffffff;
}

.mega-menu-item.active {
    background-color: rgba(99, 102, 241, 0.2);
    border-left: 3px solid #6366f1;
    padding-left: calc(1rem - 3px);
}

.mega-menu-item.active h4 {
    color: #6366f1;
}

/* Right Column - Submenu Items */
.mega-menu-right {
    position: relative;
    min-height: 200px;
}

.mega-submenu {
    display: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    animation: slideInRight 0.3s ease forwards;
}

.mega-submenu.active {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 1;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mega-submenu-item {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
}

.submenu-title {
    display: block;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.25s ease;
}

.submenu-desc {
    display: block;
    color: #cbd5e1;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    transition: color 0.25s ease;
}

.mega-submenu-item:hover {
    background-color: rgba(99, 102, 241, 0.15);
    border-left-color: #6366f1;
    padding-left: calc(1rem - 3px);
}

.mega-submenu-item:hover .submenu-title {
    color: #6366f1;
}

.mega-submenu-item:hover .submenu-desc {
    color: #d1d5db;
}

/* ========================================
   MEGA MENU - RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .nav-mega-content {
        min-width: 550px;
        right: 0;
        left: auto;
    }

    .mega-menu-wrapper {
        gap: 1.5rem;
    }

    .mega-menu-left {
        padding-right: 1rem;
    }

    .mega-menu-item h4 {
        font-size: 0.9rem;
    }

    .mega-menu-item p {
        font-size: 0.7rem;
    }
}

@media (max-width: 920px) {
    .nav-mega-content {
        min-width: 500px;
    }

    .mega-menu-wrapper {
        gap: 1rem;
    }

    .mega-menu-item {
        padding: 0.75rem;
    }

    .mega-submenu-item {
        padding: 0.6rem 0.75rem;
    }

    .submenu-title {
        font-size: 0.85rem;
    }

    .submenu-desc {
        font-size: 0.7rem;
    }
}

/* Hide mega menu on tablets and below */
@media (max-width: 768px) {
    .nav-mega-content {
        display: none;
    }

    .nav-mega-trigger {
        cursor: default;
    }

    .nav-mega-trigger:hover {
        color: var(--text-dark);
    }
}


/* Buttons */
.btn-primary, .btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 120px;
    /* Remove fixed height for better vertical centering */
}

.btn-primary {
    background: #6366f1 !important;
    color: #fff !important;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 4.5rem 0;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 6rem 0;
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons a {
    flex: 1;
    min-width: 0;
}

@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons a {
        width: 100%;
        flex: none;
    }
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logos-scroll {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.logo-item {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-gray);
}

/* Section Titles */
.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-description {
    text-align: center;
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .section-description {
        font-size: 1.125rem;
        margin-bottom: 4rem;
    }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--bg-white);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.feature-card.reverse {
    direction: rtl;
}

.feature-card.reverse > * {
    direction: ltr;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .feature-content h3 {
        font-size: 1.625rem;
    }
}

@media (min-width: 1024px) {
    .feature-content h3 {
        font-size: 1.75rem;
    }
}

.feature-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .feature-content p {
        font-size: 1.05rem;
    }
}

.feature-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: var(--primary-dark);
    padding-left: 5px;
}

.feature-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.feature-image:hover img {
    transform: scale(1.05);
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
}

.cta-section .btn-primary,
.cta-section .btn-secondary {
    margin: 0 0.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-light);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-logo {
    width: 60px;
    height: 60px;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

.author-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
}

.author-info p {
    font-weight: 600;
    color: var(--primary-color);
    margin: 0.25rem 0;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Industries Section */
.industries {
    padding: 6rem 0;
    background: var(--bg-white);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.industry-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.industry-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.industry-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--bg-light);
}

.features-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-white);
    padding: 1.25rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.check-icon {
    width: 28px;
    height: 28px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
}

.feature-item span:last-child {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* CTA Final Section */
.cta-final {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-final .section-title,
.cta-final .section-description {
    color: white;
}

.cta-final .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-final .btn-primary:hover {
    background: var(--bg-light);
}

.cta-final .btn-secondary {
    border-color: white;
    color: white;
}

.cta-final .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 4rem 0 2rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-light);
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Responsive Design */

/* Desktop & Large Tablets (1024px+) */
@media (min-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .feature-card {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Mobile & Tablet Navigation */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        max-width: 100%;
        height: calc(100vh - 60px);
        height: calc(100dvh - 60px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        padding-bottom: max(1rem, env(safe-area-inset-bottom, 0));
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1000;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    .nav-menu a {
        width: 100%;
        max-width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 1.125rem;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Mobile dropdown menu */
    .dropdown {
        width: 100%;
        max-width: 100%;
    }

    .dropdown-btn {
        width: 100%;
        max-width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 1.125rem;
        text-align: left;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        max-width: 100%;
        background: var(--bg-light);
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 1rem;
        border-radius: 0;
        margin: 0;
        margin-bottom: 0.5rem;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.5rem 0;
        border-bottom: none;
        font-size: 1rem;
        padding-left: 1rem;
    }

    .dropdown-menu a:hover {
        padding-left: 1.5rem;
    }

    .nav-menu .btn-primary {
        margin-top: 1rem;
        width: 100%;
        max-width: 100%;
        text-align: center;
        display: block;
        white-space: normal;
        padding: 1rem;
        font-size: 1rem;
        box-sizing: border-box;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-large {
        width: 100%;
        text-align: center;
    }

    .feature-content h3 {
        font-size: 1.5rem;
    }

    .feature-content p {
        font-size: 1rem;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .industry-card {
        padding: 1.5rem;
    }

    .industry-icon {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .trust-section {
        padding: 3rem 0;
    }

    .logos-scroll {
        gap: 2rem;
    }

    .features, .testimonials, .industries, .pricing, .cta-final, .faq {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-menu {
        top: 58px;
        height: calc(100vh - 58px);
        height: calc(100dvh - 58px);
        padding: 1rem;
        padding-bottom: max(1rem, env(safe-area-inset-bottom, 0));
    }
    
    .nav-menu a {
        font-size: 1.125rem;
        padding: 1rem 0;
    }
    
    .nav-menu .btn-primary {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .mobile-toggle span {
        width: 24px;
        height: 3px;
    }

    .logo h2 {
        font-size: 1.375rem;
    }

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Extra Small Mobile (< 360px) */
@media (max-width: 360px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .nav-menu {
        padding: 1rem;
        padding-bottom: max(1rem, env(safe-area-inset-bottom, 0));
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 0.875rem 0;
    }
    
    .nav-menu .btn-primary {
        font-size: 1rem;
        padding: 0.875rem 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.hero-image {
    animation: fadeIn 0.8s ease-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
}
/* Card Types Section */
.card-types {
    padding: 5rem 0;
    background: var(--bg-light);
}

.card-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.card-type-item {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.card-type-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-type-preview {
    padding: 1.5rem;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-type-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.card-type-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

/* Stamp styles */
.card-type-stamps {
    display: flex;
    gap: 0.5rem;
}

.card-type-stamps .stamp {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #6b4226;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b4226;
}

.card-type-stamps .stamp.filled {
    background: #6b4226;
    color: white;
}

/* Points styles */
.card-type-points {
    text-align: center;
}

.card-type-points .points-label {
    display: block;
    font-size: 0.7rem;
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-type-points .points-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #78350f;
}

/* Badge styles */
.card-type-badge .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
}

.card-type-badge .badge.gold {
    background: #f59e0b;
    color: white;
}

/* Discount styles */
.card-type-discount {
    text-align: center;
}

.card-type-discount .discount-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #ef4444;
}

.card-type-discount .discount-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
}

/* Event styles */
.card-type-event {
    text-align: center;
    font-size: 0.8rem;
    color: #1a1a1a;
}

.card-type-event span {
    display: block;
    margin: 0.25rem 0;
}

/* Gift styles */
.card-type-gift {
    text-align: center;
}

.card-type-gift .gift-label {
    display: block;
    font-size: 0.75rem;
    color: #ec4899;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-type-gift .gift-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
}

/* Flight styles */
.card-type-flight {
    text-align: center;
}

.card-type-flight .flight-route {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
}

.card-type-flight .flight-info {
    display: block;
    font-size: 0.75rem;
    color: #666;
}

/* Contact styles */
.card-type-contact {
    text-align: center;
}

.card-type-contact .contact-name {
    display: block;
    font-weight: 700;
    color: #1a1a1a;
}

.card-type-contact .contact-title {
    display: block;
    font-size: 0.8rem;
    color: #666;
}

/* Policy styles */
.card-type-policy {
    text-align: center;
}

.card-type-policy .policy-type {
    display: block;
    font-weight: 700;
    color: #10b981;
}

.card-type-policy .policy-id {
    display: block;
    font-size: 0.75rem;
    color: #666;
}

/* Card type info */
.card-type-info {
    padding: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.card-type-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.card-type-info p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .card-types {
        padding: 3rem 0;
    }
    
    .card-types-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .card-type-preview {
        min-height: 150px;
    }
}