* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #111827;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 32rem),
        radial-gradient(circle at 80% 10%, rgba(34, 197, 94, 0.12), transparent 26rem),
        #f7f7f4;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.page-shell {
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 247, 244, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.nav-wrap {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 60;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.18);
}

.rim {
    width: 26px;
    height: 26px;
    border: 5px solid var(--secondary);
    border-radius: 50%;
    position: relative;
}

.rim::before,
.rim::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.rim::after {
    inset: -8px;
    border: 2px dashed rgba(255, 255, 255, 0.45);
}

.brand strong {
    display: block;
    font-size: 0.98rem;
    letter-spacing: -0.02em;
}

.brand small {
    display: block;
    color: #6b7280;
    font-size: 0.76rem;
    margin-top: 2px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    padding: 10px 12px;
    color: #374151;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
    background: rgba(17, 24, 39, 0.06);
    transform: translateY(-1px);
}

.site-nav .nav-cta {
    background: var(--primary);
    color: #fff;
    padding-inline: 18px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: var(--primary);
    border-radius: 14px;
    position: relative;
    z-index: 60;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 5px auto;
    border-radius: 99px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
    position: relative;
    padding: 78px 0 42px;
}

.hero-grid {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 46px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    font-weight: 900;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 99px;
    background: var(--secondary);
}

.hero-copy h1,
.section-heading h2,
.split-copy h2,
.showcase-copy h2,
.contact-card h2 {
    margin: 0;
    color: var(--primary);
    letter-spacing: -0.06em;
    line-height: 0.96;
}

.hero-copy h1 {
    font-size: clamp(3rem, 8vw, 6.7rem);
    max-width: 760px;
}

.hero-text {
    max-width: 620px;
    margin: 26px 0 0;
    font-size: 1.08rem;
    line-height: 1.8;
    color: #4b5563;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), #fbbf24);
    color: #111827;
    box-shadow: 0 16px 34px rgba(245, 158, 11, 0.28);
}

.btn-ghost {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px;
    max-width: 700px;
}

.hero-trust div {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.05);
}

.hero-trust strong {
    display: block;
    color: var(--primary);
    font-size: 1.25rem;
}

.hero-trust span {
    display: block;
    margin-top: 6px;
    color: #6b7280;
    font-size: 0.86rem;
    line-height: 1.4;
}

.hero-visual {
    position: relative;
    min-height: 590px;
    display: grid;
    place-items: center;
}

.tyre-card {
    width: min(100%, 470px);
    min-height: 540px;
    border-radius: 42px;
    padding: 26px;
    background:
        linear-gradient(160deg, rgba(17, 24, 39, 0.98), rgba(17, 24, 39, 0.88)),
        var(--primary);
    box-shadow: 0 34px 80px rgba(17, 24, 39, 0.34);
    position: relative;
    overflow: hidden;
}

.tyre-card::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 34px solid rgba(255, 255, 255, 0.055);
    top: 58px;
    left: 50%;
    transform: translateX(-50%);
}

.tyre-card::after {
    content: "";
    position: absolute;
    inset: auto -80px -130px auto;
    width: 260px;
    height: 260px;
    background: var(--secondary);
    opacity: 0.22;
    filter: blur(14px);
    border-radius: 50%;
}

.status-pill {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
}

.status-pill span {
    width: 9px;
    height: 9px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.14);
}

.tyre-illustration {
    position: relative;
    z-index: 2;
    min-height: 360px;
    display: grid;
    place-items: center;
}

.tyre-ring {
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background:
        repeating-conic-gradient(from 0deg, #05070a 0deg 10deg, #1f2937 10deg 18deg),
        #111827;
    display: grid;
    place-items: center;
    box-shadow:
        inset 0 0 0 18px #05070a,
        inset 0 0 0 34px rgba(255, 255, 255, 0.08),
        0 26px 70px rgba(0, 0, 0, 0.42);
    animation: slowSpin 22s linear infinite;
}

.tyre-inner {
    width: 126px;
    height: 126px;
    border-radius: 50%;
    background: radial-gradient(circle, #e5e7eb 0 16%, #9ca3af 17% 28%, #f3f4f6 29% 100%);
    position: relative;
    box-shadow: inset 0 0 0 14px #d1d5db;
}

.tyre-inner span {
    position: absolute;
    width: 18px;
    height: 48px;
    background: #111827;
    border-radius: 99px;
    left: 50%;
    top: 50%;
    transform-origin: center -15px;
}

.tyre-inner span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-32px);
}

.tyre-inner span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(90deg) translateY(-32px);
}

.tyre-inner span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(180deg) translateY(-32px);
}

.tyre-inner span:nth-child(4) {
    transform: translate(-50%, -50%) rotate(270deg) translateY(-32px);
}

