:root {
    --bg:#f4fbfd;
    --soft:#eaf8fc;
    --white:#fff;
    --ink:#061827;
    --text:#4f6375;
    --muted:#6e8191;
    --border:#d8e9ef;
    --primary:#058fc0;
    --primary-2:#02bdb8;
    --primary-dark:#046f98;
    --green:#08bd75;
    --pink:#ff2866;
    --orange:#ff9600;
    --teal:#10b9bd;
    --shadow:0 18px 44px rgba(9,34,51,.10);
    --shadow-sm:0 7px 22px rgba(9,34,51,.09);
    --radius:22px;
    --header-h:76px
}

* {
    box-sizing:border-box
}

html {
    scroll-behavior:smooth
}

body {
    margin:0;
    font-family:Inter,Arial,sans-serif;
    background:var(--bg);
    color:var(--ink);
    font-size:15px;
    font-weight:500;
    line-height:1.58;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility
}

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

svg {
    width:1em;
    height:1em;
    display:inline-block;
    vertical-align:-.15em
}

.svg-sprite {
    position:absolute;
    width:0;
    height:0;
    overflow:hidden
}

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

.container-wide {
    width:min(1250px,calc(100% - 42px));
    margin:auto
}

.center {
    text-align:center;
    margin-top:32px
}

.site-header {
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(246,252,254,.94);
    backdrop-filter:blur(14px);
    border-bottom:1px solid var(--border)
}

.site-header__inner {
    height:var(--header-h);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px
}

.brand {
    display:flex;
    align-items:center;
    gap:11px;
    min-width:310px
}

.brand__mark {
    position:relative;
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    border-radius:17px;
    background:linear-gradient(135deg,#0491c4,#06c7bd);
    color:white;
    box-shadow:0 8px 18px rgba(2,143,192,.25)
}

.brand__mark i {
    position:absolute;
    right:-4px;
    bottom:4px;
    width:16px;
    height:16px;
    border-radius:50%;
    background:#0ec8b8;
    border:3px solid var(--bg)
}

.brand__mark.small {
    width:34px;
    height:34px;
    border-radius:13px
}

.brand__mark.small i {
    display:none
}

.brand__text {
    display:flex;
    flex-direction:column;
    line-height:1.05
}

.brand__text strong {
    font-size:16px;
    font-weight:800;
    letter-spacing:-.02em
}

.brand__text small {
    margin-top:3px;
    font-size:9px;
    font-weight:700;
    letter-spacing:.2em;
    color:#667988
}

.main-nav {
    display:flex;
    align-items:center;
    gap:6px
}

.nav-link {
    height:var(--header-h);
    display:flex;
    align-items:center;
    gap:6px;
    padding:0 10px;
    border:0;
    background:transparent;
    font:inherit;
    font-size:14px;
    font-weight:700;
    color:var(--ink);
    cursor:pointer;
    transition:.18s
}

.nav-link:hover,.nav-link.active {
    color:var(--primary)
}

.nav-toggle svg {
    font-size:14px
}

.nav-two {
    line-height:1.14;
    text-align:center
}

.nav-item {
    position:relative
}

.dropdown-menu,.mega-menu {
    position:absolute;
    top:100%;
    left:50%;
    transform:translate(-50%,10px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:0 0 22px 22px;
    box-shadow:var(--shadow);
    transition:.2s ease
}

.has-dropdown:hover .dropdown-menu,.has-mega:hover .mega-menu,.has-dropdown:focus-within .dropdown-menu,.has-mega:focus-within .mega-menu {
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translate(-50%,0)
}

.dropdown-menu {
    min-width:240px;
    padding:16px
}

.dropdown-menu a {
    display:block;
    padding:11px 12px;
    border-radius:12px;
    font-size:15px;
    font-weight:650
}

.dropdown-menu a:hover {
    background:var(--soft);
    color:var(--primary)
}

.mega-menu {
    width:780px;
    padding:28px 30px
}

.mega-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px 30px
}

.mega-service {
    display:grid;
    grid-template-columns:48px 1fr;
    grid-template-areas:"icon title" "icon desc";
    column-gap:14px;
    align-items:center
}

.mega-service span {
    grid-area:icon;
    width:48px;
    height:48px;
    border-radius:16px;
    display:grid;
    place-items:center;
    background:var(--soft);
    color:var(--primary);
    font-size:23px
}

.mega-service b {
    grid-area:title;
    font-size:16px;
    font-weight:750
}

.mega-service em {
    grid-area:desc;
    font-style:normal;
    color:var(--text);
    font-size:13px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis
}

.mega-service:hover b {
    color:var(--primary)
}

.mega-bottom {
    border-top:1px solid var(--border);
    margin-top:24px;
    padding-top:18px;
    display:flex;
    align-items:center;
    justify-content:space-between
}

.mega-bottom a {
    display:flex;
    align-items:center;
    gap:9px;
    font-size:16px;
    font-weight:750;
    color:var(--primary)
}

.header-actions {
    display:flex;
    align-items:center;
    gap:12px
}

.header-phone {
    display:flex;
    align-items:center;
    gap:4px;
    font-size:14px;
    font-weight:700;
    line-height:1.25
}

.header-phone svg {
    color:var(--primary)
}

.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    border:0;
    border-radius:14px;
    min-height:45px;
    padding:0 23px;
    font-weight:700;
    font-size:14px;
    cursor:pointer;
    transition:.22s
}

.btn-primary {
    background:linear-gradient(135deg,var(--primary),#0684b7);
    color:#fff;
    box-shadow:0 8px 16px rgba(5,143,192,.19)
}

.btn-primary:hover {
    transform:translateY(-2px);
    box-shadow:0 12px 24px rgba(5,143,192,.27)
}

.btn-light {
    background:#e8f8fd;
    color:var(--ink)
}

.btn-line {
    background:transparent;
    color:var(--ink);
    border:1px solid var(--border)
}

.btn-soft {
    background:#dff4fb;
    color:var(--ink)
}

.btn-ghost {
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.32);
    color:#fff
}

