:root {
    --bg: #f6f7fb;
    --card: #ffffff;
    --text: #0f172a;
    --muted: rgba(15,23,42,.72);
    --line: rgba(15,23,42,.10);
    --shadow: 0 18px 44px rgba(15,23,42,.10);
    --radius: 22px;
    --c: #00B3E6;
    --p: #7B61FF;
    --m: #D81B60;
    --o: #F2994A;
    --y: #F2C94C;
    --rainbow: linear-gradient(90deg,var(--c),var(--p),var(--m),var(--o),var(--y));
    --rainbow-soft: linear-gradient(90deg,rgba(0,179,230,.16),rgba(123,97,255,.16),rgba(216,27,96,.14),rgba(242,153,74,.14),rgba(242,201,76,.16));
    --rainbow-faint: linear-gradient(90deg,rgba(0,179,230,.08),rgba(123,97,255,.08),rgba(216,27,96,.07),rgba(242,153,74,.07),rgba(242,201,76,.08));
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin-top: 0;
    margin-left: 8px;
    margin-right: 8px;
}

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

.rainbow-bar {
    height: 8px;
    background: var(--rainbow);
}

.section {
    padding: 64px 0;
    position: relative;
}

.section.alt {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.bg-blobs::before {
    content: "";
    position: absolute;
    inset: -140px;
    background: radial-gradient(640px 420px at 10% 10%, rgba(0,179,230,.18), transparent 62%),
  radial-gradient(720px 480px at 90% 20%, rgba(216,27,96,.14), transparent 60%),
  radial-gradient(760px 520px at 65% 100%, rgba(242,201,76,.14), transparent 62%),
  radial-gradient(620px 460px at 28% 95%, rgba(123,97,255,.12), transparent 64%);
    pointer-events: none;
    opacity: .9;
    filter: blur(2px);
}

.section>.container,
.hero>.container {
    position: relative;
    z-index: 2;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg,transparent,rgba(15,23,42,.16),transparent);
    margin: 34px 0;
}

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

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

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 1100;
}

.brand-logo {
    display: block;
    height: 36px;     /* choose the visual size you want */
    width: auto;      /* preserves SVG aspect ratio */
    max-width: none;  /* prevents browser downsampling quirks */
	 transform: none !important;
    filter: none !important;
}
.client-logos {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  align-items: center;
}

.client-logos img {
  max-width: 100%;
  height: auto;
  opacity: 0.85;
  filter: grayscale(100%);
  transition: opacity .2s ease, filter .2s ease;
}

.client-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    background: var(--rainbow);
    box-shadow: var(--shadow);
    animation: hue 10s ease-in-out infinite alternate;
}

@keyframes hue{
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(20deg);
    }
}

.brand-text .name {
    font-size: 18px;
    line-height: 1.05;
}

.brand-text .loc {
    font-size: 13px;
    color: var(--muted);
    font-weight: 900;
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 950;
    font-size: 14px;
}

.nav a,
.dropdown>button {
    padding: 10px 10px;
    border-radius: 16px;
    color: rgba(15,23,42,.86);
}

.nav a:hover,
.dropdown>button:hover {
    background: var(--rainbow-faint);
}

.dropdown {
    position: relative;
}

.dropdown>button {
    all: unset;
    cursor: pointer;
    padding: 10px 10px;
    border-radius: 16px;
    font-weight: 950;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 250px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 10px;
    display: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 16px;
}

.dropdown-menu a:hover {
    background: var(--rainbow-faint);
}

.dropdown.open .dropdown-menu {
    display: block;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-weight: 1100;
    box-shadow: 0 10px 22px rgba(15,23,42,.06);
}

.pill svg {
    width: 16px;
    height: 16px;
    fill: rgba(15,23,42,.82);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 18px;
    font-weight: 1100;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .08s ease,filter .12s ease,box-shadow .12s ease;
}

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

.btn-primary {
    background: var(--rainbow);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(15,23,42,.12);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: var(--rainbow);
    opacity: .18;
    filter: blur(10px);
}

.btn-primary>* {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    filter: brightness(1.04);
}

.btn-ghost {
    background: #fff;
    border-color: var(--line);
    color: rgba(15,23,42,.86);
}

.btn-ghost:hover {
    background: var(--rainbow-faint);
}

.btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.hero {
    padding: 54px 0 32px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 22px;
    align-items: center;
}

.kicker {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-weight: 1100;
    font-size: 13px;
}

.h1 {
    font-size: clamp(36px,4.4vw,62px);
    line-height: 1.05;
    margin: 14px 0 12px;
    font-weight: 1200;
    letter-spacing: -0.8px;
}

.subhead {
    font-size: 18px;
    color: var(--muted);
    max-width: 760px;
}

.hero-ctas {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-note {
    margin-top: 12px;
    color: var(--muted);
    font-weight: 950;
}

.hero-note a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero-art {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-art img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.hero-strip {
    margin-top: 20px;
    border-radius: 999px;
    height: 10px;
    background: var(--rainbow);
}

.section-title {
    font-size: 28px;
    font-weight: 1200;
    margin: 0 0 12px;
}

.section-title::after {
    content: "";
    display: block;
    width: 84px;
    height: 4px;
    border-radius: 4px;
    margin-top: 12px;
    background: var(--rainbow);
}

.section-lede {
    color: var(--muted);
    max-width: 980px;
    font-weight: 800;
}

.grid-3 {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.grid-2 {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 34px rgba(15,23,42,.08);
    overflow: hidden;
    transition: transform .12s ease,box-shadow .12s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 46px rgba(15,23,42,.12);
}

.card img {
    width: 100%;
    object-fit: cover;
    display: block;
    text-align: center;
}

.card-body {
    padding: 18px 18px 20px;
}

.card-title {
    font-weight: 1200;
    font-size: 18px;
    margin: 0 0 8px;
}

.card-text {
    color: var(--muted);
    margin: 0 0 16px;
    font-weight: 850;
}

.card.digital {
    border-top: 8px solid var(--c);
}

.card.litho {
    border-top: 8px solid var(--m);
}

.card.large {
    border-top: 8px solid var(--y);
}

.trust-row {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: var(--rainbow-faint);
    border: 1px solid var(--line);
    font-weight: 1000;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--rainbow);
}

.quote {
    margin-top: 22px;
    padding: 18px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(15,23,42,.06);
    font-style: italic;
    color: var(--muted);
}

.quote strong {
    font-style: normal;
    color: rgba(15,23,42,.88);
}

.slab {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 34px rgba(15,23,42,.08);
    padding: 22px;
}

.slab h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 1200;
}

.checklist {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.checklist li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--muted);
    font-weight: 950;
}

