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

:root {
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-300: #93c5fd;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --blue-900: #1e3a8a;

    --sky-500: #0ea5e9;
    --sky-600: #0284c7;

    --cyan-500: #06b6d4;
    --cyan-600: #0891b2;

    --emerald-500: #10b981;
    --emerald-600: #059669;

    --amber-500: #f59e0b;
    --amber-600: #d97706;

    --rose-500: #f43f5e;
    --rose-600: #e11d48;

    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-tertiary: #6b7280;
    --border-color: #e5e7eb;
    --nav-bg: rgba(255, 255, 255, 0.95);
}

[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-tertiary: #94a3b8;
    --border-color: #334155;
    --nav-bg: rgba(15, 23, 42, 0.95);
    --gray-50: #1e293b;
    --gray-100: #334155;
    --gray-200: #475569;
    --gray-900: #f1f5f9;
    --gray-800: #e2e8f0;
    --gray-700: #cbd5e1;
    --gray-600: #94a3b8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
        padding-left: max(1.5rem, env(safe-area-inset-left));
        padding-right: max(1.5rem, env(safe-area-inset-right));
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
        padding-left: max(2rem, env(safe-area-inset-left));
        padding-right: max(2rem, env(safe-area-inset-right));
    }
}

.icon {
    display: inline-block;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .icon,
.btn-secondary:hover .icon,
.btn-language:hover .icon {
    transform: scale(1.2);
}

.hidden {
    display: none !important;
}

/* Navigation */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#nav.scrolled {
    background: var(--bg-primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: var(--gray-100);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.theme-toggle:hover {
    background: var(--gray-200);
    transform: rotate(20deg);
}

.theme-toggle svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gray-700);
    transition: transform 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    min-height: 60px;
    gap: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

#logo {
    height: 3rem;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

#logo:hover {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.3));
}

@media (min-width: 640px) {
    #logo {
        height: 4rem;
    }
}

#nav.scrolled #logo {
    height: 2.5rem;
}

@media (min-width: 640px) {
    #nav.scrolled #logo {
        height: 3rem;
    }
}

.nav-links {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
        gap: 2rem;
    }
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

@media (min-width: 1280px) {
    .nav-link {
        font-size: 1rem;
    }
}

.nav-link:hover {
    color: var(--blue-600);
}

.btn-primary, .btn-secondary, .btn-language {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: normal;
    text-align: center;
}

.btn-primary {
    background: var(--blue-600);
    color: white;
}

.btn-primary:hover {
    background: var(--blue-700);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    color: var(--blue-600);
    border: 2px solid var(--blue-600);
}

.btn-secondary:hover {
    background: var(--blue-50);
}

.btn-language {
    background: var(--gray-100);
    color: var(--gray-700);
}

.btn-language:hover {
    background: var(--gray-200);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-600);
    border: 2px solid var(--blue-700);
    border-radius: 0.75rem;
    color: white;
    cursor: pointer;
    padding: 0.75rem;
    min-width: 52px;
    min-height: 52px;
    flex-shrink: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(37, 99, 235, 0.3);
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.mobile-menu-btn:hover {
    background: var(--blue-700);
    border-color: var(--blue-800);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.4);
}

.mobile-menu-btn svg {
    width: 2rem;
    height: 2rem;
    pointer-events: none;
    stroke-width: 2.5;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.25rem;
    width: 100%;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-link {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.875rem 0;
    font-size: 1.0625rem;
    transition: color 0.2s ease;
    border-bottom: 1px solid var(--border-color);
}

.mobile-link:hover {
    color: var(--blue-600);
}

.mobile-link:active {
    color: var(--blue-700);
}

.mobile-btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 1rem 6rem;
    overflow: hidden;
    display: flex;
    align-items: center;
}

@media (min-width: 640px) {
    .hero {
        padding: 8rem 1.5rem 6rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 8rem 2rem 6rem;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e3a8a, #1e40af, #3b82f6, #60a5fa);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(96, 165, 250, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(147, 197, 253, 0.2) 0%, transparent 50%);
    animation: overlayMove 20s ease infinite;
}

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

@keyframes overlayMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, 20px) scale(1.1);
    }
}

