:root {
    color-scheme: light;
    font-family: 'Manrope', sans-serif;
    color: #1c1c1c;
    background: #ffffff;
    --color-deep: #004B49;
    --color-teal: #00857A;
    --color-orange: #FF9E1B;
    --color-cream: #E6D5B8;
    --color-light: #F2F8F7;
    --color-card: #FAFDFC;
    --color-border: #d8e6e4;
    --color-dark-card: #292929;
    --color-bonus-bg: #fff8ec;
    --color-bonus-border: #ffe0ad;
    --color-bonus-text: #7a4d00;
}

@font-face {
    font-family: 'Manrope';
    src: url('asety/Font/Manrope\ font/Manrope-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: #ffffff;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #ffffff;
    color: #1c1c1c;
}

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

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

p {
    line-height: 1.75;
    color: #2f3d3c;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button,
a.button {
    font: inherit;
}

::selection {
    background: var(--color-orange);
    color: var(--color-deep);
}

:focus-visible {
    outline: 2px solid var(--color-orange);
    outline-offset: 2px;
}

.page-shell {
    background: #ffffff;
    width: min(100%, 1920px);
    max-width: 1920px;
    padding-inline: clamp(20px, 5vw, 56px);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: clamp(14px, 2vw, 22px) clamp(20px, 5vw, 56px);
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(0, 75, 73, 0.08);
}

.logo-image {
    max-width: 190px;
    width: 100%;
    height: auto;
}

.site-nav ul {
    display: flex;
    gap: clamp(18px, 3vw, 36px);
    align-items: center;
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--color-deep);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.95rem;
}

.hero-section {
    position: relative;
    min-height: clamp(420px, 60vh, 640px);
    display: flex;
    align-items: center;
    background-color: var(--color-deep);
    background-image: linear-gradient(135deg, rgba(0, 75, 73, 0.88), rgba(0, 133, 122, 0.72)),
        url('assets/hero-bg.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-copy {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(48px, 8vw, 90px) clamp(20px, 6vw, 56px);
    text-align: center;
    color: #ffffff;
}

.eyebrow,
.card-label {
    margin: 0 0 12px;
    color: var(--color-orange);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: clamp(0.85rem, 1vw, 1rem);
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.05;
}

.hero-text {
    margin: clamp(24px, 2vw, 32px) auto 0;
    max-width: 760px;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.94);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 16px 34px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.95rem;
}

.button-primary {
    background: var(--color-orange);
    color: var(--color-deep);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    margin: 16px 34px;
}

.section {
    padding: clamp(42px, 6vw, 72px) clamp(20px, 6vw, 56px);
    scroll-margin-top: 110px;
}

.section-hero-bg {
    position: relative;
    background-color: var(--color-deep);
    background-image: linear-gradient(rgba(0, 25, 24, 0.88), rgba(0, 25, 24, 0.88)),
        url('assets/priroda.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section-bio {
    background: var(--color-cream);
}

.section-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 4vw, 44px);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.bio-copy h2,
.section-content h2,
.card h3 {
    color: var(--color-deep);
    margin: 0;
}

.bio-copy p {
    margin: 0 0 18px;
    color: #20302f;
}

.bio-copy blockquote {
    margin: 0;
    padding-left: 18px;
    border-left: 4px solid var(--color-orange);
    font-style: italic;
    color: var(--color-deep);
    line-height: 1.85;
}

.bio-image-wrap {
    display: flex;
    justify-content: center;
}

.bio-image {
    width: min(100%, 320px);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0, 75, 73, 0.25);
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-content--narrow {
    max-width: 760px;
}

.section-content--white p,
.section-content--white h2 {
    color: #ffffff;
}

.section-content--white .eyebrow {
    color: var(--color-orange);
}

.section-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
}

.section-content p,
.card p,
.card h3,
.card h2,
.card h4 {
    margin: 0;
}

.section-intro p {
    margin-top: 18px;
    color: #2f3d3c;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 28px auto 0;
}

.card {
    border-radius: 18px;
    padding: 28px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 75, 73, 0.08);
}

.card-light {
    background: var(--color-card);
    border: 1px solid var(--color-border);
}

.card-solid {
    background: #ffffff;
}

.card-solid .card-label,
.card-light .card-label,
.card-dark .card-label {
    display: block;
}

.card-dark,
.card-featured {
    background: var(--color-dark-card);
    color: #f3f3f3;
}

.card-dark p,
.card-dark h3,
.card-featured p,
.card-featured h3 {
    color: inherit;
}

.card-dark h3,
.card-featured h3 {
    margin: 0 0 12px;
    font-size: 1.2rem;
}

.card-label {
    margin-bottom: 10px;
}

.price {
    margin: 20px 0 6px;
    font-size: 1.7rem;
    font-weight: 800;
}

.price-note {
    margin: 0 0 16px;
    color: #b7b7b7;
    font-size: 0.95rem;
}

.price-note--highlight {
    color: #a9d3d0;
}

.callout-grid,
.tools-grid {
    display: grid;
    gap: 22px;
    margin-top: 34px;
}

.callout-card {
    border: 1px solid var(--color-bonus-border);
    background: var(--color-bonus-bg);
    color: var(--color-bonus-text);
    border-radius: 14px;
    padding: 20px 22px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.section-text {
    max-width: 760px;
    margin: 32px auto 0;
    line-height: 1.78;
}

.section-text--centered {
    text-align: center;
}

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

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

.section-pricing {
    background: #ffffff;
}

.section-corporate {
    background: linear-gradient(135deg, var(--color-deep), var(--color-teal));
    color: #ffffff;
}

.cards-grid--glass {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-top: 32px;
}

.card-glass {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
    color: #042a28;
}

.card-glass h3,
.card-glass p {
    color: #042a28;
}

.card-glass h3 {
    margin-bottom: 10px;
}

.tools-grid p {
    margin: 0;
    font-weight: 800;
    color: #ffffff;
}

.tools-grid ul {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.tools-grid li {
    padding-left: 16px;
    border-left: 3px solid var(--color-orange);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
}

.section-text--white {
    color: rgba(255, 255, 255, 0.9);
    max-width: 780px;
    margin: 36px auto 0;
    text-align: center;
}

.badge {
    display: inline-block;
    position: relative;
    top: -8px;
    margin-bottom: 12px;
    background: var(--color-orange);
    color: var(--color-deep);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
}

.card-featured {
    border: 2px solid var(--color-orange);
    background: var(--color-teal);
}

.site-footer {
    background: #001f1d;
    color: #f9fffb;
    padding: clamp(40px, 7vw, 64px) clamp(20px, 6vw, 56px) 32px;
}

.footer-top,
.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-top p,
.footer-bottom p {
    margin: 0;
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    color: #f9fffb;
}

.footer-top a,
.footer-bottom a {
    color: #d0fff6;
    text-decoration: underline;
}

.footer-top a:hover,
.footer-bottom a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 900px) {
    .section-inner {
        grid-template-columns: 1fr;
    }
}
