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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    overflow-x: hidden;
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #F59E0B, #EF4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #F59E0B;
}

.nav-button {
    background: linear-gradient(135deg, #F59E0B, #EF4444);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.8), rgba(239, 68, 68, 0.6));
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
    border: 3px solid rgba(255, 255, 255, 0.8);
    padding: 20px 30px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 16px 24px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: white;
    color: #F59E0B;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border: 2px solid white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #F59E0B;
    transform: translateY(-3px);
}

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

.floating-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 16px 0 8px;
    background: linear-gradient(135deg, #F59E0B, #EF4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-card p {
    color: #6B7280;
    font-weight: 500;
}

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

.dynamic-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(239, 68, 68, 0.1));
    animation: rotate 20s linear infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: -3%;
    animation-delay: -10s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: -10%;
    right: -10%;
    animation-delay: -5s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    bottom: -10%;
    left: -8%;
    animation-delay: -15s;
}

.shape-5 {
    width: 180px;
    height: 180px;
    top: 20%;
    right: -5%;
    animation-delay: -8s;
}

.shape-6 {
    width: 220px;
    height: 220px;
    bottom: 10%;
    left: -6%;
    animation-delay: -12s;
}

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

.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #FEFBF3, #FEF3C7);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.2);
}

.service-icon {
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.service-card p {
    color: #6B7280;
    line-height: 1.7;
}

.ai-powered {
    padding: 120px 0;
    background: white;
    position: relative;
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ai-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 24px;
    line-height: 1.3;
}

.ai-text > p {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 40px;
    line-height: 1.7;
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ai-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
}

.ai-feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.ai-feature p {
    color: #6B7280;
    line-height: 1.6;
}

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

.ai-demo-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.1);
    width: 100%;
    max-width: 400px;
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #F3F4F6;
}

.demo-header span {
    font-weight: 600;
    color: #1F2937;
}

.demo-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.demo-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.demo-bar {
    height: 12px;
    background: linear-gradient(135deg, #FEF3C7, #F59E0B);
    border-radius: 6px;
    animation: pulse 2s ease-in-out infinite;
}

.demo-bar.short {
    width: 60%;
}

.demo-bar.medium {
    width: 80%;
}

.demo-footer {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.demo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1D5DB;
    transition: background 0.3s ease;
}

.demo-dot.active {
    background: #F59E0B;
}

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

.team-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #F9FAFB, #F3F4F6);
    position: relative;
}

.team-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.team-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.team-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-image-card:hover .team-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 32px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.team-image-card:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.image-overlay p {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-preview {
    padding: 120px 0;
    background: white;
    position: relative;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.pricing-card {
    background: white;
    border: 2px solid #F3F4F6;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #F59E0B;
    background: linear-gradient(135deg, #FEFBF3, #FEF3C7);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #F59E0B, #EF4444);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #F59E0B;
    margin-bottom: 32px;
}

.price span {
    font-size: 1rem;
    color: #6B7280;
    font-weight: 500;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
}

.pricing-card li {
    padding: 12px 0;
    border-bottom: 1px solid #F3F4F6;
    color: #374151;
    position: relative;
    padding-left: 24px;
}

.pricing-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F59E0B;
    font-weight: bold;
}

.pricing-card li:last-child {
    border-bottom: none;
}

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

.footer {
    background: #1F2937;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #F59E0B, #EF4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #F59E0B;
}

.contact-info p {
    color: #D1D5DB;
    margin-bottom: 8px;
}

.contact-info strong {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
    color: #9CA3AF;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-images {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .service-card, .pricing-card {
        padding: 24px;
    }
    
    .team-images {
        grid-template-columns: 1fr;
    }
    
    .team-image-card {
        min-width: auto;
    }
}

.pricing-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #FEFBF3, #FEF3C7);
    position: relative;
}

.pricing-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 24px;
}

.pricing-hero-content p {
    font-size: 1.25rem;
    color: #6B7280;
    line-height: 1.7;
}

