* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

a {
    text-decoration: none;
}

.navbar {
    background: #0f172a;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo img {
    height: 46px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 24px;
}

.nav-menu a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.nav-menu a:hover {
    color: #38bdf8;
}

.nav-phone a {
    color: #ffffff;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
}

.hero-home {
    padding: 90px 0;
    background: linear-gradient(135deg, #eff6ff, #ffffff);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.small-badge {
    display: inline-block;
    padding: 8px 14px;
    background: #dbeafe;
    color: #1d4ed8;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero-text h1 {
    font-size: 50px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-text p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 28px;
    max-width: 620px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-button,
.secondary-button {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
}

.cta-button {
    background: #0f172a;
    color: #ffffff;
}

.cta-button:hover {
    background: #1e293b;
}

.secondary-button {
    background: #e2e8f0;
    color: #0f172a;
}

.secondary-button:hover {
    background: #cbd5e1;
}

.hero-image-card img {
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.stats-section {
    padding: 30px 0 70px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    text-align: center;
}

.stat-box h2 {
    font-size: 34px;
    color: #0f172a;
    margin-bottom: 8px;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 38px;
    margin-bottom: 12px;
}

.section-heading p {
    font-size: 17px;
    color: #64748b;
    max-width: 760px;
    margin: 0 auto;
}

.services-preview,
.about-section,
.services-section,
.contact-section,
.process-section {
    padding: 80px 0;
}

.services-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-box,
.process-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.service-box h3,
.process-box h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.service-box p,
.process-box p,
.about-section p,
.services-section p,
.contact-section p {
    color: #475569;
}

.about-section h1,
.services-section h1,
.contact-section h1 {
    font-size: 40px;
    margin-bottom: 18px;
    text-align: center;
}

.about-section p,
.services-section p,
.contact-section p {
    font-size: 18px;
    margin-bottom: 18px;
    text-align: center;
}

.cta-section {
    padding: 80px 0;
    background: #0f172a;
    color: #ffffff;
}

.cta-inner {
    text-align: center;
    max-width: 850px;
}

.cta-inner h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-inner p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #cbd5e1;
}

.contact-section form {
    max-width: 720px;
    margin: 30px auto 0;
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #38bdf8;
}

.footer {
    background: #020617;
    color: #ffffff;
    padding: 50px 0;
    text-align: center;
}

.footer-logo img {
    height: 50px;
    margin: 0 auto 15px;
}

.footer-contact p {
    margin-bottom: 6px;
}

.footer-links {
    margin: 22px 0;
}

.footer-links a {
    color: #38bdf8;
    margin: 0 10px;
}

.footer-copy p {
    color: #cbd5e1;
}