:root {
    --navy: #071526;
    --navy-2: #0b2138;
    --blue: #1f8cff;
    --blue-dark: #0d65c2;
    --cyan: #56d5ff;
    --white: #ffffff;
    --off-white: #f5f8fc;
    --text: #172033;
    --muted: #5c6677;
    --line: #dfe7f1;
    --card: #ffffff;
    --shadow: 0 18px 45px rgba(7, 21, 38, 0.12);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    background: var(--white);
    color: var(--navy);
    padding: 10px 14px;
    border-radius: 8px;
    z-index: 999;
}

.skip-link:focus {
    left: 12px;
}

.top-bar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 9px 0;
}

.top-bar p {
    margin: 0;
}

.top-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.top-links a {
    text-decoration: none;
}

.top-links a:hover,
.top-links a:focus {
    color: var(--cyan);
}

.main-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    padding: 16px 0;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: var(--white);
    font-weight: 800;
    letter-spacing: -1px;
    box-shadow: 0 12px 25px rgba(31, 140, 255, 0.25);
}

.logo-text {
    display: grid;
    line-height: 1.2;
}

.logo-text strong {
    font-size: 1.05rem;
    color: var(--navy);
}

.logo-text small {
    color: var(--muted);
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.site-nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus {
    color: var(--blue-dark);
}

.header-cta {
    text-decoration: none;
    background: var(--blue);
    color: var(--white);
    padding: 11px 16px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(31, 140, 255, 0.24);
}

.header-cta:hover,
.header-cta:focus {
    background: var(--blue-dark);
}

.hero {
    background:
        radial-gradient(circle at top right, rgba(86, 213, 255, 0.25), transparent 34%),
        radial-gradient(circle at left, rgba(31, 140, 255, 0.20), transparent 28%),
        linear-gradient(135deg, var(--navy), var(--navy-2));
    color: var(--white);
    padding: 86px 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 46px;
    align-items: center;
}

.eyebrow {
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 900;
    margin: 0 0 10px;
}

.hero .eyebrow,
.section-dark .eyebrow {
    color: var(--cyan);
}

h1,
h2,
h3,
p {
    overflow-wrap: break-word;
}

h1 {
    font-size: clamp(2.35rem, 5vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    margin: 0 0 22px;
}

.hero-text {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.17rem;
    margin: 0 0 30px;
}

.hero-actions,
.center-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 999px;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    font-weight: 900;
    font-size: 0.98rem;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 16px 32px rgba(31, 140, 255, 0.28);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--blue-dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: rgba(255, 255, 255, 0.18);
}

.btn-outline-light {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: rgba(255, 255, 255, 0.12);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
}

.hero-points li {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 8px 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
    font-size: 0.92rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

.status-pill {
    display: inline-flex;
    background: rgba(86, 213, 255, 0.13);
    color: var(--cyan);
    border: 1px solid rgba(86, 213, 255, 0.28);
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 800;
    font-size: 0.82rem;
    margin-bottom: 18px;
}

.hero-card h2 {
    font-size: 2rem;
    margin: 0 0 10px;
    letter-spacing: -0.03em;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 24px;
}

.mini-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.mini-card-grid div {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    padding: 16px;
}

.mini-card-grid strong {
    display: block;
    margin-bottom: 4px;
}

.mini-card-grid span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.trust-strip {
    background: var(--off-white);
    border-bottom: 1px solid var(--line);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 24px 0;
}

.trust-grid div {
    border-right: 1px solid var(--line);
    padding-right: 18px;
}

.trust-grid div:last-child {
    border-right: 0;
}

.trust-grid strong {
    display: block;
    color: var(--navy);
    font-size: 1rem;
}

.trust-grid span {
    color: var(--muted);
    font-size: 0.92rem;
}

.section {
    padding: 82px 0;
}

.section-muted {
    background: var(--off-white);
}

.section-dark {
    background:
        radial-gradient(circle at top left, rgba(31, 140, 255, 0.24), transparent 32%),
        linear-gradient(135deg, var(--navy), #020912);
    color: var(--white);
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 38px;
    text-align: center;
}

.section-heading.align-left {
    margin: 0;
    text-align: left;
}

.section-heading h2,
.about-grid h2,
.contact-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.055em;
    margin: 0 0 14px;
    color: var(--navy);
}

.section-heading p,
.about-grid p,
.contact-content p {
    color: var(--muted);
    margin: 0;
}

.section-heading.light h2,
.section-heading.light p {
    color: var(--white);
}

.services-grid,
.pricing-grid,
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card,
.price-card,
.review-card,
.about-panel,
.contact-form {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.service-card {
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(7, 21, 38, 0.16);
}

.icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #eaf5ff;
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.service-card h3,
.price-card h3,
.review-card h3,
.about-panel h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 1.18rem;
}

.service-card p,
.price-card p {
    margin: 0;
    color: var(--muted);
}

.process-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 46px;
    align-items: center;
}

.steps {
    display: grid;
    gap: 18px;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
}

.step span {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--blue);
    color: var(--white);
    display: grid;
    place-items: center;
    font-weight: 900;
}

