:root {
    --brand-pink: #ca006c;
    --brand-pink-dark: #9f0055;
    --brand-navy: #071f3c;
    --brand-navy-light: #0c355c;
    --brand-teal: #008c99;
    --brand-gold: #d1b900;
    --body-text: #24364b;
    --muted-text: #657386;
    --soft-bg: #f4f7fa;
    --border: #dfe6ed;
    --white: #ffffff;
    --shadow-sm: 0 0.75rem 2rem rgba(7, 31, 60, 0.08);
    --shadow-lg: 0 1.5rem 4rem rgba(7, 31, 60, 0.17);
    --radius: 1rem;
    --header-height: 84px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
    color: var(--body-text);
    background: var(--white);
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

a {
    color: var(--brand-pink);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

a:hover {
    color: var(--brand-pink-dark);
}

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

.skip-link {
    position: fixed;
    top: -5rem;
    left: 1rem;
    z-index: 2000;
    padding: 0.75rem 1rem;
    color: var(--white);
    background: var(--brand-pink);
    border-radius: 0 0 0.5rem 0.5rem;
}

.skip-link:focus {
    top: 0;
}

.site-header {
    z-index: 1030;
    box-shadow: 0 0.25rem 1.5rem rgba(7, 31, 60, 0.08);
}

.navbar {
    min-height: var(--header-height);
}

.navbar-brand img {
    display: block;
    width: 180px;
    height: auto;
}

.navbar-toggler {
    border-color: rgba(7, 31, 60, 0.18);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(202, 0, 108, 0.2);
}

.navbar-nav .nav-link {
    position: relative;
    padding: 0.8rem 0.75rem !important;
    color: var(--brand-navy);
    font-size: 0.91rem;
    font-weight: 700;
    white-space: nowrap;
}

.navbar-nav .nav-link::after {
    position: absolute;
    right: 0.75rem;
    bottom: 0.42rem;
    left: 0.75rem;
    height: 2px;
    content: "";
    background: var(--brand-pink);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .external-link i {
    font-size: 0.72em;
}

.btn {
    border-radius: 0.35rem;
    font-weight: 700;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-brand {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--brand-pink);
    --bs-btn-border-color: var(--brand-pink);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--brand-pink-dark);
    --bs-btn-hover-border-color: var(--brand-pink-dark);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--brand-pink-dark);
    --bs-btn-active-border-color: var(--brand-pink-dark);
    --bs-btn-focus-shadow-rgb: 202, 0, 108;
    box-shadow: 0 0.55rem 1.4rem rgba(202, 0, 108, 0.2);
}

.hero-section {
    padding: 2.25rem 0 0;
    background:
        radial-gradient(circle at 8% 15%, rgba(202, 0, 108, 0.08), transparent 17rem),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.hero-shell {
    border-radius: 0 0 1.4rem 1.4rem;
    box-shadow: var(--shadow-lg);
}

.hero-copy {
    position: relative;
    display: flex;
    min-height: 510px;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.5rem, 6vw, 5rem);
    color: var(--white);
    background:
        radial-gradient(circle at 12% 90%, rgba(202, 0, 108, 0.23), transparent 11rem),
        radial-gradient(circle at 92% 5%, rgba(0, 140, 153, 0.18), transparent 15rem),
        var(--brand-navy);
}

.hero-copy::after {
    position: absolute;
    top: 0;
    right: -1px;
    width: 0.55rem;
    height: 100%;
    content: "";
    background: var(--brand-pink);
}

.hero-copy h1 {
    max-width: 650px;
    margin: 0.55rem 0 1.25rem;
    color: var(--white);
    font-size: clamp(2rem, 4.5vw, 3.25rem)
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.03;
}

.hero-lead {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.13rem;
}

.hero-points {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.91rem;
}

.hero-points i {
    margin-right: 0.35rem;
    color: #ff4ca5;
}

.hero-image {
    min-height: 510px;
    background: #e6ebf1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.section-space {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-soft {
    background:
        linear-gradient(180deg, #f7f9fb 0%, #f2f6f9 100%);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: var(--brand-pink);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.105em;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 1.35rem;
    color: var(--brand-navy);
    font-size: clamp(2rem, 4.6vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.lead-copy {
    color: var(--brand-navy);
    font-size: 1.15rem;
    font-weight: 500;
}

.section-heading {
    max-width: 730px;
}

.section-heading p {
    color: var(--muted-text);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--brand-pink);
    font-weight: 800;
    text-decoration: none;
}

.text-link:hover {
    gap: 0.85rem;
}

.image-card,
.feature-image-panel {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.about-image-card {
    position: relative;
    padding: 1rem;
}

.about-image-card::before {
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 7rem;
    height: 7rem;
    content: "";
    background: var(--brand-pink);
    border-radius: 50%;
    opacity: 0.12;
}

.about-image-card img {
    position: relative;
    width: 100%;
    border-radius: calc(var(--radius) - 0.35rem);
}

.service-card {
    position: relative;
    padding: 2rem;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 3.2rem;
    height: 0.25rem;
    content: "";
    background: var(--brand-pink);
    transition: width 180ms ease;
}

.service-card:hover {
    border-color: rgba(202, 0, 108, 0.3);
    box-shadow: 0 1.2rem 2.8rem rgba(7, 31, 60, 0.12);
    transform: translateY(-0.25rem);
}

.service-card:hover::after {
    width: 100%;
}

.service-card h3 {
    margin: 1.25rem 0 0.75rem;
    color: var(--brand-navy);
    font-size: 1.25rem;
    font-weight: 800;
}

.service-card p {
    color: var(--muted-text);
}

.service-card a {
    font-weight: 800;
    text-decoration: none;
}

.service-icon {
    display: inline-grid;
    width: 3.5rem;
    height: 3.5rem;
    place-items: center;
    color: var(--white);
    background: var(--brand-navy);
    border: 3px solid rgba(202, 0, 108, 0.75);
    border-radius: 50%;
    font-size: 1.45rem;
}

.website-design-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 95% 15%, rgba(0, 140, 153, 0.09), transparent 23rem),
        var(--white);
}

.feature-list li {
    position: relative;
    margin-bottom: 0.7rem;
    padding-left: 2rem;
}

.feature-list i {
    position: absolute;
    top: 0.1rem;
    left: 0;
    color: var(--brand-pink);
    font-size: 1.15rem;
    font-weight: 900;
}

.browser-mockup {
    position: relative;
    max-width: 650px;
    margin: 2rem auto;
    padding-bottom: 3.8rem;
    filter: drop-shadow(0 1.5rem 1.5rem rgba(7, 31, 60, 0.18));
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.8rem 1rem;
    background: #202934;
    border-radius: 0.8rem 0.8rem 0 0;
}

.browser-bar > span {
    width: 0.7rem;
    height: 0.7rem;
    background: #8b95a0;
    border-radius: 50%;
}

.browser-bar > span:first-child {
    background: var(--brand-pink);
}

.browser-address {
    width: 55%;
    margin-left: auto;
    padding: 0.18rem 0.65rem;
    color: #8d99a6;
    background: #101820;
    border-radius: 2rem;
    font-size: 0.68rem;
    text-align: center;
}

.browser-screen {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    background: var(--white);
    border: 0.65rem solid #202934;
    border-top: 0;
    border-radius: 0 0 0.8rem 0.8rem;
}

.browser-screen img {
    width: 100%;
    min-height: 270px;
    object-fit: cover;
}

.browser-content {
    display: flex;
    min-height: 95px;
    flex-direction: column;
    justify-content: center;
    padding: 1.25rem 1.7rem;
    color: var(--white);
    background: var(--brand-navy);
}

.browser-content span {
    color: #ff6db6;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.browser-content strong {
    font-size: 1.35rem;
}

.device {
    position: absolute;
    right: -0.5rem;
    bottom: 0;
    width: 130px;
    overflow: hidden;
    background: #131c26;
    border: 0.45rem solid #131c26;
    border-radius: 1.15rem;
    box-shadow: 0 1rem 2rem rgba(7, 31, 60, 0.3);
}

.device img {
    display: block;
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.device span {
    display: block;
    padding: 0.65rem 0.35rem;
    color: var(--white);
    background: var(--brand-pink);
    font-size: 0.7rem;
    font-weight: 800;
    text-align: center;
}

.device-notch {
    position: absolute;
    top: 0;
    left: 50%;
    width: 42%;
    height: 0.55rem;
    background: #131c26;
    border-radius: 0 0 0.5rem 0.5rem;
    transform: translateX(-50%);
}

.feature-image-panel img {
    width: 100%;
    aspect-ratio: 610 / 201;
    object-fit: cover;
}

.feature-image-panel h3 {
    color: var(--brand-navy);
    font-weight: 800;
}

.hosting-wrap {
    padding: 0 0 1rem;
    background: var(--white);
}

.hosting-banner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem 2.2rem;
    color: var(--white);
    background:
        linear-gradient(115deg, rgba(202, 0, 108, 0.18), transparent 35%),
        var(--brand-navy);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.hosting-icon {
    display: grid;
    width: 4.2rem;
    height: 4.2rem;
    place-items: center;
    color: #ff4da5;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 1rem;
    font-size: 2rem;
}

.hosting-copy h2 {
    margin-bottom: 0.45rem;
    color: var(--white);
    font-size: 1.45rem;
    font-weight: 800;
}

.hosting-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.reason-grid {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.reason-item {
    height: 100%;
    padding: 2.25rem 1.8rem;
    text-align: center;
}

.reason-grid > div:not(:last-child) .reason-item {
    border-right: 1px solid var(--border);
}

.reason-item > i {
    color: var(--brand-pink);
    font-size: 2rem;
}

.reason-item h3 {
    margin: 1rem 0 0.65rem;
    color: var(--brand-navy);
    font-size: 1.07rem;
    font-weight: 800;
}

.reason-item p {
    margin: 0;
    color: var(--muted-text);
    font-size: 0.93rem;
}

.final-cta {
    padding: 0 0 5.5rem;
    background: var(--white);
}

.final-cta-inner {
    padding: clamp(3rem, 7vw, 5rem);
    color: var(--white);
    background:
        radial-gradient(circle at 10% 100%, rgba(202, 0, 108, 0.7), transparent 18rem),
        linear-gradient(120deg, var(--brand-navy) 0%, var(--brand-navy-light) 55%, var(--brand-teal) 130%);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.final-cta h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.final-cta p {
    max-width: 690px;
    margin: 0.8rem auto 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.12rem;
}

.site-footer {
    padding: 4.5rem 0 1.8rem;
    color: rgba(255, 255, 255, 0.73);
    background: var(--brand-navy);
}

.footer-logo {
    width: 190px;
    margin-bottom: 1.2rem;
    padding: 0.45rem 0.7rem;
    background: var(--white);
    border-radius: 0.35rem;
}

.site-footer h2 {
    margin-bottom: 1.1rem;
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links li,
.contact-list li {
    margin-bottom: 0.55rem;
}

.footer-links a,
.contact-list a,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.footer-links a:hover,
.contact-list a:hover,
.footer-bottom a:hover {
    color: #ff65b4;
}

.contact-list li {
    display: flex;
    gap: 0.75rem;
}

.contact-list i {
    color: #ff4da5;
}

.footer-bottom {
    margin-top: 3.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.86rem;
}

/* Contact page */
.contact-hero {
    padding: 3.25rem 0;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 100%, rgba(202, 0, 108, 0.35), transparent 19rem),
        var(--brand-navy);
}

.contact-hero h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 6vw, 4.3rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.contact-hero p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.79);
    font-size: 1.15rem;
}

.contact-hero-image {
    overflow: hidden;
    background: var(--white);
    border: 0.65rem solid var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.contact-hero-image img {
    width: 100%;
}

.contact-main {
    padding: 5.5rem 0;
    background: var(--soft-bg);
}

.contact-info-panel,
.contact-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.contact-info-panel {
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
    padding: 2.4rem;
}

.contact-info-panel h2,
.contact-form-card h2 {
    color: var(--brand-navy);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 1.4rem;
}

.contact-info-item i {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    flex: 0 0 auto;
    place-items: center;
    color: var(--white);
    background: var(--brand-pink);
    border-radius: 0.7rem;
    font-size: 1.1rem;
}

.contact-info-item strong {
    display: block;
    color: var(--brand-navy);
}

.contact-info-item a {
    color: var(--body-text);
    text-decoration: none;
}

.contact-form-card {
    padding: clamp(1.5rem, 4vw, 3rem);
}

.required-note {
    color: var(--muted-text);
    font-size: 0.9rem;
}

.required-mark {
    color: var(--brand-pink);
}

.form-label,
.form-legend {
    margin-bottom: 0.45rem;
    color: var(--brand-navy);
    font-weight: 700;
}

.form-control,
.form-select {
    min-height: 3.15rem;
    color: var(--body-text);
    background-color: #fbfcfd;
    border-color: #cfd9e2;
    border-radius: 0.45rem;
}

textarea.form-control {
    min-height: 180px;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    border-color: var(--brand-pink);
    box-shadow: 0 0 0 0.22rem rgba(202, 0, 108, 0.14);
}

.form-check-input:checked {
    background-color: var(--brand-pink);
    border-color: var(--brand-pink);
}

.form-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.honeypot-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.alert {
    border-radius: 0.6rem;
}

.validation-list {
    margin-bottom: 0;
}

.form-help {
    color: var(--muted-text);
    font-size: 0.86rem;
}

@media (max-width: 1199.98px) {
    .navbar-nav .nav-link {
        padding-right: 0.55rem !important;
        padding-left: 0.55rem !important;
        font-size: 0.84rem;
    }

    .reason-grid > div:nth-child(2) .reason-item {
        border-right: 0;
    }

    .reason-grid > div:nth-child(-n+2) .reason-item {
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 991.98px) {
    :root {
        --header-height: 74px;
    }

    .navbar {
        min-height: var(--header-height);
    }

    .navbar-brand img {
        width: 155px;
    }

    .navbar-collapse {
        padding: 1rem 0 1.25rem;
        border-top: 1px solid var(--border);
    }

    .navbar-nav .nav-link {
        padding: 0.7rem 0 !important;
    }

    .navbar-nav .nav-link::after {
        right: auto;
        bottom: 0.35rem;
        left: 0;
        width: 2.5rem;
    }

    .hero-copy,
    .hero-image {
        min-height: auto;
    }

    .hero-copy::after {
        top: auto;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 0.45rem;
    }

    .hero-image img {
        min-height: 320px;
    }

    .hosting-banner {
        grid-template-columns: auto 1fr;
    }

    .hosting-banner .btn {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .contact-info-panel {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .section-space {
        padding: 4rem 0;
    }

    .hero-section {
        padding-top: 0;
    }

    .hero-shell {
        margin-right: -0.75rem;
        margin-left: -0.75rem;
        border-radius: 0;
    }

    .hero-copy {
        padding: 3.5rem 1.5rem;
    }

    .hero-copy h1 {
        font-size: 2.65rem;
    }

    .hero-image img {
        min-height: 230px;
    }

    .hosting-banner {
        display: block;
        padding: 1.6rem;
    }

    .hosting-icon {
        margin-bottom: 1.1rem;
    }

    .hosting-copy {
        margin-bottom: 1.4rem;
    }

    .reason-grid > div .reason-item {
        border-right: 0 !important;
        border-bottom: 1px solid var(--border);
    }

    .reason-grid > div:last-child .reason-item {
        border-bottom: 0;
    }

    .browser-mockup {
        padding-right: 1.7rem;
        padding-bottom: 4.8rem;
    }

    .device {
        right: 0;
        width: 105px;
    }

    .browser-screen {
        min-height: 270px;
    }

    .browser-screen img {
        min-height: 185px;
    }

    .contact-main {
        padding: 3.5rem 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