.blob {
    position: absolute;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    opacity: 0.4;
    border-radius: 50%;
    mix-blend-mode: overlay;
    filter: blur(60px);
    animation: blobFloat 12s ease-in-out infinite;
}

.blob-1 {
    top: -5rem;
    left: -5rem;
    animation-delay: 0s;
}

.blob-2 {
    top: -5rem;
    right: -5rem;
    animation-delay: 3s;
    animation-duration: 15s;
}

.blob-3 {
    bottom: -5rem;
    left: 20%;
    animation-delay: 6s;
    animation-duration: 18s;
}

.blob-4 {
    bottom: -5rem;
    right: 20%;
    animation-delay: 9s;
    animation-duration: 14s;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(40px, -60px) scale(1.2) rotate(90deg);
    }
    50% {
        transform: translate(-30px, 40px) scale(0.9) rotate(180deg);
    }
    75% {
        transform: translate(50px, 30px) scale(1.1) rotate(270deg);
    }
}

.floating-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 15%;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 40%;
    left: 80%;
    animation: particleFloat 10s ease-in-out infinite;
    animation-delay: 1s;
}

.particle-3 {
    width: 10px;
    height: 10px;
    top: 60%;
    left: 25%;
    animation: particleFloat 12s ease-in-out infinite;
    animation-delay: 2s;
}

.particle-4 {
    width: 7px;
    height: 7px;
    top: 30%;
    left: 60%;
    animation: particleFloat 9s ease-in-out infinite;
    animation-delay: 3s;
}

.particle-5 {
    width: 9px;
    height: 9px;
    top: 70%;
    left: 70%;
    animation: particleFloat 11s ease-in-out infinite;
    animation-delay: 4s;
}

.particle-6 {
    width: 5px;
    height: 5px;
    top: 50%;
    left: 40%;
    animation: particleFloat 7s ease-in-out infinite;
    animation-delay: 2.5s;
}

.particle-7 {
    width: 8px;
    height: 8px;
    top: 80%;
    left: 50%;
    animation: particleFloat 13s ease-in-out infinite;
    animation-delay: 5s;
}

.particle-8 {
    width: 6px;
    height: 6px;
    top: 25%;
    left: 90%;
    animation: particleFloat 9.5s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px) translateX(50px) scale(1.5);
        opacity: 0.8;
    }
}

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

.hero-text {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInDown 0.6s ease-out, pulse 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff, #93c5fd, #ffffff, #dbeafe);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 8s ease infinite, textGlow 2s ease-in-out infinite;
    display: inline-block;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
}

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

@keyframes textGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.6));
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
    }
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 3rem;
    line-height: 1.75;
    animation: fadeInUp 0.6s ease-out 0.2s;
    animation-fill-mode: both;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 0.6s ease-out 0.4s;
    animation-fill-mode: both;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-hero-primary, .btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary {
    background: white;
    color: var(--blue-600);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 40px rgba(255, 255, 255, 0.3);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-hero-primary:hover::before {
    transform: translateX(100%);
}

.btn-hero-primary:hover {
    background: white;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 60px rgba(255, 255, 255, 0.5);
    transform: translateY(-5px) scale(1.05);
}

.btn-hero-primary:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-hero-primary .icon {
    margin-left: 0.5rem;
    font-size: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-hero-primary:hover .icon {
    transform: translateX(0.5rem) scale(1.2) rotate(10deg);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-hero-secondary:hover::before {
    opacity: 1;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 40px rgba(255, 255, 255, 0.2);
}

.btn-hero-secondary:active {
    transform: translateY(-2px);
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 6rem;
    animation: fadeInUp 0.6s ease-out 0.6s;
    animation-fill-mode: both;
}

@media (min-width: 1024px) {
    .stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #bfdbfe;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pricing Section */
.pricing {
    padding: 6rem 1rem;
    background: var(--bg-secondary);
}

.pricing-container {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-primary);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--blue-200);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.pricing-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--blue-100);
    color: var(--blue-700);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--blue-600);
    margin-bottom: 0.5rem;
}

