* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 0px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-link-contact {
    background: linear-gradient(to right, var(--blue-600), var(--blue-700));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    transition: all 0.3s;
}

.nav-link-contact:hover {
    background: linear-gradient(to right, var(--blue-700), var(--blue-800));
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    transition: all 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-nav {
    display: none;
    background: white;
    border-top: 1px solid var(--gray-200);
    padding: 1rem;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: all 0.3s;
}

.mobile-nav-link:hover {
    background: var(--gray-50);
    color: var(--blue-600);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom right, #f8fafc, #eff6ff, #fff7ed);
    overflow: hidden;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.hero-bg-animation {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.bg-circle-1 {
    width: 24rem;
    height: 24rem;
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.3), rgba(249, 115, 22, 0.3));
    top: -10rem;
    right: -10rem;
    animation: rotate-scale 20s linear infinite;
}

.bg-circle-2 {
    width: 24rem;
    height: 24rem;
    background: linear-gradient(to bottom right, rgba(249, 115, 22, 0.3), rgba(239, 68, 68, 0.3));
    bottom: -10rem;
    left: -10rem;
    animation: rotate-scale-reverse 15s linear infinite;
}

.bg-circle-3 {
    width: 24rem;
    height: 24rem;
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.2), rgba(249, 115, 22, 0.2));
    top: -10rem;
    right: -10rem;
    animation: rotate-scale 20s linear infinite;
}

@keyframes rotate-scale {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(90deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes rotate-scale-reverse {
    0% {
        transform: scale(1.2) rotate(90deg);
    }
    50% {
        transform: scale(1) rotate(0deg);
    }
    100% {
        transform: scale(1.2) rotate(90deg);
    }
}

.hero-container {
    position: relative;
    padding: 6rem 1.5rem;
}

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

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

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 9999px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.trust-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(to right, var(--gray-900), var(--blue-800), #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(to right, var(--blue-600), var(--blue-700));
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--blue-700), var(--blue-800));
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: white;
    color: var(--gray-900);
    border: 1px solid var(--gray-200);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--gray-50);
    transform: scale(1.05);
}

.btn-white {
    background: white;
    color: var(--blue-600);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: #eff6ff;
    transform: scale(1.05);
}

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

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

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

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn-icon-left {
    width: 1.25rem;
    height: 1.25rem;
}

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

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

.stat-value {
    font-size: 2.25rem;
    font-weight: 900;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--gray-100);
    max-width: 32rem;
    width: 100%;
}

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

.icon-item {
    background: linear-gradient(to bottom right, var(--gray-50), #f3f4f6);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.icon-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: all 0.3s;
}

.icon-item:hover .icon-box {
    transform: scale(1.1);
}

.icon-box svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.icon-blue {
    background: linear-gradient(to bottom right, var(--blue-500), var(--blue-600));
}

.icon-orange {
    background: linear-gradient(to bottom right, var(--orange-500), var(--orange-600));
}

.icon-red {
    background: linear-gradient(to bottom right, var(--red-500), var(--red-600));
}

.icon-blue-dark {
    background: linear-gradient(to bottom right, var(--blue-600), var(--blue-700));
}

.icon-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.float-1 {
    animation: float 3s ease-in-out infinite;
}

.float-2 {
    animation: float 3s ease-in-out 0.5s infinite;
}

.float-3 {
    animation: float 3s ease-in-out 1s infinite;
}

.float-4 {
    animation: float 3s ease-in-out 1.5s infinite;
}

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

.floating-badge {
    position: absolute;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    color: white;
}

.floating-badge-1 {
    background: linear-gradient(to bottom right, var(--orange-500), var(--red-500));
    top: -2rem;
    right: -2rem;
    animation: float-badge-1 4s ease-in-out infinite;
}

.floating-badge-2 {
    background: linear-gradient(to bottom right, var(--blue-500), var(--blue-600));
    bottom: -1.5rem;
    left: -1.5rem;
    animation: float-badge-2 3s ease-in-out infinite;
}

@keyframes float-badge-1 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-badge-2 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
}

