* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #101828;
    background:
        radial-gradient(circle at top left, rgba(0, 184, 217, 0.14), transparent 32rem),
        radial-gradient(circle at top right, rgba(255, 107, 0, 0.14), transparent 30rem),
        #f7f8fb;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1160px, calc(100% - 36px));
    margin: 0 auto;
}

.section {
    padding: 86px 0;
}

.site-shell {
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 248, 251, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(16, 24, 40, 0.08);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: #fff;
    font-weight: 900;
    font-size: 1.35rem;
    box-shadow: 0 16px 35px rgba(255, 107, 0, 0.24);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1rem;
    line-height: 1.1;
}

.brand small {
    color: #667085;
    font-size: 0.75rem;
    margin-top: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #344054;
    font-size: 0.95rem;
}

.main-nav a {
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--secondary);
}

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 11px 18px;
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(16, 24, 40, 0.14);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 25px rgba(16, 24, 40, 0.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--primary);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
    position: relative;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding-top: 72px;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.45;
    background-image:
        linear-gradient(rgba(16, 24, 40, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 24, 40, 0.05) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 56px;
    align-items: center;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 0.78rem;
}

.eyebrow span {
    width: 28px;
    height: 3px;
    background: var(--secondary);
    border-radius: 999px;
}

.hero h1 {
    margin: 18px 0;
    font-size: clamp(3rem, 7vw, 6.4rem);
    line-height: 0.91;
    letter-spacing: -0.075em;
    color: var(--primary);
}

.hero-copy p {
    max-width: 620px;
    margin: 0;
    font-size: 1.12rem;
    color: #475467;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 22px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), #ff9d2f);
    color: #fff;
    box-shadow: 0 18px 36px rgba(255, 107, 0, 0.28);
}

.btn-soft {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 14px 34px rgba(16, 24, 40, 0.09);
}

.hero-stats {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 620px;
}

.hero-stats div {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 16px 36px rgba(16, 24, 40, 0.06);
}

.hero-stats strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
}

.hero-stats span {
    display: block;
    color: #667085;
    font-size: 0.88rem;
}

.hero-art {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
}

.print-card {
    background: #fff;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 34px;
    box-shadow: 0 30px 80px rgba(16, 24, 40, 0.16);
}

.main-print-card {
    width: min(420px, 100%);
    padding: 18px;
    transform: rotate(-3deg);
}

.print-top {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
}

.dot-orange {
    background: var(--secondary);
}

.dot-blue {
    background: var(--accent);
}

.dot-dark {
    background: var(--primary);
}

.poster-preview {
    min-height: 460px;
    border-radius: 24px;
    color: #fff;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25), transparent 8rem),
        linear-gradient(145deg, var(--primary), #1d2939 42%, var(--secondary));
    position: relative;
    overflow: hidden;
}

.poster-preview::before,
.poster-preview::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.9;
}

.poster-preview::before {
    width: 180px;
    height: 180px;
    top: 44px;
    right: -52px;
    background: var(--accent);
}

.poster-preview::after {
    width: 95px;
    height: 95px;
    top: 160px;
    left: 42px;
    background: var(--secondary);
}

.poster-label {
    position: relative;
    z-index: 2;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.poster-preview h2 {
    position: relative;
    z-index: 2;
    margin: 90px 0 10px;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 0.9;
    letter-spacing: -0.07em;
}

.poster-preview p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
}

.floating-tile {
    position: absolute;
    background: #fff;
    border-radius: 22px;
    padding: 16px 18px;
    box-shadow: 0 20px 45px rgba(16, 24, 40, 0.14);
    border: 1px solid rgba(16, 24, 40, 0.08);
}

.floating-tile span {
    display: block;
    color: #98a2b3;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.floating-tile strong {
    color: var(--primary);
}

.tile-one {
    top: 82px;
    right: 8px;
}

.tile-two {
    left: 0;
    bottom: 96px;
}

.colour-strip {
    position: absolute;
    right: 32px;
    bottom: 52px;
    display: flex;
    overflow: hidden;
    width: 168px;
    height: 38px;
    border-radius: 999px;
    box-shadow: 0 18px 34px rgba(16, 24, 40, 0.16);
}

.colour-strip span {
    flex: 1;
}

.colour-strip span:nth-child(1) {
    background: var(--primary);
}

.colour-strip span:nth-child(2) {
    background: var(--secondary);
}

.colour-strip span:nth-child(3) {
    background: var(--accent);
}

.colour-strip span:nth-child(4) {
    background: #fef3c7;
}

.logo-marquee {
    padding: 24px 0;
}

