* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --sky-50: #f0f9ff;
    --sky-100: #e0f2fe;
    --sky-400: #38bdf8;
    --sky-600: #0284c7;
    --violet-50: #f5f3ff;
    --violet-100: #ede9fe;
    --violet-500: #8b5cf6;
    --violet-600: #7c3aed;
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-600: #d97706;
    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-600: #e11d48;
    --cyan-50: #ecfeff;
    --cyan-100: #cffafe;
    --cyan-600: #0891b2;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--slate-900);
    background: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-narrow {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--slate-200);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--blue-600), var(--emerald-500));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon span {
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--slate-900);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--slate-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--blue-600);
}

.nav-btn {
    background: linear-gradient(135deg, var(--blue-600), var(--emerald-500));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: box-shadow 0.3s;
}

.nav-btn:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--slate-700);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--slate-700);
    left: 0;
    transition: transform 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-mobile {
    display: none;
    background: white;
    border-bottom: 1px solid var(--slate-200);
    padding: 1rem;
}

.nav-mobile.active {
    display: block;
}

.nav-mobile-link {
    display: block;
    padding: 0.75rem 0;
    color: var(--slate-700);
    text-decoration: none;
    font-weight: 500;
}

.nav-mobile-btn {
    display: block;
    margin-top: 0.75rem;
    background: linear-gradient(135deg, var(--blue-600), var(--emerald-500));
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 7rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/325185/pexels-photo-325185.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.92), rgba(255, 255, 255, 0.90), rgba(236, 253, 245, 0.92));
    z-index: 1;
}

.hero-blob {
    position: absolute;
    width: 288px;
    height: 288px;
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.25;
    animation: pulse 3s ease-in-out infinite;
    z-index: 2;
}

.hero-blob-1 {
    top: 5rem;
    right: 2.5rem;
    background: var(--blue-300);
}

.hero-blob-2 {
    bottom: 2.5rem;
    left: 2.5rem;
    background: var(--emerald-300);
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 0.4; }
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 3;
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--slate-200);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald-500);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-700);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--slate-900);
}

.gradient-text {
    background: linear-gradient(135deg, var(--blue-600), var(--emerald-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--slate-600);
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-600), var(--emerald-500));
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: white;
    color: var(--slate-900);
    border: 2px solid var(--slate-900);
}

.btn-secondary:hover {
    background: var(--slate-900);
    color: white;
}

.btn-dark {
    background: var(--slate-900);
    color: white;
}

.btn-dark:hover {
    background: var(--slate-800);
}

.btn-light {
    background: white;
    color: var(--blue-600);
}

.btn-light:hover {
    background: var(--slate-50);
}

.btn-full {
    width: 100%;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--slate-200);
    transition: box-shadow 0.3s;
}

.feature-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon-blue {
    background: var(--blue-100);
    color: var(--blue-600);
}

.feature-icon-emerald {
    background: var(--emerald-100);
    color: var(--emerald-600);
}

.feature-icon-sky {
    background: var(--sky-100);
    color: var(--sky-600);
}

.feature-card h3 {
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--slate-600);
    text-align: center;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--blue-100);
    color: var(--blue-700);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-badge-emerald {
    background: var(--emerald-100);
    color: var(--emerald-700);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--slate-600);
    max-width: 48rem;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid;
}

.about-card-blue {
    background: linear-gradient(135deg, var(--blue-50), var(--sky-50));
    border-color: var(--blue-100);
}