.checklist svg {
    width: 18px;
    height: 18px;
    fill: rgba(15,23,42,.82);
    flex: 0 0 auto;
    margin-top: 2px;
}

.badges {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badges img {
    width: 84px;
    height: 84px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
}

.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #fff;
}

.table th,
.table td {
    padding: 14px 14px;
    border-bottom: 1px solid rgba(15,23,42,.08);
    text-align: left;
}

.table th {
    font-weight: 1200;
    background: var(--rainbow-faint);
}

.table tr:last-child td {
    border-bottom: none;
}

.faq {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.faq details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 10px 22px rgba(15,23,42,.06);
    padding: 14px 16px;
}

.faq summary {
    cursor: pointer;
    font-weight: 1100;
}

.faq p {
    margin-top: 10px;
    color: var(--muted);
    font-weight: 850;
}

.map-embed {
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: var(--radius);
}

.cta-band {
    margin-top: 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 34px rgba(15,23,42,.08);
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.cta-band h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 1200;
}

.cta-band p {
    margin: 6px 0 0;
    color: var(--muted);
    font-weight: 900;
}

.page-hero {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.page-hero-inner {
    padding: 44px 0 28px;
}

.page-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(30px,3.6vw,48px);
    font-weight: 1200;
    letter-spacing: -0.5px;
}

.page-hero p {
    max-width: 980px;
    color: var(--muted);
    font-weight: 900;
}

.prose {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 34px rgba(15,23,42,.08);
    padding: 22px;
}

.prose h2 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 1200;
}

.prose ul {
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--muted);
    font-weight: 900;
}

.prose li {
    margin: 6px 0;
}

.drawer {
    display: none;
}

.drawer.open {
    display: block;
}

.mobile-nav {
    display: none;
}

.footer {
    background: #fff;
    border-top: 1px solid var(--line);
}

.footer-inner {
    padding: 26px 0;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 18px;
}

.footer h4 {
    margin: 0 0 10px;
    font-weight: 1200;
}

.footer small {
    color: var(--muted);
    font-weight: 850;
}

.footer a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 980px){
    .nav {
        display: none;
    }

    .mobile-nav {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .burger {
        width: 46px;
        height: 46px;
        border-radius: 18px;
        background: #fff;
        border: 1px solid var(--line);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 10px 22px rgba(15,23,42,.06);
    }

    .burger span {
        width: 18px;
        height: 2px;
        background: rgba(15,23,42,.86);
        display: block;
        position: relative;
    }

    .burger span:before,
    .burger span:after {
        content: "";
        position: absolute;
        left: 0;
        width: 18px;
        height: 2px;
        background: rgba(15,23,42,.86);
    }

    .burger span:before {
        top: -6px;
    }

    .burger span:after {
        top: 6px;
    }

    .drawer {
        position: fixed;
        inset: 0;
        background: rgba(15,23,42,.40);
        display: none;
        z-index: 60;
    }

    .drawer.open {
        display: block;
    }

    .drawer-panel {
        position: absolute;
        right: 0;
        top: 0;
        width: min(380px,92vw);
        height: 100%;
        background: #fff;
        padding: 18px;
        box-shadow: var(--shadow);
        border-left: 1px solid var(--line);
    }

    .drawer-panel .top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }

    .drawer-panel .close {
        width: 46px;
        height: 46px;
        border-radius: 18px;
        background: var(--rainbow-faint);
        border: 1px solid var(--line);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-weight: 1200;
    }

    .drawer-panel a {
        display: block;
        padding: 12px 12px;
        border-radius: 18px;
        font-weight: 1100;
        color: rgba(15,23,42,.86);
    }

    .drawer-panel a:hover {
        background: var(--rainbow-faint);
    }

    .drawer-panel .sub {
        margin-left: 10px;
        font-weight: 950;
        color: var(--muted);
    }
}

.modern-form {
    max-width: 720px;
    background: #ffffff;
    padding: 28px;
    border-radius: 22px;
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.modern-form .field {
    margin-bottom: 18px;
}

.modern-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--line);
    font-size: 16px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.modern-form input:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: #6b5cff;
    box-shadow: 0 0 0 4px rgba(107,92,255,.12);
}

.modern-form textarea {
    resize: vertical;
}

.btn-wide {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 999px;
}

/* Testimonial block – full image, no cropping */
.testimonial {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,.08);
    text-align: center;
    padding-left: 90px;
}

.testimonial-large {
    width: 200px;   /* adjust to taste */
}


.testimonial-photo {
    width: 100%;
    height: auto;

    /* THIS fixes the cropping */
    max-width: 420px;
    border-radius: 12px;
    display: block;
    margin-bottom: 20px;
}

.testimonial blockquote {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 12px 0;
    color: #222;
}

.testimonial-meta {
    font-size: 0.9rem;
    color: #555;
}