.btn-whatsapp {
    background:var(--green);
    color:#fff
}

.btn-outline {
    background:transparent;
    border:1px solid rgba(255,255,255,.42);
    color:#fff
}

.btn.full {
    width:100%
}

.menu-btn {
    display:none;
    width:44px;
    height:44px;
    border:1px solid var(--border);
    background:var(--white);
    border-radius:14px;
    color:var(--ink);
    font-size:22px
}

.menu-close {
    display:none
}

.is-open .menu-open {
    display:none
}

.is-open .menu-close {
    display:block
}

.mobile-menu {
    display:none
}

.hero {
    position:relative;
    overflow:hidden
}

.hero,.hero__content {
    min-height:610px
}

.hero-slider {
    position:relative
}

.hero-slide {
    display:none;
    min-height:610px;
    background:linear-gradient(90deg,rgba(1,17,29,.86),rgba(1,17,29,.55),rgba(1,17,29,.16)),var(--slide-bg);
    background-size:cover;
    background-position:center
}

.hero-slide.is-active {
    display:block
}

.hero__content {
    display:flex;
    align-items:center
}

.hero-copy {
    width:min(660px,70vw);
    color:#fff
}

.hero-badge {
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:8px 16px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.30);
    background:rgba(255,255,255,.12);
    font-size:13px;
    font-weight:700
}

.hero-badge i {
    width:9px;
    height:9px;
    border-radius:50%;
    background:#1bd0c7
}

.hero h1,.hero h2 {
    font-size:clamp(38px,4.35vw,64px);
    font-weight:800;
    line-height:1.02;
    letter-spacing:-.045em;
    margin:24px 0 0
}

.hero em {
    font-style:normal;
    color:#28d6d0
}

.hero p {
    font-size:16.5px;
    max-width:620px;
    color:rgba(255,255,255,.86);
    line-height:1.65
}

.hero-buttons {
    display:flex;
    gap:13px;
    flex-wrap:wrap;
    margin-top:26px
}

.slider-dots {
    position:absolute;
    bottom:24px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:9px
}

.slider-dots button {
    border:0;
    width:24px;
    height:6px;
    border-radius:999px;
    background:rgba(255,255,255,.45)
}

.slider-dots .is-active {
    width:42px;
    background:#fff
}

.section {
    padding:84px 0
}

.section-head {
    text-align:center;
    max-width:720px;
    margin:0 auto 44px
}

.section-head.compact {
    margin-bottom:42px
}

.section-head span,.eyebrow {
    display:block;
    color:var(--primary);
    font-size:12px;
    font-weight:750;
    letter-spacing:.08em;
    margin-bottom:11px
}

.section-head h2 {
    font-size:clamp(26px,2.6vw,36px);
    font-weight:800;
    line-height:1.15;
    letter-spacing:-.04em;
    margin:0
}

.section-head p {
    color:var(--text);
    font-size:15px
}

.why-section,.faq-section,.faq-page {
    background:#eefdff
}

.why-grid,.service-grid,.ref-grid,.blog-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px
}

.info-card,
.service-card,
.service-list-card,
.ref-card,
.blog-card,
.side-card,
.price-card,
.summary-card,
.calc-card,
.feature-row article,
.stats-grid article,
.recent-card {
    background:var(--white);
    border:1px solid var(--border);
    border-radius:20px;
    box-shadow:var(--shadow-sm)
}

.info-card {
    padding:28px;
    min-height:154px
}

.info-card span,.service-icon,.round-icon {
    display:grid;
    place-items:center;
    width:49px;
    height:49px;
    border-radius:16px;
    background:var(--soft);
    color:var(--primary);
    font-size:23px
}

.info-card h3,.service-card h3,.service-list-card h3 {
    font-size:18px;
    font-weight:750;
    letter-spacing:-.02em;
    margin:18px 0 8px
}

.info-card p,.service-card p,.service-list-card p {
    color:var(--text);
    font-size:14.5px;
    line-height:1.62;
    margin:0
}

.service-grid.simple {
    grid-template-columns:repeat(3,1fr)
}

.service-card {
    display:flex;
    flex-direction:column;
    min-height:238px;
    padding:30px 28px;
    color:var(--ink);
    transition:.25s
}

.service-card:hover,.service-list-card:hover,.blog-card:hover,.ref-card:hover {
    transform:translateY(-5px);
    box-shadow:var(--shadow);
    border-color:#bce6f3
}

.service-card:hover .service-icon,.service-list-card:hover .service-icon {
    transform:translateY(-3px) scale(1.04);
    box-shadow:0 14px 24px rgba(7,142,194,.22)
}

.service-icon {
    background:linear-gradient(135deg,var(--primary),var(--primary-2));
    color:#fff;
    transition:.25s
}

.service-link,.text-link {
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:auto;
    padding-top:22px;
    color:var(--primary);
    font-weight:750
}

.service-link svg,.text-link svg {
    transition:.2s
}

.service-card:hover .service-link svg,.service-list-card:hover .text-link svg,.ref-card:hover .text-link svg,.blog-card:hover b svg {
    transform:translateX(4px)
}

