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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Colors */
:root {
    --primary: #1e3a8a;
    --primary-light: #3b82f6;
    --accent: #059669;
    --accent-light: #10b981;
    --gray-dark: #374151;
    --gray-medium: #6b7280;
    --gray-light: #f3f4f6;
    --white: #ffffff;
}

/* Ensure hero background works */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%) !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 16px 0;
}

.header.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--gray-dark);
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
    text-decoration: none;
}

.logo:visited {
    color: var(--gray-dark);
    text-decoration: none;
}

.logo:active {
    color: var(--gray-dark);
    text-decoration: none;
}

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

.logo-text {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #374151 !important;
    margin-left: 0.5rem !important;
    text-decoration: none !important;
}

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

.nav-link {
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: var(--gray-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: var(--gray-light);
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-dark);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--gray-light);
    margin-top: 1rem;
}

.mobile-nav-link {
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
}

.mobile-cta {
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    color: var(--white);
    padding: 160px 0 80px;
    text-align: center;
}

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

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

.text-accent {
    color: var(--accent-light);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Sections */
section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* How It Works */
.how-it-works {
    background-color: var(--gray-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.step-icon {
    background-color: var(--primary);
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.step-card h3 {
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--gray-medium);
}

/* How We Help */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-icon {
    background-color: var(--accent-light);
    background-color: rgba(16, 185, 129, 0.1);
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-size: 1.5rem;
}

.service-card h3 {
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-medium);
}

/* Testimonials */
.testimonials {
    background-color: var(--gray-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    color: var(--gray-dark);
    display: block;
}

.testimonial-author span {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--accent);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent);
    color: var(--white);
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 16px 0 16px;
}

.coming-soon-inline {
    background-color: #f59e0b;
    color: var(--white);
    padding: 2px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 12px;
    margin-left: 8px;
    white-space: nowrap;
}

.coming-soon-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #f59e0b;
    color: var(--white);
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 16px 0 16px;
}
.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-icon {
    background-color: rgba(30, 58, 138, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 2rem;
}

.pricing-icon.accent {
    background-color: rgba(5, 150, 105, 0.1);
    color: var(--accent);
}

.pricing-header h3 {
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--gray-medium);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price.accent {
    color: var(--accent);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-medium);
}

.tier-note {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-dark);
}

.features-list i {
    color: var(--accent);
    font-size: 0.9rem;
}

/* Industries */
.industries-section {
    background-color: var(--white);
}

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

.industry-card {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.industry-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.industry-icon {
    background-color: rgba(30, 58, 138, 0.1);
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.industry-card h3 {
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.industry-card p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
}

.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.services-tags span {
    background-color: var(--gray-light);
    color: var(--gray-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* About */
.about-section {
    background-color: var(--gray-light);
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-text h3 {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
}

.about-features {
    list-style: none;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-dark);
}

.about-features i {
    color: var(--accent);
}

.founder-quote {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.quote-icon {
    background-color: var(--primary);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.founder-quote h4 {
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.founder-quote blockquote {
    font-style: italic;
    color: var(--gray-medium);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.founder-quote cite {
    color: var(--gray-dark);
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-medium);
}

/* Map Placeholder */
.map-placeholder {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
}

.map-content i {
    font-size: 4rem;
    color: var(--gray-medium);
    margin-bottom: 1rem;
}

.map-content p {
    color: var(--gray-medium);
    margin-bottom: 0.5rem;
}

.map-note {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

/* Success Metrics */
.success-metric {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: var(--gray-dark) !important;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* Expertise Points */
.expertise-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.expertise-point h5 {
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.expertise-point p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact */
.contact-section {
    background-color: var(--white);
}

.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
}

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

.contact-form-wrapper h3 {
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

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

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

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

.form-group label {
    color: var(--gray-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.contact-info h3 {
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 3rem;
}

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

.contact-icon {
    background-color: rgba(30, 58, 138, 0.1);
    padding: 12px;
    border-radius: 8px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--gray-medium);
    margin: 0;
}

.what-to-expect {
    background-color: var(--gray-light);
    padding: 2rem;
    border-radius: 12px;
}


.expectation-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.expectation-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background-color: var(--accent);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.expectation-step h5 {
    color: var(--gray-dark);
    margin-bottom: 0.25rem;
}

.expectation-step p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: var(--gray-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item i {
    color: rgba(255, 255, 255, 0.6);
    width: 16px;
}

/* Simplified Footer */
.footer-content-simple {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand-simple p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.footer-links-simple h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links-simple ul {
    list-style: none;
}

.footer-links-simple li {
    margin-bottom: 0.5rem;
}

.footer-links-simple a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-simple a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Privacy Policy Styles */
.privacy-policy-section {
    padding: 80px 0;
    background-color: var(--white);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-header {
    background-color: var(--gray-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.privacy-header p {
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.privacy-header a {
    color: var(--primary);
    text-decoration: none;
}

.privacy-header a:hover {
    text-decoration: underline;
}

.privacy-notice {
    background-color: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.privacy-notice h3 {
    color: #92400e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-notice p {
    color: #92400e;
    margin: 0;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-light);
}

.privacy-section p {
    color: var(--gray-medium);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.privacy-section ul {
    color: var(--gray-medium);
    margin-left: 1.5rem;
    line-height: 1.7;
}

.privacy-section li {
    margin-bottom: 0.5rem;
}

.privacy-section a {
    color: var(--primary);
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}

.privacy-contact {
    background-color: var(--primary);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.privacy-contact h2 {
    color: var(--white);
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.privacy-contact a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.privacy-contact a:hover {
    text-decoration: underline;
}

/* Serving Area */
.serving-area {
    background-color: var(--gray-light);
}

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

.serving-content h2 {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.serving-content p {
    color: var(--gray-medium);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-areas {
    max-width: 500px;
    margin: 0 auto;
}

.area-list h4 {
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.area-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.area-list li {
    background-color: var(--white);
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--gray-dark);
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-content-simple {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .steps-grid,
    .services-grid,
    .testimonials-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .step-card,
    .service-card,
    .testimonial-card,
    .industry-card {
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}