﻿:root {
    --primary: #0f172a;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --radius: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        sans-serif;
    color: #1e293b;
    background: var(--white);
    line-height: 1.5;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

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

.container {
    width: min(1500px, 92%);
    margin: 0 auto;
}

.section {
    padding: 88px 0;
}

.section-light {
    background: var(--bg-light);
}

h1,
h2,
h3,
h4 {
    margin: 0;
    color: #0f172a;
}

p {
    margin: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 10px;
    padding: 14px 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1fb15a;
    transform: translateY(-1px);
}

.btn-sm {
    padding: 10px 16px;
}

.material-symbols-outlined {
    font-variation-settings:
        "FILL" 0,
        "wght" 500,
        "GRAD" 0,
        "opsz" 24;
    vertical-align: middle;
}

.icon-sm {
    font-size: 18px;
    margin-right: 6px;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 20;
}

.nav-wrap {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo-main {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-sub {
    font-size: 12px;
    color: #64748b;
    letter-spacing: 0.14em;
    margin-top: 3px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-link {
    border: 0;
    background: transparent;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    border-top: 1px solid #e2e8f0;
    background: #fff;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu-inner {
    display: grid;
    gap: 8px;
    padding: 14px 0;
}

.mobile-link {
    display: block;
    text-align: left;
    border: 0;
    background: #f8fafc;
    padding: 12px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}

.mobile-link.accent {
    color: var(--accent);
    background: #fff7e8;
}

.hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    background: rgba(15, 23, 42, 0.82);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 860px;
}

.pill {
    display: inline-block;
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.5);
    background: rgba(251, 191, 36, 0.16);
    border-radius: 999px;
    padding: 8px 14px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
}

.hero h1 {
    color: #fff;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.06;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    color: #cbd5e1;
    font-size: clamp(17px, 2.2vw, 22px);
    max-width: 760px;
}

.hero-actions {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.urgent-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
}

.urgent-icon {
    font-size: 20px;
}

.urgent-label {
    color: #94a3b8;
    font-size: 12px;
}

.urgent-phone {
    color: #fff;
    font-weight: 700;
}

.hero-points {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    color: #94a3b8;
    font-weight: 600;
    font-size: 14px;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.section-head {
    margin-bottom: 44px;
}

.section-head.center {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head.between {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.section-head h2 {
    font-size: clamp(30px, 3.5vw, 44px);
    margin-bottom: 12px;
}

.section-head p {
    color: #64748b;
    font-size: 18px;
}

.kicker {
    display: inline-block;
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 0.14em;
    font-weight: 800;
    margin-bottom: 10px;
}

.link-btn {
    display: inline-flex;
    border: 0;
    background: transparent;
    color: var(--accent);
    font-weight: 800;
    cursor: pointer;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.feature-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    background: #f8fafc;
    transition: all 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(2, 6, 23, 0.08);
    background: #fff;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #fff;
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 14px;
}

.feature-icon .material-symbols-outlined {
    font-size: 30px;
}

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

.feature-card p {
    color: #64748b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
    transition: box-shadow 0.2s ease;
}

.service-card:hover {
    box-shadow: 0 20px 34px rgba(15, 23, 42, 0.14);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-body {
    padding: 18px;
    flex: 1;
}

.service-body h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.service-body p {
    color: #64748b;
    margin-bottom: 14px;
}

.service-meta {
    border-top: 1px solid #e2e8f0;
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-meta span {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #f1f5f9;
    display: grid;
    place-items: center;
    font-size: 22px;
}

.contact {
    position: relative;
    overflow: hidden;
    background: #0f172a;
    color: #fff;
}

.contact-accent {
    position: absolute;
    top: 0;
    right: -40px;
    width: 40%;
    height: 100%;
    background: rgba(245, 158, 11, 0.1);
    transform: skewX(-18deg);
}

.contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.contact h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 52px);
    margin-bottom: 16px;
}

.contact p {
    color: #94a3b8;
}

.contact-points {
    margin-top: 26px;
    display: grid;
    gap: 18px;
}

.point-label {
    font-size: 14px;
    color: #94a3b8;
}

.contact-points a {
    font-size: 24px;
    font-weight: 800;
}

.form-card {
    background: #fff;
    color: #0f172a;
    border-radius: 16px;
    padding: 24px;
}

.form-card h3 {
    margin-bottom: 14px;
    font-size: 28px;
}

form {
    display: grid;
    gap: 14px;
}

label {
    display: grid;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 11px 12px;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

textarea {
    resize: vertical;
    min-height: 90px;
}

.form-btn {
    margin-top: 4px;
}

.form-note {
    color: #94a3b8;
    text-align: center;
    font-size: 12px;
}

.form-status {
    min-height: 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}

.form-status.success {
    color: #16a34a;
}

.form-status.loading {
    color: #64748b;
}

.form-status.error {
    color: #dc2626;
}

.footer {
    background: #020617;
    color: #94a3b8;
    padding: 64px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 22px;
    padding-bottom: 34px;
    border-bottom: 1px solid #1e293b;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    margin-bottom: 10px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 10px;
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-top: 18px;
    font-size: 14px;
}

.footer-bottom div {
    display: flex;
    gap: 12px;
}

.faq {
    background: #fff;
}

.faq-list {
    display: grid;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px;
    background: #f8fafc;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.faq-item p {
    color: #475569;
}

.slider-container {
    position: relative;
    overflow: hidden;
    background: #e2e8f0;
}
.slide {
    display: none;
}
.slider-btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #fff;
    border: 0;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.6);
    display: grid;
    place-items: center;
    transition: background 0.2s ease;
}
.slider-btn:hover {
    background: rgba(15, 23, 42, 0.82);
}
.next {
    right: 10px;
}
.prev {
    left: 10px;
}

@media (max-width: 1380px) and (min-width: 1061px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1060px) {
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 820px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .section,
    .contact {
        padding: 74px 0;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 70px;
    }

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

    .section-head.between {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 620px) {
    .features-grid,
    .services-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-points a {
        font-size: 20px;
    }
}
