@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700;800;900&family=Syne:wght@400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #0e7d5a;
    --secondary: #2b2878;
    --accent: #25d366;
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET / BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

/* ===== UTILITIES ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 3rem 0;
}

.section-sm {
    padding: 2rem 0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: 50%; }

.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }

.bg-white { background: var(--white); }
.bg-gray-50 { background: var(--gray-50); }
.bg-primary { background: var(--primary); }
.bg-secondary { background: var(--secondary); }

.text-white { color: var(--white); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-800 { color: var(--gray-800); }
.text-gray-900 { color: var(--gray-900); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* ===== BADGE ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-md);
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 2rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white) !important;
    box-shadow: 0 4px 14px 0 rgba(14, 125, 90, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(14, 125, 90, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding:  0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-container img{
    width: 110px;
}
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.navbar-nav .nav-items {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
}
.navbar .btn-group{
    display: flex;
    gap: 6px;
}

@media (max-width:768px) {
    .navbar-nav .nav-items {
        display: none;
    }
    .navbar-container img{
        width: 90px;
    }
    .navbar .btn-group .btn{
        white-space: nowrap;
    }
}
/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(14, 125, 90, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(43, 40, 120, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(37, 211, 102, 0.2) 0%, transparent 50%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    background-size: 400px 400px;
}

.hero-floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(14, 125, 90, 0.1), rgba(43, 40, 120, 0.1));
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.hero-floating-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-floating-shape.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.hero-floating-shape.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.hero-visual {
    position: relative;
}

.hero-phone-container {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.hero-phone-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.3), transparent);
    border-radius: 50%;
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    animation: bounce-in 0.6s ease-out;
    z-index: 99;
}

.hero-floating-card.top-left {
    top: -20px;
    left: -40px;
    animation-delay: 0.5s;
}

.hero-floating-card.bottom-right {
    bottom: -20px;
    right: -40px;
    animation-delay: 1s;
}

@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(20px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        transform: translateY(0);
    }
}

.floating-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.hero-phone {
    position: relative;
    background: #000;
    border-radius: 2rem;
    padding: 1rem;
    box-shadow: var(--shadow-2xl);
    animation: slide-up 0.8s ease-out 0.3s both;
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.phone-screen {
    background: #f8f9fa;
    border-radius: 1.5rem;
    padding: 1rem;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #075e54;
    color: white;
    border-radius: 1rem 1rem 0.5rem 0.5rem;
}

.chat-avatar {
    width: 32px;
    height: 32px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.chat-info {
    flex: 1;
}

.chat-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.chat-status {
    font-size: 0.75rem;
    opacity: 0.8;
}

.chat-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: calc(100% - 60px);
    overflow-y: auto;
}

.chat-message {
    max-width: 80%;
    padding: 0.5rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    line-height: 1.4;
    position: relative;
}

.chat-message.in {
    background: #e3f2fd;
    align-self: flex-start;
    border-bottom-left-radius: 0.25rem;
}

.chat-message.out {
    background: #dcf8c6;
    align-self: flex-end;
    border-bottom-right-radius: 0.25rem;
}

.message-time {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 0.25rem;
}

.product-message {
    background: white;
    border-radius: 1rem;
    padding: 0.75rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.product-image {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #666;
}

.product-info {
    flex: 1;
}

.product-name {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.product-price {
    color: var(--primary);
    font-weight: 600;
}

.add-to-cart-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.add-to-cart-btn:hover {
    background: var(--secondary);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: var(--gray-50);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.7;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.step-title {
    margin-bottom: 10px;
    font-size: 18px;
}

.step-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== FEATURES ===== */
.features {
    background: var(--white);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:0px;
    margin-bottom: 0px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 125, 90, 0.05), rgba(43, 40, 120, 0.05));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.feature-card:hover h3{
    color: white;
}
.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    transform: scale(1.02);
}

.feature-card:hover .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.feature-card:hover .feature-description {
    color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgb(14, 125, 90), rgb(43, 40, 120));
    color: var(--primary);
    font-size: 2rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    margin-bottom: 10px;
    font-size: 20px;
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== BENEFITS ===== */
.benefits {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 125, 90, 0.03), rgba(43, 40, 120, 0.03));
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.benefit-content h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.benefit-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

