:root {
    --bg: #123A2A;
    --bg-soft: #1C4F3A;
    --cream: #FBFEFE;
    --cream-soft: rgba(251, 254, 254, 0.78);
    --ink: #FBFEFE;
    --muted: rgba(251, 254, 254, 0.72);
    --muted-dark: rgba(18, 19, 19, 0.68);
    --gold: #1D934E;
    --gold-soft: rgba(29, 147, 78, 0.18);
    --green: #145A3D;
    --green-deep: #0F2E22;
    --line: rgba(248, 242, 232, 0.14);
    --line-dark: rgba(20, 30, 22, 0.14);
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 15% 12%, rgba(29, 147, 78, 0.20), transparent 28rem),
        radial-gradient(circle at 82% 18%, rgba(11, 106, 46, 0.38), transparent 34rem),
        linear-gradient(135deg, #123A2A 0%, #1B5A41 42%, #246B4D 68%, #123A2A 100%);
    line-height: 1.55;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background: url("background-office.webp") center / cover no-repeat;
    opacity: 0.10;
    filter: saturate(0.65) contrast(1.08);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(18, 58, 42, 0.10), rgba(18, 58, 42, 0.48)),
        linear-gradient(90deg, rgba(18, 58, 42, 0.58), rgba(36, 107, 77, 0.22), rgba(18, 58, 42, 0.54));
    pointer-events: none;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
}

.container {
    width: min(calc(100% - 42px), var(--max));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    top: -120px;
    left: 16px;
    z-index: 200;
    padding: 10px 14px;
    background: var(--cream);
    color: #101312;
    border-radius: 999px;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 46, 34, 0.74);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.55));
}

.language-menu {
    position: relative;
}

.language-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    min-width: 128px;
    padding: 9px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(251, 254, 254, 0.08);
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.language-button:focus {
    outline: 3px solid rgba(29, 147, 78, 0.30);
    outline-offset: 2px;
}

.language-current {
    letter-spacing: 0.06em;
}

.language-caret {
    margin-left: auto;
    opacity: 0.82;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 228px;
    padding: 10px;
    border-radius: 20px;
    background: rgba(12, 14, 12, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 750;
}

.language-option:hover,
.language-option:focus,
.language-option.is-active {
    background: rgba(29, 147, 78, 0.16);
    outline: none;
}

.language-option-code {
    min-width: 28px;
}

.language-option-name {
    color: var(--cream-soft);
    font-weight: 600;
}

.flag {
    display: inline-block;
    width: 22px;
    height: 16px;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    object-fit: cover;
    background: #ffffff;
}

.premium-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(76px, 9vw, 132px) 0 clamp(72px, 8vw, 124px);
}

.premium-hero::before {
    content: "";
    position: absolute;
    inset: 8% 5% auto auto;
    width: min(44vw, 560px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29, 147, 78, 0.18), transparent 64%);
    filter: blur(4px);
    animation: slowPulse 9s ease-in-out infinite;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.65fr);
    align-items: center;
    gap: clamp(42px, 6vw, 86px);
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

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