.about-card-emerald {
    background: linear-gradient(135deg, var(--emerald-50), #d1fae5);
    border-color: var(--emerald-100);
}

.about-card-violet {
    background: linear-gradient(135deg, var(--violet-50), #ede9fe);
    border-color: var(--violet-100);
}

.about-card-amber {
    background: linear-gradient(135deg, var(--amber-50), #fef3c7);
    border-color: var(--amber-100);
}

.about-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-icon-blue {
    background: var(--blue-600);
    color: white;
}

.about-icon-emerald {
    background: var(--emerald-600);
    color: white;
}

.about-icon-violet {
    background: var(--violet-600);
    color: white;
}

.about-icon-amber {
    background: var(--amber-600);
    color: white;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--slate-700);
    line-height: 1.75;
}

.about-stats {
    background: var(--slate-900);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.about-stats-content h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.about-stats-content > p {
    color: var(--slate-300);
    font-size: 1.125rem;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-emerald { color: var(--emerald-400); }
.stat-blue { color: var(--blue-400); }
.stat-violet { color: var(--violet-500); }
.stat-sky { color: var(--sky-400); }

.stat-label {
    color: var(--slate-400);
    font-size: 0.875rem;
}

/* Platform Section */
.platform {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--slate-50), var(--blue-50));
}

.platform-cta {
    text-align: center;
    margin-top: 4rem;
}

.platform-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.platform-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--slate-200);
    overflow: hidden;
    transition: box-shadow 0.3s;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.platform-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.platform-content {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.platform-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.platform-icon-blue {
    background: var(--blue-100);
    color: var(--blue-600);
}

.platform-icon-emerald {
    background: var(--emerald-100);
    color: var(--emerald-600);
}

.platform-icon-violet {
    background: var(--violet-100);
    color: var(--violet-600);
}

.platform-content h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.platform-content > p {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin-bottom: 1.5rem;
}

.platform-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.platform-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--slate-700);
}

.platform-features li::before {
    content: '';
    width: 24px;
    height: 24px;
    background: var(--emerald-500);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
}

.platform-badge {
    display: inline-block;
    background: var(--emerald-100);
    color: var(--emerald-700);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
}

.platform-badge-alt {
    background: var(--blue-100);
    color: var(--blue-700);
}

.platform-badge-violet {
    background: var(--violet-100);
    color: var(--violet-700);
}

