:root {
    --bg: #f6f7fb;
    --white: #ffffff;
    --black: #0f1115;
    --dark-2: #171a20;
    --text: #1a1d24;
    --muted: #68707f;
    --line: #e7eaf0;
    --red: #d90f18;
    --red-dark: #b10008;
    --yellow: #f4c400;
    --yellow-soft: #fff5c9;
    --shadow: 0 16px 45px rgba(15, 17, 21, 0.08);
    --radius: 22px;
    --container: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    max-width: 100%;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.topbar {
    background: var(--black);
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar a {
    color: var(--yellow);
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 17, 21, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.navbar {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

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

.brand img {
    width: 150px;
    height: auto;
    max-height: 74px;
    object-fit: contain;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.brand-text strong {
    display: block;
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
}

.brand-text span {
    display: block;
    color: rgba(255,255,255,0.72);
    font-size: 12px;
    margin-top: 2px;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    font-weight: 700;
    transition: 0.2s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--yellow);
}

.language-switcher {
    display: flex;
    gap: 8px;
}

.lang-btn {
    min-width: 42px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.18);
    background: transparent;
    color: var(--white);
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
}

.hero-section {
    padding: 48px 0 28px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
    align-items: center;
}

.hero-content {
    padding: 18px 0;
}

.section-badge,
.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow-soft);
    color: var(--black);
    border: 1px solid rgba(244, 196, 0, 0.35);
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.2px;
    margin-bottom: 18px;
}

.section-kicker {
    background: transparent;
    border: none;
    padding: 0;
    color: var(--red);
    letter-spacing: 1px;
}

.hero-content h1,
.page-hero h1 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.04;
    letter-spacing: -1.8px;
    margin-bottom: 20px;
    max-width: 760px;
}

.hero-text,
.page-hero p,
.section-heading p,
.feature-card p,
.product-card p,
.product-detail-card p,
.compare-card p,
.step-card p,
.footer-brand p,
.gallery-card p,
.contact-note-box p,
.contact-item p {
    color: var(--muted);
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
    transition: 0.25s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(180deg, #ef1a24, var(--red));
    color: var(--white);
    box-shadow: 0 10px 24px rgba(217, 15, 24, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #ff2934, var(--red-dark));
}

.btn-secondary {
    background: var(--white);
    color: var(--text);
    border-color: var(--line);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: #fafafa;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.hero-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px;
    box-shadow: var(--shadow);
}

.hero-point span {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(217, 15, 24, 0.1);
    color: var(--red);
    font-weight: 900;
    flex-shrink: 0;
}

.hero-point p {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
}

.hero-card {
    background: linear-gradient(145deg, #11141a, #1c2028);
    color: var(--white);
    border-radius: 30px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(15, 17, 21, 0.18);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(244, 196, 0, 0.08);
    top: -40px;
    right: -60px;
}

.hero-card-top {
    position: relative;
    z-index: 1;
}

.hero-card-logo {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92));
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 18px;
}

.hero-card-logo img {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
}

.hero-card-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.mini-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    font-weight: 700;
    color: #f6f7fb;
}

.hero-info-list {
    display: grid;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.hero-info-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 16px;
}

.hero-info-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
}

.hero-info-item p {
    color: rgba(255,255,255,0.76);
    font-size: 14px;
}

.hero-service-area {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(244,196,0,0.18), rgba(244,196,0,0.06));
    border: 1px solid rgba(244,196,0,0.16);
    position: relative;
    z-index: 1;
}

.hero-service-area span {
    display: block;
    color: rgba(255,255,255,0.76);
    font-size: 13px;
    margin-bottom: 4px;
}

.hero-service-area strong {
    font-size: 19px;
    color: var(--white);
}

.stats-section {
    padding: 18px 0 34px;
}

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

.stat-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.stat-card strong {
    display: block;
    font-size: 24px;
    color: var(--black);
    margin-bottom: 8px;
}

.stat-card span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.section,
.page-hero {
    padding: 84px 0;
}

.page-hero {
    padding-bottom: 24px;
}

.section-alt {
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.65));
}

.no-top-padding {
    padding-top: 0;
}

.section-heading {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 40px;
}

.section-heading h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    margin-bottom: 14px;
    letter-spacing: -1.2px;
}

.cards-grid {
    display: grid;
    gap: 22px;
}

.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