#animated-price {
    display: inline-block;
    transition: transform 0.1s ease;
}

@keyframes priceHighlight {
    0%, 100% {
        transform: scale(1);
        color: var(--blue-600);
    }
    50% {
        transform: scale(1.1);
        color: #10b981;
    }
}

.price-animating {
    animation: priceHighlight 0.5s ease-in-out;
}

.pricing-price-small {
    font-size: 1.25rem;
    color: var(--text-tertiary);
    font-weight: 400;
}

.pricing-price-large {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--blue-600);
    margin-right: 0.25rem;
}

.pricing-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.pricing-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.pricing-feature:hover {
    transform: translateX(8px);
    background: var(--blue-50);
}

.pricing-check {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-check svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.pricing-feature-text {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.pricing-divider {
    margin: 2rem 0;
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.pricing-optional-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-optional-features {
    display: grid;
    gap: 1rem;
}

.pricing-optional-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.pricing-optional-feature:hover {
    border-color: var(--blue-400);
    transform: translateX(8px);
}

.pricing-optional-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-optional-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-600);
}

.pricing-cta {
    margin-top: 2rem;
    text-align: center;
}

.pricing-contact {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.pricing-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pricing-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-600);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-phone:hover {
    color: var(--blue-700);
    transform: scale(1.05);
}

.pricing-phone svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Pricing Mobile Optimizations */
@media (max-width: 640px) {
    .pricing {
        padding: 3rem 0.75rem;
    }

    .pricing-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .pricing-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .pricing-badge {
        padding: 0.375rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .pricing-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .pricing-price {
        font-size: 2.25rem;
        margin-bottom: 0.375rem;
    }

    .pricing-price-small {
        font-size: 1rem;
    }

    .pricing-subtitle {
        font-size: 0.875rem;
        margin-top: 0.75rem;
    }

    .pricing-features {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .pricing-feature {
        gap: 0.5rem;
        padding: 0.5rem;
        border-radius: 0.375rem;
    }

    .pricing-feature:hover {
        transform: translateX(4px);
    }

    .pricing-check {
        flex-shrink: 0;
        width: 1rem;
        height: 1rem;
        background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pricing-check svg {
        width: 0.625rem;
        height: 0.625rem;
        color: white;
        stroke-width: 3;
    }

    .pricing-feature-text {
        font-size: 0.8125rem;
        line-height: 1.3;
    }

    .pricing-divider {
        margin: 1.5rem 0;
    }

    .pricing-optional-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .pricing-optional-features {
        gap: 0.5rem;
    }

    .pricing-optional-feature {
        padding: 0.5rem;
        border-radius: 0.375rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.375rem;
    }

    .pricing-optional-feature:hover {
        transform: translateX(4px);
    }

    .pricing-optional-left {
        gap: 0.5rem;
    }

    .pricing-optional-price {
        font-size: 0.875rem;
        font-weight: 600;
        padding-left: 1.5rem;
    }

    .pricing-cta {
        margin-top: 1.5rem;
    }

    .pricing-contact {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .pricing-actions {
        gap: 1rem;
        flex-direction: column;
    }

    .pricing-phone {
        font-size: 1.125rem;
        gap: 0.375rem;
    }

    .pricing-phone svg {
        width: 1.125rem;
        height: 1.125rem;
    }

    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Features Section */
.features {
    padding: 6rem 1rem;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.section-subtitle.light {
    color: #bfdbfe;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-0.5rem);
}

.feature-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
    transition: transform 0.4s ease;
}

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

.bg-blue {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
}

.bg-sky {
    background: linear-gradient(135deg, var(--sky-500), var(--sky-600));
}

.bg-cyan {
    background: linear-gradient(135deg, var(--cyan-500), var(--cyan-600));
}

.bg-emerald {
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
}

.bg-amber {
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
}

.bg-rose {
    background: linear-gradient(135deg, var(--rose-500), var(--rose-600));
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--text-secondary);
    line-height: 1.75;
}

/* Partners Section */
.partners {
    padding: 6rem 1rem;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(239, 246, 255, 0.5), transparent);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.partner-logo-card {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    position: relative;
    overflow: hidden;
}

.partner-logo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 197, 253, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-logo-card:hover::before {
    opacity: 1;
}

.partner-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--blue-300);
}

.partner-logo {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.partner-logo-card:hover .partner-logo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner-more {
    background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
    border: 2px dashed var(--blue-300);
}

.partner-more span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue-700);
    text-align: center;
    position: relative;
    z-index: 1;
}

.partner-more:hover span {
    color: var(--blue-800);
}

/* Industries Section */
.industries {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, var(--gray-900), var(--blue-900));
    color: white;
    position: relative;
    overflow: hidden;
}

.industries .section-title {
    color: white;
}

.industries-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.industries-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.industries-blob-1 {
    top: 5rem;
    left: 2.5rem;
    width: 16rem;
    height: 16rem;
    background: var(--blue-400);
}

.industries-blob-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: var(--blue-500);
}

