:root {
    --bg: #f2f6fb;
    --bg-soft: #e9f0f7;
    --surface: #ffffff;
    --surface-soft: #f7fbff;
    --line: rgba(18, 44, 69, 0.14);
    --text: #12253a;
    --text-muted: #50667b;
    --brand: #2b79ad;
    --brand-strong: #1a5f90;
    --accent: #cd7a2f;
    --ok: #2a865f;
    --danger: #c64f4f;
    --radius-lg: 24px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --shadow-lg: 0 24px 52px rgba(14, 42, 68, 0.16);
    --shadow-sm: 0 10px 24px rgba(14, 42, 68, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 8% 0%, rgba(62, 133, 181, 0.17), transparent 44%),
        radial-gradient(circle at 92% 5%, rgba(205, 122, 47, 0.12), transparent 36%),
        linear-gradient(180deg, #f6f9fd 0%, #eef3f9 100%);
    color: var(--text);
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1.58;
    min-height: 100vh;
}

body::before {
    background-image:
        linear-gradient(rgba(17, 42, 66, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 42, 66, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    content: "";
    inset: 0;
    pointer-events: none;
    position: fixed;
    z-index: -1;
}

img,
video {
    display: block;
    height: auto;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    color: var(--text-muted);
}

.content-shell {
    margin: 0 auto;
    width: min(1220px, 94vw);
}

.site-header {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--line);
    overflow: visible;
    position: sticky;
    top: 0;
    z-index: 30;
}

.site-nav {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: auto 1fr auto;
    min-height: 72px;
    position: relative;
}

.brand {
    align-items: center;
    display: inline-flex;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    gap: 10px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.brand img {
    border-radius: 6px;
    height: 48px;
    width: auto;
}

.site-nav nav {
    justify-self: center;
}

.site-nav-links {
    align-items: center;
    display: flex;
    gap: 10px;
    list-style: none;
}

.site-nav-links a {
    border-radius: 999px;
    color: var(--text-muted);
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 12px;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.site-nav-links a:hover,
.site-nav-links a.is-active {
    background: rgba(43, 121, 173, 0.14);
    color: var(--text);
}

.cta-chip {
    background: #fff4e8;
    border: 1px solid rgba(205, 122, 47, 0.45);
    border-radius: 999px;
    color: #9a5620;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 9px 12px;
    transition: transform 0.2s ease;
    white-space: nowrap;
}

.cta-chip:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    cursor: pointer;
    display: none;
    font-size: 0.85rem;
    font-weight: 700;
    justify-self: end;
    padding: 8px 14px;
}

.hero {
    isolation: isolate;
    min-height: 76vh;
    overflow: hidden;
    position: relative;
}

.hero-media {
    inset: 0;
    position: absolute;
    z-index: -3;
}

.hero-media video {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.hero-overlay {
    background:
        linear-gradient(130deg, rgba(10, 28, 44, 0.74), rgba(10, 28, 44, 0.32) 54%, rgba(10, 28, 44, 0.76) 100%),
        radial-gradient(circle at 82% 0%, rgba(205, 122, 47, 0.22), transparent 48%);
    inset: 0;
    position: absolute;
    z-index: -2;
}

.hero-content {
    display: grid;
    gap: 14px;
    padding: 108px 0 72px;
}

.hero-kicker {
    color: #f6c994;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    color: var(--text);
    font-family: "Rajdhani", sans-serif;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.hero h1 {
    color: #f3f7fb;
    font-size: clamp(1.8rem, 4.2vw, 3.6rem);
    max-width: 820px;
}

.hero p {
    color: #dfe9f2;
    font-size: clamp(0.94rem, 1.22vw, 1.06rem);
    max-width: 700px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.button {
    align-items: center;
    background: linear-gradient(120deg, var(--brand-strong), var(--brand));
    border: 1px solid transparent;
    border-radius: 999px;
    color: #ecf7ff;
    cursor: pointer;
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 700;
    gap: 8px;
    padding: 10px 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    box-shadow: 0 14px 24px rgba(47, 126, 173, 0.35);
    transform: translateY(-2px);
}

.button.secondary {
    background: #ffffff;
    border-color: var(--line);
    color: var(--text);
}

.button.ghost {
    background: #fff4e8;
    border-color: rgba(205, 122, 47, 0.36);
    color: #9a5620;
}

.section {
    padding: 64px 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(232, 240, 248, 0.7), rgba(240, 246, 251, 0.9));
    border-top: 1px solid rgba(18, 44, 69, 0.08);
    border-bottom: 1px solid rgba(18, 44, 69, 0.08);
}

.section-head {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
    max-width: 760px;
}

.section-head h2 {
    font-size: clamp(1.55rem, 2.8vw, 2.35rem);
}

.section-head p {
    font-size: 0.98rem;
}

.tag {
    color: #2d78aa;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.two-column {
    display: grid;
    gap: 22px;
    grid-template-columns: 1.15fr 1fr;
}

.info-panel,
.card,
.image-card,
.quote-card,
.contact-card,
.catalogue-panel,
.profile-card {
    background: linear-gradient(160deg, var(--surface), var(--surface-soft));
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.info-panel {
    padding: 20px;
}

.info-panel h3 {
    font-size: 1.28rem;
    margin-bottom: 8px;
}

.info-panel p + p {
    margin-top: 14px;
}

.image-card {
    overflow: hidden;
    position: relative;
}

.image-card img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.card-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.card h3 {
    font-size: 1.2rem;
}

.card p {
    font-size: 0.9rem;
}

.product-card {
    overflow: hidden;
    padding: 0;
}

.product-card img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    width: 100%;
}

.product-body {
    display: grid;
    gap: 10px;
    padding: 16px;
}

.check-list {
    display: grid;
    gap: 10px;
    list-style: none;
    margin-top: 16px;
}

.check-list li {
    color: var(--text-muted);
    padding-left: 24px;
    position: relative;
}

.check-list li::before {
    color: var(--ok);
    content: "[+]";
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    left: 0;
    position: absolute;
    top: 0;
}

.timeline {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.timeline-step {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    min-height: 174px;
    padding: 16px;
}

.timeline-step .step-number {
    color: #2d78aa;
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin-bottom: 8px;
}

.timeline-step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.stat-strip {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
}

.stat-item strong {
    color: #9a5620;
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1.85rem, 3.6vw, 2.7rem);
    line-height: 1;
}

.stat-item span {
    color: var(--text-muted);
    display: block;
    font-size: 0.95rem;
    margin-top: 8px;
}

.client-logos {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.client-logos img {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px;
}

.testimonial-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.quote-card {
    display: grid;
    gap: 10px;
    padding: 20px;
}

.quote-card .stars {
    color: #cf7c31;
    font-size: 1rem;
    letter-spacing: 0.12em;
}

.quote-card cite {
    color: #365169;
    font-size: 0.9rem;
    font-style: normal;
}

.catalogue-panel {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-between;
    padding: 20px;
}

.page-banner {
    background-image:
        linear-gradient(130deg, rgba(12, 35, 56, 0.64), rgba(12, 35, 56, 0.2), rgba(12, 35, 56, 0.68)),
        var(--banner-image);
    background-position: center;
    background-size: cover;
    border-bottom: 1px solid var(--line);
    min-height: 35vh;
}

.page-banner .content-shell {
    display: grid;
    gap: 12px;
    padding: 72px 0 56px;
}

.page-banner h1 {
    color: #f3f7fb;
    font-size: clamp(1.75rem, 3.4vw, 2.9rem);
    max-width: 840px;
}

.page-banner p,
.page-banner .hero-kicker,
.page-banner .breadcrumbs {
    color: #e0eaf3;
}

.breadcrumbs {
    font-size: 0.86rem;
}

.product-layout {
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

.product-layout .image-card {
    min-height: 280px;
}

.contact-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-card {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.contact-card h3 {
    font-size: 1.08rem;
}

.contact-card a.inline-link {
    color: #1a5f90;
    font-weight: 600;
}

.profile-card {
    align-items: center;
    display: flex;
    gap: 16px;
    padding: 18px;
}

.profile-card img {
    border-radius: 14px;
    height: 104px;
    object-fit: cover;
    width: 104px;
}

.mini-table {
    border-collapse: collapse;
    width: 100%;
}

.mini-table th,
.mini-table td {
    border-bottom: 1px solid var(--line);
    color: var(--text-muted);
    padding: 10px;
    text-align: left;
}

.mini-table th {
    color: var(--text);
    font-family: "Rajdhani", sans-serif;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.site-footer {
    background: rgba(255, 255, 255, 0.6);
    border-top: 1px solid var(--line);
    margin-top: 18px;
    padding-top: 34px;
}

.footer-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1.2fr repeat(3, 1fr);
}

.footer-grid h3,
.footer-grid h4 {
    margin-bottom: 8px;
}

.footer-links {
    display: grid;
    gap: 8px;
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    color: #5b7388;
    font-size: 0.82rem;
    margin-top: 20px;
    padding: 14px 0 18px;
}

.catalogue-modal {
    background: rgba(8, 23, 38, 0.38);
    display: none;
    inset: 0;
    padding: 16px;
    position: fixed;
    z-index: 90;
}

.catalogue-modal.is-open {
    display: flex;
}

.modal-panel {
    background: linear-gradient(170deg, #ffffff, #f3f8fd);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    margin: auto;
    max-height: 92vh;
    max-width: 640px;
    overflow: auto;
    padding: 24px;
    width: 100%;
}

.modal-panel header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.modal-panel h3 {
    font-size: 1.7rem;
}

.modal-close {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 8px 10px;
}

.form-grid {
    display: grid;
    gap: 12px;
}

.form-field {
    display: grid;
    gap: 6px;
}

.form-field label {
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 600;
}

.form-field input,
.form-field select {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.9rem;
    outline: none;
    padding: 11px;
}

.form-field input:focus,
.form-field select:focus {
    border-color: rgba(99, 168, 212, 0.9);
}

.form-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.form-note {
    color: var(--text-muted);
    font-size: 0.83rem;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1020px) {
    body.nav-open {
        overflow: hidden;
    }

    .site-nav {
        gap: 10px;
        grid-template-columns: 1fr auto;
        min-height: 66px;
        padding: 8px 0;
    }

    .site-nav nav {
        grid-column: 1 / -1;
        justify-self: stretch;
        left: 0;
        position: absolute;
        right: 0;
        top: calc(100% + 8px);
        z-index: 50;
    }

    .site-nav-links {
        background: #ffffff;
        border: 1px solid var(--line);
        border-radius: 12px;
        box-shadow: 0 18px 34px rgba(14, 42, 68, 0.16);
        display: none;
        flex-direction: column;
        gap: 4px;
        margin-top: 0;
        padding: 10px;
        width: 100%;
    }

    .site-nav-links.is-open {
        display: flex;
    }

    .site-nav-links li {
        width: 100%;
    }

    .site-nav-links a {
        border-radius: 9px;
        padding: 10px 12px;
        width: 100%;
    }

    .menu-toggle {
        align-items: center;
        display: inline-flex;
        justify-content: center;
    }

    .cta-chip {
        justify-self: end;
    }

    .two-column,
    .product-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .catalogue-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .hero {
        min-height: 66vh;
    }

    .hero-content {
        padding: 84px 0 54px;
    }

    .section {
        padding: 52px 0;
    }

    .stat-strip {
        grid-template-columns: 1fr;
    }

    .brand img {
        height: 46px;
    }

    .brand {
        font-size: 0.98rem;
    }

    .menu-toggle {
        padding: 7px 12px;
    }

    .cta-chip {
        display: none;
    }

    .profile-card {
        align-items: flex-start;
        flex-direction: column;
    }
}