h1 {
    max-width: 820px;
    margin-bottom: 24px;
    font-size: clamp(2.05rem, 4.7vw, 4.45rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
    font-weight: 900;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(1.55rem, 2.7vw, 2.75rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

h3 {
    margin-bottom: 12px;
    font-size: 1.16rem;
}

.hero-lead {
    max-width: 700px;
    margin-bottom: 34px;
    color: var(--cream-soft);
    font-size: clamp(1.06rem, 1.45vw, 1.34rem);
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, #20A050, #0B6A2E);
    color: #FBFEFE;
    box-shadow: 0 18px 44px rgba(29, 147, 78, 0.26);
}

.button-ghost {
    border-color: var(--line);
    color: var(--ink);
    background: rgba(248, 242, 232, 0.06);
}

.button-full {
    width: 100%;
}

.button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.proof-row span {
    display: inline-flex;
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--cream-soft);
    background: rgba(248, 242, 232, 0.055);
    font-size: 0.85rem;
    font-weight: 750;
}

.hero-object {
    display: grid;
    place-items: center;
}

.orbital-card {
    position: relative;
    width: min(100%, 390px);
    min-height: 460px;
    display: grid;
    place-items: center;
    padding: 36px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(150deg, rgba(251, 254, 254, 0.16), rgba(251, 254, 254, 0.045)),
        radial-gradient(circle at 70% 20%, rgba(29, 147, 78, 0.24), transparent 45%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.orbital-card::before,
.orbital-card::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(29, 147, 78, 0.28);
    border-radius: 50%;
}

.orbital-card::before {
    width: 330px;
    height: 330px;
    animation: rotateSlow 22s linear infinite;
}

.orbital-card::after {
    width: 230px;
    height: 230px;
    animation: rotateSlow 16s linear infinite reverse;
}

.orbital-card img {
    position: relative;
    z-index: 1;
    width: 178px;
    height: 178px;
    object-fit: contain;
    filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.55));
}

.orbital-card div {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 1;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.orbital-card strong,
.orbital-card span {
    display: block;
}

.orbital-card strong {
    letter-spacing: 0.14em;
    font-size: 0.92rem;
}

.orbital-card span {
    margin-top: 8px;
    color: var(--cream-soft);
    font-size: 0.92rem;
}

.section {
    padding: clamp(70px, 8vw, 112px) 0;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(34px, 6vw, 76px);
    align-items: start;
}

.section-heading p:not(.eyebrow) {
    max-width: 720px;
    color: var(--cream-soft);
    font-size: 1.06rem;
}

.centered {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.editorial-card {
    padding: clamp(26px, 4vw, 44px);
    border-radius: var(--radius-xl);
    background: rgba(248, 242, 232, 0.92);
    color: #171b16;
    border: 1px solid rgba(255, 255, 255, 0.32);
    box-shadow: var(--shadow);
}

.editorial-card p {
    margin-bottom: 1.05em;
    color: rgba(23, 27, 22, 0.78);
    font-size: 1.02rem;
    line-height: 1.72;
}

.editorial-card .signature {
    margin-top: 1.6em;
    margin-bottom: 0;
    color: #141711;
    font-weight: 950;
    letter-spacing: 0.14em;
}

.dark-section {
    background: rgba(251, 254, 254, 0.035);
    border-block: 1px solid var(--line);
}

.premium-grid,
.product-grid,
.process-grid {
    display: grid;
    gap: 18px;
}

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

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

.premium-card,
.product-card,
.process-card {
    min-height: 230px;
    padding: 26px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: linear-gradient(150deg, rgba(251, 254, 254, 0.10), rgba(251, 254, 254, 0.04));
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18);
    transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.premium-card:hover,
.product-card:hover,
.process-card:hover {
    transform: translateY(-4px);
    border-color: rgba(29, 147, 78, 0.44);
    background: linear-gradient(150deg, rgba(251, 254, 254, 0.14), rgba(251, 254, 254, 0.055));
}

.card-mark {
    display: block;
    width: 42px;
    height: 2px;
    margin-bottom: 28px;
    background: var(--gold);
}

.premium-card p,
.product-card p,
.process-card p {
    color: var(--cream-soft);
}

.product-section {
    background: linear-gradient(180deg, rgba(251, 254, 254, 0.96), rgba(187, 211, 196, 0.94));
    color: #151812;
}

.product-section .eyebrow {
    color: #0B6A2E;
}

.product-section .section-heading p {
    color: var(--muted-dark);
}

.product-card {
    border-color: rgba(20, 30, 22, 0.12);
    background: rgba(255, 255, 255, 0.58);
    color: #151812;
    box-shadow: 0 22px 52px rgba(30, 24, 14, 0.12);
}

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

.product-visual {
    height: 116px;
    margin-bottom: 24px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.86), transparent 26%),
        linear-gradient(135deg, rgba(11, 106, 46, 0.16), rgba(29, 147, 78, 0.24));
    border: 1px solid rgba(20, 30, 22, 0.08);
}

.process-card span {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--gold);
    font-weight: 950;
    letter-spacing: 0.12em;
}

.contact-cta-section {
    padding-bottom: clamp(90px, 9vw, 132px);
}

.contact-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: clamp(28px, 5vw, 54px);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(251, 254, 254, 0.14), rgba(251, 254, 254, 0.055)),
        radial-gradient(circle at 80% 20%, rgba(29, 147, 78, 0.22), transparent 42%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.contact-cta p {
    max-width: 660px;
    color: var(--cream-soft);
}

.contact-modal[hidden] {
    display: none;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 22px;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 30, 22, 0.68);
    backdrop-filter: blur(12px);
}