.logo-marquee p {
    margin: 0 0 14px;
    text-align: center;
    color: #667085;
}

.marquee-track {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.marquee-track span {
    background: #fff;
    border: 1px solid rgba(16, 24, 40, 0.08);
    padding: 9px 14px;
    border-radius: 999px;
    color: #344054;
    box-shadow: 0 10px 25px rgba(16, 24, 40, 0.05);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 38px;
}

.section-heading.center {
    text-align: center;
    margin-inline: auto;
}

.section-heading h2,
.trust-copy h2,
.faq-intro h2,
.contact-copy h2 {
    margin: 10px 0 12px;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    color: var(--primary);
}

.section-heading p,
.trust-copy p,
.faq-intro p,
.contact-copy p {
    margin: 0;
    color: #667085;
    font-size: 1.03rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    background: #fff;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 28px;
    padding: 26px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 22px 50px rgba(16, 24, 40, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(16, 24, 40, 0.12);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(255, 107, 0, 0.1);
    color: var(--secondary);
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 24px;
}

.service-card h3,
.process-card h3,
.showcase-card h3,
.benefit-card h3 {
    margin: 0 0 10px;
    color: var(--primary);
    font-size: 1.22rem;
}

.service-card p,
.process-card p,
.showcase-card p,
.benefit-card p {
    margin: 0;
    color: #667085;
}

.service-card a {
    margin-top: auto;
    color: var(--secondary);
    font-weight: 800;
}

.trust-section {
    background: var(--primary);
    color: #fff;
    position: relative;
}

.trust-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 20%, rgba(0, 184, 217, 0.2), transparent 26rem),
        radial-gradient(circle at 84% 60%, rgba(255, 107, 0, 0.18), transparent 28rem);
}

.trust-grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.machine-card {
    max-width: 420px;
    margin: 0 auto;
    background: #fff;
    color: var(--primary);
    border-radius: 34px;
    padding: 26px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
}

.machine-display {
    min-height: 180px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(0, 184, 217, 0.18), transparent),
        #eef4ff;
    display: grid;
    place-items: center;
    text-align: center;
}

.machine-display span {
    display: block;
    color: #667085;
    font-weight: 900;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
}

.machine-display strong {
    display: block;
    font-size: 3.4rem;
    letter-spacing: -0.08em;
}

.paper-stack {
    margin-top: 20px;
    display: grid;
    gap: 10px;
}