.benefits-visual {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.benefits-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.visual-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.visual-subtitle {
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.visual-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.visual-stat {
    text-align: center;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.visual-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.visual-stat-label {
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
}

.visual-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 2rem 0;
}

.regions-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.regions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.region-tag {
    background: linear-gradient(135deg, rgba(14, 125, 90, 0.1), rgba(43, 40, 120, 0.1));
    color: var(--primary);
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    margin-bottom: 1rem;
    color: white;
    font-size: 30px;
}

.cta-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.9;
    color:white;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* ===== FOOTER ===== */
footer {
    background: rgb(247, 247, 247);
    color: #000;
    padding: 3rem 0 1rem;
    margin-top: 2rem;
}

footer .container {
    max-width: 1200px;
}

footer .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0;
}

footer .logo img {
    width: 140px;
    height: auto;
}

footer .quick-links ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

footer .quick-links ul li a {
    color: #000;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 5px;
    border-radius: 2rem;
    transition: var(--transition-fast);
    white-space: nowrap;
}

footer .quick-links ul li a:hover {
    background: var(--primary);
    color: #ffffff;
}

footer .social-icons ul {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

footer .social-icons ul li a i {
    font-size: 1rem;
    padding: 0.75rem;
    border: 1px solid rgb(121, 121, 121);
    border-radius: 50%;
    color: #000;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

footer .social-icons ul li a i:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

footer .action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}



footer .action-btn .btn {
    display: flex;
    gap: 0.75rem;
}

footer .action-btn .btn a {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 2rem;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
    text-decoration: none;
}
footer .action-btn .btn {
    font-size: 14px;
}

footer .action-btn .btn a.btn-1 {
    background: var(--secondary);
    color: #ffffff;
    border: 1px solid var(--secondary);
}

footer .action-btn .btn a.btn-1:hover {
    background: rgba(43, 40, 120, 0.8);
}

footer .action-btn .btn a.btn-2 {
    background: #ffffff;
    color: var(--secondary);
    border: 1px solid #ffffff;
}

footer .action-btn .btn a.btn-2:hover {
    background: rgba(255, 255, 255, 0.9);
}

footer .copyright {
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

footer .copyright p {
    color: #000;
    font-size: 0.875rem;
    margin: 0;
}
@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-left {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-right {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scale-in {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: var(--transition-slow);
}

.animate-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(30px);
    transition: var(--transition-slow);
}

.animate-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: var(--transition-slow);
}

.animate-scale.animate {
    opacity: 1;
    transform: scale(1);
}
@media (max-width:1200px) {
    .features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr ;
        gap: 20px;
    }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    h3 {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
        /* flex-direction: column; */
        gap: 0.75rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .navbar-nav {
        display: none;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        align-items: center;
    }
    
    .visual-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .regions-list {
        justify-content: center;
        gap: 0.375rem;
    }
    .visual-stat-number{
        font-size: 16px;
    }
    .visual-stat{
        padding: 12px;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        margin-bottom: 0.75rem;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 0;
    }
    
    .step-card,
    .feature-card {
        padding: 10px;
    }
    
    .benefits-visual {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.75rem;
    }
    .hero-actions{
        margin-bottom: 10px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }
    
    body {
        font-size: 13px;
    }
    
    .section {
        padding: 1.5rem 0;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .step-card,
    .feature-card {
        padding: 10px;
    }
    
    .benefits-visual {
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    footer {
        padding: 2rem 0 1rem;
    }
    
    footer .logo img {
        width: 120px;
    }
    
    footer .quick-links ul li a {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }
    
    /* Footer mobile styles */
    footer .top {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    footer .quick-links ul {
        justify-content: center;
        gap: 0.5rem;
    }
    
    footer .social-icons ul {
        justify-content: center;
    }
    
    footer .action-btn {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    footer .action-btn span {
        font-size: 1rem;
    }
    
    footer .action-btn .btn {
        width: 100%;
        justify-content: center;
    }
    
    footer .action-btn .btn a {
        justify-content: center;
        flex: 1;
        white-space: nowrap;
        padding: 10px;
    }
}






.cta {
    padding: 4rem 0 5rem;
}
.cta-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}
.cta-content {
    padding-right: 1rem;
}
.cta-content .cta-title {
    font-size: clamp(2.5rem, 3vw, 3.5rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}
.cta-content .cta-description {
    max-width: 520px;
    margin-bottom: 2rem;
    color: rgba(233, 233, 233, 0.8);
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.cta-form {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.12);
    border-radius: 32px;
    padding: 20px;
}
.cta-form h3 {
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
}
.cta-form p {
    margin-bottom: 1.75rem;
    color: var(--gray-600);
    line-height: 1.7;
}
.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    /* margin-bottom: 1rem; */
    row-gap: 0px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}
.form-group label {
    font-size: 0.95rem;
    color: var(--gray-700);
    font-weight: 600;
    text-align:left;
}
.form-group input,
.form-group textarea {
    width: 100%;
    /* min-height: 3.25rem; */
    padding:12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.95);
    font-family: inherit;
    font-size: 1rem;
    color: var(--gray-900);
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(37, 211, 102, 0.8);
    box-shadow: 0 0 0 0.25rem rgba(37, 211, 102, 0.12);
}
.form-group textarea {
    min-height: 160px;
    resize: vertical;
    padding-top: 1rem;
}
.btn.btn-full {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 999px;
    justify-content: center;
}
@media (max-width: 992px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }
    .form-group{
        margin-bottom: 10px;
    }
    .cta-form {
        padding: 15px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .cta {
        padding: 3rem 0 4rem;
    }
    .cta-actions {
        flex-direction: column;
    }
}