.badge-value {
    font-size: 1.5rem;
    font-weight: 900;
}

.badge-label {
    font-size: 0.75rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

.delay-4 {
    transition-delay: 0.6s;
}

.delay-5 {
    transition-delay: 0.75s;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: white;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #eff6ff;
    color: var(--blue-600);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-icon {
    width: 1rem;
    height: 1rem;
}

.section-title {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.feature-card {
    background: var(--gray-50);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s;
    border: 1px solid var(--gray-100);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

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

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

.feature-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.feature-description {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.value-proposition {
    background: linear-gradient(to bottom right, var(--blue-600), var(--blue-700), var(--orange-600));
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.value-proposition::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.1;
}

.value-content {
    position: relative;
    margin-bottom: 3rem;
}

.value-title {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.value-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #dbeafe;
    margin-bottom: 2rem;
}

.value-stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.value-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.value-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.value-stat-label {
    font-size: 0.875rem;
    color: #dbeafe;
}

/* Solutions Section */
.solutions-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--gray-50), white);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    border: 1px solid var(--gray-200);
    background: white;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn:hover {
    background: var(--gray-50);
}

.category-btn.active {
    background: linear-gradient(to right, var(--blue-600), var(--blue-700));
    color: white;
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.solution-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.solution-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.solution-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.05), rgba(249, 115, 22, 0.05));
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.solution-card:hover::after {
    opacity: 1;
}

.solution-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1) rotate(3deg);
}

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

.solution-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.solution-card:hover .solution-title {
    color: var(--blue-600);
}

.solution-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
}

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

.cta-text {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

/* Features Detail Section */
.features-detail-section {
    padding: 6rem 0;
    background: white;
}

.features-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.feature-detail-card {
    background: linear-gradient(to bottom right, var(--gray-50), rgba(243, 244, 246, 0.5));
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.feature-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: var(--gray-300);
}

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

.feature-detail-card:hover .feature-detail-icon {
    transform: scale(1.1) rotate(3deg);
}

.feature-detail-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.feature-detail-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-detail-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.benefit-icon circle {
    fill: transparent;
}

.benefit-item span {
    color: var(--gray-700);
    font-weight: 500;
}

.bottom-cta {
    background: linear-gradient(to bottom right, var(--blue-600), var(--blue-700), var(--orange-600));
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.bottom-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.1;
}

.cta-title {
    position: relative;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    position: relative;
    font-size: 1.25rem;
    color: #dbeafe;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom right, var(--gray-50), #eff6ff, #fff7ed);
    position: relative;
    overflow: hidden;
}

.contact-bg-animation {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

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

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

.contact-info-content {
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    text-decoration: none;
    transition: color 0.3s;
    word-break: break-word;
}

a.contact-value:hover {
    color: var(--blue-600);
}

.contact-form-container {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    position: relative;
}

.contact-form {
    display: block;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    font-size: 1rem;
    color: var(--gray-900);
    transition: all 0.3s;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    ring: 2px;
    ring-color: var(--blue-500);
    border-color: transparent;
    background: white;
}

.form-textarea {
    resize: none;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 1rem;
}

.success-message {
    display: none;
    text-align: center;
    padding: 4rem 0;
}

.success-message.show {
    display: block;
}

.success-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(to bottom right, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.success-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.success-text {
    font-size: 1.25rem;
    color: var(--gray-600);
}

.footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.footer p {
    color: var(--gray-600);
}

/* Responsive */
@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 2fr;
        gap: 3rem;
    }
}

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

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

    .hero-buttons {
        justify-content: flex-start;
    }

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

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

    .hero-title {
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 4rem;
    }

    .value-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .value-proposition {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        align-items: center;
    }

    .value-content {
        margin-bottom: 0;
    }

    .nav {
        display: flex;
    }
}

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

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .value-title {
        font-size: 1.875rem;
    }
}

@media (max-width: 640px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .features-detail-grid {
        grid-template-columns: 1fr;
    }

    .value-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}
