:root {
    --bg: #f3f6fb;
    --surface: #ffffff;
    --surface-soft: #fff9f1;
    --surface-contrast: #0e1726;
    --text: #101826;
    --muted: #556274;
    --line: #d8e1ec;
    --brand: #d97706;
    --brand-deep: #9a3412;
    --brand-soft: rgba(217, 119, 6, 0.14);
    --accent: #0f766e;
    --accent-soft: rgba(15, 118, 110, 0.12);
    --shadow: 0 18px 40px rgba(12, 23, 39, 0.12);
    --shadow-strong: 0 24px 60px rgba(12, 23, 39, 0.18);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(217, 119, 6, 0.08), transparent 34%),
        linear-gradient(180deg, #fbfcff 0%, var(--bg) 100%);
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: 12px;
    z-index: 99;
    background: #fff;
    color: var(--text);
    padding: 10px 14px;
    border-radius: 999px;
    box-shadow: var(--shadow);
}

.skip-link:focus {
    left: 12px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(8, 16, 28, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.header-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-bar-inner,
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-bar-inner {
    min-height: 48px;
    font-size: 0.94rem;
}

.header-bar-group {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.header-bar-group a,
.header-bar-group span {
    color: rgba(255, 255, 255, 0.82);
}

.header-bar-group a:hover,
.main-nav a:hover {
    color: #fff;
}

.header-main {
    min-height: 78px;
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    box-shadow: 0 12px 24px rgba(154, 52, 18, 0.28);
}

.brand-title,
.brand-subtitle {
    margin: 0;
}

.brand-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.brand-subtitle {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
}

.main-nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.98rem;
    font-weight: 600;
}

.hero-section {
    padding: 64px 0 36px;
    background:
        radial-gradient(circle at top left, rgba(217, 119, 6, 0.2), transparent 32%),
        radial-gradient(circle at bottom right, rgba(15, 118, 110, 0.16), transparent 26%),
        linear-gradient(135deg, #08101c 0%, #0f172a 52%, #182438 100%);
    color: #fff;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: start;
}

.eyebrow,
.search-badge,
.section-kicker,
.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: #fff7ed;
}

.hero-copy h1,
.section-heading h2,
.split-copy h2,
.contact-copy h2 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.02;
    margin: 18px 0;
}

.hero-copy h1 {
    font-size: clamp(2.8rem, 5vw, 4.9rem);
    max-width: 12ch;
}

.hero-lead,
.section-heading p,
.split-copy p,
.contact-copy p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.08rem;
    max-width: 62ch;
}

.section-heading p,
.split-copy p,
.contact-copy p {
    color: var(--muted);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 28px 0 30px;
}

.btn {
    min-height: 54px;
    padding: 14px 22px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.result-action:hover,
.floating-cta:hover,
.search-hit:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    box-shadow: 0 18px 30px rgba(154, 52, 18, 0.24);
}

.btn-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero-point {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-point strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.hero-point span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
}

.search-panel {
    position: relative;
}

.search-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 28px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.search-card::after {
    content: '';
    position: absolute;
    inset: auto -80px -120px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.18), transparent 70%);
    pointer-events: none;
}

.search-badge {
    color: var(--brand-deep);
    background: var(--brand-soft);
}

.search-card h2 {
    margin: 16px 0 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    line-height: 1.08;
}

.search-card p {
    margin: 0;
    color: var(--muted);
}

.search-form {
    margin-top: 22px;
}

.input-group {
    display: flex;
    gap: 10px;
}

.input-group input {
    flex: 1;
    min-height: 58px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 0 18px;
    background: #fff;
    color: var(--text);
    font-size: 1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.input-group input:focus {
    outline: none;
    border-color: rgba(217, 119, 6, 0.72);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.14);
}

.input-group button {
    min-width: 132px;
    min-height: 58px;
    border: 0;
    border-radius: 18px;
    padding: 0 20px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    cursor: pointer;
}

.search-help {
    margin-top: 14px !important;
    font-size: 0.96rem;
}

.results-shell {
    margin-top: 18px;
    min-height: 190px;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid var(--line);
}

.results-placeholder,
.result-note,
.result-error {
    padding: 4px 2px;
}

.results-placeholder strong,
.result-note strong,
.result-error strong,
.search-suggestions-intro strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.result-note p,
.result-error p,
.results-placeholder p {
    margin: 0;
    color: var(--muted);
}

.result-error strong,
.result-error p {
    color: #b42318;
}

.is-loading strong::after {
    content: '...';
}

.search-suggestions-intro {
    margin-bottom: 14px;
    color: var(--muted);
}

.search-suggestions {
    display: grid;
    gap: 12px;
}

.search-hit {
    width: 100%;
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    text-align: left;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 20px;
    padding: 12px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.search-hit:hover {
    box-shadow: var(--shadow);
    border-color: rgba(217, 119, 6, 0.34);
}

.search-hit-thumb {
    width: 78px;
    height: 78px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface-soft);
}

