* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #182033;
    background:
        radial-gradient(circle at top left, rgba(22, 163, 74, 0.12), transparent 34rem),
        radial-gradient(circle at 90% 10%, rgba(249, 115, 22, 0.12), transparent 28rem),
        #f7f8f3;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section-pad {
    padding: 88px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 248, 243, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.nav-wrap {
    width: min(1180px, calc(100% - 28px));
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle, transparent 38%, var(--secondary) 39%, var(--secondary) 46%, transparent 47%),
        linear-gradient(135deg, var(--primary), #243044);
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.18);
    position: relative;
}

.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: var(--accent);
}

.brand-mark::before {
    width: 22px;
    height: 4px;
    transform: rotate(-28deg);
}

.brand-mark::after {
    width: 4px;
    height: 22px;
    transform: rotate(28deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 1rem;
    letter-spacing: -0.02em;
    color: var(--primary);
}

.brand-text small {
    font-size: 0.74rem;
    color: #667085;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 0.94rem;
    color: #344054;
}

.main-nav a {
    position: relative;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--secondary);
}

.nav-cta {
    padding: 11px 18px;
    border-radius: 999px;
    color: #fff !important;
    background: var(--primary);
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.18);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: var(--primary);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
    border-radius: 99px;
    transition: 0.25s ease;
}

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(17, 24, 39, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 24, 39, 0.045) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-orbit {
    position: absolute;
    border: 2px dashed rgba(22, 163, 74, 0.22);
    border-radius: 50%;
    animation: spin 32s linear infinite;
}

.orbit-one {
    width: 520px;
    height: 520px;
    right: -180px;
    top: 120px;
}

.orbit-two {
    width: 340px;
    height: 340px;
    left: -120px;
    bottom: 70px;
    animation-duration: 24s;
    animation-direction: reverse;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    margin-bottom: 16px;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--accent);
    border-radius: 99px;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.faq-copy h2,
.contact-card h2 {
    color: var(--primary);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.hero h1 {
    font-size: clamp(2.7rem, 7vw, 5.8rem);
    max-width: 760px;
}

.hero-copy p {
    margin-top: 24px;
    max-width: 620px;
    color: #475467;
    font-size: 1.12rem;
}

.hero-actions,
.contact-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;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--secondary), #0f8f3e);
    box-shadow: 0 18px 34px rgba(22, 163, 74, 0.25);
}

.btn-secondary {
    color: var(--primary);
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.1);
    box-shadow: 0 16px 30px rgba(17, 24, 39, 0.08);
}

.btn-light {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 38px;
    max-width: 600px;
}

.hero-proof div {
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
}

.hero-proof strong {
    display: block;
    font-size: 1.55rem;
    color: var(--primary);
    letter-spacing: -0.04em;
}

.hero-proof span {
    display: block;
    margin-top: 3px;
    color: #667085;
    font-size: 0.86rem;
}

.hero-visual {
    position: relative;
    min-height: 480px;
}

.bike-card {
    position: relative;
    min-height: 460px;
    border-radius: 42px;
    background:
        linear-gradient(145deg, rgba(17, 24, 39, 0.96), rgba(32, 44, 64, 0.92)),
        var(--primary);
    box-shadow: 0 40px 90px rgba(17, 24, 39, 0.26);
    overflow: hidden;
}

.bike-card::before {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.bike-card::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    right: -90px;
    top: -70px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.4), transparent 70%);
}

.speed-lines {
    position: absolute;
    left: 32px;
    top: 54px;
    display: grid;
    gap: 12px;
}

.speed-lines span {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
}

.speed-lines span:nth-child(1) {
    width: 110px;
}

.speed-lines span:nth-child(2) {
    width: 170px;
}

.speed-lines span:nth-child(3) {
    width: 82px;
}

.bike-scene {
    position: absolute;
    left: 50%;
    top: 52%;
    width: 390px;
    height: 230px;
    transform: translate(-50%, -50%);
}

.wheel {
    position: absolute;
    bottom: 16px;
    width: 142px;
    height: 142px;
    border-radius: 50%;
    border: 12px solid #f6fef9;
    box-shadow:
        inset 0 0 0 4px rgba(22, 163, 74, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.16);
    animation: spin 5s linear infinite;
}

.wheel span {
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.36);
}

.wheel-left {
    left: 18px;
}

.wheel-right {
    right: 18px;
}

.bike-frame,
.bike-seat,
.bike-handle,
.bike-chain {
    position: absolute;
    background: var(--accent);
    border-radius: 999px;
    transform-origin: left center;
}

.frame-one {
    width: 140px;
    height: 10px;
    left: 105px;
    bottom: 90px;
    transform: rotate(-24deg);
}

