:root {
    --mat-red: #e0322f;
    --mat-red-dark: #b91f1c;
    --mat-ink: #14161b;
    --mat-body: #3a3f47;
    --mat-muted: #6b7280;
    --mat-line: #e8eaee;
    --mat-soft: #f6f7f9;
    --mat-soft2: #eef0f3;
    --mat-white: #ffffff;
    --mat-shadow: 0 18px 50px rgba(20, 22, 27, .10);
    --mat-shadow-sm: 0 6px 20px rgba(20, 22, 27, .07);
    --mat-radius: 16px;
    --mat-radius-lg: 24px;
    --mat-container: 1240px;
    --mat-ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: var(--mat-body);
    background: var(--mat-white);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { color: var(--mat-ink); font-weight: 600; line-height: 1.24; margin: 0; letter-spacing: -.01em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.mat-container { max-width: var(--mat-container); margin: 0 auto; padding: 0 24px; }
.mat-section { padding: 96px 0; }
.mat-section-soft { background: var(--mat-soft); }

.mat-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--mat-red); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
}
.mat-eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--mat-red); border-radius: 2px; }

.mat-h2 { font-size: clamp(28px, 4vw, 44px); }
.mat-lead { color: var(--mat-muted); font-size: 17px; max-width: 620px; }

.mat-btn {
    display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
    padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 15px;
    border: 1.5px solid transparent; transition: transform .18s var(--mat-ease), background .18s ease, box-shadow .18s ease, color .18s ease;
    white-space: nowrap;
}
.mat-btn svg { width: 18px; height: 18px; }
.mat-btn-primary { background: var(--mat-red); color: #fff; box-shadow: 0 10px 26px rgba(224, 50, 47, .28); }
.mat-btn-primary:hover { background: var(--mat-red-dark); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(224, 50, 47, .34); }
.mat-btn-ghost { background: transparent; color: var(--mat-ink); border-color: var(--mat-line); }
.mat-btn-ghost:hover { border-color: var(--mat-ink); transform: translateY(-2px); }
.mat-btn-light { background: #fff; color: var(--mat-ink); box-shadow: var(--mat-shadow-sm); }
.mat-btn-light:hover { transform: translateY(-2px); box-shadow: var(--mat-shadow); }

.mat-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, .82); backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--mat-line);
}
.mat-header-inner { display: flex; align-items: center; gap: 28px; height: 74px; }
.mat-logo { display: flex; align-items: center; gap: 2px; font-weight: 900; font-size: 22px; letter-spacing: -.03em; color: var(--mat-ink); }
.mat-logo b { color: var(--mat-red); }
.mat-logo .mat-logo-tri { width: 0; height: 0; border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 12px solid var(--mat-red); margin: 0 1px 3px; }
.mat-nav { display: flex; gap: 4px; margin-left: auto; }
.mat-nav a {
    padding: 9px 15px; border-radius: 10px; font-weight: 600; font-size: 14.5px; color: var(--mat-body);
    transition: background .16s ease, color .16s ease;
}
.mat-nav a:hover, .mat-nav a.active { background: var(--mat-soft); color: var(--mat-ink); }
.mat-nav-dd { position: relative; }
.mat-nav-dd-t { display: inline-flex; align-items: center; gap: 5px; padding: 9px 15px; border: none; background: transparent; border-radius: 10px; font: inherit; font-weight: 600; font-size: 14.5px; color: var(--mat-body); cursor: pointer; transition: background .16s ease, color .16s ease; }
.mat-nav-dd-t svg { width: 15px; height: 15px; transition: transform .2s ease; }
.mat-nav-dd:hover .mat-nav-dd-t, .mat-nav-dd:focus-within .mat-nav-dd-t { background: var(--mat-soft); color: var(--mat-ink); }
.mat-nav-dd:hover .mat-nav-dd-t svg, .mat-nav-dd:focus-within .mat-nav-dd-t svg { transform: rotate(180deg); }
.mat-nav-dd-menu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 210px; background: #fff; border: 1px solid var(--mat-line); border-radius: 14px; box-shadow: var(--mat-shadow); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .18s ease, transform .18s ease, visibility .18s; z-index: 110; }
.mat-nav-dd-menu::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.mat-nav-dd:hover .mat-nav-dd-menu, .mat-nav-dd:focus-within .mat-nav-dd-menu { opacity: 1; visibility: visible; transform: none; }
.mat-nav-dd-menu a { display: block; padding: 10px 14px; border-radius: 10px; font-size: 14.5px; font-weight: 600; color: var(--mat-body); }
.mat-nav-dd-menu a:hover, .mat-nav-dd-menu a.active { background: var(--mat-soft); color: var(--mat-red); }
.mat-header-actions { display: flex; align-items: center; gap: 12px; }
.mat-wa-btn { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: #25d366; color: #fff; flex: none; transition: transform .18s var(--mat-ease), background .18s ease; }
.mat-wa-btn:hover { background: #1eb959; transform: translateY(-2px); }
.mat-wa-btn svg { width: 22px; height: 22px; }
.mat-lang { display: flex; gap: 2px; background: var(--mat-soft); border-radius: 999px; padding: 3px; }
.mat-lang a { padding: 6px 11px; border-radius: 999px; font-size: 12.5px; font-weight: 700; color: var(--mat-muted); }
.mat-lang a.active { background: #fff; color: var(--mat-ink); box-shadow: var(--mat-shadow-sm); }
.mat-burger { display: none; width: 44px; height: 44px; border: 1px solid var(--mat-line); border-radius: 12px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.mat-burger span, .mat-burger span::before, .mat-burger span::after { content: ''; display: block; width: 18px; height: 2px; background: var(--mat-ink); border-radius: 2px; position: relative; }
.mat-burger span::before { position: absolute; top: -6px; }
.mat-burger span::after { position: absolute; top: 6px; }

.mat-hero { position: relative; overflow: hidden; padding: 78px 0 90px; background: radial-gradient(120% 90% at 85% 0%, #fff5f5 0%, #ffffff 45%); }

.mat-hero-media { position: relative; z-index: 1; }
.mat-hero-media .mat-hero-video { position: relative; z-index: 2; }
.mat-hero-glow { position: absolute; z-index: 0; right: -10%; top: 2%; width: 78%; height: 78%; border-radius: 50%; background: radial-gradient(circle, rgba(224, 50, 47, .16), transparent 66%); filter: blur(10px); pointer-events: none; }
.mat-hero-seal { position: absolute; z-index: 3; left: -22px; bottom: 30px; display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--mat-line); border-radius: 16px; padding: 11px 17px 11px 11px; box-shadow: var(--mat-shadow); }
.mat-hero-seal .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--mat-red); display: flex; align-items: center; justify-content: center; flex: none; }
.mat-hero-seal .ic svg { width: 23px; height: 23px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mat-hero-seal b { display: block; font-size: 14px; color: var(--mat-ink); line-height: 1.25; }
.mat-hero-seal span { font-size: 12.5px; color: var(--mat-muted); }

.mat-home .mat-hero.reveal .mat-hero-copy > *, .mat-home .mat-hero.reveal .mat-hero-media { animation: mat-rise .75s var(--mat-ease) both; }
.mat-home .mat-hero.reveal .mat-hero-copy > *:nth-child(1) { animation-delay: .02s; }
.mat-home .mat-hero.reveal .mat-hero-copy > *:nth-child(2) { animation-delay: .12s; }
.mat-home .mat-hero.reveal .mat-hero-copy > *:nth-child(3) { animation-delay: .22s; }
.mat-home .mat-hero.reveal .mat-hero-copy > *:nth-child(4) { animation-delay: .32s; }
.mat-home .mat-hero.reveal .mat-hero-copy > *:nth-child(5) { animation-delay: .42s; }
.mat-home .mat-hero.reveal .mat-hero-media { animation-name: mat-rise-media; animation-duration: .95s; animation-delay: .16s; }
@keyframes mat-rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes mat-rise-media { from { opacity: 0; transform: translateY(26px) scale(.975); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .mat-home .mat-hero.reveal .mat-hero-copy > *, .mat-home .mat-hero.reveal .mat-hero-media { animation: none; } }
.mat-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.mat-hero h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 500; line-height: 1.22; }
.mat-hero h1 .hl { color: var(--mat-red); }
.mat-hero p { font-size: 18px; color: var(--mat-muted); max-width: 520px; margin: 22px 0 30px; }
.mat-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.mat-hero-stats { display: flex; gap: 34px; margin-top: 46px; }
.mat-hero-stats .n { font-size: 30px; font-weight: 700; color: var(--mat-ink); }
.mat-hero-stats .l { font-size: 13px; color: var(--mat-muted); }
.mat-hero-visual { position: relative; border-radius: var(--mat-radius-lg); overflow: hidden; aspect-ratio: 4/4.4; box-shadow: var(--mat-shadow); background: #111; }
.mat-hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.mat-hero-badge {
    position: absolute; left: 22px; bottom: 22px; right: 22px;
    background: rgba(255, 255, 255, .92); backdrop-filter: blur(8px); border-radius: 14px; padding: 16px 18px;
    display: flex; align-items: center; gap: 13px;
}
.mat-hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34, 197, 94, .2); }

.mat-logo img { height: 42px; width: auto; display: block; }
.mat-footer .mat-logo img { height: 36px; }

.mat-hero-video {
    position: relative; aspect-ratio: 1 / 1; border-radius: 24px; overflow: hidden;
    background: radial-gradient(130% 120% at 50% 28%, #20242c 0%, #0c0e12 72%);
    border: 1px solid #23262e; box-shadow: var(--mat-shadow);
    display: flex; align-items: center; justify-content: center;
}
.mat-hero-video::before { content: ''; position: absolute; inset: 0; background: radial-gradient(52% 42% at 50% 62%, rgba(224, 50, 47, .30), transparent 70%); z-index: 1; }
.mat-hero-video video, .mat-hero-video img.logo { width: 60%; height: auto; position: relative; z-index: 2; filter: drop-shadow(0 14px 34px rgba(0, 0, 0, .55)); }
.mat-hero-video video { width: 100%; height: 100%; object-fit: cover; filter: none; border-radius: 24px; }
.mat-hero-video .sweep { position: absolute; inset: 0; z-index: 3; pointer-events: none; background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, .16) 50%, transparent 58%); transform: translateX(-130%); animation: mat-sweep 3.6s var(--mat-ease) infinite; }
@keyframes mat-sweep { 0% { transform: translateX(-130%); } 55%, 100% { transform: translateX(130%); } }
.mat-hero-video .vlabel { position: absolute; left: 18px; bottom: 16px; z-index: 4; display: flex; align-items: center; gap: 9px; color: #cfd3da; font-size: 12.5px; font-weight: 600; }
.mat-hero-video .vlabel .play { width: 28px; height: 28px; border-radius: 50%; background: var(--mat-red); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(224, 50, 47, .5); }
.mat-hero-video .vlabel .play svg { width: 12px; height: 12px; fill: #fff; }

.mat-sec-head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.mat-sec-head .mat-lead { margin: 16px auto 0; }

.mat-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mat-card {
    background: #fff; border: 1px solid var(--mat-line); border-radius: var(--mat-radius); padding: 32px 28px;
    transition: transform .25s var(--mat-ease), box-shadow .25s ease, border-color .25s ease;
}
.mat-card:hover { transform: translateY(-6px); box-shadow: var(--mat-shadow); border-color: transparent; }
.mat-card-ic { width: 58px; height: 58px; border-radius: 15px; background: #fff5f5; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.mat-card-ic svg { width: 28px; height: 28px; stroke: var(--mat-red); }
.mat-card h3 { font-size: 21px; margin-bottom: 10px; }
.mat-card p { color: var(--mat-muted); font-size: 15px; margin: 0 0 18px; }
.mat-card-link { color: var(--mat-red); font-weight: 700; font-size: 14.5px; display: inline-flex; align-items: center; gap: 6px; }
.mat-card-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.mat-card:hover .mat-card-link svg { transform: translateX(4px); }

.mat-why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mat-why-item { text-align: left; }
.mat-why-item .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--mat-ink); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.mat-why-item .ic svg { width: 24px; height: 24px; stroke: #fff; }
.mat-why-item h4 { font-size: 17px; margin-bottom: 7px; }
.mat-why-item p { color: var(--mat-muted); font-size: 14px; margin: 0; }

.mat-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mat-step { position: relative; padding: 28px 24px; border-radius: var(--mat-radius); border: 1px solid var(--mat-line); background: #fff; transition: transform .25s var(--mat-ease), box-shadow .25s ease; }
.mat-step:hover { transform: translateY(-5px); box-shadow: var(--mat-shadow); }
.mat-step .num { font-size: 34px; font-weight: 900; color: var(--mat-red); opacity: .22; letter-spacing: -.03em; margin-bottom: 8px; }
.mat-step h4 { font-size: 18px; margin-bottom: 8px; }
.mat-step p { color: var(--mat-muted); font-size: 14px; margin: 0; }
.mat-step:not(:last-child)::after { content: ''; position: absolute; right: -14px; top: 50%; width: 20px; height: 2px; background: var(--mat-line); }
@media (max-width: 980px) { .mat-process { grid-template-columns: 1fr 1fr; } .mat-step::after { display: none; } }
@media (max-width: 640px) { .mat-process { grid-template-columns: 1fr; } }

.mat-showcase { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.mat-scard { position: relative; border-radius: var(--mat-radius-lg); overflow: hidden; aspect-ratio: 16/10; box-shadow: var(--mat-shadow-sm); display: block; }
.mat-scard img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--mat-ease); }
.mat-scard:hover img { transform: scale(1.06); }
.mat-scard::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8, 10, 14, .92) 0%, rgba(8, 10, 14, .58) 44%, rgba(8, 10, 14, .22) 72%, transparent 100%), rgba(8, 10, 14, .18); }
.mat-scard-body { position: absolute; left: 26px; right: 26px; bottom: 24px; z-index: 2; color: #fff; }
.mat-scard-body h3 { color: #fff; font-size: 23px; margin-bottom: 8px; }
.mat-scard-body p { color: rgba(255, 255, 255, .85); font-size: 14.5px; margin: 0 0 12px; max-width: 94%; }
.mat-scard-link { color: #fff; font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 7px; }
.mat-scard-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.mat-scard:hover .mat-scard-link svg { transform: translateX(4px); }

.mat-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 14px; }
.mat-gi { border-radius: var(--mat-radius); overflow: hidden; display: block; }
.mat-gi img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--mat-ease); }
.mat-gi:hover img { transform: scale(1.07); }
.mat-gi.tall { grid-row: span 2; }
.mat-gi.wide { grid-column: span 2; }

.mat-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mat-rcard { background: #fff; border: 1px solid var(--mat-line); border-radius: var(--mat-radius); padding: 28px; }
.mat-rcard .stars { color: #f5b301; font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.mat-rcard p { color: var(--mat-body); font-size: 15px; line-height: 1.6; margin: 0 0 18px; }
.mat-rcard .who { display: flex; align-items: center; gap: 12px; }
.mat-rcard .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--mat-red); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.mat-rcard .who .n { font-weight: 700; color: var(--mat-ink); }

@media (max-width: 900px) {
    .mat-showcase, .mat-reviews { grid-template-columns: 1fr; }
    .mat-gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
    .mat-gi.wide { grid-column: span 1; }
}

.mat-masonry { column-count: 3; column-gap: 16px; }
.mat-masonry .m-item { break-inside: avoid; margin: 0 0 16px; border-radius: var(--mat-radius); overflow: hidden; cursor: pointer; display: block; position: relative; }
.mat-masonry .m-item img { width: 100%; display: block; transition: transform .5s var(--mat-ease); }
.mat-masonry .m-item:hover img { transform: scale(1.05); }
@media (max-width: 900px) { .mat-masonry { column-count: 2; } }
@media (max-width: 560px) { .mat-masonry { column-count: 1; } }

.mat-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 236px; gap: 18px; }
.mat-bento .mat-scard { aspect-ratio: auto; height: 100%; }
.mat-bento .b1 { grid-column: span 2; grid-row: span 2; }
.mat-bento .b2 { grid-column: span 2; }
.mat-bento .b3 { grid-column: span 1; }
.mat-bento .b4 { grid-column: span 1; }
.mat-scard-tag { position: absolute; top: 20px; left: 20px; z-index: 2; background: rgba(255, 255, 255, .16); backdrop-filter: blur(6px); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; }
.mat-bento .b1 .mat-scard-body h3 { font-size: 30px; }
.mat-bento .b3 .mat-scard-body p, .mat-bento .b4 .mat-scard-body p { display: none; }
.mat-bento .b3 .mat-scard-body h3, .mat-bento .b4 .mat-scard-body h3 { font-size: 18px; }
@media (max-width: 820px) {
    .mat-bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; }
    .mat-bento .b1 { grid-column: span 2; grid-row: span 1; }
    .mat-bento .b2 { grid-column: span 2; }
}
@media (max-width: 560px) {
    .mat-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .mat-bento .b1, .mat-bento .b2, .mat-bento .b3, .mat-bento .b4 { grid-column: span 1; grid-row: span 1; }
    .mat-bento .mat-scard { min-height: 300px; display: flex; align-items: flex-end; }
    .mat-bento .mat-scard img { position: absolute; inset: 0; }
    .mat-bento .mat-scard-body { position: relative; left: auto; right: auto; bottom: auto; width: 100%; padding: 0 22px 22px; }
    .mat-bento .mat-scard::after { background: linear-gradient(to top, rgba(8, 10, 14, .95) 0%, rgba(8, 10, 14, .72) 50%, rgba(8, 10, 14, .34) 78%, transparent 100%), rgba(8, 10, 14, .3); }
    .mat-bento .mat-scard-tag { top: 16px; left: 16px; }
    .mat-bento .b3 .mat-scard-body p, .mat-bento .b4 .mat-scard-body p { display: block; }
    .mat-bento .b3 .mat-scard-body h3, .mat-bento .b4 .mat-scard-body h3 { font-size: 22px; }
    .mat-bento .b1 .mat-scard-body h3 { font-size: 24px; }
}

.mat-count-pill { display: inline-flex; align-items: center; gap: 8px; background: #fff5f5; color: var(--mat-red); font-weight: 700; font-size: 13px; padding: 8px 16px; border-radius: 999px; margin-top: 18px; }
.mat-count-pill .d { width: 8px; height: 8px; border-radius: 50%; background: var(--mat-red); }

.mat-checklist { list-style: none; margin: 0; padding: 0; }
.mat-checklist li { display: flex; gap: 14px; align-items: flex-start; padding: 15px 0; border-bottom: 1px solid var(--mat-line); font-size: 15.5px; color: var(--mat-ink); font-weight: 500; line-height: 1.45; }
.mat-checklist li:last-child { border-bottom: none; }
.mat-checklist .ck { width: 27px; height: 27px; border-radius: 50%; background: #fff5f5; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.mat-checklist .ck svg { width: 15px; height: 15px; stroke: var(--mat-red); }
.mat-gal { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); gap: 16px; }
.mat-gal-item { border-radius: var(--mat-radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; position: relative; background: var(--mat-soft); }
.mat-gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--mat-ease); }
.mat-gal-item:hover img { transform: scale(1.06); }

.mat-lb { position: fixed; inset: 0; z-index: 9998; background: rgba(8, 10, 14, .94); display: none; align-items: center; justify-content: center; }
.mat-lb.open { display: flex; }
.mat-lb img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0, 0, 0, .6); }
.mat-lb-close, .mat-lb-nav { position: absolute; background: rgba(255, 255, 255, .12); border: none; color: #fff; cursor: pointer; border-radius: 50%; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; transition: background .15s ease; }
.mat-lb-close svg, .mat-lb-nav svg { width: 22px; height: 22px; }
.mat-lb-close { top: 22px; right: 22px; }
.mat-lb-nav.prev { left: 22px; top: 50%; transform: translateY(-50%); }
.mat-lb-nav.next { right: 22px; top: 50%; transform: translateY(-50%); }
.mat-lb-nav:hover, .mat-lb-close:hover { background: rgba(255, 255, 255, .26); }
.mat-lb-count { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 14px; background: rgba(0, 0, 0, .4); padding: 6px 14px; border-radius: 999px; }
@media (max-width: 640px) { .mat-lb-nav { width: 42px; height: 42px; } .mat-lb-nav.prev { left: 10px; } .mat-lb-nav.next { right: 10px; } }

.mat-cta {
    background: var(--mat-ink); border-radius: var(--mat-radius-lg); padding: 60px; color: #fff;
    display: grid; grid-template-columns: 1.2fr auto; gap: 30px; align-items: center; position: relative; overflow: hidden;
}
.mat-cta::after { content: ''; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(224, 50, 47, .5), transparent 65%); pointer-events: none; }
.mat-cta-actions { z-index: 2; }
.mat-cta-actions .mat-btn { position: relative; }
.mat-cta h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); position: relative; }
.mat-cta p { color: rgba(255, 255, 255, .7); margin: 14px 0 0; position: relative; max-width: 520px; }
.mat-cta-actions { display: flex; gap: 12px; position: relative; }