.platform-visual {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.platform-visual-blue {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
}

.platform-visual-emerald {
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
}

.platform-visual-violet {
    background: linear-gradient(135deg, var(--violet-500), var(--violet-600));
}

.platform-visual-text {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Why Section */
.why {
    padding: 5rem 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.why-card {
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid;
    transition: all 0.3s;
}

.why-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.why-card-blue {
    background: linear-gradient(135deg, var(--blue-50), var(--sky-50));
    border-color: var(--blue-100);
}

.why-card-blue:hover { border-color: var(--blue-300); }

.why-card-emerald {
    background: linear-gradient(135deg, var(--emerald-50), #d1fae5);
    border-color: var(--emerald-100);
}

.why-card-emerald:hover { border-color: #6ee7b7; }

.why-card-violet {
    background: linear-gradient(135deg, var(--violet-50), #ede9fe);
    border-color: var(--violet-100);
}

.why-card-violet:hover { border-color: #c4b5fd; }

.why-card-amber {
    background: linear-gradient(135deg, var(--amber-50), #fef3c7);
    border-color: var(--amber-100);
}

.why-card-amber:hover { border-color: #fcd34d; }

.why-card-rose {
    background: linear-gradient(135deg, var(--rose-50), #ffe4e6);
    border-color: var(--rose-100);
}

.why-card-rose:hover { border-color: #fda4af; }

.why-card-cyan {
    background: linear-gradient(135deg, var(--cyan-50), #cffafe);
    border-color: var(--cyan-100);
}

.why-card-cyan:hover { border-color: #67e8f9; }

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
}

.why-icon-blue { background: var(--blue-600); color: white; }
.why-icon-emerald { background: var(--emerald-600); color: white; }
.why-icon-violet { background: var(--violet-600); color: white; }
.why-icon-amber { background: var(--amber-600); color: white; }
.why-icon-rose { background: var(--rose-600); color: white; }
.why-icon-cyan { background: var(--cyan-600); color: white; }

.why-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--slate-700);
}

.why-difference {
    background: linear-gradient(to right, var(--slate-900), var(--slate-800));
    border-radius: 16px;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.why-difference-content {
    color: white;
}

.why-difference-content h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.why-difference-content > p {
    color: var(--slate-300);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.why-difference-list {
    list-style: none;
}

.why-difference-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--slate-300);
}

.why-difference-list li::before {
    content: '';
    width: 24px;
    height: 24px;
    background: var(--emerald-500);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
}

.why-difference-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.difference-stat {
    margin-bottom: 1.5rem;
}

.difference-stat:last-child {
    margin-bottom: 0;
}

.difference-stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.difference-stat-emerald {
    color: var(--emerald-400);
}

.difference-stat-blue {
    color: var(--blue-400);
}

.difference-stat-label {
    color: var(--slate-300);
}

/* Partners Section */
.partners {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--slate-50), var(--blue-50));
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.partner-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--slate-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.3s;
}

.partner-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.partner-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.partner-icon  img{
    width: 80px;
}

.partner-icon-blue {
    background: linear-gradient(135deg, var(--blue-600), var(--sky-500));
    color: white;
}

.partner-icon-violet {
    background: linear-gradient(135deg, var(--violet-600), #a78bfa);
    color: white;
}

.partner-icon-emerald {
    background: linear-gradient(135deg, var(--emerald-600), #6ee7b7);
    color: white;
}

.partner-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.partner-card p {
    font-size: 0.875rem;
    color: var(--slate-600);
}

.partners-integration {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--slate-200);
    text-align: center;
}

.partners-integration h3 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.partners-integration > p {
    font-size: 1.125rem;
    color: var(--slate-600);
    max-width: 32rem;
    margin: 0 auto 3rem;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.integration-item {
    background: var(--slate-50);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--slate-200);
    font-weight: 600;
    color: var(--slate-500);
}

.partners-cta {
    background: linear-gradient(to right, var(--blue-600), var(--emerald-500));
    border-radius: 12px;
    padding: 2rem;
    color: white;
}

.partners-cta h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.partners-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: white;
}

.contact-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid;
}

.benefit-card-blue {
    background: linear-gradient(135deg, var(--blue-50), var(--sky-50));
    border-color: var(--blue-100);
}

.benefit-card-emerald {
    background: linear-gradient(135deg, var(--emerald-50), #d1fae5);
    border-color: var(--emerald-100);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.benefit-card ul {
    list-style: none;
}

.benefit-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--slate-700);
}

.benefit-card li::before {
    content: '';
    width: 24px;
    height: 24px;
    background: var(--blue-500);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
}

.benefit-card-emerald li::before {
    background: var(--emerald-500);
}

/* Form Styles */
.waitlist-form {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--slate-200);
    transition: opacity 0.4s ease-out;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--slate-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: none;
}

.error-message {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--rose-50);
  border: 2px solid var(--rose-200);
  border-radius: 8px;
  color: #dc2626;
  font-size: 0.875rem;
  line-height: 1.4;
  display: none; /* hidden by default */
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.error-message.show {
  display: block;
  opacity: 1;
}


.form-disclaimer {
    font-size: 0.75rem;
    color: var(--slate-500);
    text-align: center;
    margin-top: 1rem;
}

.success-message {
  background: linear-gradient(135deg, var(--emerald-50), #d1fae5);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  border: 2px solid var(--emerald-200);
  opacity: 0;
  display: none; /* hidden by default */
  transition: opacity 0.5s ease-in-out;
}

.success-message.show {
  display: block;
  opacity: 1;
}


.success-icon {
    width: 80px;
    height: 80px;
    background: var(--emerald-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.success-message h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.success-message p {
    font-size: 1.125rem;
    color: var(--slate-700);
    margin-bottom: 2rem;
}

.btn-link {
    background: none;
    border: none;
    color: var(--emerald-600);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.btn-link:hover {
    color: var(--emerald-700);
}

/* Footer */
.footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-200);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-text {
    font-size: 0.875rem;
    color: var(--slate-600);
}

.footer-logo img {
    width: 170px;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .hero {
        padding-top: 9rem;
        padding-bottom: 8rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-description {
        font-size: 1.5rem;
    }

    .hero-features {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .platform-item {
        grid-template-columns: repeat(2, 1fr);
    }

    .platform-item-reverse .platform-visual {
        order: -1;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-difference {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .integration-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hidden {
  display: none !important;
}

.submit-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-loading::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* Success message icon animation */
.success-icon svg {
    animation: checkmark 0.4s ease-in-out 0.2s both;
}

@keyframes checkmark {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Add to your existing styles.css */

/* hCaptcha container styling */
.h-captcha {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

/* Error state for hCaptcha */
.h-captcha.error {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}