.step h3 {
    margin: 0 0 4px;
    color: var(--navy);
}

.step p {
    margin: 0;
    color: var(--muted);
}

.price-card {
    box-shadow: none;
}

.price {
    color: var(--blue-dark) !important;
    font-size: 1.4rem;
    font-weight: 900;
}

.small-note {
    font-size: 0.9rem;
    margin-top: 6px !important;
}

.review-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--white);
    box-shadow: none;
}

.review-card p {
    font-size: 1.05rem;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.86);
}

.review-card strong {
    color: var(--cyan);
}

.center-actions {
    justify-content: center;
    margin-top: 34px;
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 42px;
    align-items: center;
}

.about-grid p + p {
    margin-top: 16px;
}

.about-panel {
    background: var(--off-white);
    box-shadow: none;
}

.about-panel ul {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.about-panel li + li {
    margin-top: 10px;
}

.contact-section {
    background: var(--off-white);
}

.contact-cards {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.contact-cards a,
.contact-cards div {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(7, 21, 38, 0.08);
}

.contact-cards strong {
    display: block;
    color: var(--navy);
}

.contact-cards span {
    color: var(--muted);
}

.contact-form {
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    gap: 7px;
    margin-bottom: 16px;
}

label {
    font-weight: 800;
    color: var(--navy);
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #cfd9e6;
    border-radius: 13px;
    padding: 13px 14px;
    font: inherit;
    background: var(--white);
    color: var(--text);
}

input:focus,
select:focus,
textarea:focus,
a:focus,
button:focus {
    outline: 3px solid rgba(31, 140, 255, 0.35);
    outline-offset: 3px;
}

textarea {
    resize: vertical;
}

.website-field {
    position: absolute;
    left: -9999px;
}

.form-button {
    width: 100%;
}

.form-note {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 14px 0 0;
}

.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    gap: 34px;
    padding: 48px 0;
}

.site-footer h2 {
    color: var(--white);
    font-size: 1.15rem;
    margin: 0 0 12px;
}

.site-footer p {
    margin: 0 0 10px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li + li {
    margin-top: 8px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.footer-list a:hover,
.footer-list a:focus {
    color: var(--cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.92rem;
}

@media (max-width: 980px) {
    .header-inner {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .site-nav {
        order: 3;
        width: 100%;
    }

    .site-nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px 20px;
    }

    .hero-grid,
    .process-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid,
    .services-grid,
    .pricing-grid,
    .reviews-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid div {
        border-right: 0;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .top-bar-inner {
        display: grid;
        justify-content: start;
    }

    .top-links {
        display: grid;
        gap: 4px;
    }

    .header-inner {
        display: grid;
    }

    .header-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .site-nav ul {
        justify-content: flex-start;
    }

    .hero {
        padding: 58px 0;
    }

    h1 {
        font-size: clamp(2.35rem, 13vw, 3.5rem);
    }

    .hero-actions .btn {
        width: 100%;
    }

    .mini-card-grid,
    .trust-grid,
    .services-grid,
    .pricing-grid,
    .reviews-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 58px 0;
    }

    .section-heading {
        text-align: left;
    }

    .section-heading h2,
    .about-grid h2,
    .contact-content h2 {
        font-size: clamp(2rem, 10vw, 2.7rem);
    }
}



/*about*/

.page-hero {
    background:
        radial-gradient(circle at top right, rgba(86, 213, 255, 0.22), transparent 34%),
        linear-gradient(135deg, var(--navy), var(--navy-2));
    color: var(--white);
    padding: 76px 0;
}

.page-hero h1 {
    max-width: 820px;
}

.page-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.15rem;
    margin: 0;
}

.about-actions {
    margin-top: 28px;
}

.light-button {
    background: var(--navy);
    color: var(--white);
    border: 1px solid var(--navy);
}

.light-button:hover,
.light-button:focus {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
}