.frame-two {
    width: 132px;
    height: 10px;
    left: 146px;
    bottom: 92px;
    transform: rotate(35deg);
}

.frame-three {
    width: 118px;
    height: 10px;
    left: 104px;
    bottom: 90px;
    transform: rotate(42deg);
}

.frame-four {
    width: 110px;
    height: 10px;
    left: 205px;
    bottom: 136px;
    transform: rotate(-10deg);
}

.bike-seat {
    width: 58px;
    height: 10px;
    left: 170px;
    bottom: 170px;
    background: #f6fef9;
}

.bike-handle {
    width: 54px;
    height: 10px;
    right: 32px;
    bottom: 165px;
    background: #f6fef9;
    transform: rotate(18deg);
}

.bike-chain {
    width: 134px;
    height: 8px;
    left: 105px;
    bottom: 82px;
    background: var(--secondary);
}

.service-ticket {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    backdrop-filter: blur(12px);
}

.service-ticket small,
.service-ticket span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
}

.service-ticket strong {
    display: block;
    margin: 4px 0;
    font-size: 1.4rem;
}

.floating-note {
    position: absolute;
    z-index: 3;
    padding: 16px 18px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 48px rgba(17, 24, 39, 0.18);
    border: 1px solid rgba(17, 24, 39, 0.08);
}

.floating-note strong,
.floating-note span {
    display: block;
}

.floating-note strong {
    color: var(--primary);
}

.floating-note span {
    color: #667085;
    font-size: 0.84rem;
}

.note-one {
    left: -28px;
    top: 94px;
}

.note-two {
    right: -20px;
    bottom: 112px;
}

.strip {
    padding: 20px 0;
    background: var(--primary);
    color: #fff;
    overflow: hidden;
}

.strip-track {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 36px;
}

.section-heading h2,
.about-copy h2,
.faq-copy h2,
.contact-card h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-heading p,
.about-copy p,
.faq-copy p,
.contact-card p {
    margin-top: 16px;
    color: #667085;
    font-size: 1.02rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    padding: 26px;
    min-height: 280px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.07);
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -44px;
    bottom: -42px;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.1);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.service-card h3,
.process-card h3,
.showcase-card h3 {
    color: var(--primary);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.service-card p,
.process-card p,
.showcase-card p,
.testimonial-card p {
    margin-top: 12px;
    color: #667085;
}

.service-card span {
    position: absolute;
    left: 26px;
    bottom: 24px;
    color: var(--secondary);
    font-weight: 800;
    font-size: 0.86rem;
}

.about {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(247, 248, 243, 0)),
        #edf7ee;
}

.about-grid,
.faq-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 54px;
    align-items: center;
}

.about-panel {
    min-height: 430px;
    border-radius: 40px;
    padding: 28px;
    background: var(--primary);
    box-shadow: 0 30px 70px rgba(17, 24, 39, 0.2);
    overflow: hidden;
}

.workshop-window {
    position: relative;
    min-height: 374px;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(22, 163, 74, 0.25), transparent),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 42px),
        #1f2937;
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
}

.tool-row {
    position: absolute;
    left: 28px;
    top: 28px;
    display: flex;
    gap: 12px;
}

.tool-row span {
    width: 56px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
}

.rack {
    position: absolute;
    left: 36px;
    right: 36px;
    top: 110px;
    height: 14px;
    border-radius: 999px;
    background: var(--accent);
}

.rack i {
    position: absolute;
    top: 10px;
    width: 80px;
    height: 150px;
    border: 10px solid rgba(255, 255, 255, 0.75);
    border-radius: 999px 999px 20px 20px;
}

.rack i:nth-child(1) {
    left: 18px;
}

.rack i:nth-child(2) {
    left: 130px;
    height: 180px;
}

.rack i:nth-child(3) {
    right: 34px;
}

.bench {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 34px;
    height: 74px;
    border-radius: 18px;
    background:
        linear-gradient(90deg, var(--secondary), var(--accent));
}

.trust-list {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.trust-list div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(17, 24, 39, 0.08);
}

.trust-list strong,
.trust-list span {
    display: block;
}

.trust-list strong {
    color: var(--primary);
}

.trust-list span {
    color: #667085;
    margin-top: 4px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    counter-reset: process;
}

.process-card {
    padding: 24px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.06);
}

.process-card span {
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 50%;
    color: #fff;
    background: var(--primary);
    font-weight: 900;
}

.showcase {
    background: #111827;
    color: #fff;
}

.showcase .section-heading h2,
.showcase .showcase-card h3 {
    color: #fff;
}

.showcase .section-heading p,
.showcase-card p {
    color: rgba(255, 255, 255, 0.68);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 18px;
}