.areas {
    padding:70px 0;
    background:linear-gradient(135deg,#078fbd,#09bcb7);
    color:#fff
}

.areas-inner {
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:70px;
    align-items:center
}

.areas-copy span {
    display:block;
    font-weight:750;
    font-size:12px;
    letter-spacing:.08em;
    color:#c8fbff
}

.areas-copy h2 {
    font-size:34px;
    font-weight:800;
    letter-spacing:-.04em;
    line-height:1.12;
    margin:11px 0
}

.areas-copy p {
    font-size:16px;
    max-width:540px;
    color:rgba(255,255,255,.88)
}

.area-list {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px
}

.area-list a {
    min-height:44px;
    border-radius:15px;
    background:rgba(255,255,255,.13);
    display:flex;
    align-items:center;
    gap:10px;
    padding:0 18px;
    font-size:14px;
    font-weight:700;
    color:#fff;
    border:1px solid rgba(255,255,255,.08);
    transition:.22s
}

.area-list a:hover {
    background:rgba(255,255,255,.22);
    transform:translateY(-3px);
    box-shadow:0 12px 24px rgba(0,80,105,.15)
}

.step-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:42px
}

.step-item {
    display:flex;
    align-items:flex-start;
    gap:16px
}

.step-item b {
    font-size:52px;
    font-weight:800;
    line-height:.9;
    letter-spacing:-.055em;
    color:var(--primary)
}

.step-item h3 {
    font-size:17px;
    font-weight:750;
    margin:0 0 6px
}

.step-item p {
    margin:0;
    color:var(--text)
}

.faq-list {
    max-width:730px;
    margin:auto;
    display:grid;
    gap:12px
}

.faq-list.wide {
    max-width:760px
}

.faq-item {
    background:#fff;
    border:1px solid var(--border);
    border-radius:15px;
    overflow:hidden
}

.faq-item button {
    width:100%;
    height:54px;
    border:0;
    background:#fff;
    padding:0 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    text-align:left;
    font-weight:750;
    color:var(--ink);
    cursor:pointer
}

.faq-item button span {
    transition:.2s;
    color:var(--text)
}

.faq-item p {
    display:none;
    margin:0;
    padding:0 20px 18px;
    color:var(--text);
    font-size:14px
}

.faq-item.is-open p {
    display:block
}

.faq-item.is-open button span {
    transform:rotate(180deg)
}

.quote-section {
    padding:84px 0;
    background:var(--bg)
}

.quote-card {
    display:grid;
    grid-template-columns:1fr 1fr;
    overflow:hidden;
    border-radius:22px;
    background:#fff;
    box-shadow:0 24px 60px rgba(10,31,46,.14)
}

.quote-info {
    padding:54px;
    background:linear-gradient(135deg,#0793bd,#0dbbb5);
    color:#fff
}

.quote-info h2 {
    font-size:30px;
    font-weight:800;
    margin:0 0 12px
}

.quote-info>p {
    font-size:16px;
    color:rgba(255,255,255,.9)
}

.contact-list {
    display:grid;
    gap:18px;
    margin:30px 0
}

.contact-list a {
    display:grid;
    grid-template-columns:42px 1fr;
    grid-template-areas:"icon small" "icon big";
    column-gap:14px;
    align-items:center
}

.contact-list span {
    grid-area:icon;
    width:42px;
    height:42px;
    border-radius:14px;
    display:grid;
    place-items:center;
    background:rgba(255,255,255,.16)
}

.contact-list small {
    grid-area:small;
    color:rgba(255,255,255,.68)
}

.contact-list b {
    grid-area:big;
    font-size:16px
}

.check-list {
    list-style:none;
    margin:26px 0 0;
    padding:0;
    display:grid;
    gap:8px;
    font-weight:650
}

.quote-form {
    padding:54px 48px;
    display:grid;
    gap:16px
}

.form-row {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px
}

.quote-form label {
    font-size:13.5px;
    font-weight:700
}

.quote-form input,.quote-form textarea,.calc-form input,.calc-form select,.order-card input {
    width:100%;
    height:42px;
    border:1px solid var(--border);
    border-radius:13px;
    padding:0 14px;
    font:inherit;
    color:var(--ink);
    background:#fff;
    outline:none;
    box-shadow:inset 0 1px 2px rgba(3,27,41,.04)
}

.quote-form textarea {
    height:96px;
    padding-top:12px;
    resize:vertical
}

.quote-form small {
    text-align:center;
    color:var(--muted)
}

.page-hero {
    padding:94px 0 90px;
    border-bottom:1px solid var(--border);
    background:var(--bg)
}

.page-hero .container {
    max-width:1160px
}

.breadcrumb {
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:22px;
    color:var(--muted);
    font-size:12px
}

.breadcrumb b {
    color:var(--ink);
    font-weight:650
}

.breadcrumb svg {
    font-size:10px
}

.page-hero h1 {
    font-size:clamp(34px,3.5vw,52px);
    max-width:720px;
    font-weight:800;
    letter-spacing:-.05em;
    line-height:1.08;
    margin:0
}

.page-hero p {
    max-width:700px;
    color:var(--text);
    font-size:18px;
    line-height:1.55
}

.inner-list {
    background:var(--bg)
}

.service-list-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px
}

.service-list-card {
    overflow:hidden;
    display:flex;
    flex-direction:column;
    transition:.25s
}

.service-photo {
    height:190px;
    background-size:cover;
    background-position:center;
    position:relative
}

.service-photo:before {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(0,120,160,.03),rgba(0,104,150,.16))
}

.service-photo .service-icon {
    position:absolute;
    left:24px;
    bottom:-25px
}

.photo-1 {
    background-image:
        linear-gradient(120deg, rgba(20,80,150,.85), rgba(25,180,190,.55)),
        url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=900&q=85')
}

.photo-2 {
    background-image:
        linear-gradient(120deg, rgba(2,102,146,.3), rgba(4,178,190,.12)),
        url('https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&w=900&q=85')
}

.photo-3 {
    background-image:
        linear-gradient(120deg, rgba(2,102,146,.3), rgba(4,178,190,.12)),
        url('https://images.unsplash.com/photo-1574391884720-bbc3740c59d1?auto=format&fit=crop&w=900&q=85')
}