.mat-group { background: var(--mat-ink); padding: 44px 0; border-top: 1px solid rgba(255, 255, 255, .06); }
.mat-group-title { display: block; text-align: center; color: rgba(255, 255, 255, .55); font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 26px; }
.mat-group-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 26px 48px; }
.mat-group-logos img { height: 42px; width: auto; opacity: .92; transition: opacity .2s ease, transform .2s ease; }
.mat-group-logos a:hover img { opacity: 1; transform: translateY(-3px); }
@media (max-width: 560px) { .mat-group-logos { gap: 22px 32px; } .mat-group-logos img { height: 32px; } }
.mat-footer { background: var(--mat-ink); color: #cdd2da; padding: 72px 0 30px; }
.mat-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.mat-footer h5 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 18px; }
.mat-footer a { color: #aab1bd; font-size: 14.5px; display: block; padding: 5px 0; transition: color .15s ease; }
.mat-footer a:hover { color: #fff; }
.mat-footer .mat-logo { color: #fff; margin-bottom: 16px; }
.mat-footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: #8b93a1; font-size: 13.5px; }
.mat-footer-bottom a { display: inline; color: #cdd2da; }

.mat-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--mat-ease), transform .7s var(--mat-ease); }
.mat-reveal.in { opacity: 1; transform: none; }

.mat-preloader { position: fixed; inset: 0; z-index: 9999; background: #fff; display: flex; align-items: center; justify-content: center; transition: opacity .5s ease; }
.mat-preloader.hide { opacity: 0; pointer-events: none; }
.mat-preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mat-preloader-logo { height: 66px; width: auto; will-change: transform; transform-origin: center center; }
.mat-preloader.flip .mat-preloader-logo { transition: transform .68s cubic-bezier(.65, 0, .2, 1); }
.mat-preloader.flip .mat-preloader-bar { opacity: 0; transition: opacity .2s ease; }
.mat-preloader-bar { width: 176px; height: 3px; background: #eef0f3; border-radius: 3px; overflow: hidden; }
.mat-preloader-bar > i { display: block; height: 100%; width: 0; background: var(--mat-red); border-radius: 3px; animation: mat-load .8s ease forwards; }
@keyframes mat-load { to { width: 100%; } }

.mat-page-hero { padding: 76px 0 8px; background: radial-gradient(120% 80% at 82% 0%, #fff5f5, #fff 55%); }
.mat-page-hero h1 { font-size: clamp(32px, 4.6vw, 52px); font-weight: 600; margin-top: 14px; }
.mat-page-hero .mat-lead { margin-top: 18px; }
.mat-page-hero.mat-hero-compact { padding: 40px 0 4px; }
.mat-page-hero.mat-hero-compact h1 { font-size: clamp(26px, 3vw, 38px); margin-top: 10px; }
.mat-page-hero.mat-hero-compact .mat-lead { margin-top: 10px; font-size: 15.5px; }

.mat-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.mat-two-col img { border-radius: var(--mat-radius-lg); box-shadow: var(--mat-shadow); width: 100%; }
.mat-two-col h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 12px 0 16px; }
.mat-two-col p { color: var(--mat-muted); margin: 0 0 14px; }

.mat-mv { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mat-mv-card { border: 1px solid var(--mat-line); border-radius: var(--mat-radius); padding: 32px; background: #fff; }
.mat-mv-card .ic { width: 52px; height: 52px; border-radius: 14px; background: #fff5f5; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.mat-mv-card .ic svg { width: 26px; height: 26px; stroke: var(--mat-red); }
.mat-mv-card h3 { font-size: 20px; margin-bottom: 8px; }
.mat-mv-card p { color: var(--mat-muted); margin: 0; }

.mat-svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.mat-svc-row + .mat-svc-row { margin-top: 60px; }
.mat-svc-row.rev .mat-svc-media { order: 2; }
.mat-svc-media { border-radius: var(--mat-radius-lg); overflow: hidden; aspect-ratio: 4/3; background: radial-gradient(130% 120% at 50% 30%, #20242c, #0c0e12); display: flex; align-items: center; justify-content: center; box-shadow: var(--mat-shadow); position: relative; }
.mat-svc-media::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 40% at 50% 60%, rgba(224, 50, 47, .25), transparent 70%); }
.mat-svc-media svg { width: 34%; height: auto; stroke: rgba(255, 255, 255, .92); position: relative; z-index: 1; }
.mat-svc-media img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; transition: transform .5s var(--mat-ease); }
.mat-svc-row:hover .mat-svc-media img { transform: scale(1.05); }
.mat-svc-row h2 { font-size: clamp(24px, 3vw, 34px); margin: 10px 0 14px; }
.mat-svc-row p { color: var(--mat-muted); margin: 0 0 18px; }

.mat-contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: start; }
.mat-info-card { border: 1px solid var(--mat-line); border-radius: var(--mat-radius); padding: 12px 26px; }
.mat-info-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; }
.mat-info-row:not(:last-child) { border-bottom: 1px solid var(--mat-line); }
.mat-info-row .ic { width: 42px; height: 42px; border-radius: 12px; background: #fff5f5; color: var(--mat-red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mat-info-row .ic svg { width: 20px; height: 20px; stroke: var(--mat-red); }
.mat-contact-map { position: relative; border-radius: var(--mat-radius); overflow: hidden; border: 1px solid var(--mat-line); }
.mat-contact-map iframe { display: block; width: 100%; height: 420px; border: 0; }
.mat-contact-map-dir { position: absolute; right: 18px; bottom: 18px; gap: 8px; box-shadow: 0 10px 30px rgba(0,0,0,.18); }
@media (max-width: 640px) { .mat-contact-map iframe { height: 320px; } .mat-contact-map-dir { right: 12px; bottom: 12px; } }
.mat-info-row .t { font-size: 12.5px; color: var(--mat-muted); }
.mat-info-row .v { font-weight: 700; color: var(--mat-ink); }
.mat-info-row .v a { color: var(--mat-ink); }

.mat-form { background: #fff; border: 1px solid var(--mat-line); border-radius: var(--mat-radius); padding: 30px; box-shadow: var(--mat-shadow-sm); }
.mat-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mat-field { margin-bottom: 16px; }
.mat-field.full { grid-column: 1 / -1; }
.mat-field label { display: block; font-weight: 600; font-size: 13.5px; color: var(--mat-ink); margin-bottom: 7px; }
.mat-input { width: 100%; padding: 13px 15px; border: 1px solid var(--mat-line); border-radius: 12px; font: inherit; font-size: 15px; color: var(--mat-ink); background: #fff; transition: border-color .15s ease, box-shadow .15s ease; }
.mat-input:focus { outline: none; border-color: var(--mat-red); box-shadow: 0 0 0 3px rgba(224, 50, 47, .12); }
textarea.mat-input { min-height: 130px; resize: vertical; }
.mat-ac-wrap { position: relative; }
.mat-ac { position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 30; background: #fff; border: 1px solid var(--mat-line); border-radius: 12px; box-shadow: var(--mat-shadow); max-height: 232px; overflow-y: auto; display: none; }
.mat-ac.open { display: block; }
.mat-ac-item { padding: 10px 14px; font-size: 14.5px; color: var(--mat-ink); cursor: pointer; }
.mat-ac-item:hover { background: var(--mat-soft); color: var(--mat-red); }
.mat-ac-custom { color: var(--mat-red); font-weight: 600; border-top: 1px solid var(--mat-line); }
.mat-ac-custom:hover { background: var(--mat-soft); }
.mat-ac-hint { position: sticky; top: 0; z-index: 1; background: var(--mat-soft); padding: 9px 14px; font-size: 12.5px; color: var(--mat-muted); border-bottom: 1px solid var(--mat-line); cursor: default; }
.mat-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--mat-muted); margin: 4px 0 18px; }
.mat-consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--mat-red); flex-shrink: 0; }

.mat-flash { padding: 14px 18px; border-radius: 12px; margin-bottom: 22px; font-weight: 600; font-size: 14.5px; }
.mat-flash.ok { background: #ecfdf3; color: #12734a; border: 1px solid #b7f0d0; }
.mat-flash.err { background: #fef2f2; color: #b42318; border: 1px solid #fbd5d5; }

@media (max-width: 900px) {
    .mat-two-col, .mat-mv, .mat-svc-row, .mat-contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .mat-svc-row.rev .mat-svc-media { order: 0; }
    .mat-form-grid { grid-template-columns: 1fr; }
}

.mat-wizard { background: #fff; border: 1px solid var(--mat-line); border-radius: var(--mat-radius-lg); box-shadow: var(--mat-shadow); padding: 34px 40px; max-width: 1140px; margin: 0 auto; }
.mat-steps { display: flex; align-items: flex-start; margin-bottom: 32px; }
.mat-steps .st { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mat-steps .st .dot { width: 40px; height: 40px; border-radius: 50%; background: var(--mat-soft); color: var(--mat-muted); display: flex; align-items: center; justify-content: center; font-weight: 800; border: 2px solid var(--mat-line); transition: all .25s ease; }
.mat-steps .st .lbl { font-size: 13px; font-weight: 600; color: var(--mat-muted); }
.mat-steps .st.active .dot { background: var(--mat-red); color: #fff; border-color: var(--mat-red); box-shadow: 0 6px 16px rgba(224, 50, 47, .35); }
.mat-steps .st.done .dot { background: var(--mat-ink); color: #fff; border-color: var(--mat-ink); }
.mat-steps .st.active .lbl, .mat-steps .st.done .lbl { color: var(--mat-ink); }
.mat-steps .bar { flex: 1; height: 2px; background: var(--mat-line); margin: 20px 8px 0; position: relative; }
.mat-steps .bar > i { position: absolute; inset: 0; width: 0; background: var(--mat-red); transition: width .3s ease; }
.mat-panel { display: none; }
.mat-panel.active { display: block; animation: mat-fade .35s var(--mat-ease); }
@keyframes mat-fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.mat-q { font-size: 18px; font-weight: 800; color: var(--mat-ink); margin: 6px 0 18px; }
.mat-optcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mat-optcard { position: relative; border: 1.5px solid var(--mat-line); border-radius: var(--mat-radius); padding: 22px 16px; text-align: center; cursor: pointer; transition: border-color .16s ease, background .16s ease, transform .12s ease; }
.mat-optcard input { position: absolute; opacity: 0; }
.mat-optcard .oic { width: 54px; height: 54px; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; color: var(--mat-ink); }
.mat-optcard .oic svg { width: 100%; height: 100%; }
.mat-optcard .ot { font-weight: 700; font-size: 15px; color: var(--mat-ink); }
.mat-optcard .od { font-size: 12.5px; color: var(--mat-muted); margin-top: 4px; }
.mat-optcard:hover { border-color: #c9ccd2; }
.mat-optcard:has(input:checked) { border-color: var(--mat-red); background: #fff5f5; box-shadow: 0 6px 18px rgba(224, 50, 47, .14); }
.mat-optcard:has(input:checked) .oic { color: var(--mat-red); }

/* Randevu price step — cart-like product cards */
.mat-price-sub { text-align: center; color: var(--mat-muted); font-size: 14px; margin: -4px 0 22px; }
.mat-price-group { margin-bottom: 24px; }
.mat-price-pkg { font-weight: 700; font-size: 15px; color: var(--mat-ink); margin: 0 0 12px; padding-left: 2px; }
.mat-price-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); gap: 14px; }
.mat-price-card { position: relative; border: 1.5px solid var(--mat-line); border-radius: var(--mat-radius); padding: 16px 18px; cursor: pointer; transition: border-color .16s ease, background .16s ease, box-shadow .16s ease, transform .12s ease; display: block; }
.mat-price-card input { position: absolute; opacity: 0; pointer-events: none; }
.mat-price-card:hover { border-color: #c9ccd2; transform: translateY(-1px); }
.mat-price-card:has(input:checked) { border-color: var(--mat-red); background: #fff5f5; box-shadow: 0 8px 22px rgba(224, 50, 47, .16); }
.mat-price-card .pc-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mat-price-card .pc-name { font-weight: 700; font-size: 15px; color: var(--mat-ink); }
.mat-price-card .pc-tick { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--mat-line); flex: none; transition: border-color .16s, background .16s; position: relative; }
.mat-price-card:has(input:checked) .pc-tick { border-color: var(--mat-red); background: var(--mat-red); }
.mat-price-card:has(input:checked) .pc-tick::after { content: ""; position: absolute; left: 5px; top: 2px; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.mat-price-card .pc-meta { font-size: 12.5px; color: var(--mat-muted); margin-top: 3px; }
.mat-price-card .pc-price { font-size: 22px; font-weight: 800; color: var(--mat-red); margin-top: 12px; line-height: 1; }
.mat-price-card .pc-price small { font-size: 12px; font-weight: 600; color: var(--mat-muted); }
.mat-price-card .pc-inst { font-size: 12px; color: var(--mat-muted); margin-top: 6px; }
.mat-price-note { max-width: 560px; margin: 10px auto; background: #fff8e6; border: 1px solid #f0dca8; color: #6b5514; border-radius: 12px; padding: 16px 18px; font-size: 14px; line-height: 1.55; text-align: center; }
.mat-mg-note { display: flex; gap: 12px; align-items: flex-start; max-width: 720px; margin: 0 auto 22px; background: #ecfdf3; border: 1px solid #a6e9c5; color: #14532d; border-radius: 14px; padding: 15px 18px; font-size: 14.5px; line-height: 1.55; }
.mat-mg-note .ic { font-size: 22px; line-height: 1.2; }
.mat-mg-note b { color: #0b3d24; }
.mat-svc-total { display: flex; align-items: center; justify-content: space-between; max-width: 520px; margin: 24px auto 6px; background: #fff5f5; border: 1.5px solid var(--mat-red); border-radius: 14px; padding: 14px 20px; box-shadow: 0 8px 22px rgba(224,50,47,.12); }
.mat-svc-total span { font-weight: 600; color: var(--mat-ink); font-size: 15px; }
.mat-svc-total b { font-size: 25px; font-weight: 800; color: var(--mat-red); }
.mat-svc-total-note { max-width: 520px; margin: 0 auto; text-align: center; font-size: 12.5px; color: var(--mat-muted); }
.mat-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.mat-chip { position: relative; border: 1.5px solid var(--mat-line); border-radius: 999px; padding: 10px 18px; cursor: pointer; font-weight: 600; font-size: 14px; color: var(--mat-body); transition: all .15s ease; }
.mat-chip input { position: absolute; opacity: 0; }
.mat-chip:has(input:checked) { border-color: var(--mat-red); background: var(--mat-red); color: #fff; }
.mat-chip-price { font-weight: 700; opacity: .72; font-size: 13px; }
.mat-chip:has(input:checked) .mat-chip-price { opacity: .95; }
.mat-pkg-wrap { margin-top: 22px; }
.mat-price-disclaimer { max-width: 620px; margin: 12px auto 0; text-align: center; font-size: 12px; line-height: 1.5; color: var(--mat-muted); }
.mat-vp-box { max-width: 520px; margin: 20px auto 6px; background: #fff5f5; border: 1.5px solid var(--mat-red); border-radius: 16px; padding: 22px 26px; text-align: center; box-shadow: 0 10px 26px rgba(224,50,47,.12); }
.mat-vp-label { font-weight: 600; color: var(--mat-ink); font-size: 15px; margin-bottom: 6px; }
.mat-vp-price { display: block; font-size: 34px; font-weight: 800; color: var(--mat-red); }
.mat-selected-car { display: inline-block; margin: 0 auto 14px; padding: 7px 16px; background: var(--mat-ink); color: #fff; border-radius: 999px; font-weight: 700; font-size: 14px; }
/* Eksik/zorunlu alan vurgusu */
.mat-input.mat-err, .mat-select.mat-err { border-color: var(--mat-red) !important; box-shadow: 0 0 0 3px rgba(224, 50, 47, .13); }
.mat-err-box { outline: 2px solid var(--mat-red); outline-offset: 3px; border-radius: 14px; }
.mat-toggle-row { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--mat-line); gap: 16px; flex-wrap: wrap; }
.mat-toggle-row .ql { font-weight: 600; color: var(--mat-ink); }
.mat-yn { display: flex; gap: 8px; }
.mat-yn label { position: relative; border: 1.5px solid var(--mat-line); border-radius: 999px; padding: 8px 20px; cursor: pointer; font-weight: 600; font-size: 14px; color: var(--mat-body); transition: all .15s ease; }
.mat-yn input { position: absolute; opacity: 0; }
.mat-yn label:has(input:checked) { border-color: var(--mat-red); background: var(--mat-red); color: #fff; }
.mat-wizard-nav { display: flex; justify-content: space-between; margin-top: 30px; gap: 12px; }
.mat-select { width: 100%; padding: 13px 15px; border: 1px solid var(--mat-line); border-radius: 12px; font: inherit; font-size: 15px; color: var(--mat-ink); background: #fff; }
.mat-select:focus { outline: none; border-color: var(--mat-red); box-shadow: 0 0 0 3px rgba(224, 50, 47, .12); }
.mat-note-warn { background: #fff8e6; border: 1px solid #f5e0a3; color: #8a6d1a; padding: 12px 15px; border-radius: 12px; font-size: 13.5px; margin: 4px 0 18px; display: flex; gap: 9px; }
.mat-success { text-align: center; padding: 40px 20px; }
.mat-success .ic { width: 74px; height: 74px; border-radius: 50%; background: #ecfdf3; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.mat-success .ic svg { width: 38px; height: 38px; stroke: #12b76a; }
.mat-success h3 { font-size: 24px; margin-bottom: 10px; }
.mat-success p { color: var(--mat-muted); max-width: 440px; margin: 0 auto 22px; }
.mat-alert { background: #fef2f2; border: 1px solid #fbd5d5; color: #b42318; padding: 12px 16px; border-radius: 12px; margin-bottom: 16px; font-size: 14px; font-weight: 600; display: none; }
@media (max-width: 640px) {
    .mat-optcards { grid-template-columns: 1fr 1fr; }
    .mat-wizard { padding: 22px 18px; }
    .mat-steps .st .lbl { display: none; }
}

.mat-vt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mat-vt-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 28px; }
.mat-vt-cols > div > .mat-q:first-child { margin-top: 0; }
@media (max-width: 760px) { .mat-vt-cols { grid-template-columns: 1fr; gap: 8px; } }
.mat-vt-card { position: relative; border: 1.5px solid var(--mat-line); border-radius: var(--mat-radius); padding: 14px 10px; text-align: center; cursor: pointer; background: #fff; transition: border-color .16s ease, background .16s ease, transform .12s ease; }
.mat-vt-card input { position: absolute; opacity: 0; }
.mat-vt-card img { width: 100%; height: 72px; object-fit: contain; margin-bottom: 6px; }
.mat-vt-card span { font-weight: 700; font-size: 13.5px; color: var(--mat-ink); }
.mat-vt-card:hover { border-color: #c9ccd2; }
.mat-vt-card:has(input:checked) { border-color: var(--mat-red); background: #fff5f5; box-shadow: 0 6px 18px rgba(224, 50, 47, .14); }

.mat-stage3d { position: relative; width: 100%; height: 440px; border-radius: var(--mat-radius-lg); overflow: hidden; background: radial-gradient(130% 120% at 50% 30%, #20242c, #0c0e12); box-shadow: var(--mat-shadow); cursor: grab; }
.mat-stage3d canvas { display: block; }
.mat-3d-tip { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); z-index: 3; background: rgba(0, 0, 0, .62); color: #fff; padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; opacity: 0; transition: opacity .2s ease; pointer-events: none; white-space: nowrap; }
.mat-stage-hint { text-align: center; color: var(--mat-muted); font-size: 13.5px; margin: 14px 0 24px; }

.mat-svc-group { margin-bottom: 20px; }
.mat-svc-cat { font-weight: 800; font-size: 14px; color: var(--mat-ink); margin-bottom: 10px; }
.mat-svc-items { display: flex; flex-wrap: wrap; gap: 10px; }

@media (max-width: 640px) {
    .mat-vt-grid { grid-template-columns: 1fr 1fr; }
    .mat-stage3d { height: 320px; }
}

@media (max-width: 980px) {
    .mat-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .mat-hero-visual { aspect-ratio: 16/11; }
    .mat-services { grid-template-columns: 1fr 1fr; }
    .mat-why { grid-template-columns: 1fr 1fr; }
    .mat-cta { grid-template-columns: 1fr; padding: 40px; }
    .mat-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .mat-section { padding: 64px 0; }
    .mat-nav, .mat-header-actions .mat-btn { display: none; }
    .mat-burger { display: flex; }
    .mat-header-actions { margin-left: auto; }
    .mat-nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-top: 1px solid var(--mat-line); border-bottom: 1px solid var(--mat-line); box-shadow: var(--mat-shadow); padding: 10px 24px 16px; gap: 2px; z-index: 99; }
    .mat-nav.open a { padding: 13px 10px; font-size: 16px; border-radius: 10px; }
    .mat-nav.open .mat-nav-dd { width: 100%; }
    .mat-nav.open .mat-nav-dd-t { display: none; }
    .mat-nav.open .mat-nav-dd-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0; min-width: 0; }
    .mat-nav.open .mat-nav-dd-menu::before { display: none; }
    .mat-services, .mat-why, .mat-footer-grid { grid-template-columns: 1fr; }
    .mat-hero-stats { gap: 22px; }
    .mat-cta { padding: 32px 24px; overflow: hidden; }
    .mat-cta-actions { flex-direction: column; width: 100%; }
    .mat-cta-actions .mat-btn { width: 100%; justify-content: center; }
}

.mat-bayi { display: grid; grid-template-columns: 380px 1fr; gap: 24px; align-items: start; }
.mat-bayi-list { display: flex; flex-direction: column; gap: 12px; max-height: 560px; overflow-y: auto; padding-right: 4px; }
.mat-bayi-card { text-align: left; background: #fff; border: 1px solid var(--mat-line); border-radius: 16px; padding: 17px 20px; cursor: pointer; font: inherit; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.mat-bayi-card:hover, .mat-bayi-card.active { border-color: var(--mat-red); box-shadow: var(--mat-shadow-sm); transform: translateY(-2px); }
.mat-bayi-city { font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--mat-red); }
.mat-bayi-name { font-size: 17px; font-weight: 700; color: var(--mat-ink); margin-top: 3px; }
.mat-bayi-addr { display: flex; gap: 8px; font-size: 14px; color: var(--mat-muted); margin-top: 9px; line-height: 1.45; }
.mat-bayi-addr svg { width: 16px; height: 16px; flex: none; stroke: var(--mat-red); fill: none; stroke-width: 2; margin-top: 2px; }
.mat-bayi-actions { display: flex; align-items: center; gap: 14px; margin-top: 13px; }
.mat-bayi-phone { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--mat-ink); }
.mat-bayi-phone svg { width: 15px; height: 15px; stroke: var(--mat-red); fill: none; stroke-width: 2; }
.mat-bayi-dir { font-size: 13px; font-weight: 700; color: var(--mat-red); margin-left: auto; }
.mat-bayi-map-wrap { position: sticky; top: 96px; }
.mat-bayi-map { height: 560px; border-radius: 20px; overflow: hidden; border: 1px solid var(--mat-line); box-shadow: var(--mat-shadow); z-index: 1; }
.mat-bayi-empty { padding: 44px 24px; text-align: center; color: var(--mat-muted); background: var(--mat-soft); border-radius: 16px; font-size: 15px; }
.mat-pin span { display: block; width: 20px; height: 20px; border-radius: 50% 50% 50% 0; background: var(--mat-red); transform: rotate(-45deg); border: 2.5px solid #fff; box-shadow: 0 3px 9px rgba(224, 50, 47, .5); }
.mat-bayi-map .leaflet-popup-content { font: inherit; font-size: 13.5px; }
@media (max-width: 900px) {
    .mat-bayi { grid-template-columns: 1fr; }
    .mat-bayi-list { max-height: none; order: 2; }
    .mat-bayi-map-wrap { position: static; order: 1; }
}

.mat-crumbs { display: flex; gap: 8px; align-items: center; font-size: 13.5px; color: var(--mat-muted); margin-bottom: 18px; flex-wrap: wrap; }
.mat-crumbs a { color: var(--mat-muted); }
.mat-crumbs a:hover { color: var(--mat-red); }
.mat-crumbs b { color: var(--mat-ink); font-weight: 600; }
.mat-crumbs span { opacity: .5; }

.mat-svc-detail { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.mat-article { max-width: 760px; }
.mat-article-hero { width: 100%; border-radius: var(--mat-radius-lg); margin-bottom: 12px; aspect-ratio: 16/9; object-fit: cover; box-shadow: var(--mat-shadow-sm); }
.mat-article h2 { font-size: 26px; margin: 38px 0 14px; }
.mat-article > p { font-size: 16.5px; line-height: 1.75; color: var(--mat-body); margin: 0 0 16px; }

.mat-ben-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 6px; }
.mat-ben { display: flex; gap: 14px; background: var(--mat-soft); border-radius: 16px; padding: 20px; }
.mat-ben .ic { width: 34px; height: 34px; border-radius: 10px; background: var(--mat-red); color: #fff; display: flex; align-items: center; justify-content: center; flex: none; }
.mat-ben .ic svg { width: 19px; height: 19px; }
.mat-ben h4 { font-size: 16px; margin: 2px 0 5px; color: var(--mat-ink); }
.mat-ben p { font-size: 14px; color: var(--mat-muted); line-height: 1.55; margin: 0; }

.mat-proc-list { list-style: none; padding: 0; margin: 8px 0 0; }
.mat-proc-list li { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--mat-line); }
.mat-proc-list .n { font-size: 20px; font-weight: 800; color: var(--mat-red); opacity: .5; flex: none; width: 40px; }
.mat-proc-list li > div b { display: block; font-size: 16.5px; color: var(--mat-ink); margin-bottom: 4px; }
.mat-proc-list li > div span { display: block; font-size: 15px; color: var(--mat-muted); line-height: 1.6; }

.mat-faq { margin-top: 8px; border-top: 1px solid var(--mat-line); }
.mat-faq details { border-bottom: 1px solid var(--mat-line); }
.mat-faq summary { list-style: none; cursor: pointer; padding: 18px 40px 18px 0; position: relative; font-weight: 600; font-size: 16.5px; color: var(--mat-ink); }
.mat-faq summary::-webkit-details-marker { display: none; }
.mat-faq summary .pl { position: absolute; right: 4px; top: 22px; width: 14px; height: 14px; }
.mat-faq summary .pl::before, .mat-faq summary .pl::after { content: ''; position: absolute; background: var(--mat-red); border-radius: 2px; transition: transform .2s ease; }
.mat-faq summary .pl::before { top: 6px; left: 0; width: 14px; height: 2px; }
.mat-faq summary .pl::after { top: 0; left: 6px; width: 2px; height: 14px; }
.mat-faq details[open] summary .pl::after { transform: scaleY(0); }
.mat-faq details > p { margin: 0 0 20px; font-size: 15.5px; line-height: 1.7; color: var(--mat-muted); }

.mat-article-side { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 18px; }
.mat-side-cta { background: var(--mat-ink); color: #fff; border-radius: 20px; padding: 26px; }
.mat-side-cta h3 { color: #fff; font-size: 20px; }
.mat-side-cta p { color: rgba(255, 255, 255, .7); font-size: 14.5px; margin: 10px 0 18px; line-height: 1.55; }
.mat-side-phone { display: block; text-align: center; margin-top: 14px; color: #fff; font-weight: 700; font-size: 17px; }
.mat-side-others { background: #fff; border: 1px solid var(--mat-line); border-radius: 20px; padding: 20px 24px; }
.mat-side-others h4 { font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--mat-muted); margin-bottom: 6px; }
.mat-side-link { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--mat-line); color: var(--mat-ink); font-weight: 600; font-size: 15px; }
.mat-side-link:last-child { border-bottom: none; }
.mat-side-link svg { width: 17px; height: 17px; color: var(--mat-red); transition: transform .2s ease; }
.mat-side-link:hover { color: var(--mat-red); }
.mat-side-link:hover svg { transform: translateX(4px); }

@media (max-width: 900px) {
    .mat-svc-detail { grid-template-columns: 1fr; gap: 32px; }
    .mat-article-side { position: static; order: 2; }
    .mat-ben-grid { grid-template-columns: 1fr; }
}

.mat-chat { position: fixed; right: 22px; bottom: 22px; z-index: 200; }
.mat-chat-fab { position: relative; width: 60px; height: 60px; border-radius: 50%; background: var(--mat-red); border: none; color: #fff; cursor: pointer; box-shadow: 0 12px 30px rgba(224, 50, 47, .42); display: flex; align-items: center; justify-content: center; transition: transform .2s var(--mat-ease), background .2s ease; }
.mat-chat-fab:hover { transform: translateY(-3px) scale(1.04); background: var(--mat-red-dark); }
.mat-chat-fab svg { width: 27px; height: 27px; position: absolute; transition: opacity .2s ease, transform .2s ease; }
.mat-chat-fab .ic-close { opacity: 0; transform: rotate(-90deg) scale(.6); }
.mat-chat.open .mat-chat-fab .ic-chat { opacity: 0; transform: rotate(90deg) scale(.6); }
.mat-chat.open .mat-chat-fab .ic-close { opacity: 1; transform: none; }

.mati-launch { position: absolute; right: 0; bottom: 0; width: 106px; height: 106px; padding: 0; border: none; background: transparent; cursor: pointer; filter: drop-shadow(0 12px 22px rgba(20, 22, 27, .32)); transition: transform .2s var(--mat-ease), opacity .25s ease; }
.mati-launch img { width: 100%; height: 100%; object-fit: contain; display: block; pointer-events: none; }
.mati-launch:hover { transform: scale(1.06) translateY(-3px); }
.mat-chat.open .mati-launch { opacity: 0; transform: scale(.6); pointer-events: none; }

.mati-bubble { position: absolute; right: 12px; bottom: 116px; max-width: 224px; background: #fff; color: var(--mat-ink); border: 1px solid var(--mat-line); border-radius: 16px 16px 4px 16px; box-shadow: var(--mat-shadow); padding: 12px 34px 12px 15px; font-size: 14px; line-height: 1.4; font-weight: 500; opacity: 0; transform: translateY(8px) scale(.96); transform-origin: bottom right; pointer-events: none; transition: opacity .3s var(--mat-ease), transform .3s var(--mat-ease); cursor: pointer; }
.mati-bubble.show { opacity: 1; transform: none; pointer-events: auto; }
.mat-chat.open .mati-bubble { opacity: 0; pointer-events: none; }
.mati-bubble::after { content: ''; position: absolute; right: 30px; bottom: -7px; width: 13px; height: 13px; background: #fff; border-right: 1px solid var(--mat-line); border-bottom: 1px solid var(--mat-line); transform: rotate(45deg); }
.mati-bubble-x { position: absolute; top: 5px; right: 7px; width: 20px; height: 20px; border: none; background: transparent; color: var(--mat-muted); font-size: 18px; line-height: 1; cursor: pointer; border-radius: 50%; padding: 0; }
.mati-bubble-x:hover { background: var(--mat-soft); color: var(--mat-ink); }
@media (max-width: 600px) { .mati-bubble { display: none; } }
@media (max-width: 480px) { .mati-launch { width: 82px; height: 82px; } }

.mat-chat-panel { position: absolute; right: 0; bottom: 76px; width: 410px; max-width: calc(100vw - 32px); height: 600px; max-height: calc(100dvh - 110px); background: #fff; border: 1px solid var(--mat-line); border-radius: 20px; box-shadow: 0 30px 70px rgba(20, 22, 27, .24); display: flex; flex-direction: column; overflow: hidden; opacity: 0; transform: translateY(16px) scale(.98); pointer-events: none; transform-origin: bottom right; transition: opacity .22s var(--mat-ease), transform .22s var(--mat-ease); }
.mat-chat.open .mat-chat-panel { opacity: 1; transform: none; pointer-events: auto; }

.mat-chat-head { display: flex; align-items: center; gap: 12px; padding: 15px 16px; background: var(--mat-ink); color: #fff; }
.mat-chat-ava { width: 40px; height: 40px; border-radius: 12px; background: var(--mat-red); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; flex: none; overflow: hidden; }
.mat-chat-ava img { width: 100%; height: 100%; object-fit: cover; }
.mat-chat-id b { display: block; font-size: 15.5px; color: #fff; line-height: 1.2; }
.mat-chat-id span { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: rgba(255, 255, 255, .7); margin-top: 2px; }
.mat-chat-id .dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; }
.mat-chat-x { margin-left: auto; background: transparent; border: none; color: rgba(255, 255, 255, .7); cursor: pointer; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 8px; }
.mat-chat-x:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.mat-chat-x svg { width: 18px; height: 18px; }

.mat-chat-body { flex: 1; overflow-y: auto; padding: 18px 16px; display: flex; flex-direction: column; gap: 12px; background: var(--mat-soft); }
.mat-msg { display: flex; }
.mat-msg.user { justify-content: flex-end; }
.mat-msg .b { max-width: 82%; padding: 12px 16px; border-radius: 20px; font-size: 14.5px; line-height: 1.5; word-wrap: break-word; }
.mat-msg.bot .b { background: #fff; color: var(--mat-ink); border: 1px solid var(--mat-line); border-bottom-left-radius: 5px; }
.mat-msg.user .b { background: var(--mat-red); color: #fff; border-bottom-right-radius: 5px; }
.mat-msg .b a { text-decoration: underline; font-weight: 600; }
.mat-msg.bot .b a { color: var(--mat-red); }
.mat-msg.user .b a { color: #fff; }
.mat-msg .b p { margin: 0 0 8px; }
.mat-msg .b p:last-child { margin-bottom: 0; }
/* Mati price cards (small boxes) */
.mat-price-boxes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.mat-pbox { flex: 1 1 130px; min-width: 130px; border: 1px solid var(--mat-line); border-radius: 12px; padding: 10px 12px; background: #fff; }
.mat-pbox .pb-pkg { font-size: 10.5px; font-weight: 700; letter-spacing: .3px; text-transform: uppercase; color: var(--mat-muted); }
.mat-pbox .pb-name { font-size: 13.5px; font-weight: 700; color: var(--mat-ink); margin-top: 2px; }
.mat-pbox .pb-meta { font-size: 11px; color: var(--mat-muted); margin-top: 1px; }
.mat-pbox .pb-price { font-size: 17px; font-weight: 800; color: var(--mat-red); margin-top: 7px; line-height: 1; }
.mat-pbox .pb-inst { font-size: 10.5px; color: var(--mat-muted); margin-top: 4px; }
.mat-pkg-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 8px; }
.mat-pkg-chip { border: 1.5px solid var(--mat-red); background: #fff; color: var(--mat-red); border-radius: 20px; padding: 8px 15px; font-family: inherit; font-size: 13px; font-weight: 600; cursor: pointer; transition: background .15s, color .15s; }
.mat-pkg-chip:hover { background: var(--mat-red); color: #fff; }
.mat-msg .b strong { font-weight: 700; }
.mat-msg .b ul { margin: 7px 0; padding: 0; list-style: none; }
.mat-msg .b li { position: relative; padding-left: 16px; margin: 5px 0; }
.mat-msg .b li::before { content: ''; position: absolute; left: 2px; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--mat-red); }
.mat-msg.user .b li::before { background: rgba(255, 255, 255, .85); }
.mat-msg.typing .b { display: flex; gap: 4px; padding: 14px; }
.mat-msg.typing .b span { width: 7px; height: 7px; border-radius: 50%; background: var(--mat-muted); animation: mat-typing 1s infinite; }
.mat-msg.typing .b span:nth-child(2) { animation-delay: .15s; }
.mat-msg.typing .b span:nth-child(3) { animation-delay: .3s; }
@keyframes mat-typing { 0%, 60%, 100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.mat-quick { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.mat-quick-chip { background: #fff; border: 1px solid var(--mat-red); color: var(--mat-red); border-radius: 999px; padding: 8px 15px; font: inherit; font-size: 13px; font-weight: 600; cursor: pointer; transition: background .15s ease, color .15s ease; }
.mat-quick-chip:hover { background: var(--mat-red); color: #fff; }
.mat-quick-chip.wa { border-color: #25d366; color: #128c4b; }
.mat-quick-chip.wa:hover { background: #25d366; color: #fff; }
.mat-msg .b.mat-cursor::after { content: '▋'; display: inline-block; color: var(--mat-red); animation: mat-blink .8s steps(1) infinite; margin-left: 1px; font-weight: 400; }
@keyframes mat-blink { 50% { opacity: 0; } }

.mat-chat-input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--mat-line); background: #fff; }
.mat-chat-input input { flex: 1; border: 1px solid var(--mat-line); border-radius: 999px; padding: 11px 16px; font: inherit; font-size: 14.5px; outline: none; transition: border-color .15s ease; }
.mat-chat-input input:focus { border-color: var(--mat-red); }
.mat-chat-input button { width: 44px; height: 44px; border-radius: 50%; background: var(--mat-red); border: none; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; flex: none; transition: background .15s ease; }
.mat-chat-input button:hover { background: var(--mat-red-dark); }
.mat-chat-input button svg { width: 19px; height: 19px; }
.mat-chat-input button.mat-chat-mic { background: #eef0f2; color: var(--mat-ink); }
.mat-chat-input button.mat-chat-mic:hover { background: #e2e5e8; }
.mat-chat-input button.mat-chat-mic.recording { background: var(--mat-red); color: #fff; animation: matMicPulse 1.1s infinite; }
@keyframes matMicPulse { 0% { box-shadow: 0 0 0 0 rgba(224, 50, 47, .5); } 70% { box-shadow: 0 0 0 9px rgba(224, 50, 47, 0); } 100% { box-shadow: 0 0 0 0 rgba(224, 50, 47, 0); } }

@media (max-width: 480px) {
    .mat-chat { right: 16px; bottom: 16px; }
    .mat-chat-panel { position: fixed; left: 10px; right: 10px; bottom: 10px; width: auto; height: calc(100dvh - 20px); max-height: none; border-radius: 18px; }
}

.mat-durum-form { display: flex; gap: 10px; margin-top: 24px; max-width: 480px; }
.mat-durum-form .mat-input { flex: 1; text-transform: uppercase; }
.mat-durum-empty { padding: 26px; text-align: center; color: var(--mat-muted); background: var(--mat-soft); border-radius: 16px; font-size: 15px; }
.mat-durum-card { background: #fff; border: 1px solid var(--mat-line); border-radius: 20px; padding: 24px 26px; box-shadow: var(--mat-shadow-sm); margin-bottom: 18px; }
.mat-durum-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.mat-durum-plate { font-size: 22px; font-weight: 800; color: var(--mat-ink); letter-spacing: .04em; }
.mat-durum-sub { font-size: 14px; color: var(--mat-muted); margin-top: 2px; }
.mat-status-badge { background: #fff5f5; color: var(--mat-red); border: 1px solid #f6d4d3; border-radius: 999px; padding: 7px 15px; font-size: 13px; font-weight: 700; white-space: nowrap; }
.mat-durum-meta { display: flex; flex-wrap: wrap; gap: 22px; margin: 18px 0; padding: 16px 0; border-top: 1px solid var(--mat-line); border-bottom: 1px solid var(--mat-line); }
.mat-durum-meta > div { display: flex; flex-direction: column; gap: 3px; }
.mat-durum-meta span { font-size: 12px; color: var(--mat-muted); text-transform: uppercase; letter-spacing: .05em; }
.mat-durum-meta b { font-size: 15px; color: var(--mat-ink); }
.mat-durum-tl-h { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--mat-muted); margin-bottom: 12px; }
.mat-timeline { list-style: none; margin: 0; padding: 0; }
.mat-timeline li { position: relative; padding: 0 0 18px 26px; }
.mat-timeline li:last-child { padding-bottom: 0; }
.mat-timeline li::before { content: ''; position: absolute; left: 5px; top: 14px; bottom: -4px; width: 2px; background: var(--mat-line); }
.mat-timeline li:last-child::before { display: none; }
.mat-timeline .dot { position: absolute; left: 0; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--mat-red); border: 2px solid #fff; box-shadow: 0 0 0 2px var(--mat-red); }
.mat-timeline .tl-body b { display: block; font-size: 15px; color: var(--mat-ink); }
.mat-timeline .tl-body p { margin: 3px 0 0; font-size: 14.5px; color: var(--mat-body); line-height: 1.5; }
.mat-timeline .tl-date { display: block; font-size: 12.5px; color: var(--mat-muted); margin-top: 4px; }
@media (max-width: 560px) { .mat-durum-form { flex-direction: column; } }

.mat-brands-strip { padding: 34px 0; background: #fff; border-top: 1px solid var(--mat-line); border-bottom: 1px solid var(--mat-line); }
.mat-brands-label { display: block; text-align: center; font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--mat-muted); margin-bottom: 18px; }
.mat-brands-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; max-width: 840px; margin: 0 auto; }
.mat-brand-logo { height: 66px; min-width: 0; padding: 0 18px; background: #fff; border: 1px solid var(--mat-line); border-radius: 14px; display: flex; align-items: center; justify-content: center; box-shadow: var(--mat-shadow-sm); transition: transform .18s var(--mat-ease), border-color .18s ease; }
.mat-brand-logo:hover { transform: translateY(-2px); border-color: #d7dae0; }
.mat-brand-logo img { max-height: 34px; max-width: 100%; object-fit: contain; opacity: .95; transition: opacity .2s ease; }
.mat-brand-logo:hover img { opacity: 1; }
.mat-brand-text { font-size: 24px; font-weight: 900; letter-spacing: -.02em; color: var(--mat-ink); }
@media (max-width: 640px) { .mat-brands-row { grid-template-columns: repeat(2, 1fr); gap: 12px; } .mat-brand-text { font-size: 20px; } }
/* Mobile typography — slightly smaller headings */
@media (max-width: 600px) {
    .mat-hero h1 { font-size: 31px; }
    .mat-page-hero h1 { font-size: 27px; }
    .mat-page-hero.mat-hero-compact h1 { font-size: 23px; }
    .mat-lead { font-size: 15.5px; }
    .mat-scard-body h3 { font-size: 20px; }
    .mat-bento .b1 .mat-scard-body h3 { font-size: 24px; }
    .mat-svc-row h2 { font-size: 24px; }
    .mat-cta h2 { font-size: 24px; }
}
.mat-ref-marquee { overflow: hidden; margin-top: 42px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.mat-ref-track { display: flex; gap: 20px; width: max-content; animation: mat-marquee 70s linear infinite; }
.mat-ref-marquee:hover .mat-ref-track { animation-play-state: paused; }
.mat-ref-card { flex: none; width: 158px; height: 96px; background: #dfe2e8; border: 1px solid #d2d6dd; border-radius: 16px; display: flex; align-items: center; justify-content: center; padding: 18px; }
.mat-ref-card img { max-width: 100%; max-height: 100%; object-fit: contain; }
@keyframes mat-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .mat-ref-track { animation: none; } .mat-ref-marquee { overflow-x: auto; } }
.mat-ref-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.mat-ref-grid .mat-ref-card { width: auto; height: auto; flex-direction: column; gap: 12px; padding: 20px 16px; }
.mat-ref-grid .mat-ref-card img { height: 78px; }
.mat-ref-name { font-size: 13.5px; font-weight: 600; color: #3a4150; text-align: center; line-height: 1.35; }
@media (max-width: 780px) { .mat-ref-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .mat-ref-grid { grid-template-columns: 1fr 1fr; } }

/* References page — dark, matreklam-style card grid with a staggered entrance animation. */
.mat-refs { position: relative; background: #0a0e1a; color: #fff; padding: 96px 0 108px; overflow: hidden; }
.mat-refs-bg { position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(1200px 520px at 50% -12%, rgba(224, 50, 47, .30), transparent 60%),
        radial-gradient(900px 520px at 84% 16%, rgba(60, 92, 205, .22), transparent 60%),
        radial-gradient(760px 440px at 8% 34%, rgba(170, 42, 128, .20), transparent 62%); }
.mat-refs .mat-container { position: relative; z-index: 1; }
.mat-refs-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.mat-refs-eyebrow { color: var(--mat-red); font-weight: 800; letter-spacing: .16em; text-transform: uppercase; font-size: 13px; }
.mat-refs-head h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 800; margin: 14px 0 16px; color: #fff; }
.mat-refs-head p { color: #aab2c2; font-size: 16px; line-height: 1.65; }
.mat-refs-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.mat-refs-card { background: #fff; border-radius: 18px; aspect-ratio: 1 / 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 10px; padding: 20px; box-shadow: 0 16px 36px rgba(0, 0, 0, .30);
    opacity: 0; animation: mat-ref-in .6s cubic-bezier(.2, .7, .3, 1) both; animation-delay: calc(var(--i, 0) * 45ms);
    transition: transform .25s ease, box-shadow .25s ease; }
.mat-refs-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(0, 0, 0, .40); }
.mat-refs-card img { max-width: 84%; max-height: 72%; object-fit: contain; }
.mat-refs-name { font-size: 12.5px; font-weight: 600; color: #3a4150; text-align: center; line-height: 1.3; }
@keyframes mat-ref-in { from { opacity: 0; transform: translateY(22px) scale(.97); } to { opacity: 1; transform: none; } }
@media (max-width: 1024px) { .mat-refs-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 680px) { .mat-refs-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } .mat-refs { padding: 72px 0 84px; } }
@media (max-width: 440px) { .mat-refs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (prefers-reduced-motion: reduce) { .mat-refs-card { animation: none; opacity: 1; } }
.mat-video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.mat-video-card { cursor: pointer; }
.mat-video-thumb { position: relative; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; box-shadow: var(--mat-shadow-sm); background: #000; }
.mat-video-thumb img, .mat-video-thumb iframe { width: 100%; height: 100%; object-fit: cover; border: none; display: block; }
.mat-video-play { position: absolute; inset: 0; margin: auto; width: 62px; height: 62px; border-radius: 50%; background: var(--mat-red); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(224, 50, 47, .5); transition: transform .2s var(--mat-ease), background .2s ease; }
.mat-video-play svg { width: 26px; height: 26px; margin-left: 3px; }
.mat-video-card:hover .mat-video-play { transform: scale(1.12); background: var(--mat-red-dark); }
.mat-video-title { margin-top: 13px; font-size: 16px; font-weight: 600; color: var(--mat-ink); line-height: 1.4; }
@media (max-width: 900px) { .mat-video-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .mat-video-grid { grid-template-columns: 1fr; } }

/* Randevu — Fiyat adımında seçilen ürünün rozeti */
.mat-picked-product { display: inline-block; margin: 0 auto 12px; padding: 7px 16px; background: var(--mat-soft, #f4f4f5); color: var(--mat-ink); border: 1.5px solid var(--mat-line); border-radius: 999px; font-weight: 600; font-size: 14px; }

/* Randevu — seçilen hizmette tanımlı ürün yoksa çıkan bilgi notu */
.mat-no-product { margin: 18px auto; max-width: 560px; padding: 18px 22px; text-align: center; background: var(--mat-soft, #f6f6f7); border: 1.5px dashed var(--mat-line); border-radius: 14px; color: var(--mat-body); font-size: 14.5px; line-height: 1.6; }

/* Zorunlu alan uyarısı: alt alta duran satırlarda kırmızı çerçeveler birbirine girmesin
   diye dış çizgi (outline) elemanın içine alınır. */
.mat-toggle-row.mat-err-box,
.mat-chips.mat-err-box { outline-offset: -2px; border-radius: 12px; background: rgba(224, 50, 47, .04); }
.mat-toggle-row.mat-err-box { padding-left: 14px; padding-right: 14px; margin-left: -14px; margin-right: -14px; }