.two-cols {
    grid-template-columns: repeat(2, 1fr);
}

.four-cols {
    grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.product-card,
.product-detail-card,
.step-card,
.compare-card,
.gallery-card,
.contact-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
}

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffe36f, #f4c400);
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.feature-card h3,
.product-card h3,
.product-detail-card h2,
.step-card h3,
.compare-card h3,
.gallery-card h3,
.contact-panel h2 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.product-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--yellow-soft);
    color: var(--black);
    border: 1px solid rgba(244,196,0,0.32);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
}

.featured-card {
    border: 1px solid rgba(217,15,24,0.18);
    box-shadow: 0 16px 45px rgba(217, 15, 24, 0.08);
}

.feature-list {
    list-style: none;
    margin: 18px 0 20px;
    display: grid;
    gap: 10px;
}

.feature-list li {
    position: relative;
    padding-left: 26px;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--red);
    font-weight: 900;
}

.large-list {
    margin-bottom: 24px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-weight: 800;
}

.card-link::after {
    content: "→";
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--black);
    color: var(--yellow);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 18px;
}

.compare-card .btn {
    margin-top: 18px;
}

.contact-note-box {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.22);
    border-radius: 22px;
    padding: 18px 18px 16px;
    margin-top: 22px;
}

.dark-panel .contact-note-box strong {
    display: block;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.dark-panel .contact-note-box p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.dark-panel .contact-note-box .feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dark-panel .contact-note-box .feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    font-size: 16px;
}

.dark-panel .contact-note-box .feature-list li:last-child {
    margin-bottom: 0;
}

.dark-panel .contact-note-box .feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 800;
    color: #ff2b2b;
}

.cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, #070b14 0%, #111827 55%, #1a2333 100%);
    border-radius: 30px;
    padding: 36px 38px;
    overflow: hidden;
}

.cta-content {
    flex: 1 1 auto;
    min-width: 0;
}

.cta-content h2 {
    margin: 10px 0 12px;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.08;
}

.cta-content p {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.7;
}

.cta-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cta-box .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    min-height: 58px;
    padding: 16px 28px;
    border-radius: 18px;
    white-space: nowrap;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 24px;
    }

    .cta-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .cta-box .btn {
        min-width: 0;
        width: auto;
    }
}