.photo-4 {
    background-image:
        linear-gradient(120deg, rgba(2,102,146,.3), rgba(4,178,190,.12)),
        url('https://images.unsplash.com/photo-1563453392212-326f5e854473?auto=format&fit=crop&w=900&q=85')
}

.service-card-body {
    padding:42px 26px 26px;
    display:flex;
    flex-direction:column;
    min-height:205px
}

.inner-cta {
    text-align:center;
    padding:70px 0 20px
}

.inner-cta h2 {
    font-size:30px;
    letter-spacing:-.04em;
    margin:0 0 8px
}

.inner-cta p {
    color:var(--text)
}

.detail-layout {
    display:grid;
    grid-template-columns:minmax(0,1fr) 360px;
    gap:38px;
    align-items:start
}

.detail-image {
    height:420px;
    border-radius:22px;
    box-shadow:var(--shadow);
    position:relative;
    overflow:hidden;
    background-size:cover;
    background-position:center
}

.detail-image:after {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.16))
}

.detail-image .service-icon {
    position:absolute;
    left:22px;
    bottom:18px;
    background:#fff;
    color:var(--primary);
    z-index:2
}

.detail-image em {
    position:absolute;
    right:20px;
    bottom:21px;
    z-index:2;
    display:flex;
    align-items:center;
    gap:5px;
    background:#fff;
    border-radius:999px;
    padding:8px 14px;
    font-style:normal;
    font-weight:750;
    font-size:12px
}

.detail-main>h2 {
    font-size:30px;
    letter-spacing:-.04em;
    margin:30px 0 10px
}

.lead {
    font-size:17px;
    color:var(--text)
}

.advantage-box {
    border:1px solid var(--border);
    background:#f7fcfe;
    border-radius:20px;
    padding:24px;
    margin:28px 0
}

.advantage-box h3 {
    margin:0 0 16px
}

.adv-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px
}

.adv-grid span {
    display:flex;
    gap:8px;
    align-items:center;
    color:var(--text);
    font-weight:650
}

.process-list {
    display:grid;
    gap:18px
}

.process-list article {
    border:1px solid var(--border);
    border-radius:22px;
    padding:26px 30px;
    display:flex;
    align-items:center;
    gap:24px;
    background:rgba(255,255,255,.36)
}

.process-list b {
    width:56px;
    height:56px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:linear-gradient(135deg,var(--primary),var(--primary-2));
    color:white;
    font-size:24px
}

.process-list h3,.process-list p {
    margin:0
}

.process-list p {
    color:var(--text)
}

.call-banner {
    margin-top:30px;
    border-radius:28px;
    background:linear-gradient(135deg,#078fc0,#30c8c2);
    padding:52px;
    text-align:center;
    color:#fff
}

.call-banner h2 {
    font-size:34px;
    margin:0 0 7px
}

.detail-sidebar {
    position:sticky;
    top:96px;
    display:grid;
    gap:18px
}

.order-card {
    background:linear-gradient(135deg,#0794bd,#08bbb5);
    border-radius:22px;
    color:#fff;
    padding:28px;
    box-shadow:var(--shadow)
}

.order-card {
    text-align:center
}

.order-card label {
    text-align:left;
    display:block;
    background:rgba(255,255,255,.15);
    padding:14px;
    border-radius:16px;
    font-size:12px;
    font-weight:700
}

.order-card input {
    margin-top:7px
}

.total-line {
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin:16px 0
}

.side-card,.price-card {
    padding:26px
}

.side-card h3,.price-card h3,.recent-card h3 {
    font-size:15px;
    color:var(--muted);
    letter-spacing:.08em;
    margin:0 0 18px
}

.side-card a {
    display:grid;
    grid-template-columns:48px 1fr 20px;
    align-items:center;
    gap:14px;
    padding:14px 0
}

.side-card a span {
    width:48px;
    height:48px;
    display:grid;
    place-items:center;
    border-radius:16px;
    background:var(--soft);
    color:var(--primary)
}

.side-card a b {
    font-weight:700
}

.price-card strong {
    display:block;
    font-size:38px;
    color:var(--primary);
    margin-bottom:20px
}

.calc-layout {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
    max-width:980px
}

.calc-card {
    overflow:hidden
}

.calc-head {
    display:flex;
    align-items:center;
    gap:16px;
    padding:25px 28px;
    background:linear-gradient(135deg,#0794bd,#08bbb5);
    color:white
}

.calc-head span {
    width:44px;
    height:44px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:rgba(255,255,255,.18);
    font-size:24px
}

.calc-head h2 {
    font-size:20px;
    margin:0
}

.calc-head p {
    margin:0;
    color:rgba(255,255,255,.86)
}

.calc-form {
    padding:28px;
    display:grid;
    grid-template-columns:1fr 130px 44px;
    gap:12px;
    align-items:end
}

.calc-form label {
    font-size:13px;
    font-weight:700
}

.add-btn {
    width:44px;
    height:44px;
    border-radius:12px;
    border:0;
    background:var(--primary);
    color:white;
    font-size:20px;
    cursor:pointer
}

.calc-note {
    margin:0 28px 18px;
    background:#fff6e9;
    border:1px solid #ffd7a3;
    border-radius:15px;
    padding:14px;
    color:#2c3340;
    font-size:13px
}

.selected-box {
    margin:0 28px 28px;
    border:1px dashed var(--border);
    border-radius:18px;
    padding:18px
}

.selected-top {
    display:flex;
    justify-content:space-between;
    margin-bottom:15px
}

.selected-top span {
    color:var(--muted)
}

.empty-state {
    text-align:center;
    color:var(--muted);
    padding:35px
}

.empty-state span {
    margin:auto auto 8px;
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--soft)
}

.selected-service {
    display:grid;
    grid-template-columns:44px 1fr auto 28px;
    align-items:center;
    gap:12px;
    background:#effafe;
    border-radius:16px;
    padding:13px;
    margin-top:10px
}

.selected-service span {
    width:40px;
    height:40px;
    border-radius:14px;
    display:grid;
    place-items:center;
    background:#d9f4fb;
    color:var(--primary)
}

.selected-service h4,.selected-service small {
    margin:0
}

.selected-service small {
    color:var(--text)
}

.selected-service button {
    border:0;
    background:transparent;
    color:var(--muted);
    font-size:18px
}

.summary-card {
    padding:0 0 24px;
    overflow:hidden
}

.summary-card h2 {
    margin:0;
    padding:27px 28px;
    background:#e4f7fd;
    font-size:20px
}

.summary-card>div {
    display:flex;
    justify-content:space-between;
    padding:0 28px;
    margin:20px 0
}

.summary-card hr {
    border:0;
    border-top:1px solid var(--border);
    margin:18px 28px
}

.summary-card .total strong {
    font-size:34px;
    color:var(--primary)
}

.summary-card .btn {
    margin:0 28px 13px;
    width:calc(100% - 56px)
}

.summary-card p {
    margin:15px 28px 0;
    border:1px solid #bce6f3;
    background:#f0fbff;
    border-radius:13px;
    padding:14px;
    color:var(--text)
}

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

.feature-row article {
    display:flex;
    align-items:center;
    gap:16px;
    padding:22px
}

.feature-row article>svg {
    width:48px;
    height:48px;
    padding:12px;
    border-radius:15px;
    background:var(--soft);
    color:var(--primary)
}

.feature-row h3,.feature-row p {
    margin:0
}

.feature-row p {
    color:var(--text)
}

.stats-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px
}

.stats-grid article {
    text-align:center;
    padding:28px
}

.stats-grid svg {
    font-size:24px;
    color:var(--primary);
    background:var(--soft);
    width:48px;
    height:48px;
    padding:12px;
    border-radius:16px
}

.stats-grid strong {
    display:block;
    margin-top:13px;
    font-size:29px;
    color:var(--primary)
}

.stats-grid span {
    color:var(--text)
}

.about-content {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    margin-top:60px
}

.about-content h2 {
    font-size:28px
}

.about-content p {
    color:var(--text);
    font-size:16px
}

.value-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    align-content:start
}

