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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #111;
}

h2 {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #111;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: #111;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: #111;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.25rem;
    }
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(to bottom right, #2563eb, #1e40af);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon span {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text {
    color: #111;
    font-weight: 600;
    font-size: 1.125rem;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9375rem;
}

.nav-link:hover {
    color: #2563eb;
}

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

@media (min-width: 1024px) {
    .contact-info {
        display: flex;
    }
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.875rem;
}

.contact-link:hover {
    color: #2563eb;
}

.mobile-menu-btn {
    display: flex;
    padding: 0.5rem;
    border: none;
    background: none;
    color: #666;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: all 0.2s;
}

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

.mobile-menu-btn:hover {
    color: #2563eb;
    background-color: #f3f4f6;
}

.mobile-menu-btn .close-icon {
    display: none;
}

.mobile-menu-btn.active .menu-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid #f3f4f6;
}

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

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.mobile-nav-link:hover {
    color: #2563eb;
}

.mobile-contacts {
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.mobile-contact-link:hover {
    color: #2563eb;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-outline {
    background-color: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background-color: #eff6ff;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom right, #eff6ff, #dbeafe);
    overflow: hidden;
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .hero {
        padding: 5rem 0;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 7rem 0;
    }
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

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

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

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #dbeafe;
    color: #1d4ed8;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    max-width: 48rem;
    margin: 0 auto 2rem;
}

@media (min-width: 1024px) {
    .hero-description {
        margin: 0 0 2rem;
    }
}

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

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

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    display: block;
}

@media (min-width: 1024px) {
    .hero-image img {
        height: 400px;
        object-fit: cover;
    }
}

.hero-decoration {
    position: absolute;
    border-radius: 9999px;
    filter: blur(40px);
    opacity: 0.5;
}

.hero-decoration-1 {
    top: -1rem;
    right: -1rem;
    width: 6rem;
    height: 6rem;
    background-color: #bfdbfe;
}

.hero-decoration-2 {
    bottom: -1rem;
    left: -1rem;
    width: 8rem;
    height: 8rem;
    background-color: #93c5fd;
}

/* Section */
.section {
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .section {
        padding: 5rem 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 7rem 0;
    }
}

.section-gray {
    background-color: #f9fafb;
}

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

@media (min-width: 640px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

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

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

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #dbeafe;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.stat-icon svg {
    color: #2563eb;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.25rem;
}

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

/* About Content */
.about-content {
    max-width: 64rem;
    margin: 0 auto;
}

.about-box {
    background: linear-gradient(to bottom right, #f9fafb, #eff6ff);
    border-radius: 1rem;
    padding: 2rem;
}

@media (min-width: 640px) {
    .about-box {
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .about-box {
        padding: 3rem;
    }
}

.about-box p {
    color: #374151;
    margin-bottom: 1.5rem;
}

.about-box p:last-child {
    margin-bottom: 0;
}

/* Services */
.services-grid {
    display: grid;
    gap: 2rem;
    max-width: 48rem;
    margin: 0 auto;
}

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

.service-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
}

.service-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #dbeafe;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    color: #2563eb;
}

/* Pricing */
.pricing-content {
    max-width: 64rem;
    margin: 0 auto;
}

.pricing-box {
    background: linear-gradient(to bottom right, #eff6ff, #dbeafe);
    border-radius: 1rem;
    padding: 2rem;
}

@media (min-width: 640px) {
    .pricing-box {
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .pricing-box {
        padding: 3rem;
    }
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #2563eb;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-icon svg {
    color: #fff;
}

.pricing-header p {
    color: #374151;
}

.pricing-cta {
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .pricing-cta {
        padding: 2rem;
    }
}

.pricing-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: #dbeafe;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.pricing-cta-icon svg {
    color: #2563eb;
}

.pricing-cta p {
    margin-bottom: 1.5rem;
}

/* Contact */
.contact-grid {
    display: grid;
    gap: 2rem;
}

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

.contact-column h3 {
    margin-bottom: 1.5rem;
}

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

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

a.contact-item:hover {
    background-color: #eff6ff;
}

.contact-item-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: #dbeafe;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-icon svg {
    color: #2563eb;
}

.contact-item-content {
    flex: 1;
}

.contact-item-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.contact-item-value {
    color: #111;
    font-weight: 500;
}

/* Company Details */
.company-details {
    background: linear-gradient(to bottom right, #f9fafb, #eff6ff);
    border-radius: 1rem;
    padding: 2rem;
}

.company-detail {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.company-detail:last-child {
    margin-bottom: 0;
}

.company-detail svg {
    flex-shrink: 0;
    color: #2563eb;
    margin-top: 0.125rem;
}

.company-detail-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.125rem;
}

.company-detail-value {
    color: #111;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer .logo-icon {
    background: linear-gradient(to bottom right, #3b82f6, #1d4ed8);
}

.footer .logo-text {
    color: #fff;
}

.footer-description {
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-title {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li {
    font-size: 0.875rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #60a5fa;
}

.footer-contacts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contacts li {
    font-size: 0.875rem;
}

.footer-contacts a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contacts a:hover {
    color: #60a5fa;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #9ca3af;
}
