@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@300;400;500;600;700&family=Nunito+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #2f324a;
  --navy-2: #303148;
  --orange: #f9af4f;
  --orange-strong: #ea6000;
  --green: #009246;
  --soft: #f4f6f5;
  --white: #fff;
  --line: #dde0e3;
  --body: 1300px;
  --radius: 25px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--navy); background: var(--white); font-family: "Nunito Sans", sans-serif; font-size: 17px; line-height: 1.55; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4, .button, .brand, .nav-links { font-family: "Geologica", sans-serif; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.12; }
h1 { font-size: 3rem; line-height: 1.17; }
h2 { font-size: 2.3rem; line-height: 1.1; }
h3 { font-size: 1.5rem; line-height: 1.14; }
button, input, textarea { font: inherit; }
.container { width: min(var(--body), calc(100% - 40px)); margin-inline: auto; }
.muted { color: #6d7184; }
.center { text-align: center; }

.site-header { position: relative; z-index: 50; color: var(--navy); background: #fff; }
.home .site-header { position: absolute; inset: 0 0 auto; color: #fff; background: transparent; }
.nav-row { display: flex; min-height: 96px; align-items: center; gap: 38px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 1.55rem; font-weight: 600; letter-spacing: -.035em; }
.brand-symbol { position: relative; display: inline-block; width: 64px; height: 42px; flex: 0 0 auto; }
.brand-symbol::before, .brand-symbol::after { position: absolute; left: 0; width: 48px; height: 13px; background: var(--orange-strong); clip-path: polygon(0 0, 100% 0, 82% 100%, 17% 100%); content: ""; }
.brand-symbol::before { top: 3px; }
.brand-symbol::after { top: 22px; }
.brand-symbol i { position: absolute; z-index: 1; top: 3px; right: 0; width: 30px; height: 32px; background: currentColor; clip-path: polygon(0 0, 58% 0, 100% 50%, 58% 100%, 0 100%, 42% 50%); }
.nav-links { display: flex; margin-left: auto; align-items: center; gap: 28px; font-size: .9rem; }
.nav-links a { font-weight: 400; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--orange-strong); }
.home .nav-links a:hover, .home .nav-links a[aria-current="page"] { color: var(--orange); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.cabinet-link { font-family: "Geologica", sans-serif; font-size: .87rem; }
.site-header .header-actions .button { min-height: 48px; padding: .8rem 1.5rem; border: 2px solid var(--orange-strong); border-radius: 10px; background: transparent; font-size: 1rem; }
.home .site-header .header-actions .button { color: #fff; border-color: #fff; }
.menu-button { display: none; width: 54px; height: 54px; padding: 0; border: 0; color: inherit; background: transparent; font-size: 2rem; line-height: 1; cursor: pointer; }

.button { display: inline-flex; min-height: 52px; padding: 1rem 2rem; align-items: center; justify-content: center; border: 0; border-radius: 50px; color: var(--navy); background: var(--orange); font-size: 1.1rem; font-weight: 400; line-height: 1; cursor: pointer; transition: transform .2s ease, filter .2s ease; }
.button:hover { filter: brightness(.97); transform: translateY(-2px); }
.button--white { background: #fff; }
.button--wide { width: 100%; }

.home-hero { position: relative; display: flex; min-height: 100dvh; color: #fff; background: url("/assets/images/hero-warehouse-placeholder.webp") center / cover no-repeat; }
.home-hero::before { position: absolute; inset: 0; background: rgba(47, 50, 74, .8); content: ""; }
.home-hero .container { position: relative; display: flex; padding-block: 150px 90px; justify-content: center; flex-direction: column; gap: 32px; }
.hero-copy { width: 80%; }
.home-hero h1 { color: #fff; }
.hero-points { display: grid; width: 55%; margin: 0; padding-left: 24px; gap: 4px; color: #f0f1f6; font-size: 1.08rem; }
.hero-actions { display: flex; }

.reference-section { padding: 100px 0; }
.section-soft { background: var(--soft); }
.section-dark { color: #fff; background: var(--navy); }
.section-orange { background: var(--orange); }
.section-head { max-width: 750px; margin-bottom: 42px; }
.section-head p { max-width: 900px; margin-top: 25px; font-size: 1.1rem; }
.section-head.center { margin-inline: auto; }
.section-head.center p { margin-inline: auto; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { overflow: hidden; padding: 10px 20px 26px; border-radius: var(--radius); background: #fff; }
.service-card img { width: calc(100% + 20px); max-width: none; height: 250px; margin-left: -10px; border-radius: 20px; object-fit: cover; }
.service-card h3 { margin: 24px 0 15px; }
.service-card p { margin: 0; font-size: 1.05rem; }
.service-card--cta { display: flex; min-height: 500px; padding: 36px 24px 0; justify-content: space-between; align-items: center; flex-direction: column; background: var(--orange); text-align: center; }
.service-card--cta img { width: 80%; max-width: 100%; height: auto; margin: 0 auto; border-radius: 0; object-fit: contain; }
.service-card--cta h3 { font-size: 1.8rem; }

.tariff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tariff-card { position: relative; overflow: hidden; border-radius: 20px; background: var(--soft); }
.tariff-head { padding: 15px; color: #fff; background: var(--navy-2); text-align: center; }
.tariff-head h3 { font-size: 2.3rem; line-height: 2.75rem; }
.tariff-price { padding: 40px 20px 20px; text-align: center; }
.tariff-price strong { display: block; color: var(--navy-2); font-family: "Geologica", sans-serif; font-size: 3rem; font-weight: 600; line-height: .9; white-space: nowrap; }
.tariff-price strong small { font-size: .55em; font-weight: 600; }
.tariff-price span { display: block; margin-top: 8px; font-size: 1.05rem; line-height: 1.25; }
.tariff-audience { min-height: 66px; margin: 0; padding: 0 28px; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 1.05rem; line-height: 1.4; }
.tariff-badge { position: absolute; z-index: 2; top: 18px; right: -31px; width: 120px; padding: 5px 0; color: var(--navy); background: var(--orange); font-family: "Geologica", sans-serif; font-size: .72rem; text-align: center; transform: rotate(45deg); }
.tariff-list { margin: 0; padding: 5px 30px 25px; list-style: none; }
.tariff-list li { position: relative; padding: 14px 0 14px 34px; border-bottom: 1px solid #d4d6d6; font-size: .9rem; line-height: 1.3rem; }
.tariff-list li::before { position: absolute; left: 0; color: var(--navy); content: "\2714"; font-size: 1.25rem; }
.tariff-footer { padding: 22px 24px 28px; text-align: center; }
.tariff-footer .button { min-width: 216px; }
.tariff-note { margin: 14px 0 0; font-size: .8rem; }

.why-section { position: relative; color: #fff; background: url("/assets/images/warehouse-wide-placeholder.webp") center / cover no-repeat; }
.why-section .container { position: relative; }
.why-section .section-head { max-width: none; }
.why-section .section-head p { max-width: 900px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card { padding: 25px; border-radius: 20px; color: var(--navy); background: var(--soft); box-shadow: 0 0 10px rgba(0, 0, 0, .5); }
.feature-card-head { display: flex; min-height: 50px; align-items: center; gap: 14px; }
.feature-card h3 { font-size: 1.2rem; line-height: 1.5rem; }
.feature-card p { margin: 15px 0 0; font-size: 1.05rem; line-height: 1.45; }
.feature-icon { width: 50px; height: 50px; flex: 0 0 50px; }
.check-icon { display: grid; width: 50px; height: 50px; margin-bottom: 18px; place-items: center; color: #fff; border-radius: 50%; background: var(--green); font-size: 1.25rem; font-weight: 700; }

.photo-band { position: relative; color: #fff; background: url("/assets/images/warehouse-wide-placeholder.webp") center / cover no-repeat; }
.photo-band::before { position: absolute; inset: 0; background: rgba(47,50,74,.78); content: ""; }
.photo-band .container { position: relative; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: item; }
.step { padding: 28px; border-radius: 20px; background: rgba(255,255,255,.1); counter-increment: item; }
.step::before { display: block; margin-bottom: 20px; color: var(--orange); content: "0" counter(item); font-family: "Geologica", sans-serif; font-size: 2rem; }
.step h3 { margin-bottom: 10px; }
.cta-panel { display: flex; padding: 50px; align-items: center; justify-content: space-between; gap: 30px; border-radius: 25px; background: var(--orange); }
.cta-panel h2 { max-width: 690px; }

.internal-main { background: var(--soft); }
.page-intro { padding: 70px 0 50px; }
.page-intro--compact { padding-top: 50px; }
.page-intro h1 { max-width: 900px; }
.page-intro p { max-width: 880px; margin-top: 28px; font-size: 1.2rem; }
.crumbs { margin-bottom: 25px; color: #707488; font-size: .85rem; }

.stack-cards { display: grid; padding-bottom: 100px; gap: 28px; }
.stack-card { overflow: visible; border-radius: 25px; background: transparent; }
.stack-card-images { display: grid; padding: 20px; grid-template-columns: 1fr 1fr; gap: 8px; border-radius: 25px; background: #fff; }
.stack-card-images img { width: 100%; height: 380px; border-radius: 20px; object-fit: cover; }
.stack-card-images img:only-child { height: auto; grid-column: 1 / -1; }
.stack-card-copy { margin-top: 20px; padding: 40px; border-radius: 25px; background: #fff; }
.stack-card-copy h2 { margin-bottom: 25px; }
.stack-card-copy p { font-size: 1.1rem; }
.stack-card--single { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stack-card--single > img { width: 100%; height: 100%; min-height: 430px; border-radius: 25px; object-fit: cover; }
.stack-card--single .stack-card-copy { margin-top: 0; }

.about-icons { display: flex; overflow: hidden; margin-top: 55px; gap: 18px; }
.about-chip { display: flex; min-width: 310px; padding: 26px; align-items: center; gap: 18px; border-radius: 20px; background: #fff; }
.about-chip .check-icon { margin: 0; flex: 0 0 auto; }
.about-team { position: relative; padding: 100px 0; color: #fff; background: url("/assets/images/process-placeholder.webp") center / cover no-repeat; }
.about-team::before { position: absolute; inset: 0; background: rgba(47,50,74,.78); content: ""; }
.about-team .container { position: relative; }
.about-team p { max-width: 850px; margin-top: 28px; font-size: 1.2rem; }

.blog-grid { display: grid; padding-bottom: 100px; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.post-card { position: relative; overflow: hidden; border-radius: 25px; background: #fff; }
.post-card img { width: 100%; height: 260px; object-fit: cover; }
.post-card-copy { padding: 28px; }
.post-card .tag { position: absolute; top: 20px; right: 20px; display: inline-block; padding: 6px 15px; color: #fff; border-radius: 30px; background: var(--navy); font-family: "Geologica", sans-serif; font-size: .82rem; }
.post-card h2, .post-card h3 { margin: 20px 0; font-size: 1.45rem; }
.post-card p { font-size: 1.02rem; }
.post-card .read { color: var(--orange-strong); font-family: "Geologica", sans-serif; }

.contact-layout { display: grid; padding-bottom: 100px; grid-template-columns: 1fr 1fr; gap: 28px; }
.contact-card, .lead-form { padding: 48px; border-radius: 25px; background: #fff; }
.contact-card h1, .contact-card h2 { margin-bottom: 35px; }
.contact-line { margin: 30px 0; font-family: "Geologica", sans-serif; font-size: 1.6rem; font-weight: 500; }
.contact-line strong { color: var(--orange-strong); }
.map-placeholder { min-height: 440px; margin-bottom: 50px; padding: 48px; display: flex; align-items: flex-end; border: 20px solid #fff; border-radius: 25px; background: linear-gradient(135deg, rgba(47,50,74,.08), rgba(249,175,79,.28)), repeating-linear-gradient(25deg, #e6e9e7 0 18px, #f4f6f5 18px 55px); }
.map-placeholder div { max-width: 560px; padding: 24px; border-radius: 18px; background: #fff; }
.map-placeholder strong, .map-placeholder span { display: block; }
.map-placeholder strong { margin-bottom: 6px; font-family: "Geologica", sans-serif; font-size: 1.5rem; }
.notice { padding: 20px 22px; border-left: 4px solid var(--orange-strong); border-radius: 10px; background: #fff5e8; }
.field { display: grid; margin-bottom: 16px; gap: 7px; }
.field label { font-family: "Geologica", sans-serif; font-size: .86rem; }
.field input, .field textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.field textarea { min-height: 120px; resize: vertical; }
.form-status { min-height: 24px; margin-top: 12px; color: var(--green); }

.faq { max-width: 930px; margin: 45px auto 0; }
.faq details { border-bottom: 1px solid #d5d7db; }
.faq summary { padding: 24px 45px 24px 0; font-family: "Geologica", sans-serif; font-size: 1.05rem; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { float: right; color: var(--orange-strong); content: "+"; font-size: 1.5rem; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding-bottom: 22px; }

.legal { max-width: 900px; padding-bottom: 100px; }
.legal h2 { margin: 42px 0 18px; font-size: 1.8rem; }
.article { max-width: 850px; }
.article-cover { width: 100%; max-height: 480px; margin: 35px 0; border-radius: 25px; object-fit: cover; }
.article h2 { margin: 42px 0 16px; font-size: 2rem; }
.article-intro { font-size: 1.2rem; }
.article p, .article li { color: #555b70; }
.article li { margin-bottom: 9px; }
.error-page { min-height: 520px; display: flex; align-items: center; justify-content: center; flex-direction: column; }
.error-page p { margin: 24px 0 30px; font-size: 1.2rem; }
.login-page { min-height: 650px; display: flex; align-items: center; }
.login-page .contact-card { max-width: 850px; margin-inline: auto; }
.login-page p { margin: 25px auto 30px; font-size: 1.15rem; }

.site-footer { padding: 85px 0 30px; color: #fff; background: var(--navy); }
.site-footer .brand-symbol i { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1fr; gap: 45px; }
.footer-copy { max-width: 320px; margin-top: 20px; color: #d6d7de; }
.footer-title { margin-bottom: 18px; font-family: "Geologica", sans-serif; }
.footer-links { display: grid; gap: 10px; color: #d6d7de; font-size: .9rem; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { display: flex; margin-top: 55px; padding-top: 25px; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.15); color: #afb2c0; font-size: .8rem; }

@media (max-width: 1024px) {
  .nav-links, .header-actions .cabinet-link { display: none; }
  .menu-button { display: grid; place-items: center; margin-left: auto; }
  .nav-links.open { position: fixed; display: grid; inset: 0; margin: 0; padding: 120px 30px 45px; align-content: start; color: var(--navy); background: #fff; font-size: 1.4rem; gap: 20px; }
  .menu-button { position: relative; z-index: 2; }
  .menu-button[aria-expanded="true"] { color: var(--navy); }
  .service-grid, .tariff-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-points { width: 70%; }
  .section-head { max-width: none; }
  .reference-section { padding: 80px 0; }
  .stack-card--single { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-copy, .hero-points { width: 100%; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .container { width: calc(100% - 40px); }
  h1 { font-size: 2rem; line-height: 2.2rem; }
  h2 { font-size: 1.6rem; line-height: 1.13; }
  h3 { font-size: 1.3rem; line-height: 1.15; }
  .nav-row { min-height: 80px; }
  .brand { gap: 8px; font-size: 1.38rem; }
  .brand-symbol { width: 58px; height: 38px; }
  .brand-symbol::before, .brand-symbol::after { width: 43px; height: 12px; }
  .brand-symbol::after { top: 21px; }
  .brand-symbol i { width: 28px; height: 30px; }
  .header-actions .button { display: none; }
  .menu-button { width: 48px; height: 48px; font-size: 2rem; }
  .home-hero .container { width: 100%; padding: 110px 23px 70px; justify-content: flex-end; gap: 26px; }
  .hero-copy, .hero-points { width: 100%; }
  .home-hero h1 { font-size: 1.7rem; line-height: 2.2rem; }
  .hero-points { padding-left: 20px; font-size: 1rem; }
  .button { min-height: 51px; padding: 1rem 2rem; font-size: 1.2rem; }
  .reference-section { padding: 70px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head p { margin-top: 24px; font-size: 1rem; }
  .service-grid, .tariff-grid, .feature-grid, .blog-grid { grid-template-columns: 1fr; }
  .service-card { padding: 10px 20px 28px; }
  .service-card img { height: 250px; }
  .service-card p { font-size: 1rem; }
  .service-card--cta { min-height: 460px; padding-top: 30px; }
  .service-card--cta img { width: 80%; height: auto; }
  .tariff-head h3 { font-size: 2.3rem; }
  .tariff-price { padding: 30px 20px 18px; }
  .tariff-price strong { font-size: 2.5rem; }
  .tariff-audience { min-height: auto; padding-inline: 28px; }
  .tariff-footer { padding-top: 24px; }
  .feature-grid { gap: 14px; }
  .feature-card { padding: 18px; }
  .feature-card-head { min-height: 40px; gap: 12px; }
  .feature-icon { width: 30px; height: 30px; flex-basis: 30px; }
  .feature-card h3 { font-size: 1.2rem; line-height: 1.4rem; }
  .feature-card p { margin-top: 10px; font-size: .96rem; line-height: 1.4; }
  .steps { grid-template-columns: 1fr; }
  .cta-panel { padding: 36px 26px; align-items: flex-start; flex-direction: column; }
  .page-intro { padding: 70px 0 45px; }
  .page-intro p { font-size: 1.1rem; }
  .stack-cards { padding-bottom: 70px; gap: 25px; }
  .stack-card-images { padding: 10px; gap: 8px; }
  .stack-card-images img { height: 230px; }
  .stack-card-images img:only-child { height: auto; }
  .stack-card-copy { padding: 30px 20px; }
  .stack-card-copy p { font-size: 1rem; }
  .stack-card--single { display: block; }
  .stack-card--single > img { min-height: 250px; }
  .stack-card--single .stack-card-copy { margin-top: 20px; }
  .about-icons { margin-right: -20px; }
  .about-chip { min-width: 300px; }
  .about-team { padding: 70px 0; }
  .about-team p { font-size: 1rem; }
  .blog-grid { padding-bottom: 70px; }
  .post-card img { height: 250px; }
  .post-card-copy { padding: 30px; }
  .contact-layout { padding-bottom: 70px; }
  .map-placeholder { min-height: 360px; margin-bottom: 50px; padding: 15px; border-width: 10px; }
  .map-placeholder div { padding: 20px; }
  .contact-card, .lead-form { padding: 30px 24px; }
  .contact-line { font-size: 1.28rem; }
  .legal { padding-bottom: 70px; }
  .article h2 { font-size: 1.6rem; }
  .site-footer { padding-top: 70px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
