:root {
    --primary-dark: #0B1220;
    --secondary-navy: #102A43;
    --action-orange: #FF6A00;
    --action-orange-dark: #E65F00;
    --light-background: #F5F7FA;
    --white: #FFFFFF;
    --text-dark: #1F2937;
    --text-gray: #64748B;
    --border: #E5E7EB;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text-dark);
    background: var(--white);
    font-family: Inter, Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

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

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

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--primary-dark);
    line-height: 1.15;
}

h1 {
    max-width: 880px;
    font-size: clamp(2.35rem, 5vw, 4.75rem);
    letter-spacing: 0;
}

h2 {
    font-size: clamp(1.85rem, 4vw, 3rem);
    letter-spacing: 0;
}

h3 {
    font-size: 1.22rem;
}

p {
    color: var(--text-gray);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 24px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 800;
    white-space: nowrap;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--white);
    background: var(--primary-dark);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 800;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu,
.footer-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu a {
    color: var(--text-dark);
    font-size: 0.92rem;
    font-weight: 700;
}

.site-header .primary-menu > .menu-item {
    position: relative;
}

.site-header .primary-menu .menu-item-has-children > a::after {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
    transform: translateY(-2px) rotate(45deg);
}

.site-header .primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    display: none !important;
    min-width: 240px;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(11, 18, 32, 0.12);
}

.site-header .primary-menu .menu-item-has-children:hover > .sub-menu,
.site-header .primary-menu .menu-item-has-children:focus-within > .sub-menu {
    display: block !important;
}

.site-header .primary-menu .sub-menu a {
    display: block;
    padding: 10px 16px;
    white-space: nowrap;
}

.site-header .primary-menu .sub-menu a:hover {
    background: #F5F7FA;
}

.menu a:hover,
.footer-menu a:hover,
.text-link:hover {
    color: var(--action-orange);
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--primary-dark);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: var(--white);
    background: var(--action-orange);
}

.btn-primary:hover {
    background: var(--action-orange-dark);
}

.btn-secondary {
    color: var(--white);
    background: var(--secondary-navy);
}

.btn-outline {
    color: var(--primary-dark);
    background: var(--white);
    border-color: var(--border);
}

.btn-outline:hover {
    color: var(--action-orange);
    border-color: var(--action-orange);
}

.btn-outline-light {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline-light:hover {
    border-color: var(--white);
}

.full-width {
    width: 100%;
}

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

.hero {
    color: var(--white);
    min-height: 680px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(11, 18, 32, 0.98), rgba(16, 42, 67, 0.95)),
        radial-gradient(circle at 80% 20%, rgba(255, 106, 0, 0.28), transparent 35%);
}

.hero h1 {
    font-size: clamp(52px, 5vw, 76px);
}

.hero h1,
.hero h2,
.section-dark h2,
.final-cta h2 {
    color: var(--white);
}

.hero p,
.section-dark p,
.final-cta p {
    color: rgba(255, 255, 255, 0.78);
}

.hero-grid,
.page-hero-grid,
.split-grid,
.contact-grid,
.final-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 54px;
}

.hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
}

.hero-copy {
    max-width: 700px;
}

.lead,
.section-lead {
    max-width: 760px;
    font-size: 1.1rem;
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--action-orange);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 34px;
}

.trust-points span {
    padding: 12px 14px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    font-weight: 700;
}

.hero-media {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.hero-media img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1200 / 820;
    object-fit: cover;
}

.visual-placeholder {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 106, 0, 0.95), rgba(16, 42, 67, 0.95)),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.16) 0 2px, transparent 2px 20px);
    box-shadow: var(--shadow);
}

.visual-placeholder::before,
.visual-placeholder::after {
    position: absolute;
    content: "";
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.visual-placeholder::before {
    width: 260px;
    height: 260px;
    top: -60px;
    right: -40px;
}

.visual-placeholder::after {
    width: 220px;
    height: 220px;
    bottom: -80px;
    left: -60px;
}

.visual-card {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 22px;
    color: var(--white);
    background: rgba(11, 18, 32, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
}

.visual-card span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.visual-card strong {
    font-size: 1.45rem;
    line-height: 1.15;
}

.visual-card-main {
    right: 34px;
    bottom: 54px;
    width: min(320px, calc(100% - 70px));
}

.visual-card-small {
    top: 42px;
    left: 34px;
    width: min(240px, calc(100% - 70px));
}

.section {
    padding: 82px 0;
}

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

.section-dark {
    background: var(--primary-dark);
}

.section-heading {
    max-width: 820px;
    margin-bottom: 36px;
}

.section-heading.center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

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

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

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

.info-card,
.contact-card,
.form-panel,
.timeline-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.info-card h2,
.info-card h3 {
    margin-bottom: 12px;
}

.card-label {
    margin-bottom: 8px;
    color: var(--action-orange);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.check-list,
.feature-list,
.contact-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.feature-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 24px;
    color: var(--text-dark);
}

.check-list li::before,
.feature-list li::before {
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 9px;
    height: 9px;
    background: var(--action-orange);
    border-radius: 50%;
    content: "";
}

.feature-list {
    display: grid;
    gap: 8px;
}

.text-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--action-orange);
    font-weight: 900;
}

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