@media (max-width: 767px) {
    .contact-panel {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .contact-item {
        padding: 16px;
        border-radius: 18px;
    }

    .cta-content h2 {
        font-size: 34px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-box .btn {
        width: 100%;
    }
}

.service-box,
.contact-note-box {
    margin-top: 20px;
    border-radius: 18px;
    padding: 18px;
    background: rgba(244,196,0,0.08);
    border: 1px solid rgba(244,196,0,0.25);
}

.service-box span,
.contact-note-box strong {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 6px;
}

.service-box strong {
    font-size: 20px;
}

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

.gallery-card {
    text-align: center;
}

.gallery-image-placeholder {
    height: 220px;
    border-radius: 18px;
    border: 2px dashed #d9dde6;
    background: linear-gradient(180deg, #fbfcff, #f1f4f8);
    display: grid;
    place-items: center;
    font-size: 48px;
    font-weight: 900;
    color: #c5cbd6;
    margin-bottom: 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: stretch;
}

.contact-panel {
    background: #ffffff;
    border: 1px solid #d9dde5;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(15, 17, 21, 0.06);
}

.dark-panel {
    background: linear-gradient(135deg, #070b14 0%, #111827 55%, #1a2333 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.dark-panel h2,
.dark-panel p,
.dark-panel span,
.dark-panel strong,
.dark-panel li {
    color: #ffffff;
}

.contact-items {
    display: grid;
    gap: 14px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.contact-item {
    background: #f4f6fa;
    border: 1px solid #d9dde5;
    border-radius: 22px;
    padding: 18px 20px;
}

.contact-item span {
    display: block;
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 8px;
}

.contact-item a,
.contact-item p {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    word-break: break-word;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
}

.cta-box {
    background: linear-gradient(135deg, #101318, #232a36);
    color: var(--white);
    border-radius: 30px;
    padding: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    box-shadow: 0 24px 60px rgba(15, 17, 21, 0.16);
}

.cta-box h2 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    margin-bottom: 10px;
}

.cta-box p {
    color: rgba(255,255,255,0.78);
    max-width: 700px;
}

.site-footer {
    background: #0d1015;
    color: rgba(255,255,255,0.88);
    margin-top: 84px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
    gap: 24px;
    padding: 52px 0 34px;
}

.footer-logo-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-logo-row img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.footer-logo-row strong {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--white);
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-col a,
.footer-col li {
    color: rgba(255,255,255,0.76);
    font-size: 15px;
}

.footer-col a:hover {
    color: var(--yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0 26px;
    text-align: center;
    color: rgba(255,255,255,0.66);
    font-size: 14px;
}

@media (max-width: 1100px) {
    .hero-grid,
    .stats-grid,
    .three-cols,
    .four-cols,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .nav-panel {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        flex-direction: column;
        align-items: stretch;
        background: #11151b;
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 20px;
        padding: 18px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.18);
        display: none;
    }

    .nav-panel.show {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .language-switcher {
        justify-content: flex-start;
        padding-top: 4px;
    }

    .two-cols,
    .three-cols,
    .four-cols,
    .stats-grid,
    .gallery-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .topbar-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 8px 0;
        min-height: auto;
    }

    .navbar {
        min-height: 78px;
    }

    .brand img {
        width: 64px;
        height: 64px;
    }

    .brand-text strong {
        font-size: 16px;
    }

    .brand-text span {
        font-size: 11px;
    }

    .hero-section {
        padding-top: 28px;
    }

    .section,
    .page-hero {
        padding: 68px 0;
    }

    .feature-card,
    .product-card,
    .product-detail-card,
    .step-card,
    .compare-card,
    .gallery-card,
    .contact-panel,
    .hero-card,
    .cta-box {
        padding: 22px;
    }

    .btn {
        width: 100%;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-content h1,
    .page-hero h1 {
        letter-spacing: -1px;
    }
}

.gallery-hero {
    padding-bottom: 36px;
}

.gallery-section {
    padding-top: 48px;
}

.gallery-category {
    margin-bottom: 78px;
}

.gallery-category:last-child {
    margin-bottom: 0;
}

.gallery-category-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.gallery-category-heading h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin-bottom: 12px;
}

.gallery-category-heading p {
    color: var(--muted);
    font-size: 17px;
}

.real-gallery .gallery-card {
    padding: 0;
    overflow: hidden;
    text-align: left;
    transition: 0.25s ease;
}

.real-gallery .gallery-card:hover {
    transform: translateY(-5px);
}

.real-gallery .gallery-card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
}

.real-gallery .gallery-card h3 {
    padding: 18px 20px 22px;
    font-size: 17px;
    line-height: 1.35;
    margin: 0;
}

@media (max-width: 640px) {
    .gallery-category {
        margin-bottom: 56px;
    }

    .real-gallery .gallery-card img {
        height: 230px;
    }
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.developer-credit {
    font-size: 14px;
    color: rgba(255,255,255,0.62);
}

.developer-credit a {
    color: var(--yellow);
    font-weight: 700;
}

.developer-credit a:hover {
    color: #ffffff;
}

@media (max-width: 640px) {
    .footer-bottom-inner {
        justify-content: center;
        text-align: center;
    }
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0f1115;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 150px;
    animation: loaderPulse 1.4s ease-in-out infinite;
}

.loader-logo img {
    width: 100%;
    height: auto;
}

.loader-line {
    width: 160px;
    height: 4px;
    margin-top: 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--yellow), transparent);
    animation: loaderLine 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.85;
    }

    50% {
        transform: scale(1.06);
        opacity: 1;
    }
}

@keyframes loaderLine {
    0% {
        transform: scaleX(0.25);
        opacity: 0.4;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }

    100% {
        transform: scaleX(0.25);
        opacity: 0.4;
    }
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0 42px;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.55;
    pointer-events: none;
}

.hero-shape-one {
    width: 340px;
    height: 340px;
    background: rgba(244, 196, 0, 0.12);
    top: 80px;
    left: -120px;
}

.hero-shape-two {
    width: 280px;
    height: 280px;
    background: rgba(217, 15, 24, 0.1);
    right: -80px;
    bottom: 40px;
}

.hero-card-premium {
    transform-style: preserve-3d;
    animation: heroFloat 5s ease-in-out infinite;
}

.hero-card-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(244,196,0,0.25), transparent 70%);
    top: -70px;
    right: -70px;
    pointer-events: none;
}

.hero-card-logo {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(255,255,255,0.4);
}

.hero-info-item {
    transition: 0.25s ease;
}

.hero-info-item:hover {
    transform: translateX(6px);
    background: rgba(255,255,255,0.08);
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.problem-section {
    padding-top: 58px;
}

.problem-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: center;
}

.problem-content h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.problem-content p {
    color: var(--muted);
    font-size: 17px;
    max-width: 620px;
}

.problem-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.problem-card {
    min-height: 240px;
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    transition: 0.25s ease;
}

.problem-card:hover {
    transform: translateY(-6px);
}

.problem-card span {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: 900;
    margin-bottom: 18px;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.problem-card p {
    font-size: 16px;
}

.problem-card-dark {
    background: var(--black);
    color: var(--white);
}

.problem-card-dark span {
    background: rgba(255,255,255,0.08);
    color: var(--yellow);
}

.problem-card-dark p {
    color: rgba(255,255,255,0.72);
}

.problem-card-yellow {
    background: linear-gradient(180deg, #ffe36f, var(--yellow));
    color: var(--black);
}

.problem-card-yellow span {
    background: rgba(0,0,0,0.08);
    color: var(--black);
}

.home-gallery-section {
    background: linear-gradient(180deg, rgba(255,255,255,0.7), transparent);
}

.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.home-gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 340px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    background: var(--black);
}

.home-gallery-card img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    transition: 0.45s ease;
}

.home-gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.82));
}