.speed-lines {
    position: absolute;
    left: 8px;
    top: 44%;
    display: grid;
    gap: 14px;
}

.speed-lines i {
    display: block;
    height: 8px;
    border-radius: 99px;
    background: var(--secondary);
    opacity: 0.84;
}

.speed-lines i:nth-child(1) {
    width: 82px;
}

.speed-lines i:nth-child(2) {
    width: 130px;
}

.speed-lines i:nth-child(3) {
    width: 62px;
}

.booking-panel {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: #fff;
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.booking-panel small {
    display: block;
    color: #6b7280;
    margin-bottom: 4px;
}

.booking-panel strong {
    color: var(--primary);
}

.booking-panel a {
    background: var(--accent);
    color: #fff;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 900;
    white-space: nowrap;
}

.floating-note {
    position: absolute;
    z-index: 4;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 20px;
    padding: 14px 16px;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.16);
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-note strong {
    color: var(--secondary);
}

.floating-note span {
    color: #374151;
    font-weight: 800;
    font-size: 0.86rem;
}

.note-one {
    left: 0;
    top: 106px;
}

.note-two {
    right: 0;
    bottom: 116px;
}

.hero-bg-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(17, 24, 39, 0.12);
    pointer-events: none;
}

.orbit-one {
    width: 460px;
    height: 460px;
    left: -180px;
    top: 60px;
}

.orbit-two {
    width: 620px;
    height: 620px;
    right: -260px;
    bottom: -140px;
}

.quick-strip {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto 72px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--primary);
    color: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.18);
}

.quick-strip div {
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.quick-strip div:last-child {
    border-right: 0;
}

.quick-strip span {
    color: var(--secondary);
}

.section,
.split-section,
.showcase-section,
.faq-section,
.contact-section {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.section,
.faq-section {
    padding: 76px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading h2,
.split-copy h2,
.showcase-copy h2,
.contact-card h2 {
    font-size: clamp(2.2rem, 4.7vw, 4.5rem);
}

.section-heading p,
.split-copy p,
.showcase-copy p,
.contact-card p {
    color: #4b5563;
    line-height: 1.75;
    font-size: 1rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    background: #fff;
    border-radius: 28px;
    padding: 26px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 20px 45px rgba(17, 24, 39, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(17, 24, 39, 0.1);
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(245, 158, 11, 0.16);
    color: var(--secondary);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 22px;
}

.service-card h3,
.process-card h3 {
    margin: 0 0 10px;
    color: var(--primary);
    letter-spacing: -0.03em;
    font-size: 1.28rem;
}

.service-card p,
.process-card p,
.testimonial-card p {
    margin: 0;
    color: #4b5563;
    line-height: 1.7;
}

.service-card span {
    display: inline-flex;
    margin-top: 18px;
    color: var(--primary);
    background: #f3f4f6;
    padding: 8px 11px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
}

.split-section {
    padding: 78px 0;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 46px;
    align-items: center;
}

.dashboard-card {
    background:
        linear-gradient(145deg, rgba(17, 24, 39, 0.96), rgba(31, 41, 55, 0.96)),
        var(--primary);
    border-radius: 38px;
    padding: 26px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 34px 80px rgba(17, 24, 39, 0.28);
}

.dashboard-card::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 28px solid rgba(255, 255, 255, 0.05);
    right: -90px;
    top: 60px;
}

.dash-top {
    display: flex;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.dash-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary);
}

.dash-top span:nth-child(2) {
    background: #fff;
    opacity: 0.4;
}

.dash-top span:nth-child(3) {
    background: var(--accent);
}

.gauge {
    position: relative;
    z-index: 2;
    width: 250px;
    height: 250px;
    margin: 60px auto 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gauge-arc {
    position: absolute;
    inset: 22px;
    border-radius: 50%;
    border: 18px solid rgba(255, 255, 255, 0.08);
    border-top-color: var(--secondary);
    border-right-color: var(--accent);
    transform: rotate(24deg);
}

.gauge strong {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 2.2rem;
    letter-spacing: -0.04em;
}

.gauge small {
    position: absolute;
    z-index: 2;
    bottom: 70px;
    color: rgba(255, 255, 255, 0.62);
}

.dash-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 12px;
}

.dash-list p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 14px;
    font-weight: 800;
}

.dash-list span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

.trust-list {
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.trust-list div {
    background: #fff;
    border-radius: 24px;
    padding: 18px;
    border: 1px solid rgba(17, 24, 39, 0.08);
}

.trust-list strong {
    display: block;
    color: var(--primary);
    margin-bottom: 6px;
}

.trust-list span {
    color: #6b7280;
    line-height: 1.6;
}

.process-section {
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.process-card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 24px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    overflow: hidden;
}

.process-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border: 16px solid rgba(245, 158, 11, 0.14);
    border-radius: 50%;
    right: -46px;
    top: -46px;
}

.process-card span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: #fff;
    border-radius: 16px;
    font-weight: 900;
    margin-bottom: 22px;
}

