@import url("https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap");

:root {
    --pink: #ff4fa3;
    --pink-deep: #db2b84;
    --pink-soft: #fff1f7;
    --blue-soft: #d6ecff;
    --blue: #9ecff6;
    --blue-deep: #7fb7e8;
    --peach: #ffe1cf;
    --cream: #fffaf6;
    --dark: #241521;
    --gray: #6b6070;
    --line: rgba(36, 21, 33, 0.1);
    --shadow: 0 20px 60px rgba(219, 43, 132, 0.12);
    --shadow-soft-blue: 0 16px 34px rgba(127, 183, 232, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--dark);
    background:
        radial-gradient(circle at top right, rgba(158, 207, 246, 0.16), transparent 26%),
        radial-gradient(circle at top left, rgba(255, 79, 163, 0.18), transparent 30%),
        linear-gradient(180deg, #fffdfd 0%, var(--cream) 100%);
}

a {
    color: inherit;
}

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

.section {
    padding: 88px 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 79, 163, 0.05), rgba(214, 236, 255, 0.22) 52%, rgba(255, 225, 207, 0.24));
}

.top-gap {
    margin-top: 32px;
}

.top-gap-small {
    margin-top: 18px;
}

.eyebrow,
.card-label {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--pink-deep);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: "Patrick Hand", "Poppins", sans-serif;
    color: #ff8fc0;
    line-height: 1.12;
    text-shadow: 0 6px 18px rgba(255, 79, 163, 0.14);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    margin-bottom: 18px;
    line-height: 1.04;
}

h2 {
    font-size: clamp(1.95rem, 4vw, 3rem);
}

h3 {
    font-size: 1.25rem;
}

p,
li {
    color: var(--gray);
    line-height: 1.75;
}

.lead {
    max-width: 760px;
    font-size: 1.06rem;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    border: 0;
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
    color: white;
    box-shadow: 0 14px 30px rgba(219, 43, 132, 0.24);
}

.btn-secondary {
    border: 1px solid rgba(219, 43, 132, 0.2);
    background: rgba(255, 255, 255, 0.8);
    color: var(--dark);
}

.btn-primary:hover,
.btn-secondary:hover,
.text-link:hover,
.tile-card:hover {
    transform: translateY(-2px);
}

.text-link {
    display: inline-block;
    margin-top: 14px;
    color: var(--pink-deep);
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px);
    background: rgba(255, 250, 246, 0.74);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: block;
    width: 250px;
    height: 88px;
    text-decoration: none;
    color: transparent;
    background: url("../images/digital_bunny_logo.png") center left / contain no-repeat;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 101%;
    flex-shrink: 0;
    filter: drop-shadow(0 10px 18px rgba(127, 183, 232, 0.18));
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-group {
    position: relative;
}

.nav-group::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 18px;
}

.nav-parent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-parent::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    display: grid;
    min-width: 220px;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 250, 246, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown a {
    padding: 9px 12px;
    border-radius: 14px;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
    background: linear-gradient(135deg, var(--pink-soft), rgba(214, 236, 255, 0.45));
    color: var(--pink-deep);
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.site-nav a {
    text-decoration: none;
    font-weight: 500;
}

.site-nav .is-current {
    color: var(--pink-deep);
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 8px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: var(--dark);
}

.hero,
.page-hero {
    padding: 92px 0 70px;
}

.hero-inner,
.split-section,
.contact-panel,
.two-column-content {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 38px;
    align-items: start;
}

.hero-inner {
    align-items: center;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0;
}

.hero-points,
.bullet-list {
    display: grid;
    gap: 12px;
    list-style: none;
}

.hero-points li,
.bullet-list li {
    position: relative;
    padding-left: 22px;
}

.hero-points li::before,
.bullet-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--blue));
}

.card,
.service-card,
.approach-card,
.contact-panel,
.tile-card,
.content-card,
.feature-band {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow);
}

.hero-card .card,
.service-card,
.approach-card,
.content-card,
.feature-band {
    padding: 30px;
}

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

.mini-grid span {
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 241, 247, 0.95), rgba(214, 236, 255, 0.62) 85%, white);
    text-align: center;
    font-weight: 600;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 36px;
}

.section-heading h2 {
    margin-bottom: 14px;
}

.service-grid,
.approach-grid,
.tile-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card h3,
.approach-card h3,
.tile-card h3,
.content-card h3 {
    margin-bottom: 12px;
}

.service-card-wide {
    grid-column: span 3;
    background: linear-gradient(135deg, rgba(255, 79, 163, 0.08), rgba(214, 236, 255, 0.22), rgba(255, 225, 207, 0.24));
}

.feature-band,
.contact-panel {
    padding: 34px;
}

.feature-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.tile-card {
    padding: 26px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.content-card {
    align-self: start;
}

.contact-panel {
    background:
        radial-gradient(circle at bottom left, rgba(214, 236, 255, 0.55), transparent 34%),
        radial-gradient(circle at top right, rgba(255, 225, 207, 0.7), transparent 34%),
        rgba(255, 255, 255, 0.88);
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid rgba(36, 21, 33, 0.12);
    border-radius: 16px;
    font: inherit;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.96);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form button {
    justify-self: start;
    cursor: pointer;
}

.breadcrumbs {
    margin-bottom: 18px;
    color: var(--gray);
    font-size: 0.95rem;
}

.breadcrumbs a {
    text-decoration: none;
}

.footer {
    padding: 30px 0 40px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: start;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links a {
    text-decoration: none;
    color: var(--gray);
}

.tile-card:hover {
    border-color: rgba(127, 183, 232, 0.24);
    box-shadow: var(--shadow), var(--shadow-soft-blue);
}

.footer strong {
    color: var(--pink-deep);
}

.footer p {
    max-width: 420px;
}

.breadcrumbs a:hover,
.text-link:focus-visible,
.site-nav a:focus-visible,
.footer-links a:hover {
    color: var(--blue-deep);
}

@media (max-width: 920px) {
    .logo {
        width: 220px;
        height: 78px;
    }

    .hero-inner,
    .split-section,
    .contact-panel,
    .two-column-content,
    .service-grid,
    .approach-grid,
    .tile-grid {
        grid-template-columns: 1fr;
    }

    .service-card-wide {
        grid-column: auto;
    }

    .feature-band,
    .footer-inner {
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .logo {
        width: 184px;
        height: 66px;
    }

    .navbar {
        position: static;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: rgba(255, 250, 246, 0.97);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .nav-group {
        width: 100%;
    }

    .nav-group::after {
        display: none;
    }

    .nav-parent {
        justify-content: space-between;
        width: 100%;
    }

    .nav-dropdown {
        position: static;
        min-width: 0;
        margin-top: 10px;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.65);
    }

    .hero,
    .page-hero,
    .section {
        padding: 70px 0;
    }

    .hero-card .card,
    .service-card,
    .approach-card,
    .contact-panel,
    .tile-card,
    .content-card,
    .feature-band {
        border-radius: 24px;
    }

    .feature-band,
    .contact-panel {
        padding: 24px;
    }
}