.home-gallery-card div {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
}

.home-gallery-card h3 {
    color: var(--white);
    font-size: 20px;
    line-height: 1.25;
}

.home-gallery-card:hover img {
    transform: scale(1.07);
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.reveal-up,
.reveal-left,
.reveal-right,
.feature-card,
.product-card,
.step-card,
.stat-card,
.cta-box {
    opacity: 0;
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-up,
.feature-card,
.product-card,
.step-card,
.stat-card,
.cta-box {
    transform: translateY(34px);
}

.reveal-left {
    transform: translateX(-38px);
}

.reveal-right {
    transform: translateX(38px);
}

.reveal-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.feature-card,
.product-card,
.step-card,
.stat-card {
    transition-delay: 0.05s;
}

.feature-card,
.product-card,
.step-card,
.stat-card {
    transition: opacity 0.75s ease, transform 0.75s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover,
.product-card:hover,
.step-card:hover,
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(15, 17, 21, 0.12);
    border-color: rgba(217, 15, 24, 0.16);
}

.icon-box,
.step-number {
    transition: 0.25s ease;
}

.feature-card:hover .icon-box,
.step-card:hover .step-number {
    transform: rotate(-3deg) scale(1.06);
}

@media (max-width: 900px) {
    .problem-grid,
    .problem-cards,
    .home-gallery-grid {
        grid-template-columns: 1fr;
    }

    .home-gallery-card,
    .home-gallery-card img {
        min-height: 280px;
    }

    .hero-section {
        padding-top: 44px;
    }
}

@media (max-width: 640px) {
    .loader-logo {
        width: 120px;
    }

    .problem-card {
        min-height: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal-up,
    .reveal-left,
    .reveal-right,
    .feature-card,
    .product-card,
    .step-card,
    .stat-card,
    .cta-box {
        opacity: 1;
        transform: none;
    }
}

.site-header.scrolled {
    background: rgba(15, 17, 21, 0.985);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.products-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 54px;
}

.products-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.products-hero-actions .btn {
    min-width: 180px;
}

@media (max-width: 640px) {
    .products-hero-actions {
        width: 100%;
    }

    .products-hero-actions .btn {
        width: 100%;
        min-width: 0;
    }
}

.products-hero-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
}

.products-hero-content h1 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.04;
    letter-spacing: -1.8px;
    margin-bottom: 20px;
    max-width: 760px;
}

.products-hero-content p {
    color: var(--muted);
    font-size: 17px;
    max-width: 680px;
}

.products-hero-image {
    position: relative;
    min-height: 420px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 17, 21, 0.16);
    border: 1px solid var(--line);
    background: var(--black);
}

.products-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    transition: 0.55s ease;
}

.products-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.78));
}

.products-hero-image:hover img {
    transform: scale(1.06);
}

.products-hero-floating {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    background: rgba(15, 17, 21, 0.78);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 20px;
    color: var(--white);
}