.showcase-section {
    padding: 78px 0;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: center;
}

.text-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--primary);
    font-weight: 900;
    border-bottom: 3px solid var(--secondary);
    padding-bottom: 5px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-tile {
    min-height: 170px;
    border-radius: 30px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.38), transparent 45%),
        linear-gradient(145deg, #111827, #1f2937);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.feature-tile::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 16px dashed rgba(255, 255, 255, 0.08);
    right: -40px;
    top: -40px;
}

.feature-tile.large {
    min-height: 360px;
    grid-row: span 2;
}

.feature-tile.wide {
    grid-column: span 2;
    min-height: 150px;
}

.feature-tile span {
    color: var(--secondary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    position: relative;
    z-index: 2;
}

.feature-tile strong {
    margin-top: 8px;
    font-size: 1.5rem;
    letter-spacing: -0.04em;
    position: relative;
    z-index: 2;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
}

.stars {
    color: var(--secondary);
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}

.testimonial-card strong {
    display: block;
    margin-top: 20px;
    color: var(--primary);
}

.testimonial-card span {
    display: block;
    margin-top: 4px;
    color: #6b7280;
    font-size: 0.9rem;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.faq-item button span {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    background: #f3f4f6;
    border-radius: 50%;
    color: var(--secondary);
    font-size: 1.2rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 22px 22px;
    color: #4b5563;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 180px;
}

.contact-section {
    padding: 78px 0 36px;
}

.contact-card {
    background:
        radial-gradient(circle at 90% 10%, rgba(245, 158, 11, 0.24), transparent 28rem),
        linear-gradient(135deg, var(--primary), #1f2937);
    color: #fff;
    border-radius: 40px;
    padding: clamp(28px, 5vw, 56px);
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 32px;
    align-items: center;
    box-shadow: 0 30px 80px rgba(17, 24, 39, 0.22);
}

.contact-card h2 {
    color: #fff;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
    display: grid;
    gap: 14px;
}

.contact-link {
    display: block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 16px;
}

.contact-link span {
    display: block;
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}

.contact-link strong {
    color: #fff;
    word-break: break-word;
}

.site-footer {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    padding: 26px 0 96px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #6b7280;
}

.site-footer strong {
    display: block;
    color: var(--primary);
}

.site-footer span {
    display: block;
    margin-top: 4px;
}

.site-footer p {
    margin: 0;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    min-height: 54px;
    padding: 15px 20px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 18px 45px rgba(34, 197, 94, 0.32);
}

.whatsapp-float::before {
    content: "";
    width: 11px;
    height: 11px;
    background: #fff;
    border-radius: 50%;
    margin-right: 9px;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.18);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slowSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        background: rgba(247, 247, 244, 0.98);
        backdrop-filter: blur(16px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 32px;
        transform: translateX(100%);
        transition: transform 0.25s ease;
    }

    .nav-open .site-nav {
        transform: translateX(0);
    }

    .site-nav a {
        font-size: 1.25rem;
        padding: 14px 18px;
    }

    .hero-grid,
    .split-section,
    .showcase-section,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding-top: 48px;
    }

    .hero-visual {
        min-height: 520px;
    }

    .quick-strip,
    .service-grid,
    .process-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-footer {
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    .nav-wrap,
    .hero-grid,
    .quick-strip,
    .section,
    .split-section,
    .showcase-section,
    .faq-section,
    .contact-section,
    .site-footer {
        width: min(100% - 24px, 1160px);
    }

    .brand strong {
        font-size: 0.9rem;
    }

    .brand small {
        display: none;
    }

    .hero-copy h1 {
        font-size: clamp(2.7rem, 16vw, 4.2rem);
    }

    .hero-trust,
    .quick-strip,
    .service-grid,
    .process-grid,
    .testimonial-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .quick-strip div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .quick-strip div:last-child {
        border-bottom: 0;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 470px;
    }

    .tyre-card {
        min-height: 470px;
        border-radius: 32px;
    }

    .tyre-ring {
        width: 218px;
        height: 218px;
    }

    .tyre-inner {
        width: 104px;
        height: 104px;
    }

    .floating-note {
        display: none;
    }

    .booking-panel {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-panel a {
        text-align: center;
    }

    .section,
    .split-section,
    .showcase-section,
    .faq-section {
        padding: 56px 0;
    }

    .feature-tile.large,
    .feature-tile.wide {
        grid-row: auto;
        grid-column: auto;
        min-height: 190px;
    }

    .contact-card {
        border-radius: 30px;
    }

    .whatsapp-float {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .whatsapp-float span {
        display: inline;
    }
}