/* ========================================
   CSS Variables & Reset
   ======================================== */

:root {
    --primary: #25D366;
    --primary-dark: #128C7E;
    --secondary: #075E54;
    --accent: #34B7F1;
    --dark: #111827;
    --light: #f8fafc;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --black: #000000;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    --gradient-green: linear-gradient(135deg, #25D366, #128C7E);
    --gradient-purple: linear-gradient(135deg, #8b5cf6, #6366f1);
    --gradient-blue: linear-gradient(135deg, #3b82f6, #06b6d4);
    --gradient-orange: linear-gradient(135deg, #f97316, #f43f5e);
    --gradient-red: linear-gradient(135deg, #ef4444, #f97316);
    --gradient-indigo: linear-gradient(135deg, #4f46e5, #8b5cf6);
    --gradient-yellow: linear-gradient(135deg, #eab308, #f97316);
    --gradient-teal: linear-gradient(135deg, #14b8a6, #06b6d4);

    --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);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   Utility Classes
   ======================================== */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 640px) {
    .container {
        padding: 0 32px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 48px;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.1));
    color: var(--primary);
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge i {
    font-size: 1rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.5rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 670px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center {
    text-align: center;
    margin-top: 48px;
}

/* ========================================
   Navbar Styles
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-gray);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    /*padding: 10px 0;*/
    box-shadow: var(--shadow-md);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Logo with Image */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-mix);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* Full Image Logo (no text) */
.logo-img-full {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* Image + Text Logo */
.logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.logo-text-img {
    height: 30px;
    width: auto;
}

/* Text Logo with Image Background */
.logo-icon.has-bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Responsive Logo */
@media (max-width: 768px) {
    .logo-img-full {
        height: 35px;
    }

    .logo-img {
        height: 30px;
    }

    .logo-text-img {
        height: 25px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }
}

.nav-links {
    display: none;
    gap: 32px;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-green);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: none;
    gap: 16px;
}

@media (min-width: 1024px) {
    .nav-actions {
        display: flex;
    }
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    padding: 8px;
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

/* Mobile Menu */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--light-gray);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 30 L30 30" stroke="%2325D366" stroke-width="1" opacity="0.1"/></svg>');
    opacity: 0.5;
}

.hero-content {
    display: grid;
    gap: 60px;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 10px;
    background: rgba(37, 211, 102, 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-cta .btn i {
    transition: transform 0.3s ease;
}

.hero-cta .btn:hover i {
    transform: translateX(4px);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 640px) {
    .feature-list {
        flex-direction: row;
        gap: 32px;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
}

.feature-item i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Hero Dashboard */
.hero-image {
    position: relative;
}

.floating-elements {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(18, 140, 126, 0.2));
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 150px;
    height: 150px;
    top: -30px;
    right: -30px;
    animation-delay: 0s;
}

.element-2 {
    width: 200px;
    height: 200px;
    bottom: -40px;
    left: -40px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.dashboard-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--light-gray);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.dashboard-card:hover {
    transform: scale(1.02);
}

.dashboard-header {
    background: linear-gradient(135deg, #1f2937, #111827);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red {
    background: #ef4444;
}

.control.yellow {
    background: #f59e0b;
}

.control.green {
    background: #10b981;
}

.window-title {
    color: var(--white);
    font-size: 0.875rem;
    opacity: 0.8;
}

.dashboard-content {
    padding: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-green {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border: 1px solid #6ee7b7;
}

.stat-blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border: 1px solid #93c5fd;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}


.message-previews {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.message-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.message-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.message-line {
    height: 8px;
    background: var(--light-gray);
    border-radius: 4px;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.message-line.short {
    width: 60%;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ========================================
   Features Section
   ======================================== */

.features {
    padding: 100px 0;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(37, 211, 102, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.1));
    border-radius: 0 0 0 100px;
    transition: all 0.3s ease;
}

.feature-card:hover::before {
    width: 150px;
    height: 150px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.green-gradient {
    background: var(--gradient-green);
}

.purple-gradient {
    background: var(--gradient-purple);
}

.blue-gradient {
    background: var(--gradient-blue);
}

.orange-gradient {
    background: var(--gradient-orange);
}

.indigo-gradient {
    background: var(--gradient-indigo);
}

.yellow-gradient {
    background: var(--gradient-yellow);
}

.gray-gradient {
    background: linear-gradient(135deg, #4b5563, #1f2937);
}

.red-gradient {
    background: var(--gradient-red);
}

.teal-gradient {
    background: var(--gradient-teal);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.feature-description {
    color: var(--gray);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.feature-hover-line {
    width: 0;
    height: 3px;
    background: var(--gradient-green);
    border-radius: 2px;
    margin-top: 20px;
    transition: width 0.3s ease;
}

.feature-card:hover .feature-hover-line {
    width: 60px;
}

/* ========================================
   Stats Section
   ======================================== */

.stats {
    padding: 80px 0;
    background: var(--gradient-green);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="1" opacity="0.1"/></svg>');
    opacity: 0.2;
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.stat-card-large {
    text-align: center;
    color: var(--white);
    transition: transform 0.3s ease;
}

.stat-card-large:hover {
    transform: translateY(-8px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card-large:hover .stat-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.green-bg {
    background: rgba(228, 255, 246, 0.3);
}

.blue-bg {
    background: rgba(59, 130, 246, 0.3);
}

.purple-bg {
    background: rgba(139, 92, 246, 0.3);
}

.emerald-bg {
    background: rgba(5, 150, 105, 0.3);
}

.orange-bg {
    background: rgba(249, 115, 22, 0.3);
}

.red-bg {
    background: rgba(255, 212, 212, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-number small {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.8;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* ========================================
   How It Works Section
   ======================================== */

.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.step-card {
    background: var(--white);
    padding: 40px 24px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(37, 211, 102, 0.1);
    line-height: 1;
}


.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.step-description {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.step-arrow {
    color: var(--primary);
    font-size: 1.25rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.step-card:hover .step-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   Pricing Section
   ======================================== */

.pricing {
    padding: 100px 0;
    background: var(--light-gray);
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.toggle-label {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: var(--primary);
    font-weight: 600;
}

.toggle-switch {
    width: 60px;
    height: 32px;
    background: var(--light-gray);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-inner);
}

.toggle-slider {
    width: 26px;
    height: 26px;
    background: var(--gradient-green);
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-md);
}

.toggle-slider.yearly {
    transform: translateX(28px);
}

.plan-price {
    display: none;
}

.plan-price.active {
    display: block;
}

.savings-badge .badge {
    font-size: 14px;
    padding: 5px 15px;
}

.save-badge {
    background: var(--gradient-green);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.pricing-card {
    background: var(--white);
    border-radius: 32px;
    padding: 40px 32px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 2px solid var(--light-gray);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.plan-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.plan-description {
    color: var(--gray);
    margin-bottom: 24px;
    font-size: 1rem;
}

.plan-price {
    margin-bottom: 32px;
}

.price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.period {
    color: var(--gray);
    font-size: 1rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray);
    border-bottom: 1px dashed var(--light-gray);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: var(--primary);
    font-size: 1rem;
}

/* FAQ Section */
/* Modern FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-grid-modern {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item-modern {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.faq-item-modern:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question-modern {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark);
    background: var(--white);
    transition: background 0.3s ease;
}

.faq-question-modern span {
    font-size: 1.1rem;
}

.faq-question-modern i {
    color: var(--primary);
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.faq-item-modern.active .faq-question-modern i {
    transform: rotate(180deg);
}

.faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--gray);
    line-height: 1.6;
    transition: all 0.3s ease;
    background: var(--white);
    border-top: 0 solid var(--light-gray);
}

.faq-item-modern.active .faq-answer-modern {
    max-height: 100px;
    padding: 0 24px 20px 24px;
    border-top-width: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-question-modern {
        padding: 16px 20px;
    }

    .faq-question-modern span {
        font-size: 1rem;
        padding-right: 30px;
    }

    .faq-item-modern.active .faq-answer-modern {
        padding: 0 20px 16px 20px;
    }
}

@media (max-width: 480px) {
    .faq-question-modern {
        padding: 14px 16px;
    }

    .faq-question-modern span {
        font-size: 0.95rem;
    }
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: rgba(37, 211, 102, 0.1);
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.testimonial-content {
    color: var(--dark);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    font-size: 3rem;
    background: var(--light-gray);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-name {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.author-role {
    color: var(--gray);
    font-size: 0.875rem;
}

/* Company Logos */
.company-logos {
    text-align: center;
}

.logos-text {
    color: var(--gray);
    margin-bottom: 32px;
    font-size: 1.125rem;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.logo-item {
    color: var(--gray);
    font-weight: 600;
    font-size: 1.25rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    color: var(--primary);
    transform: scale(1.1);
}

/* ========================================
   Integrations Section
   ======================================== */

.integrations {
    padding: 100px 0;
    background: var(--light-gray);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.integration-card {
    background: var(--white);
    padding: 24px 16px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
    cursor: pointer;
}

.integration-card:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.integration-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.integration-card:hover .integration-icon {
    transform: rotate(5deg) scale(1.1);
}

.integration-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    padding: 100px 0;
    /* background: linear-gradient(135deg, #075E54, #128C7E, #25D366); */
    background: linear-gradient(135deg, #baded9, #128c7e, #004336);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="2" opacity="0.1"/></svg>');
    opacity: 0.2;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-weight: 600;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3.5rem;
    }
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.cta-feature i {
    color: var(--primary);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

/* Footer Logo Image */
.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-logo-img {
        height: 40px;
        margin: 0 auto 20px;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 1.2fr 2fr;
    }
}

.footer-description {
    color: #9ca3af;
    margin: 24px 0;
    line-height: 1.8;
    max-width: 400px;
}

.contact-info {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    color: #9ca3af;
}

.contact-item i {
    width: 20px;
    /*color: var(--primary);*/
}

.contact-item a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
}

.link-group h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 12px;
}

.link-group ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.link-group ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    color: #9ca3af;
    font-size: 0.95rem;
}

.legal-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary);
}

/* ========================================
   Modal Styles
   ======================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-2xl);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: var(--white);
    border-radius: 24px 24px 0 0;
}

.modal-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.close-modal:hover {
    color: var(--error);
    transform: rotate(90deg);
}

.modal-body {
    padding: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--gray);
}

.checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.forgot-password {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--gray);
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.modal-footer {
    margin-top: 24px;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--light-gray);
    color: var(--gray);
}

.modal-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.modal-footer a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ========================================
   Toast Notification
   ======================================== */

.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--white);
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: var(--shadow-xl);
    border-left: 4px solid var(--success);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 3000;
    max-width: 350px;
}

.toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-content i {
    font-size: 1.5rem;
    color: var(--success);
}

.toast-content span {
    color: var(--dark);
    font-weight: 500;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: scale(1.02);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .cta-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .stats-grid-large {
        grid-template-columns: 1fr;
    }

    .cta-features {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .modal-body {
        padding: 24px 16px;
    }

    .modal-header {
        padding: 20px 24px;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: var(--shadow-lg);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Print Styles */
@media print {

    .navbar,
    .footer,
    .cta-section,
    .modal,
    .scroll-top,
    .btn {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }
}


/* Trust Badge Section */
.trust-badge-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid rgba(37, 211, 102, 0.1);
    border-bottom: 1px solid rgba(37, 211, 102, 0.1);
    position: relative;
    overflow: hidden;
}

.trust-badge-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(37, 211, 102, 0.03);
    border-radius: 50%;
    z-index: 0;
}

.trust-badge-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 300px;
    height: 300px;
    background: rgba(18, 140, 126, 0.03);
    border-radius: 50%;
    z-index: 0;
}

.trust-badge-wrapper {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.parent-company {
    text-align: center;
    margin-bottom: 40px;
}

.company-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 211, 102, 0.1);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 25px;
}

.badge-icon {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.badge-text {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.company-logo-wrapper {
    margin-bottom: 20px;
}

.nexinfotech-logo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 15px 40px;
    border-radius: 100px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.nexinfotech-logo i {
    font-size: 32px;
    color: var(--primary);
}

.nexinfotech-logo .company-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
}

.company-tagline {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 18px;
    line-height: 1.8;
}

.company-tagline strong {
    color: var(--primary);
    font-weight: 700;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
    padding: 30px 0;
    border-top: 2px dashed rgba(37, 211, 102, 0.2);
    border-bottom: 2px dashed rgba(37, 211, 102, 0.2);
}

.indicator-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.indicator-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.1);
    border-color: var(--primary);
}

.indicator-item i {
    font-size: 32px;
    color: var(--primary);
    background: rgba(37, 211, 102, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.indicator-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.indicator-text p {
    color: var(--gray);
    font-size: 14px;
}

/* Registration Info */
.registration-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.info-chip {
    background: var(--light-gray);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    color: var(--gray);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.info-chip:hover {
    background: var(--white);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.15);
}

.info-chip i {
    color: var(--primary);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .trust-badge-wrapper {
        padding: 30px 20px;
    }

    .nexinfotech-logo {
        padding: 12px 25px;
    }

    .nexinfotech-logo .company-name {
        font-size: 22px;
    }

    .indicator-item {
        flex-direction: column;
        text-align: center;
    }

    .company-tagline {
        font-size: 16px;
    }

    .registration-info {
        flex-direction: column;
        align-items: center;
    }

    .info-chip {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nexinfotech-logo {
        padding: 10px 20px;
    }

    .nexinfotech-logo i {
        font-size: 24px;
    }

    .nexinfotech-logo .company-name {
        font-size: 18px;
    }

    .company-badge {
        padding: 6px 15px;
    }
}



/* Integration section */
/* Meta Steps Container */
.meta-steps-container {
    background: var(--white);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 5, 5, 0.1);
}

.steps-timeline {
    position: relative;
    padding-left: 80px;
}

.step-item {
    position: relative;
    margin-bottom: 50px;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number-wrapper {
    position: absolute;
    left: -80px;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.step-connector {
    width: 2px;
    height: calc(100% - 50px);
    background: linear-gradient(to bottom, var(--brand-red), var(--whatsapp-green));
    margin-top: 10px;
}

.step-content-wrapper {
    display: flex;
    gap: 30px;
    background: var(--light-gray);
    padding: 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.step-content-wrapper:hover {
    transform: translateX(10px);
    border-color: var(--brand-red);
    background: var(--white);
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    background-color: #1877F2;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.step-description {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 1rem;
}

.step-requirements {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.requirement-chip {
    background: rgba(255, 5, 5, 0.1);
    color: var(--brand-red);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.requirement-chip i {
    color: var(--whatsapp-green);
}

.step-link {
    color: var(--brand-red);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.step-link:hover {
    gap: 10px;
    text-decoration: underline;
}

/* Code Snippet */
.code-snippet {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    margin: 15px 0;
}

.code-header {
    background: #2d2d2d;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 0.9rem;
}

.copy-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
}

.copy-btn:hover {
    color: var(--brand-red);
}

.code-body {
    padding: 15px;
}

.credential-row {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

.credential-row:last-child {
    border-bottom: none;
}

.credential-label {
    color: #888;
    width: 100px;
    font-size: 0.9rem;
}

.credential-value {
    color: #fff;
    font-family: monospace;
    font-size: 0.9rem;
}

/* Settings Preview */
.settings-preview {
    background: var(--white);
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
    border: 1px solid var(--light-gray);
}

.setting-field {
    margin-bottom: 15px;
}

.setting-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.field-mock {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-gray);
    border-radius: 8px;
    padding: 0 10px;
}

.field-mock i {
    color: var(--gray);
}

.field-mock input {
    flex: 1;
    padding: 10px 0;
    border: none;
    background: none;
    font-family: monospace;
}

/* Note and Warning Boxes */
.note-box,
.warning-box {
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.note-box {
    background: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp-green);
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.warning-box {
    background: rgba(255, 5, 5, 0.1);
    color: var(--brand-red);
    border: 1px solid rgba(255, 5, 5, 0.2);
}

/* Success Features */
.success-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.success-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
}

.success-item i {
    color: var(--whatsapp-green);
}

/* Permissions Section */
.permissions-section {
    text-align: center;
    margin: 60px 0;
}

.permissions-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.permissions-subtitle {
    color: var(--gray);
    margin-bottom: 40px;
}

.permissions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.permission-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.permission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-red);
}

.permission-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    margin: 0 auto 20px;
}

.permission-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
    font-family: monospace;
}

.permission-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.permission-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 5, 5, 0.1);
    color: var(--brand-red);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.permission-note {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.permission-note i {
    color: var(--brand-red);
    font-size: 24px;
}


/* Limits Section */
.limits-section {
    margin: 60px 0;
}

.limits-box {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid rgba(255, 5, 5, 0.1);
}

.limits-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    flex-shrink: 0;
}

.limits-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.limits-content p {
    margin-bottom: 10px;
    color: var(--gray);
}

.limits-content p strong {
    color: var(--dark);
}

/* Test Credentials */
.test-credentials {
    margin: 60px 0;
}

.test-box {
    background: var(--white);
    border: 2px dashed var(--brand-red);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.test-box h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.test-box h4 i {
    color: var(--brand-red);
}

.test-box p {
    color: var(--gray);
    margin-bottom: 20px;
}

.test-creds-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.test-creds-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-gray);
    padding: 10px 15px;
    border-radius: 8px;
}

.creds-label {
    font-weight: 600;
    color: var(--dark);
    min-width: 100px;
}

.creds-value {
    flex: 1;
    font-family: monospace;
    background: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    color: var(--brand-red);
}

.copy-btn-small {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 5px;
}

.copy-btn-small:hover {
    color: var(--brand-red);
}

/* Responsive */
@media (max-width: 768px) {
    .steps-timeline {
        padding-left: 0;
    }

    .step-number-wrapper {
        position: static;
        flex-direction: row;
        margin-bottom: 20px;
    }

    .step-connector {
        width: calc(100% - 50px);
        height: 2px;
        margin-left: 10px;
        background: linear-gradient(to right, var(--brand-red), var(--whatsapp-green));
    }

    .step-content-wrapper {
        flex-direction: column;
        padding: 20px;
    }

    .step-icon {
        margin: 0 auto;
    }

    .limits-box {
        flex-direction: column;
        text-align: center;
    }

    .troubleshooting-grid {
        grid-template-columns: 1fr;
    }

    .permissions-grid {
        grid-template-columns: 1fr;
    }

    .test-creds-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .creds-label {
        min-width: auto;
    }
}


/* Contact us page */
/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .contact-hero-title {
        font-size: 3.5rem;
    }
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Contact Info Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 480px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.contact-info-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-info-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Business Hours */
.business-hours {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-gray);
}

.business-hours h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.business-hours h3 i {
    color: var(--primary);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--light-gray);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: var(--dark);
}

.hours-time {
    color: var(--gray);
}

.hours-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(37, 211, 102, 0.05);
    border-radius: 12px;
    color: var(--gray);
    font-size: 0.95rem;
    border-left: 3px solid var(--primary);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-gray);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.contact-form-wrapper p {
    color: var(--gray);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--gray);
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* Map Section */
.map-section {
    padding: 0 0 80px 0;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-gray);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Success Message */
.success-message {
    display: none;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary-dark);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    align-items: center;
    gap: 10px;
}

.success-message.show {
    display: flex;
}

.success-message i {
    font-size: 1.5rem;
}

/* Light FAQ Section - Clean Design */
.faq-section-light {
    padding: 60px 0 80px;
    background: var(--white);
}

.section-header-light {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.section-title-light {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.section-subtitle-light {
    font-size: 1.1rem;
    color: var(--gray);
}

.faq-list-light {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-light {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.faq-item-light:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question-light {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    cursor: default;
}

.faq-question-light span:first-child {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
}

.check-mark {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
}

.faq-answer-light {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1rem;
    padding-right: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title-light {
        font-size: 1.8rem;
    }

    .faq-question-light span:first-child {
        font-size: 1.1rem;
        padding-right: 15px;
    }

    .faq-answer-light {
        padding-right: 0;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-question-light {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .check-mark {
        align-self: flex-end;
    }
}




/* legal pages */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 50%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 300px;
    height: 300px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 30px) rotate(5deg); }
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 3.5rem;
    }
}

.gradient-text {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: var(--gray);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
}

.last-updated i {
    color: var(--primary);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.1));
    color: var(--primary);
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 211, 102, 0.2);
    position: relative;
    z-index: 2;
}

/* Content Section Styles */
.content-section {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-gray);
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-section h2 i {
    color: var(--primary);
    font-size: 1.8rem;
}

.policy-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0 15px;
    color: var(--dark);
}

.policy-section p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-section ul, .policy-section ol {
    margin: 15px 0 15px 30px;
    color: var(--gray);
}

.policy-section li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.policy-section li strong {
    color: var(--primary-dark);
}

.policy-section a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    text-decoration: underline;
}

/* Note Box */
.note-box {
    background: rgba(37, 211, 102, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.2);
    padding: 15px 20px;
    border-radius: 8px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.note-box i {
    color: var(--primary);
    font-size: 1.2rem;
}

.note-box span {
    color: var(--gray);
    line-height: 1.6;
}

/* Contact Info */

/* Policy Intro */
.policy-intro {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary);
}

.policy-intro p {
    margin-bottom: 15px;
    color: var(--dark);
}

.policy-intro p:last-child {
    margin-bottom: 0;
}

/* Highlight Box */
.highlight-box {
    background: rgba(37, 211, 102, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.2);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.highlight-box i {
    color: var(--primary);
    margin-right: 10px;
}

.highlight-box strong {
    color: var(--primary-dark);
}

/* Contact Card */
.contact-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 16px;
    padding: 30px;
    margin-top: 30px;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card h3 i {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 40px;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .content-wrapper {
        padding: 30px 20px;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section h2 i {
        font-size: 1.5rem;
    }

    .policy-intro {
        padding: 20px;
    }

    .contact-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .policy-section ul, 
    .policy-section ol {
        margin-left: 20px;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .contact-item i {
        width: auto;
    }

    .note-box {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}