.industries-grid {
    display: grid;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.industry-card {
    position: relative;
    height: 280px;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: inherit;
    transition: transform 0.6s ease;
    z-index: 1;
}

.industry-card:hover::before {
    transform: scale(1.15);
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
    transition: background 0.4s ease;
}

.industry-card:hover .industry-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.industry-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 3;
    transition: all 0.4s ease;
}

.industry-card:hover .industry-label {
    transform: translateY(-0.5rem);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

/* About Section */
.about {
    padding: 6rem 1rem;
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--blue-100);
    color: var(--blue-700);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--blue-600);
    color: white;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-about:hover {
    background: var(--blue-700);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.btn-about .icon {
    margin-left: 0.5rem;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-about:hover .icon {
    transform: translateX(0.5rem) scale(1.2);
}

.about-highlights {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700), var(--blue-800));
    padding: 3rem;
    border-radius: 1.5rem;
    color: white;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-card:last-child {
    margin-bottom: 0;
}

.highlight-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.highlight-icon i {
    font-size: 2rem;
    color: #bfdbfe;
    transition: all 0.4s ease;
}

.highlight-card:hover .highlight-icon i {
    color: #fff;
    transform: rotateY(360deg);
}

.highlight-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: #bfdbfe;
}

/* Contact Section */
.contact {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, var(--gray-50), var(--blue-50), var(--gray-50));
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-0.25rem);
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.contact-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

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

.contact-details h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-details a {
    display: block;
    color: var(--blue-600);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.contact-details a:hover {
    color: var(--blue-700);
}

.contact-details span {
    color: var(--text-secondary);
}

.contact-form-container {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.form-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.form-message.success .icon {
    font-size: 1.75rem;
    color: var(--emerald-600);
    flex-shrink: 0;
    animation: successPulse 0.6s ease-out;
}

.form-message.error .icon {
    font-size: 1.75rem;
    color: #dc2626;
    flex-shrink: 0;
    animation: errorShake 0.5s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes errorShake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    75% {
        transform: translateX(10px);
    }
}

.form-message.success p {
    color: var(--emerald-700);
    font-weight: 500;
}

.form-message.error p {
    color: #991b1b;
    font-weight: 500;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input: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;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--blue-600);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-submit:hover:not(:disabled) {
    background: var(--blue-700);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-submit .icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-submit:hover .icon {
    transform: translateX(0.25rem);
}

.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Footer */
.footer {
    background: linear-gradient(90deg, var(--gray-900), var(--blue-900), var(--gray-900));
    color: white;
    padding: 4rem 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo img {
    height: 2.5rem;
    width: auto;
}

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

@media (min-width: 768px) {
    .footer-text {
        text-align: right;
    }
}

.footer-text p {
    color: var(--gray-300);
    font-size: 1.125rem;
}