.products-hero-floating strong {
    display: block;
    font-size: 22px;
    margin-bottom: 4px;
}

.products-hero-floating span {
    color: rgba(255,255,255,0.78);
}

.product-types-section {
    padding-top: 72px;
}

.products-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.product-showcase-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: var(--shadow);
    transition: 0.3s ease;
}

.product-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 62px rgba(15, 17, 21, 0.13);
}

.product-image-box {
    min-height: 420px;
    background: var(--black);
    overflow: hidden;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    transition: 0.45s ease;
}

.product-showcase-card:hover .product-image-box img {
    transform: scale(1.06);
}

.product-showcase-content {
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-showcase-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
    margin-bottom: 14px;
    letter-spacing: -0.8px;
}

.featured-product-card {
    border-color: rgba(217, 15, 24, 0.18);
}

.comparison-table {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    padding: 20px;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    border-right: 1px solid var(--line);
}

.comparison-row > div:last-child {
    border-right: none;
}

.comparison-head {
    background: var(--black);
}

.comparison-head > div {
    color: var(--white);
    font-weight: 900;
}

.recommendation-section {
    background: linear-gradient(180deg, rgba(255,255,255,0.65), transparent);
}

.recommendation-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: center;
}

.recommendation-content h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.recommendation-content p {
    color: var(--muted);
    font-size: 17px;
}

.recommendation-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.recommendation-card {
    min-height: 240px;
    border-radius: 24px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}

.recommendation-card:hover {
    transform: translateY(-6px);
}

.recommendation-card span {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: 900;
    margin-bottom: 18px;
    background: var(--yellow-soft);
    color: var(--black);
}

.recommendation-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.recommendation-card p {
    color: var(--muted);
}

.recommendation-card-dark {
    background: var(--black);
    color: var(--white);
}

.recommendation-card-dark span {
    background: rgba(255,255,255,0.08);
    color: var(--yellow);
}

.recommendation-card-dark h3 {
    color: var(--white);
}

.recommendation-card-dark p {
    color: rgba(255,255,255,0.72);
}

.products-gallery-preview {
    padding-top: 72px;
}

@media (max-width: 1000px) {
    .products-hero-grid,
    .product-showcase-card,
    .recommendation-grid,
    .recommendation-cards {
        grid-template-columns: 1fr;
    }

    .product-image-box,
    .product-image-box img,
    .products-hero-image,
    .products-hero-image img {
        min-height: 320px;
    }
}

@media (max-width: 760px) {
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-row > div {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .comparison-row > div:last-child {
        border-bottom: none;
    }

    .product-showcase-content {
        padding: 26px;
    }
}

.services-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 54px;
}

.services-hero-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
}

.services-hero-content h1 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.04;
    letter-spacing: -1.8px;
    margin-bottom: 20px;
    max-width: 760px;
}

.services-hero-content p {
    color: var(--muted);
    font-size: 17px;
    max-width: 680px;
}

.services-hero-image {
    position: relative;
    min-height: 420px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 17, 21, 0.16);
    border: 1px solid var(--line);
    background: var(--black);
}

.services-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    transition: 0.55s ease;
}

.services-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.78));
}

.services-hero-image:hover img {
    transform: scale(1.06);
}

.services-hero-floating {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    background: rgba(15, 17, 21, 0.78);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 20px;
    color: var(--white);
}

.services-hero-floating strong {
    display: block;
    font-size: 22px;
    margin-bottom: 4px;
}

.services-hero-floating span {
    color: rgba(255,255,255,0.78);
}

.service-intro-section {
    padding-top: 72px;
}

.service-intro-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: center;
}

.service-intro-content h2,
.location-content h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.service-intro-content p,
.location-content p {
    color: var(--muted);
    font-size: 17px;
}

.service-intro-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.service-mini-card {
    min-height: 250px;
    border-radius: 24px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}

.service-mini-card:hover {
    transform: translateY(-6px);
}

.service-mini-card span {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: 900;
    margin-bottom: 18px;
    background: var(--yellow-soft);
    color: var(--black);
}

.service-mini-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-mini-card p {
    color: var(--muted);
}

.service-mini-card-dark {
    background: var(--black);
    color: var(--white);
}

.service-mini-card-dark span {
    background: rgba(255,255,255,0.08);
    color: var(--yellow);
}