.showcase-card {
    min-height: 260px;
    display: grid;
    align-content: space-between;
    padding: 26px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.showcase-card.large {
    grid-row: span 2;
}

.showcase-art {
    position: relative;
    min-height: 150px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.07);
    overflow: hidden;
    margin-bottom: 24px;
}

.trail-art::before,
.road-art::before,
.commuter-art::before {
    content: "";
    position: absolute;
    inset: 30px;
    border-radius: 999px;
    border: 4px dashed rgba(255, 255, 255, 0.28);
}

.trail-art span,
.road-art span,
.commuter-art span {
    position: absolute;
    display: block;
    border-radius: 999px;
}

.trail-art span:nth-child(1) {
    width: 65%;
    height: 14px;
    left: 10%;
    bottom: 40px;
    background: var(--secondary);
    transform: rotate(-8deg);
}

.trail-art span:nth-child(2) {
    width: 28%;
    height: 14px;
    right: 8%;
    bottom: 82px;
    background: var(--accent);
    transform: rotate(18deg);
}

.trail-art span:nth-child(3) {
    width: 82px;
    height: 82px;
    right: 20%;
    top: 32px;
    border: 14px solid #fff;
    background: transparent;
}

.road-art span:nth-child(1),
.commuter-art span:nth-child(1) {
    width: 90px;
    height: 90px;
    left: 32px;
    top: 34px;
    border: 12px solid #fff;
    background: transparent;
}

.road-art span:nth-child(2),
.commuter-art span:nth-child(2) {
    width: 90px;
    height: 90px;
    right: 32px;
    top: 34px;
    border: 12px solid var(--accent);
    background: transparent;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card {
    padding: 26px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.06);
}

.stars {
    color: var(--accent);
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card strong {
    margin-top: 18px;
    color: var(--primary);
}

.testimonial-card span {
    color: #667085;
    font-size: 0.9rem;
}

.faq {
    background: #edf7ee;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border-radius: 24px;
    background: #fff;
    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: 18px;
    color: var(--primary);
    font-weight: 900;
    cursor: pointer;
    text-align: left;
}

.faq-item button span {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(22, 163, 74, 0.12);
    color: var(--secondary);
    transition: transform 0.2s ease;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.25s ease;
}

.faq-answer p {
    overflow: hidden;
    padding: 0 22px;
    color: #667085;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
    padding-bottom: 22px;
}

.faq-item.active button span {
    transform: rotate(45deg);
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 44px;
    border-radius: 40px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 10%, rgba(249, 115, 22, 0.35), transparent 24rem),
        linear-gradient(135deg, var(--primary), #1f2937);
    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.74);
}

.contact-card .eyebrow {
    color: #fff;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.contact-details a,
.contact-details span {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.1);
}

.contact-actions {
    margin-top: 0;
    justify-content: flex-end;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 18px;
    border-radius: 999px;
    color: #fff;
    background: #25d366;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.34);
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
}

.whatsapp-float span {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.site-footer {
    padding: 34px 0;
    background: #0c1220;
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.footer-grid strong {
    display: block;
    color: #fff;
    margin-bottom: 6px;
}

.footer-grid p {
    max-width: 560px;
}

.footer-grid span {
    display: block;
    text-align: right;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 980px) {
    .main-nav {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 88px;
        padding: 18px;
        border-radius: 24px;
        background: #fff;
        box-shadow: 0 22px 60px rgba(17, 24, 39, 0.18);
        border: 1px solid rgba(17, 24, 39, 0.08);
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 12px 10px;
    }

    .nav-toggle {
        display: block;
    }

    .hero-grid,
    .about-grid,
    .faq-grid,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-visual {
        min-height: 460px;
    }

    .services-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .showcase-card.large {
        grid-row: auto;
    }

    .contact-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 680px) {
    .section-pad {
        padding: 64px 0;
    }

    .nav-wrap {
        min-height: 70px;
    }

    .brand-text small {
        display: none;
    }

    .hero h1 {
        font-size: clamp(2.35rem, 14vw, 3.7rem);
    }

    .hero-proof,
    .services-grid,
    .process-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .contact-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .bike-card {
        min-height: 390px;
        border-radius: 30px;
    }

    .bike-scene {
        width: 310px;
        transform: translate(-50%, -50%) scale(0.78);
    }

    .floating-note {
        display: none;
    }

    .strip-track {
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .about-panel {
        min-height: 360px;
        padding: 18px;
    }

    .workshop-window {
        min-height: 320px;
    }

    .contact-card {
        padding: 28px;
        border-radius: 30px;
    }

    .footer-grid {
        flex-direction: column;
    }

    .footer-grid span {
        text-align: left;
    }

    .whatsapp-float {
        left: 16px;
        right: 16px;
        justify-content: center;
    }
}