.modal-panel {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: min(88vh, 900px);
    overflow: auto;
    padding: clamp(24px, 4vw, 42px);
    border-radius: 30px;
    background: rgba(251, 254, 254, 0.97);
    color: #151812;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.42);
    animation: modalIn 220ms ease-out;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(20, 30, 22, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    color: #151812;
    font-size: 1.6rem;
    cursor: pointer;
}

.modal-heading {
    max-width: 620px;
    margin-bottom: 26px;
}

.modal-heading h2 {
    font-size: clamp(1.45rem, 2.6vw, 2.35rem);
}

.modal-heading p:not(.eyebrow) {
    color: var(--muted-dark);
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form label,
.captcha-box label {
    display: grid;
    gap: 8px;
    margin: 0;
    color: #172015;
    font-size: 0.9rem;
    font-weight: 850;
}

input,
textarea {
    width: 100%;
    border: 1px solid rgba(20, 30, 22, 0.16);
    border-radius: 16px;
    padding: 14px 15px;
    background: rgba(255, 255, 255, 0.78);
    color: #172015;
    font: inherit;
}

input:focus,
textarea:focus {
    outline: 3px solid rgba(29, 147, 78, 0.30);
    border-color: rgba(11, 106, 46, 0.46);
}

textarea {
    resize: vertical;
}

.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.consent-row {
    display: grid !important;
    grid-template-columns: 22px 1fr;
    gap: 12px !important;
    align-items: start;
    padding: 14px 15px;
    border-radius: 16px;
    background: rgba(29, 147, 78, 0.12);
    border: 1px solid rgba(11, 106, 46, 0.18);
    color: #172015;
    font-weight: 650 !important;
    line-height: 1.45;
}

.consent-row input {
    width: 18px;
    height: 18px;
    margin: 3px 0 0;
    accent-color: #1D934E;
}

.consent-row a {
    color: #151812;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.captcha-box {
    padding: 18px;
    border-radius: 18px;
    background: rgba(23, 73, 46, 0.08);
    border: 1px solid rgba(23, 73, 46, 0.14);
}

.captcha-question {
    margin: -4px 0 12px;
    color: #172015;
    font-weight: 850;
}

.form-help {
    margin: 10px 0 0;
    color: #8a241f;
    font-size: 0.92rem;
}

.notice {
    margin: 0 0 22px;
    padding: 15px 17px;
    border-radius: 17px;
    font-weight: 800;
}

.notice-success {
    color: #15301f;
    background: rgba(23, 73, 46, 0.12);
    border: 1px solid rgba(23, 73, 46, 0.20);
}

.notice-error {
    color: #7f1d1d;
    background: rgba(254, 226, 226, 0.86);
    border: 1px solid rgba(127, 29, 29, 0.20);
}

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(15, 46, 34, 0.88);
}

.footer-inner {
    min-height: 72px;
    justify-content: center;
    color: var(--muted);
    font-size: 0.92rem;
    flex-wrap: wrap;
}

.legal-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
}

.legal-menu a {
    color: var(--cream-soft);
    text-decoration: none;
    font-weight: 750;
}

.legal-menu a:hover,
.legal-menu a:focus {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: revealIn 640ms ease forwards;
}

.reveal:nth-child(2) {
    animation-delay: 90ms;
}

@keyframes revealIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes rotateSlow {
    to {
        transform: rotate(360deg);
    }
}

@keyframes slowPulse {
    50% {
        opacity: 0.62;
        transform: scale(1.04);
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

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

    .hero-object {
        order: -1;
    }

    .orbital-card {
        min-height: 300px;
        width: min(100%, 520px);
        margin-inline: auto;
    }

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

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

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

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

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

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

    .language-button {
        min-width: 104px;
    }

    .language-dropdown {
        width: min(228px, calc(100vw - 30px));
    }

    .premium-hero {
        padding-top: 52px;
    }

    h1 {
        font-size: clamp(1.95rem, 10vw, 3.1rem);
    }

    .premium-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .premium-card,
    .product-card,
    .process-card {
        min-height: auto;
    }

    .modal-panel {
        max-height: 92vh;
        border-radius: 24px;
    }
}

/* v1.0.19 - mobile hero cleanup */
@media (max-width: 760px) {
    .premium-hero {
        padding-top: 34px;
    }

    .hero-grid {
        gap: 0;
    }

    .hero-object {
        display: none;
    }
}

/* v1.0.21 - transparent approach block */
.intro-section .editorial-card {
    background: transparent !important;
    background-image: none !important;
    color: #FBFEFE !important;
    box-shadow: none !important;
    border: 1px solid rgba(251, 254, 254, 0.16) !important;
    backdrop-filter: none !important;
}

.intro-section .editorial-card,
.intro-section .editorial-card *,
.intro-section .editorial-card h1,
.intro-section .editorial-card h2,
.intro-section .editorial-card h3,
.intro-section .editorial-card p,
.intro-section .editorial-card span,
.intro-section .editorial-card strong {
    color: #FBFEFE !important;
}