.service-mini-card-dark h3 {
    color: var(--white);
}

.service-mini-card-dark p {
    color: rgba(255,255,255,0.72);
}

.installation-timeline {
    display: grid;
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.installation-timeline::before {
    content: "";
    position: absolute;
    left: 33px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: var(--line);
}

.timeline-card {
    position: relative;
    display: grid;
    grid-template-columns: 66px 1fr;
    gap: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}

.timeline-card:hover {
    transform: translateX(6px);
    border-color: rgba(217, 15, 24, 0.16);
}

.timeline-number {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--black);
    color: var(--yellow);
    font-size: 20px;
    font-weight: 900;
    z-index: 2;
}

.timeline-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.timeline-card p {
    color: var(--muted);
}

.included-section {
    padding-top: 72px;
}

.location-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: center;
}

.location-image {
    position: relative;
    min-height: 390px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    background: var(--black);
}

.location-image img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    transition: 0.45s ease;
}

.location-image:hover img {
    transform: scale(1.06);
}

.services-gallery-preview {
    padding-top: 72px;
}

@media (max-width: 1000px) {
    .services-hero-grid,
    .service-intro-grid,
    .service-intro-cards,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .services-hero-image,
    .services-hero-image img,
    .location-image,
    .location-image img {
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .installation-timeline::before {
        display: none;
    }

    .timeline-card {
        grid-template-columns: 1fr;
    }

    .timeline-number {
        width: 56px;
        height: 56px;
    }
}

*,
*::before,
*::after {
    min-width: 0;
}

.page-hero,
.hero-section,
.products-hero,
.services-hero,
.gallery-hero,
.section,
.site-header,
.topbar,
.site-footer {
    max-width: 100%;
    overflow-x: hidden;
}

.page-hero {
    position: relative;
    overflow: hidden;
}

.hero-bg-shape {
    pointer-events: none;
}

.hero-content h1,
.page-hero h1,
.products-hero-content h1,
.services-hero-content h1,
.section-heading h2 {
    overflow-wrap: break-word;
}

.legal-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 42px;
    background:
            radial-gradient(circle at top left, rgba(244, 196, 0, 0.14), transparent 34%),
            radial-gradient(circle at bottom right, rgba(217, 15, 24, 0.10), transparent 32%),
            var(--bg);
}

.legal-hero h1 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.04;
    letter-spacing: -1.8px;
    margin-bottom: 18px;
    max-width: 860px;
}

.legal-hero p {
    color: var(--muted);
    font-size: 18px;
    max-width: 820px;
}

.legal-updated {
    margin-top: 18px;
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
}

.legal-section {
    padding: 48px 0 86px;
}

.legal-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 26px;
    align-items: start;
}

.legal-sidebar {
    position: sticky;
    top: 118px;
}

.legal-sidebar-card,
.legal-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.legal-sidebar-card {
    padding: 24px;
}

.legal-sidebar-card h2 {
    font-size: 18px;
    margin-bottom: 16px;
}

.legal-sidebar-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.legal-sidebar-card a {
    display: inline-flex;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    transition: 0.2s ease;
}

.legal-sidebar-card a:hover {
    color: var(--red);
    transform: translateX(4px);
}

.legal-card {
    padding: 36px;
}

.legal-content section {
    padding-bottom: 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 130px;
}

.legal-content section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.legal-content h2 {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.18;
    letter-spacing: -0.6px;
    margin-bottom: 14px;
    color: var(--black);
}

.legal-content p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 14px;
}

.legal-content ul {
    margin: 16px 0 18px;
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.legal-content li {
    position: relative;
    padding-left: 26px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.55;
}

.legal-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--red);
    font-weight: 900;
}

.legal-content a {
    color: var(--red);
    font-weight: 800;
}

.legal-content a:hover {
    color: var(--red-dark);
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1000px) {
    .legal-grid {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        position: static;
    }

    .legal-sidebar-card ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 18px;
    }
}

@media (max-width: 700px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .legal-hero {
        padding: 64px 0 32px;
    }

    .legal-section {
        padding: 36px 0 68px;
    }

    .legal-card,
    .legal-sidebar-card {
        padding: 22px;
    }

    .legal-sidebar-card ul {
        grid-template-columns: 1fr;
    }

    .legal-content section {
        scroll-margin-top: 100px;
    }
}