/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-blue: #1342C9;
    --light-blue: #6BA3FF;
    --purple: #A78BFA;
    --text-black: #1A1A1A;
    --text-gray: #6B7280;
    --off-white: #F5F5F7;
    --white: #ffffff;
    --border-gray: #E5E5E5;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-black);
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 24px;
    text-decoration: none;
    z-index: 9999;
    border-radius: 0 0 8px 0;
    font-weight: 600;
}

.skip-to-content:focus {
    top: 0;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-gray);
}

.nav-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-black);
    justify-self: start;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo-icon {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-center {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.nav-center a {
    text-decoration: none;
    color: var(--text-black);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-center a:hover {
    color: var(--primary-blue);
}

.nav-right {
    justify-self: end;
}

.login-btn {
    padding: 10px 28px;
    background: var(--primary-blue);
    color: var(--white) !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.login-btn:hover {
    background: #2D4CFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(61, 92, 255, 0.3);
}

.login-btn:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 3px;
}

.login-btn:active {
    transform: translateY(0);
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 24px;
    height: 2.5px;
    background: var(--text-black);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle:hover .hamburger-line {
    background: var(--primary-blue);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.mobile-menu.active {
    max-height: 300px;
    padding: 20px 0;
}

.mobile-menu-item {
    padding: 16px 40px;
    text-decoration: none;
    color: var(--text-black);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mobile-menu-item:hover {
    background: rgba(19, 66, 201, 0.04);
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Hero Section */
.hero {
    padding: 140px 0 60px;
    text-align: center;
    background: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-black);
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.5;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-bottom: 60px;
}

.cta-button:hover {
    background: #2D4CFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 92, 255, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.hero-image {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.hero-image dotlottie-player {
    max-width: 100%;
    height: auto;
}

.placeholder-image-hero {
    width: 900px;
    height: 450px;
    background: #000;
    border-radius: 20px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-tag {
    display: inline-block;
    padding: 8px 20px;
    border: 1.5px solid var(--text-black);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-black);
    letter-spacing: -1px;
}

.feature-description {
    font-size: 19px;
    color: var(--text-gray);
    line-height: 1.7;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    width: 100%;
    max-width: 500px;
    height: 350px;
    background: #000;
    border-radius: 20px;
}

.feature-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(19, 66, 201, 0.02) 0%, 
        rgba(107, 163, 255, 0.03) 25%,
        rgba(255, 255, 255, 1) 50%,
        rgba(107, 163, 255, 0.03) 75%,
        rgba(19, 66, 201, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107, 163, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.pricing::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(19, 66, 201, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text-black);
    letter-spacing: -1.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 32px;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 32px 0 40px 0;
}

.toggle-container {
    cursor: pointer;
    user-select: none;
}

.toggle-track {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: #e2e8f0;
    border-radius: 50px;
    padding: 4px;
    gap: 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease;
}

.toggle-option {
    position: relative;
    z-index: 10;
    font-size: 14px;
    font-weight: 500;
    color: #94a3b8;
    padding: 6px 18px;
    transition: color 0.3s ease, font-weight 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}

.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    width: calc(50% - 4px);
    background: linear-gradient(135deg, #1342C9 0%, #2563eb 50%, #3b82f6 100%);
    border-radius: 50px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(19, 66, 201, 0.25), 0 1px 3px rgba(19, 66, 201, 0.15);
    z-index: 1;
}

/* When unchecked (Monthly selected) */
#pricingToggle:not(:checked) ~ .toggle-track .toggle-option:first-child,
.toggle-container:has(input:not(:checked)) .toggle-option:first-child {
    color: #ffffff !important;
    font-weight: 500;
}

#pricingToggle:not(:checked) ~ .toggle-track .toggle-option:last-child,
.toggle-container:has(input:not(:checked)) .toggle-option:last-child {
    color: #94a3b8 !important;
    font-weight: 500;
}

.toggle-container:has(input:not(:checked)) .toggle-slider {
    transform: translateX(0);
}

/* When checked (Annual selected) */
#pricingToggle:checked ~ .toggle-track .toggle-option:first-child,
.toggle-container:has(input:checked) .toggle-option:first-child {
    color: #94a3b8 !important;
    font-weight: 500;
}

#pricingToggle:checked ~ .toggle-track .toggle-option:last-child,
.toggle-container:has(input:checked) .toggle-option:last-child {
    color: #ffffff !important;
    font-weight: 500;
}

.toggle-container:has(input:checked) .toggle-slider {
    transform: translateX(100%);
}

.toggle-container:hover .toggle-slider {
    box-shadow: 0 4px 12px rgba(19, 66, 201, 0.3), 0 2px 4px rgba(19, 66, 201, 0.2);
}

.toggle-container:active .toggle-track {
    transform: scale(0.98);
}

.save-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
    white-space: nowrap;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--off-white);
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.pro {
    background: var(--primary-blue);
    color: var(--white);
}

.plan-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-black);
}

.pricing-card.pro .plan-name {
    color: var(--white);
}

.plan-price {
    margin-bottom: 32px;
}

.currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-black);
    display: inline;
    line-height: 1.3;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.price-period {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-gray);
}

.pricing-card.pro .currency,
.pricing-card.pro .price-amount {
    color: var(--white);
}

.pricing-card.pro .price-period {
    color: rgba(255, 255, 255, 0.8);
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.plan-features li {
    padding: 10px 0;
    color: var(--text-black);
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card.pro .plan-features li {
    color: var(--white);
}

.plan-features li::before {
    content: "✓";
    font-weight: 600;
    flex-shrink: 0;
}

.plan-button {
    width: 100%;
    padding: 16px 40px;
    background: transparent;
    color: var(--text-black);
    border: 2px solid var(--text-black);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    margin-top: auto;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.plan-button:hover {
    background: var(--text-black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.plan-button:active {
    transform: translateY(0);
}

.pricing-card.pro .plan-button {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.pricing-card.pro .plan-button:hover {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Demo Section */
.demo-section {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, #1342C9 0%, #2563eb 25%, #1342C9 50%, #6BA3FF 75%, #2563eb 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

/* Artistic grain texture */
.demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

/* Flowing animated lines */
.demo-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: 
        linear-gradient(90deg, 
            transparent 0%,
            rgba(255, 255, 255, 0.03) 25%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.03) 75%,
            transparent 100%
        );
    animation: flowingLines 8s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes flowingLines {
    0% { transform: translateX(0) skewX(-15deg); }
    100% { transform: translateX(50%) skewX(-15deg); }
}

.demo-section .section-title {
    color: white;
    position: relative;
    z-index: 2;
    font-size: 32px;
    margin-bottom: 12px;
}

.demo-subtitle {
    text-align: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.demo-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 28px;
    border-radius: 18px;
    box-shadow: 
        0 20px 60px rgba(19, 66, 201, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    min-height: 400px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: #4a5568;
    margin-bottom: 4px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #f8fafc;
    color: var(--text-black);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6B7280;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1342C9;
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(19, 66, 201, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #DC2626;
}

.error-message {
    display: block;
    color: #DC2626;
    font-size: 11px;
    margin-top: 3px;
    min-height: 16px;
}

/* Honeypot field - hidden from humans, visible to bots */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
}

/* Phone input with country code */
.phone-input-wrapper {
    display: flex;
    gap: 10px;
}

.country-code-wrapper {
    position: relative;
}

.country-code-input {
    width: 90px;
    min-width: 90px;
    max-width: 90px;
    padding: 10px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #f8fafc;
    color: var(--text-black);
    text-align: center;
}

.country-code-input:focus {
    outline: none;
    border-color: #1342C9;
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(19, 66, 201, 0.1);
}

.country-code-input::placeholder {
    color: #6B7280;
}

.country-code-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    max-height: 250px;
    overflow-y: auto;
    background: white;
    border: 2px solid #1342C9;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(19, 66, 201, 0.2);
    margin-top: 6px;
    z-index: 1000;
    display: none;
}

.country-code-dropdown.show {
    display: block;
}

.country-code-option {
    padding: 10px 12px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.country-code-option:hover {
    background: #f7fafc;
}

.country-code-option .flag {
    font-size: 18px;
}

.country-code-option .code {
    font-weight: 600;
    color: var(--text-black);
}

.phone-input-wrapper input[type="tel"] {
    flex: 1;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-button {
    width: 100%;
    padding: 12px;
    background: #2D2D2D;
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 6px;
}

.submit-button:hover {
    background: #1A1A1A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

.form-fields {
    display: block;
}

.form-fields.hidden {
    display: none;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
}

.form-success.visible {
    display: flex;
    animation: successFadeIn 0.5s ease-out;
}

@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    margin-bottom: 24px;
    animation: successIconPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successIconPop {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon svg {
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

.form-success h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-black);
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.form-success p {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
    max-width: 400px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gray), transparent);
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text-black);
    letter-spacing: -1.5px;
}

.about-tagline {
    font-size: 18px;
    color: var(--text-gray);
    font-weight: 400;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.about-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(19, 66, 201, 0.12);
    border-color: var(--primary-blue);
}

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

.about-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(19, 66, 201, 0.08), rgba(107, 163, 255, 0.08));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.about-card:hover .about-icon {
    background: linear-gradient(135deg, rgba(19, 66, 201, 0.15), rgba(107, 163, 255, 0.15));
    transform: scale(1.05);
}

.about-card h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--text-black);
}

.about-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.about-mission {
    background: var(--white);
    border-radius: 24px;
    padding: 60px;
    border: 1px solid var(--border-gray);
    position: relative;
    overflow: hidden;
}

.about-mission::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(19, 66, 201, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.mission-content {
    position: relative;
    z-index: 1;
}

.mission-content h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-black);
    text-align: center;
}

.mission-content p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

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

.stat-item::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: var(--border-gray);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-label {
    display: block;
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 500;
}

/* Footer - Sleek & Thin */
.footer {
    padding: 20px 0;
    background: var(--primary-blue);
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
    line-height: 1;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.copyright {
    font-size: 13px;
    color: var(--white);
    opacity: 0.8;
    margin: 0;
    padding: 0;
    line-height: 28px;
    height: 28px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    opacity: 0.9;
    white-space: nowrap;
}

.footer-link:hover {
    opacity: 1;
}

.footer-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.footer-linkedin:hover {
    background: rgba(255, 255, 255, 0.15);
}

.footer-linkedin svg {
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 48px;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-title {
        font-size: 36px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .hero-image dotlottie-player {
        width: 100% !important;
        max-width: 700px;
        height: 350px !important;
    }

    .placeholder-image-hero {
        width: 100%;
        max-width: 700px;
        height: 350px;
    }
    
    .feature-image {
        max-width: 450px;
    }

    .nav-content {
        grid-template-columns: auto 1fr auto;
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 120px 0 50px;
    }

    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 38px;
    }

    .feature-row {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
        position: relative;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .copyright {
        font-size: 12px;
        white-space: normal;
    }
    
    .footer-right {
        gap: 16px;
    }

    .nav-center {
        display: none;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding: 110px 0 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .feature-row {
        gap: 20px;
    }

    .feature-content {
        order: 1;
    }

    .feature-visual {
        order: 2;
    }

    .feature-title {
        font-size: 30px;
    }

    .section-title {
        font-size: 34px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image dotlottie-player {
        width: 100% !important;
        height: 320px !important;
    }

    .placeholder-image-hero {
        width: 100%;
        height: 320px;
    }
    
    .feature-image {
        max-width: 100%;
    }

    .features,
    .pricing,
    .demo-section,
    .about-section {
        padding: 60px 0;
    }

    /* About Section Responsive */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }

    .about-header h2 {
        font-size: 36px;
    }

    .about-mission {
        padding: 40px 28px;
    }

    .mission-content h3 {
        font-size: 28px;
    }

    .mission-content p {
        font-size: 16px;
    }

    .mission-stats {
        gap: 32px;
    }

    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .nav-center a {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 30px;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .feature-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 28px;
    }

    .nav-content {
        grid-template-columns: auto 1fr auto;
    }

    .hero-image dotlottie-player {
        width: 100% !important;
        height: 250px !important;
    }

    .placeholder-image-hero {
        width: 100%;
        height: 250px;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 15px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .features,
    .pricing,
    .demo-section,
    .about-section {
        padding: 50px 0;
    }

    .toggle-option {
        font-size: 14px;
        padding: 8px 16px;
    }

    .save-badge {
        font-size: 9px;
        padding: 3px 8px;
    }

    .pricing-toggle {
        gap: 8px;
    }

    .feature-row {
        margin-bottom: 60px;
    }

    /* About Section Mobile */
    .about-header h2 {
        font-size: 28px;
    }

    .about-tagline {
        font-size: 16px;
    }

    .about-mission {
        padding: 32px 20px;
    }

    .mission-content h3 {
        font-size: 24px;
    }

    .mission-stats {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 14px;
    }
}

/* Hero V3 - Exact Reference Match */
.hero-v3 {
    padding: 120px 0 80px;
    min-height: auto;
}

.hero-title-v3 {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.hero-subtitle-v3 {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 32px;
}

.cta-button-v3 {
    padding: 18px 32px;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 24px;
}

.cta-button-v3 svg {
    width: 18px;
    height: 18px;
}

.hero-image-v3 {
    margin-top: 16px;
}

.hero-image-v3 dotlottie-player {
    width: 1000px !important;
    height: 500px !important;
    max-width: 100%;
}

/* Responsive for V3 */
@media (max-width: 1024px) {
    .hero-title-v3 {
        font-size: 44px;
    }
    
    .hero-image-v3 dotlottie-player {
        width: 100% !important;
        max-width: 900px;
        height: 450px !important;
    }
}

@media (max-width: 768px) {
    .hero-v3 {
        padding: 100px 0 60px;
    }
    
    .hero-title-v3 {
        font-size: 36px;
    }
    
    .hero-subtitle-v3 {
        font-size: 16px;
    }
    
    .cta-button-v3 {
        padding: 16px 28px;
        font-size: 16px;
    }
    
    .hero-image-v3 dotlottie-player {
        width: 100% !important;
        height: 350px !important;
    }
}

@media (max-width: 480px) {
    .hero-title-v3 {
        font-size: 30px;
    }
    
    .hero-subtitle-v3 {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    .cta-button-v3 {
        padding: 15px 26px;
        font-size: 15px;
    }
    
    .hero-image-v3 dotlottie-player {
        width: 100% !important;
        height: 280px !important;
    }
}

/* About Section - Single Card with Gradient Background */
.about-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-background-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(19, 66, 201, 0.03) 0%, 
        rgba(99, 102, 241, 0.05) 25%,
        rgba(139, 92, 246, 0.04) 50%,
        rgba(236, 72, 153, 0.03) 75%,
        rgba(251, 146, 60, 0.02) 100%);
    z-index: 0;
}

.about-decorative-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

.about-circle-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #1342C9, #6BA3FF);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.about-circle-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    top: 50%;
    right: -100px;
    animation-delay: -7s;
}

.about-circle-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #EC4899, #F43F5E);
    bottom: -100px;
    left: 30%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.about-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 60px;
}

.about-content-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-vision-card,
.about-team-card,
.about-passion-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about-vision-card:hover,
.about-team-card:hover,
.about-passion-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.vision-icon,
.team-icon,
.passion-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.vision-icon {
    background: linear-gradient(135deg, rgba(19, 66, 201, 0.1), rgba(107, 163, 255, 0.15));
}

.team-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.15));
}

.passion-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(244, 63, 94, 0.15));
}


.about-vision-card h3,
.about-team-card h3,
.about-passion-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.about-vision-card h3 {
    background: linear-gradient(135deg, #1342C9, #6BA3FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-team-card h3 {
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-passion-card h3 {
    background: linear-gradient(135deg, #EC4899, #F43F5E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-vision-card p,
.about-team-card p,
.about-passion-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

/* About Section Responsive */
@media (max-width: 1024px) {
    .about-content-wrapper {
        gap: 24px;
    }
    
    .about-vision-card,
    .about-team-card,
    .about-passion-card {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-header {
        margin-bottom: 50px;
    }
    
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .vision-icon,
    .team-icon,
    .passion-icon {
        width: 72px;
        height: 72px;
    }
    
    .vision-icon svg,
    .team-icon svg,
    .passion-icon svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-header {
        margin-bottom: 40px;
    }
    
    .about-vision-card,
    .about-team-card,
    .about-passion-card {
        padding: 28px 20px;
    }
    
    .about-vision-card h3,
    .about-team-card h3,
    .about-passion-card h3 {
        font-size: 20px;
    }
    
    .about-vision-card p,
    .about-team-card p,
    .about-passion-card p {
        font-size: 15px;
    }
}