.pricing-detailed {
    padding: 120px 0;
    background: white;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.pricing-card-detailed {
    background: white;
    border: 2px solid #F3F4F6;
    border-radius: 24px;
    padding: 48px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pricing-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.featured-detailed {
    border-color: #F59E0B;
    background: linear-gradient(135deg, #FEFBF3, #FEF3C7);
    transform: scale(1.05);
}

.featured-detailed:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge-large {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #F59E0B, #EF4444);
    color: white;
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.price-large {
    font-size: 4rem;
    font-weight: 700;
    color: #F59E0B;
    margin-bottom: 16px;
    line-height: 1;
}

.price-large span {
    font-size: 1.25rem;
    color: #6B7280;
    font-weight: 500;
}

.pricing-header p {
    color: #6B7280;
    font-size: 1.125rem;
    line-height: 1.6;
}

.pricing-features {
    margin-bottom: 40px;
}

.pricing-features h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 24px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    padding: 16px 0;
    border-bottom: 1px solid #F3F4F6;
    color: #374151;
    position: relative;
    padding-left: 32px;
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F59E0B;
    font-weight: bold;
    font-size: 1.25rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

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

.btn-pricing {
    background: linear-gradient(135deg, #F59E0B, #EF4444);
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.featured-btn {
    background: linear-gradient(135deg, #1F2937, #374151);
    box-shadow: 0 4px 15px rgba(31, 41, 55, 0.3);
}

.featured-btn:hover {
    box-shadow: 0 8px 25px rgba(31, 41, 55, 0.4);
}

.pricing-note {
    color: #6B7280;
    font-size: 0.875rem;
    margin: 0;
}

.pricing-comparison {
    padding: 120px 0;
    background: linear-gradient(135deg, #F9FAFB, #F3F4F6);
    position: relative;
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #F59E0B, #EF4444);
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
}

.comparison-header > div {
    padding: 24px;
    text-align: center;
}

.feature-column {
    text-align: left !important;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #F3F4F6;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    padding: 20px 24px;
    display: flex;
    align-items: center;
}

.feature-name {
    font-weight: 500;
    color: #1F2937;
}

.feature-value {
    justify-content: center;
    text-align: center;
    color: #374151;
}

.pricing-faq {
    padding: 120px 0;
    background: white;
    position: relative;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.faq-item {
    background: #F9FAFB;
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid #F59E0B;
}

.faq-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 16px;
}

.faq-item p {
    color: #6B7280;
    line-height: 1.7;
}

.pricing-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #1F2937, #374151);
    color: white;
    text-align: center;
    position: relative;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #FEFBF3, #FEF3C7);
    position: relative;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 24px;
}

.contact-hero-content p {
    font-size: 1.25rem;
    color: #6B7280;
    line-height: 1.7;
}

.contact-form-section {
    padding: 120px 0;
    background: white;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info-side h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 24px;
}

.contact-info-side > p {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #FEF3C7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 4px;
}

.contact-item p {
    color: #6B7280;
    line-height: 1.6;
}

.response-time {
    background: #F9FAFB;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #F59E0B;
}

.response-time h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.response-time p {
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    background: #F9FAFB;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F59E0B;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #374151;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #F59E0B;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #F59E0B, #EF4444);
    color: white;
    padding: 18px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

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

.thank-you-message {
    background: #F9FAFB;
    padding: 48px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.thank-you-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin: 24px 0 16px;
}

.thank-you-content p {
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thank-you-note {
    font-weight: 500;
    color: #F59E0B;
}

.legal-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #FEFBF3, #FEF3C7);
    text-align: center;
}

.legal-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.legal-hero-content p {
    font-size: 1.125rem;
    color: #6B7280;
}

.legal-content {
    padding: 80px 0;
    background: white;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-document h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1F2937;
    margin: 48px 0 24px;
    border-bottom: 2px solid #F59E0B;
    padding-bottom: 8px;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #374151;
    margin: 32px 0 16px;
}

.legal-document p {
    color: #4B5563;
    margin-bottom: 16px;
}

.legal-document ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-document li {
    color: #4B5563;
    margin-bottom: 8px;
}

.legal-document .contact-details {
    background: #F9FAFB;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #F59E0B;
    margin: 24px 0;
}

.legal-document .contact-details p {
    margin-bottom: 8px;
}

.legal-document .contact-details p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .pricing-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-detailed {
        transform: none;
    }
    
    .featured-detailed:hover {
        transform: translateY(-10px);
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-header > div,
    .comparison-row > div {
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .comparison-header > div:last-child,
    .comparison-row > div:last-child {
        border-bottom: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 32px;
    }
    
    .legal-document {
        padding: 0 16px;
    }
}