.value-grid span {
    display:grid;
    place-items:center;
    height:62px;
    background:white;
    border:1px solid var(--border);
    border-radius:16px;
    box-shadow:var(--shadow-sm);
    font-weight:750
}

.ref-card {
    overflow:hidden;
    padding-bottom:26px;
    transition:.25s
}

.ref-card>div {
    height:190px;
    display:grid;
    place-items:center;
    background:linear-gradient(135deg,#058fc0,#07bcb7);
    font-size:56px;
    color:rgba(255,255,255,.55)
}

.ref-card small,.ref-card h3,.ref-card p,.ref-card .text-link {
    margin-left:24px;
    margin-right:24px
}

.ref-card small {
    display:flex;
    gap:7px;
    color:var(--muted);
    margin-top:20px
}

.ref-card h3 {
    margin-top:10px;
    margin-bottom:7px
}

.ref-card p {
    color:var(--text)
}

.blog-chips {
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:34px
}

.blog-chips button {
    height:34px;
    border:1px solid var(--border);
    background:#e6f7fc;
    border-radius:999px;
    padding:0 18px;
    font-weight:700;
    color:var(--ink)
}

.blog-grid {
    align-items:start
}

.blog-card {
    overflow:hidden;
    transition:.25s
}

.blog-photo {
    height:225px;
    background-size:cover;
    background-position:center
}

.photo-home {
    background-image:url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=900&q=85')
}

.photo-stair {
    background-image:url('https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&w=900&q=85')
}

.photo-window {
    background-image:url('https://images.unsplash.com/photo-1574391884720-bbc3740c59d1?auto=format&fit=crop&w=900&q=85')
}

.photo-machine {
    background-image:url('https://images.unsplash.com/photo-1563453392212-326f5e854473?auto=format&fit=crop&w=900&q=85')
}

.blog-body {
    padding:26px
}

.blog-body span {
    display:inline-flex;
    border-radius:999px;
    background:var(--soft);
    color:var(--primary);
    padding:6px 12px;
    font-size:12px;
    font-weight:750
}

.blog-body h3 {
    font-size:20px;
    line-height:1.25;
    margin:17px 0 10px
}

.blog-body p {
    color:var(--text);
    margin:0 0 14px
}

.blog-body small {
    color:var(--muted)
}

.blog-body b {
    display:flex;
    align-items:center;
    gap:8px;
    color:var(--primary);
    margin-top:20px
}

.blog-hero {
    min-height:470px;
    background-size:cover;
    background-position:center
}

.blog-hero-overlay {
    min-height:470px;
    background:linear-gradient(90deg,rgba(0,18,30,.82),rgba(0,18,30,.52),rgba(0,18,30,.18));
    display:flex;
    align-items:end;
    padding:0 0 70px
}

.blog-hero .container {
    max-width:820px;
    margin-left:auto;
    margin-right:auto;
    color:#fff
}

.blog-hero span {
    display:block;
    margin-bottom:12px
}

.blog-hero em {
    font-style:normal;
    background:var(--primary);
    border-radius:999px;
    padding:7px 12px;
    font-size:12px;
    font-weight:750
}

.blog-hero h1 {
    font-size:clamp(36px,4vw,54px);
    line-height:1.12;
    letter-spacing:-.05em
}

.blog-hero p {
    color:rgba(255,255,255,.82)
}

.article-layout {
    display:grid;
    grid-template-columns:minmax(0,1fr) 320px;
    gap:44px
}

.article-content {
    font-size:17px;
    color:#102535
}

.article-content .lead {
    font-size:19px
}

.article-content h2 {
    font-size:24px;
    margin-top:36px
}

.article-content p,.article-content li {
    color:#243d50
}

.article-sidebar {
    position:sticky;
    top:96px;
    align-self:start;
    display:grid;
    gap:18px
}

.offer-mini {
    background:linear-gradient(135deg,#0794bd,#08bbb5);
    color:white;
    padding:24px;
    border-radius:20px
}

.offer-mini h3,.offer-mini p {
    margin-top:0
}

.recent-card {
    padding:24px
}

.recent-card a {
    display:grid;
    grid-template-columns:58px 1fr;
    gap:12px;
    margin-top:12px
}

.mini-photo {
    grid-row:span 2;
    width:58px;
    height:58px;
    border-radius:12px;
    background-size:cover;
    background-position:center
}

.recent-card b {
    font-size:14px
}

.recent-card small {
    color:var(--muted)
}

.quick-contact {
    position:fixed;
    right:22px;
    top:50%;
    transform:translateY(-50%);
    z-index:999;
    display:grid;
    gap:11px
}

.quick-item {
    width:54px;
    height:54px;
    border-radius:999px;
    background:#f9fdff;
    border:1px solid var(--border);
    box-shadow:var(--shadow-sm);
    display:flex;
    align-items:center;
    gap:10px;
    padding:5px;
    overflow:hidden;
    transition:.25s
}

.quick-item span {
    width:42px;
    height:42px;
    flex:0 0 42px;
    border-radius:50%;
    display:grid;
    place-items:center;
    color:#fff;
    font-size:19px
}

.quick-item b {
    white-space:nowrap;
    font-size:14px;
    font-weight:750;
    opacity:0;
    transition:.15s;
    color:var(--ink)
}

.quick-item:hover {
    width:150px
}

.quick-item:hover b {
    opacity:1
}

.quick-item.blue span {
    background:var(--primary)
}

.quick-item.green span {
    background:var(--green)
}

.quick-item.pink span {
    background:var(--pink)
}

.quick-item.orange span {
    background:var(--orange)
}

.quick-item.teal span {
    background:var(--teal)
}

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

.footer-grid {
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr 1.2fr;
    gap:50px;
    padding:56px 0
}

.footer-brand {
    display:flex;
    align-items:center;
    gap:10px;
    font-size:18px;
    font-weight:800
}

.site-footer p,.site-footer a:not(.footer-brand) {
    color:var(--text);
    font-size:14px
}

.site-footer h3 {
    font-size:15px;
    margin:0 0 15px
}

.site-footer a:not(.footer-brand) {
    display:flex;
    align-items:center;
    gap:8px;
    margin:9px 0
}

.site-footer a:hover {
    color:var(--primary)
}

.footer-bottom {
    text-align:center;
    color:var(--muted);
    font-size:12.5px;
    border-top:1px solid var(--border);
    padding:18px
}

.inner-list,.detail-section,.calc-section,.about-section,.blog-list-section,.article-section {
    background:var(--bg)
}

 @media(max-width:1180px) {
    .container,.container-wide {
    width:min(980px,calc(100% - 34px))
}

.main-nav,.header-actions {
    display:none
}

.brand {
    min-width:auto
}

.menu-btn {
    display:grid;
    place-items:center
}

.mobile-menu {
    display:grid;
    gap:7px;
    position:fixed;
    top:var(--header-h);
    left:0;
    right:0;
    max-height:calc(100vh - var(--header-h));
    overflow:auto;
    padding:16px 22px 28px;
    background:#fff;
    border-bottom:1px solid var(--border);
    box-shadow:var(--shadow);
    transform:translateY(-10px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.22s
}

.site-header.is-open .mobile-menu {
    transform:translateY(0);
    opacity:1;
    visibility:visible;
    pointer-events:auto
}

.mobile-menu a,.mobile-menu summary {
    min-height:46px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-radius:13px;
    padding:0 14px;
    font-weight:750;
    list-style:none
}

.mobile-menu a:hover,.mobile-menu summary:hover,.mobile-menu .active {
    background:var(--soft);
    color:var(--primary)
}

.mobile-menu details a {
    margin-left:14px;
    color:#526678
}

.mobile-menu summary::-webkit-details-marker {
    display:none
}

.mobile-menu summary svg {
    transition:.2s
}

.mobile-menu details[open] summary svg {
    transform:rotate(180deg)
}

.mobile-cta {
    background:linear-gradient(135deg,var(--primary),var(--primary-2))!important;
    color:#fff!important;
    justify-content:center!important
}

.area-list {
    grid-template-columns:repeat(4,1fr)
}

.mega-menu,.dropdown-menu {
    display:none
}

}

 @media(max-width:992px) {
    .hero,.hero-slide,.hero__content {
    min-height:570px
}

.hero-copy {
    width:100%
}

.why-grid,.service-grid.simple,.service-list-grid,.ref-grid,.blog-grid,.step-grid,.footer-grid,.feature-row,.stats-grid {
    grid-template-columns:1fr 1fr
}

.areas-inner,.about-content,.quote-card,.detail-layout,.calc-layout,.article-layout {
    grid-template-columns:1fr
}

.detail-sidebar,.article-sidebar {
    position:static
}

.detail-image {
    height:360px
}

.area-list {
    grid-template-columns:1fr 1fr
}

.quick-contact {
    right:14px
}

.quick-item {
    width:48px;
    height:48px
}

.quick-item span {
    width:38px;
    height:38px;
    flex-basis:38px
}

.quick-item:hover {
    width:138px
}

.page-hero {
    padding:76px 0
}

.calc-layout {
    max-width:760px
}

.article-sidebar {
    max-width:420px
}

.blog-hero .container {
    max-width:720px
}

}

 @media(max-width:700px) {
    :root {
    --header-h:70px
}

body {
    font-size:14.5px
}

.container,.container-wide {
    width:calc(100% - 28px)
}

.brand__mark {
    width:43px;
    height:43px
}

.brand__text strong {
    font-size:14px
}

.brand__text small {
    display:none
}

.hero,.hero-slide,.hero__content {
    min-height:540px
}

.hero h1,.hero h2 {
    font-size:clamp(34px,9.5vw,42px)
}

.hero p {
    font-size:15px
}

.hero-buttons .btn {
    width:100%
}

.section {
    padding:64px 0
}

.why-grid,.service-grid.simple,.service-list-grid,.ref-grid,.blog-grid,.step-grid,.footer-grid,.feature-row,.stats-grid {
    grid-template-columns:1fr
}

.page-hero h1 {
    font-size:34px
}

.page-hero p {
    font-size:16px
}

.areas {
    padding:56px 0
}

.areas-copy h2 {
    font-size:30px
}

.area-list {
    grid-template-columns:1fr
}

.quote-info,.quote-form {
    padding:32px 24px
}

.form-row,.adv-grid,.calc-form {
    grid-template-columns:1fr
}

.add-btn {
    width:100%
}

.service-photo,.blog-photo,.ref-card>div {
    height:180px
}

.detail-image {
    height:270px
}

.process-list article {
    padding:22px;
    gap:15px
}

.call-banner {
    padding:34px 18px
}

.call-banner h2 {
    font-size:26px
}

.calc-head {
    padding:22px
}

.summary-card .total strong {
    font-size:30px
}

.article-content {
    font-size:15.5px
}

.quick-contact {
    top:auto;
    bottom:14px;
    left:50%;
    right:auto;
    transform:translateX(-50%);
    display:flex
}

.quick-item:hover {
    width:48px
}

.quick-item b {
    display:none
}

.site-footer {
    padding-bottom:70px
}

}

/* v4: Blog detay teklif kutusu ve hizmet detay sipariş kartı düzenlemeleri */
 .offer-mini {
     padding:32px 34px 30px!important;
     border-radius:28px!important;
     background:linear-gradient(135deg,#078fc0 0%,#08bdb6 100%)!important;
     box-shadow:0 18px 42px rgba(7,143,192,.18)!important;
}

 .offer-mini h3 {
     font-size:22px!important;
     line-height:1.2!important;
     margin:0 0 8px!important;
     font-weight:800!important;
     letter-spacing:-.03em!important;
}

 .offer-mini p {
     margin:0 0 20px!important;
     color:rgba(255,255,255,.90)!important;
     font-size:15px!important;
}

 .offer-mini .btn {
     min-height:50px!important;
     border-radius:15px!important;
     font-size:15px!important;
     font-weight:800!important;
     margin-top:0!important;
}

 .offer-mini .btn-light {
     background:#e8f8fd!important;
     color:#061827!important;
}

 .offer-mini .btn-whatsapp {
     margin-top:12px!important;
     background:#08bd75!important;
     color:#fff!important;
}

 .offer-phone {
     display:flex!important;
     align-items:center!important;
     justify-content:center!important;
     gap:10px!important;
     width:100%!important;
     margin:15px 0 12px!important;
     color:#fff!important;
     font-size:17px!important;
     font-weight:800!important;
     letter-spacing:.01em!important;
}

 .offer-phone svg {
    font-size:20px!important;
}

 .order-card {
     padding:30px 26px 24px!important;
     border-radius:22px!important;
     background:linear-gradient(135deg,#0794bd 0%,#08bbb5 100%)!important;
}

 .order-card .round-icon {
     margin:0 auto 14px!important;
     background:rgba(255,255,255,.17)!important;
     color:#fff!important;
}

 .order-card h3 {
     margin:0 0 6px!important;
     font-size:19px!important;
     font-weight:800!important;
     letter-spacing:-.02em!important;
}

 .order-card p {
     margin:0 0 18px!important;
     color:rgba(255,255,255,.88)!important;
}

 .order-card label {
     border-radius:16px 16px 0 0!important;
     margin:0!important;
     background:rgba(255,255,255,.15)!important;
}

 .order-card input {
     width:100%!important;
     height:38px!important;
     border-radius:10px!important;
     border:0!important;
     padding:0 12px!important;
     background:#fff!important;
     color:#061827!important;
     font-weight:700!important;
     outline:none!important;
}

 .order-card .total-line {
     margin:0 0 16px!important;
     padding:0 14px 14px!important;
     min-height:42px!important;
     border-radius:0 0 16px 16px!important;
     background:rgba(255,255,255,.15)!important;
}

 .order-card .total-line span {
    color:rgba(255,255,255,.86)!important;
    font-weight:700!important;
}

 .order-card .total-line b {
    font-size:18px!important;
    color:#fff!important;
    font-weight:900!important;
}

 .order-card .btn {
     margin-top:12px!important;
     min-height:45px!important;
     border-radius:999px!important;
     font-size:14px!important;
     font-weight:800!important;
}

 .order-card .btn-light {
     background:#fff!important;
     color:#078fc0!important;
}

 .order-card .btn-outline {
     border-color:rgba(255,255,255,.38)!important;
     color:#fff!important;
     background:transparent!important;
}

 @media(max-width:700px) {
     .offer-mini {
    padding:28px 24px!important;
    border-radius:24px!important;
}

 .offer-phone {
    font-size:15px!important;
}

}

/* v5: Anasayfa slider altı hakkımızda alanı */
 .home-about-section {
     background:linear-gradient(180deg,#f6fcfe 0%,#f3fbfd 100%);
     padding:86px 0 74px;
     border-bottom:1px solid var(--border);
}

 .home-about-grid {
     display:grid;
     grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);
     gap:64px;
     align-items:center;
}

 .home-about-visual {
    position:relative;
}

 .home-about-photo {
     position:relative;
     min-height:430px;
     border-radius:28px;
     overflow:hidden;
     background:var(--about-bg) center/cover no-repeat;
     box-shadow:0 24px 56px rgba(8,36,52,.14);
     isolation:isolate;
}

 .home-about-photo:before {
     content:"";
     position:absolute;
     inset:0;
     background:linear-gradient(135deg,rgba(5,143,192,.38),rgba(7,24,42,.08));
     z-index:1;
}

 .home-about-shade {
     position:absolute;
     inset:auto 0 0 0;
     height:46%;
     background:linear-gradient(180deg,rgba(4,20,34,0),rgba(4,20,34,.20));
     z-index:2;
}

 .home-about-badge {
     position:absolute;
     left:30px;
     bottom:30px;
     z-index:3;
     width:128px;
     min-height:112px;
     border-radius:20px;
     padding:16px 18px;
     color:#fff;
     background:linear-gradient(135deg,#078fc0,#08bbb5);
     box-shadow:0 16px 34px rgba(3,104,143,.28);
}

 .home-about-badge strong {
     display:block;
     font-size:46px;
     line-height:.88;
     letter-spacing:-.055em;
     font-weight:800;
}

 .home-about-badge span {
     display:block;
     margin-top:8px;
     font-size:14px;
     line-height:1.15;
     font-weight:750;
}

 .home-about-copy {
    max-width:610px;
}

 .about-eyebrow {
     position:relative;
     display:inline-flex;
     align-items:center;
     gap:12px;
     margin-bottom:12px;
     color:var(--primary);
     font-size:12px;
     font-weight:800;
     letter-spacing:.14em;
}

 .about-eyebrow:before {
     content:"";
     width:44px;
     height:2px;
     border-radius:999px;
     background:linear-gradient(90deg,var(--primary),var(--primary-2));
}

 .home-about-copy h2 {
     margin:0 0 20px;
     max-width:620px;
     font-size:clamp(30px,3.2vw,44px);
     line-height:1.08;
     letter-spacing:-.05em;
     font-weight:800;
}

 .home-about-copy>p {
     margin:0 0 28px;
     color:var(--text);
     font-size:16px;
     line-height:1.78;
     font-weight:600;
}

 .about-highlight {
     position:relative;
     padding:22px 26px 22px 30px;
     margin-bottom:24px;
     border-radius:20px;
     background:#fff;
     border:1px solid var(--border);
     box-shadow:var(--shadow-sm);
     overflow:hidden;
}

 .about-highlight:before {
     content:"";
     position:absolute;
     left:0;
     top:20px;
     bottom:20px;
     width:5px;
     border-radius:0 999px 999px 0;
     background:linear-gradient(180deg,var(--primary),var(--primary-2));
}

 .about-highlight h3 {
     margin:0 0 8px;
     font-size:19px;
     line-height:1.18;
     letter-spacing:-.025em;
     font-weight:800;
}

 .about-highlight p {
     margin:0;
     color:var(--text);
     font-size:15px;
     line-height:1.55;
     font-weight:600;
}

 .about-mini-grid {
     display:grid;
     grid-template-columns:1fr 1fr;
     gap:16px;
     margin-bottom:26px;
}

 .about-mini-grid div {
     min-height:76px;
     display:flex;
     align-items:center;
     gap:16px;
     padding:16px 18px;
     border-radius:18px;
     background:#fff;
     border:1px solid var(--border);
     box-shadow:0 10px 24px rgba(9,34,51,.06);
     transition:.22s;
}

 .about-mini-grid div:hover {
     transform:translateY(-3px);
     box-shadow:var(--shadow-sm);
     border-color:#bce6f3;
}

 .about-mini-grid span {
     width:42px;
     height:42px;
     flex:0 0 42px;
     display:grid;
     place-items:center;
     border-radius:13px;
     color:#fff;
     background:linear-gradient(135deg,var(--primary),var(--primary-2));
     font-size:18px;
}

 .about-mini-grid b {
     font-size:16px;
     font-weight:800;
     letter-spacing:-.02em;
}

 .about-btn {
    min-width:166px;
}

 @media(max-width:992px) {
     .home-about-grid {
    grid-template-columns:1fr;
    gap:38px;
}

 .home-about-copy {
    max-width:none;
}

 .home-about-photo {
    min-height:380px;
}

}

 @media(max-width:700px) {
     .home-about-section {
    padding:60px 0 56px;
}

 .home-about-photo {
    min-height:310px;
    border-radius:22px;
}

 .home-about-badge {
    left:18px;
    bottom:18px;
    width:112px;
    min-height:98px;
    border-radius:17px;
}

 .home-about-badge strong {
    font-size:38px;
}

 .home-about-copy h2 {
    font-size:31px;
}

 .home-about-copy>p {
    font-size:14.5px;
    line-height:1.7;
}

 .about-highlight {
    padding:20px 20px 20px 24px;
}

 .about-mini-grid {
    grid-template-columns:1fr;
}

 .about-btn {
    width:100%;
}

}

/* V2 dynamic header/footer image logo support */
 .brand--image  {
     min-width: 310px;
}

 .brand__logo  {
     display: block;
     width: auto;
     max-width: 315px;
     max-height: 58px;
     object-fit: contain;
}

 .footer-brand__logo  {
     display: block;
     width: auto;
     max-width: 230px;
     max-height: 64px;
     object-fit: contain;
}

 .footer-socials  {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin-top: 18px;
}

 .footer-socials a  {
     width: 36px;
     height: 36px;
     display: grid !important;
     place-items: center;
     margin: 0 !important;
     border-radius: 12px;
     background: #dff4fb;
     color: var(--primary) !important;
}

 @media (max-width: 700px)  {
     .brand--image  {
     min-width: 0;
     max-width: 230px;
}

 .brand__logo  {
     max-width: 220px;
     max-height: 52px;
}

}