.search-hit-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-hit-body {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.search-hit-title {
    font-weight: 800;
    color: var(--text);
}

.search-hit-meta {
    color: var(--muted);
    font-size: 0.94rem;
}

.search-hit-action {
    color: var(--brand-deep);
    font-size: 0.94rem;
    font-weight: 800;
}

.result-card {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.result-media {
    border-radius: 20px;
    overflow: hidden;
    background: var(--surface-soft);
    border: 1px solid var(--line);
}

.result-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-badge {
    background: var(--accent-soft);
    color: var(--accent);
}

.result-body h3 {
    margin: 14px 0 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.55rem;
    line-height: 1.1;
}

.result-text {
    margin: 0;
    color: var(--muted);
}

.result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.result-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--bg);
    color: var(--text);
    font-size: 0.93rem;
}

.result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.result-action {
    min-height: 46px;
    padding: 11px 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.result-action-primary {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
}

.metrics-section {
    margin-top: -10px;
    padding-bottom: 18px;
}

.metrics-grid,
.cards-grid,
.dual-column-grid,
.contact-grid {
    display: grid;
    gap: 18px;
}

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

.metric-card,
.info-card,
.contact-card {
    background: var(--surface);
    border: 1px solid rgba(216, 225, 236, 0.88);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.metric-card strong,
.info-card h3,
.service-card h3,
.subheading {
    font-family: 'Space Grotesk', sans-serif;
}

.metric-card p,
.info-card p,
.service-card p {
    margin: 8px 0 0;
    color: var(--muted);
}

.section {
    padding: 78px 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 249, 241, 0.7) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.section-contrast {
    background:
        radial-gradient(circle at top right, rgba(217, 119, 6, 0.08), transparent 26%),
        linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.section-kicker {
    color: var(--brand-deep);
    background: var(--brand-soft);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 32px;
}

.section-heading h2,
.split-copy h2,
.contact-copy h2 {
    font-size: clamp(2.1rem, 4vw, 3.3rem);
}

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

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

.card-number {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 800;
}

.service-card {
    background: var(--surface);
    border: 1px solid rgba(216, 225, 236, 0.88);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-card img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.service-card-body {
    padding: 20px;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 28px;
    align-items: center;
}

.check-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--text);
    font-weight: 600;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #14b8a6 100%);
    box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.14);
}

.image-panel {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-strong);
}

.image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dual-column-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.tag-cloud,
.brand-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tag-cloud span,
.brand-grid span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 8px 18px rgba(12, 23, 39, 0.06);
    font-weight: 700;
}

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

.gallery-card {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    background: #fff;
}

.gallery-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
    padding: 0 20px;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 0;
    font-weight: 800;
    font-size: 1.02rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 0 0 20px;
    color: var(--muted);
}

.contact-section {
    padding: 84px 0;
    background:
        radial-gradient(circle at top left, rgba(217, 119, 6, 0.12), transparent 30%),
        linear-gradient(135deg, #f7fafc 0%, #eef4fb 100%);
}

.contact-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
}

.contact-card {
    display: grid;
    gap: 10px;
}

.contact-card a {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--brand-deep);
}

.contact-card p {
    margin: 0;
    color: var(--muted);
}

.site-footer {
    background: #08101c;
    color: rgba(255, 255, 255, 0.74);
    padding: 24px 0 34px;
}

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

.footer-inner p {
    margin: 0;
}

.floating-cta {
    position: fixed;
    bottom: 18px;
    z-index: 15;
    min-height: 52px;
    padding: 12px 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    box-shadow: var(--shadow-strong);
}

.floating-call {
    left: 18px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
}

.floating-whatsapp {
    right: 18px;
    background: linear-gradient(135deg, #128c7e 0%, #0f766e 100%);
}

@media (max-width: 1100px) {
    .hero-grid,
    .split-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 900px) {
    .header-bar-inner,
    .header-main,
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-points,
    .metrics-grid,
    .cards-grid-3,
    .dual-column-grid {
        grid-template-columns: 1fr;
    }

    .main-nav {
        gap: 14px;
    }

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

@media (max-width: 700px) {
    .header-bar {
        display: none;
    }

    .header-main {
        min-height: auto;
        gap: 10px;
        padding: 10px 0 8px;
    }

    .brand-block {
        gap: 10px;
    }

    .brand-mark {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 0.95rem;
    }

    .brand-title {
        font-size: 1rem;
    }

    .brand-subtitle {
        display: none;
    }

    .main-nav {
        width: 100%;
        gap: 12px;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 2px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .main-nav::-webkit-scrollbar {
        display: none;
    }

    .main-nav a {
        white-space: nowrap;
        font-size: 0.94rem;
    }

    .container {
        width: min(var(--container), calc(100% - 24px));
    }

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

    .input-group {
        flex-direction: column;
    }

    .input-group button {
        width: 100%;
    }

    .search-hit {
        grid-template-columns: 70px minmax(0, 1fr);
    }

    .search-hit-action {
        grid-column: 2;
    }

    .cards-grid-4 {
        grid-template-columns: 1fr;
    }

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

    .floating-cta {
        min-height: 48px;
        padding: 10px 16px;
    }
}

@media (max-width: 520px) {
    .hero-copy h1 {
        max-width: none;
    }

    .brand-title {
        font-size: 0.96rem;
    }

    .main-nav {
        gap: 10px;
    }

    .main-nav a {
        font-size: 0.9rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

    .floating-call {
        left: 12px;
        bottom: 12px;
    }

    .floating-whatsapp {
        right: 12px;
        bottom: 12px;
    }
}