.stat-grid div {
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
}

.stat-grid strong {
    display: block;
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
}

.stat-grid span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.72);
}

.tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-grid span {
    padding: 12px 16px;
    color: var(--primary-dark);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-weight: 800;
}

.section-alt .tag-grid span {
    background: var(--white);
}

.process-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    counter-reset: process;
    list-style: none;
}

.process-list li {
    position: relative;
    min-height: 120px;
    padding: 54px 22px 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-weight: 800;
}

.process-list li::before {
    position: absolute;
    top: 18px;
    left: 22px;
    color: var(--action-orange);
    content: counter(process, decimal-leading-zero);
    counter-increment: process;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.timeline-card p {
    margin-bottom: 14px;
}

.final-cta {
    color: var(--white);
    background: linear-gradient(135deg, var(--secondary-navy), var(--primary-dark));
}

.final-cta-inner {
    grid-template-columns: minmax(0, 1fr) auto;
}

.content-area {
    max-width: 920px;
}

.content-area.narrow {
    max-width: 820px;
}

.content-area h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
}

.content-area ul {
    padding-left: 22px;
}

.content-area li {
    margin-bottom: 10px;
}

.content-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.contact-grid {
    grid-template-columns: 0.75fr 1.25fr;
    align-items: start;
}

.contact-list li {
    margin-bottom: 12px;
    color: var(--text-gray);
}

.contact-list a {
    color: var(--text-dark);
    font-weight: 800;
}

.contact-list.large li {
    margin-bottom: 16px;
}

.inquiry-form {
    margin-top: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-grid label {
    display: grid;
    gap: 7px;
    color: var(--text-dark);
    font-weight: 800;
}

.span-2 {
    grid-column: span 2;
}

input,
select,
textarea {
    width: 100%;
    padding: 13px 14px;
    color: var(--text-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    font: inherit;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--action-orange);
    outline: 2px solid rgba(255, 106, 0, 0.18);
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}

.form-actions p {
    margin: 0;
}

.site-footer {
    padding: 62px 0 34px;
    color: rgba(255, 255, 255, 0.72);
    background: var(--primary-dark);
}

.site-footer h2,
.site-footer h3 {
    color: var(--white);
}

.site-footer p,
.site-footer li {
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 32px;
}

.footer-menu {
    display: grid;
    gap: 9px;
}

.footer-menu a,
.site-footer a {
    color: rgba(255, 255, 255, 0.82);
}

.footer-bottom {
    margin-top: 38px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.92rem;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 18px;
    color: var(--white);
    background: var(--action-orange);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-weight: 900;
}

.floating-whatsapp:hover {
    background: var(--action-orange-dark);
}

.mobile-contact-bar {
    display: none;
}

@media (max-width: 1080px) {
    .header-inner {
        min-height: 68px;
    }

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

    .site-nav {
        position: fixed;
        inset: 68px 0 auto 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 22px 20px 26px;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .menu {
        display: grid;
        gap: 2px;
    }

    .menu a {
        display: block;
        padding: 14px 8px;
        font-size: 1rem;
    }

    .site-header .primary-menu .menu-item-has-children > a::after {
        display: none;
    }

    .site-header .primary-menu .sub-menu {
        position: static;
        display: block !important;
        min-width: 0;
        margin: 0 0 6px;
        padding: 0 0 0 14px;
        border: 0;
        border-left: 2px solid var(--border);
        border-radius: 0;
        box-shadow: none;
    }

    .site-header .primary-menu .sub-menu a {
        padding: 10px 8px;
        white-space: normal;
    }

    .header-quote {
        width: 100%;
    }

    .hero-grid,
    .page-hero-grid,
    .split-grid,
    .contact-grid,
    .final-cta-inner {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 720px) {
    body {
        padding-bottom: 64px;
    }

    .container {
        width: min(100% - 28px, 1180px);
    }

    .site-brand span:last-child {
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

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

    .hero {
        min-height: 0;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 12vw, 3.4rem);
    }

    .section {
        padding: 58px 0;
    }

    .hero-actions,
    .content-cta,
    .form-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
        min-height: 52px;
    }

    .trust-points,
    .grid-3,
    .grid-2,
    .process-list,
    .stat-grid,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .span-2 {
        grid-column: auto;
    }

    .visual-placeholder {
        min-height: 320px;
    }

    .hero-media {
        width: 100%;
        border-radius: 12px;
    }

    .visual-card-main,
    .visual-card-small {
        right: 20px;
        left: 20px;
        width: auto;
    }

    .visual-card-small {
        top: 26px;
    }

    .visual-card-main {
        bottom: 26px;
    }

    .info-card,
    .contact-card,
    .form-panel,
    .timeline-card {
        padding: 22px;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 78px;
        min-height: 44px;
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .mobile-contact-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 70;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        background: var(--primary-dark);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .mobile-contact-bar a {
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-weight: 900;
    }

    .mobile-contact-bar a:first-child {
        background: var(--action-orange);
    }
}

@media (max-width: 420px) {
    h1 {
        font-size: 2.18rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .brand-mark {
        width: 36px;
        height: 36px;
    }
}