.paper-stack span {
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.paper-stack span:nth-child(2) {
    width: 82%;
    background: linear-gradient(90deg, var(--accent), #d1f7ff);
}

.paper-stack span:nth-child(3) {
    width: 64%;
    background: #f2f4f7;
}

.trust-copy h2 {
    color: #fff;
}

.trust-copy p {
    color: rgba(255, 255, 255, 0.72);
}

.trust-list {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.trust-list div {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    padding: 18px;
}

.trust-list strong,
.trust-list span {
    display: block;
}

.trust-list strong {
    color: #fff;
    margin-bottom: 4px;
}

.trust-list span {
    color: rgba(255, 255, 255, 0.68);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    counter-reset: process;
}

.process-card {
    background: #fff;
    border-radius: 28px;
    padding: 26px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    box-shadow: 0 20px 48px rgba(16, 24, 40, 0.06);
}

.process-card span,
.benefit-number {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    margin-bottom: 24px;
}

.showcase {
    background: #fff;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    gap: 18px;
}

.showcase-card {
    background: #f7f8fb;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 30px;
    padding: 24px;
    min-height: 280px;
    overflow: hidden;
}

.showcase-card.tall {
    grid-row: span 2;
}

.showcase-card.wide {
    grid-column: span 2;
}

.mock-sign,
.mock-card,
.mock-sticker,
.mock-vehicle {
    min-height: 190px;
    border-radius: 24px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.sign-one {
    min-height: 440px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent),
        var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
}

.sign-one span {
    position: absolute;
    top: 28px;
    left: 28px;
    background: var(--secondary);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 0.75rem;
}

.sign-one strong {
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 0.9;
    letter-spacing: -0.08em;
}

.card-one {
    background:
        radial-gradient(circle at 80% 20%, rgba(0, 184, 217, 0.35), transparent 8rem),
        linear-gradient(135deg, #ffffff, #eef4ff);
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-one span,
.mock-sticker span {
    font-size: 0.75rem;
    color: #667085;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.card-one strong,
.mock-sticker strong {
    display: block;
    color: var(--primary);
    font-size: 1.6rem;
    letter-spacing: -0.04em;
}

.mock-sticker {
    background:
        radial-gradient(circle, #fff 0 36%, transparent 37%),
        linear-gradient(135deg, var(--secondary), #ffd194);
    display: grid;
    place-items: center;
    text-align: center;
}

.mock-vehicle {
    min-height: 230px;
    background: linear-gradient(180deg, #eef4ff 0%, #eef4ff 62%, #d0d5dd 63%);
}

.vehicle-body {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 52px;
    height: 86px;
    background: var(--primary);
    border-radius: 28px 46px 20px 20px;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.vehicle-body::before {
    content: "";
    position: absolute;
    right: 34px;
    top: -36px;
    width: 120px;
    height: 50px;
    border-radius: 30px 30px 0 0;
    background: var(--accent);
}

.wheel {
    position: absolute;
    bottom: 30px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1d2939;
    border: 8px solid #667085;
}

.wheel.left {
    left: 22%;
}

.wheel.right {
    right: 22%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.benefit-card {
    background: var(--primary);
    color: #fff;
    border-radius: 30px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    right: -80px;
    bottom: -80px;
    background: rgba(255, 255, 255, 0.08);
}

.benefit-number {
    background: var(--secondary);
}

.benefit-card h3 {
    color: #fff;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.72);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 22px 50px rgba(16, 24, 40, 0.06);
}

.stars {
    color: var(--secondary);
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.testimonial-card p {
    color: #475467;
    margin: 0 0 22px;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card span {
    color: #98a2b3;
    font-size: 0.9rem;
}

.faq {
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 44px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 22px;
    overflow: hidden;
    background: #f7f8fb;
}

.faq-item button {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    cursor: pointer;
    color: var(--primary);
    font-weight: 900;
}

.faq-item button span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--secondary);
    flex: 0 0 auto;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 20px 20px;
    color: #667085;
}

.faq-item.active .faq-answer {
    max-height: 160px;
}

.faq-item.active button span {
    transform: rotate(45deg);
}

.contact-section {
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 107, 0, 0.18), transparent 28rem),
        radial-gradient(circle at 80% 70%, rgba(0, 184, 217, 0.18), transparent 28rem),
        var(--primary);
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 44px;
    align-items: start;
}

.contact-copy h2 {
    color: #fff;
}

.contact-copy p {
    color: rgba(255, 255, 255, 0.72);
}

.contact-methods {
    margin-top: 30px;
    display: grid;
    gap: 12px;
}

.contact-methods a,
.contact-methods div {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    padding: 16px 18px;
}

.contact-methods span,
.contact-methods strong {
    display: block;
}

.contact-methods span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.86rem;
}

.contact-methods strong {
    color: #fff;
}

.quote-form {
    background: #fff;
    color: var(--primary);
    padding: 28px;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
    display: grid;
    gap: 16px;
}

.quote-form label {
    display: grid;
    gap: 7px;
    font-weight: 800;
    color: #344054;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    border: 1px solid #d0d5dd;
    border-radius: 15px;
    padding: 13px 14px;
    color: var(--primary);
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 184, 217, 0.12);
}

.form-note {
    margin: 0;
    color: #98a2b3;
    font-size: 0.84rem;
}

.site-footer {
    background: #0b1220;
    color: rgba(255, 255, 255, 0.7);
    padding: 28px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-inner p {
    margin: 0;
}

.footer-inner a {
    color: #fff;
    font-weight: 800;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    background: #25d366;
    color: #fff;
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .section {
        padding: 68px 0;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        inset: 76px 18px auto 18px;
        background: #fff;
        border-radius: 24px;
        padding: 20px;
        display: grid;
        gap: 10px;
        box-shadow: 0 24px 70px rgba(16, 24, 40, 0.18);
        transform: translateY(-16px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    body.nav-open .main-nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    body.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        min-height: auto;
        padding-top: 58px;
    }

    .hero-grid,
    .trust-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-art {
        min-height: 500px;
    }

    .service-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-grid {
        grid-template-columns: 1fr 1fr;
    }

    .showcase-card.tall,
    .showcase-card.wide {
        grid-column: auto;
        grid-row: auto;
    }

    .sign-one {
        min-height: 240px;
    }

    .benefits-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .section {
        padding: 56px 0;
    }

    .brand small {
        display: none;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 16vw, 4.6rem);
    }

    .hero-actions,
    .footer-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-stats,
    .service-grid,
    .process-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .hero-art {
        min-height: 440px;
    }

    .poster-preview {
        min-height: 360px;
        padding: 26px;
    }

    .floating-tile {
        display: none;
    }

    .colour-strip {
        right: 18px;
        bottom: 20px;
    }

    .contact-methods a,
    .contact-methods div {
        overflow-wrap: anywhere;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 12px 15px;
    }
}