*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --ink: #162234;
    --ink-soft: #2d3e52;
    --body: #4a5568;
    --muted: #8694a7;
    --border: #dfe4ea;
    --surface: #f5f6f8;
    --canvas: #ffffff;
    --amber: #2563eb;
    --amber-hover: #1d4ed8;
    --amber-bg: #eff6ff;
    --amber-border: #60a5fa;
    --success: #16a34a;
    --success-bg: #f0fdf4;
    --error: #dc2626;
    --error-bg: #fef2f2;
}

html { scroll-behavior: smooth; scroll-padding-top: 120px; overflow-x: clip; }

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--ink);
    color: #fff;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    font-size: 0.88rem;
    z-index: 200;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

body {
    font-family: 'Sora', sans-serif;
    background: var(--canvas);
    color: var(--body);
    line-height: 1.65;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

.serif { font-family: 'Instrument Serif', serif; }

.topbar {
    background: var(--ink);
    height: 40px;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 101;
    display: flex;
    align-items: center;
}

.topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.73rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.01em;
}

.topbar-item svg {
    width: 13px; height: 13px;
    fill: var(--amber);
    flex-shrink: 0;
}

.topbar-item a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.topbar-item a:hover { color: #fff; }

.topbar-sep {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.1);
}

.header {
    position: fixed;
    top: 40px; left: 0; right: 0;
    z-index: 100;
    background: transparent;
    transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.header.scrolled {
    background: #fff;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.header.scrolled .logo { color: var(--ink); }

.logo-mark {
    width: 42px; height: 42px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.logo-mark svg { width: 22px; height: 22px; fill: var(--ink); transition: fill 0.3s; }

.header.scrolled .logo-mark { background: var(--ink); }
.header.scrolled .logo-mark svg { fill: #fff; }

.logo-text {
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.logo-text small {
    display: block;
    font-weight: 400;
    font-size: 0.66rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.header.scrolled .logo-text small { color: var(--muted); }

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

.nav a {
    font-weight: 500;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: color 0.2s;
    position: relative;
}

.nav a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 1.5px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav a:hover { color: #fff; }

.header.scrolled .nav a { color: var(--body); }
.header.scrolled .nav a:hover { color: var(--ink); }

.nav a.nav-cta {
    background: var(--amber);
    color: #fff;
    font-weight: 600;
    margin-left: 14px;
    padding: 10px 24px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s;
}

.nav a.nav-cta:hover { background: var(--amber-hover); transform: translateY(-1px); }

.header.scrolled .nav a.nav-cta { background: var(--amber); color: #fff; }
.header.scrolled .nav a.nav-cta:hover { background: var(--amber-hover); }

.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-btn span {
    display: block;
    width: 22px; height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

.header.scrolled .menu-btn span { background: var(--ink); }

.menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
    display: none;
    position: fixed;
    top: 116px; left: 0; right: 0; bottom: 0;
    background: var(--canvas);
    z-index: 99;
    flex-direction: column;
    padding: 20px 32px;
    border-top: 1px solid var(--border);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.mobile-nav.open { opacity: 1; pointer-events: all; }

.mobile-nav a {
    display: block;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ink);
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid var(--surface);
}

.mobile-nav .m-cta {
    display: block;
    margin-top: 20px;
    background: var(--amber);
    color: #fff;
    padding: 16px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    border: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: clip;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(10, 18, 30, 0.94) 0%,
        rgba(10, 18, 30, 0.78) 35%,
        rgba(10, 18, 30, 0.4) 65%,
        rgba(10, 18, 30, 0.2) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 100px;
    padding-top: 160px;
    max-width: 820px;
}

.hero-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--amber-border);
    margin-bottom: 28px;
}

.hero h1 {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: clamp(3.2rem, 7vw, 5.6rem);
    line-height: 1.04;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

.hero h1 em {
    font-style: normal;
    background: linear-gradient(to right, var(--amber-border), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.86rem;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(0.98) translateY(0); }
.btn svg { width: 16px; height: 16px; fill: currentColor; }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-soft); }

.btn-amber { background: var(--amber); color: #fff; }
.btn-amber:hover { background: var(--amber-hover); }

.btn-ghost-light {
    background: none;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-ghost {
    background: none;
    color: var(--ink);
    border: 1.5px solid var(--border);
}

.btn-ghost:hover { border-color: var(--ink); background: var(--surface); }

.stats-strip {
    background: transparent;
    position: relative;
    z-index: 5;
    margin-top: -52px;
    padding: 0 32px;
}

.stats-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--canvas);
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
}

.stat-item {
    padding: 40px 0;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-item strong {
    display: block;
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: 2.6rem;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.sec { padding: 110px 0; }
.sec-surface { background: var(--surface); }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

.sec-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--amber);
    margin-bottom: 18px;
}

.sec-title {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: clamp(2rem, 3.8vw, 2.9rem);
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.sec-desc {
    margin-top: 16px;
    font-size: 1rem;
    color: var(--body);
    line-height: 1.75;
    max-width: 520px;
}

.svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 56px;
}

.svc-card {
    border-radius: 14px;
    overflow: hidden;
    background: var(--canvas);
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.svc-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.07);
    transform: translateY(-4px);
}

.svc-img { overflow: hidden; }

.svc-img img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.svc-card:hover .svc-img img { transform: scale(1.03); }

.svc-body {
    padding: 32px;
}

.svc-body h3 {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: 1.55rem;
    color: var(--ink);
    margin-bottom: 10px;
}

.svc-body p {
    font-size: 0.92rem;
    color: var(--body);
    line-height: 1.7;
    margin-bottom: 20px;
}

.link-arr {
    font-weight: 700;
    font-size: 0.84rem;
    color: var(--amber);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s, color 0.2s;
}

.link-arr:hover { gap: 10px; color: var(--amber-hover); }
.link-arr svg { width: 14px; height: 14px; fill: currentColor; }

.sec-dark {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    position: relative;
    overflow: clip;
}

.sec-dark::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
    opacity: 0.05;
    pointer-events: none;
}

.sec-dark .sec-label { color: var(--amber-border); }
.sec-dark .sec-title { color: #fff; }
.sec-dark .sec-desc { color: rgba(255,255,255,0.55); }

.why-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: start;
    margin-top: 56px;
}

.why-img {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 3/4;
    position: sticky;
    top: 140px;
}

.why-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
}

.why-item {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 20px;
    align-items: start;
}

.why-item:first-child { padding-top: 0; }
.why-item:last-child { border: none; padding-bottom: 0; }

.why-num {
    font-family: 'Instrument Serif', serif;
    font-size: 1.5rem;
    color: var(--amber-border);
    line-height: 1;
    font-weight: 400;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
}

.why-item h3 {
    font-weight: 600;
    font-size: 1.02rem;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.why-item p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

.cta-banner {
    background: var(--ink);
    padding: 80px 0;
    position: relative;
    overflow: clip;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
    opacity: 0.12;
    pointer-events: none;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-banner h2 {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    color: #fff;
    line-height: 1.15;
}

.cta-banner p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.92);
    margin-top: 6px;
}

.btn-white {
    background: #fff;
    color: var(--ink);
    font-family: inherit;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn-white:hover { background: var(--amber); color: #fff; }
.btn-white svg { width: 16px; height: 16px; fill: currentColor; }

.diag-hero {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 72px;
    align-items: center;
    margin-top: 56px;
}

.diag-img {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    order: 2;
}

.diag-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.diag-text { order: 1; }

.check-list {
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.92rem;
    color: var(--body);
}

.check-list li::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
    margin-top: 8px;
}

.check-list li svg { display: none; }

.steps-section {
    margin-top: 64px;
    padding: 56px 48px;
    background: var(--surface);
    border-radius: 12px;
}

.steps-section h3 {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: 1.7rem;
    color: var(--ink);
    margin-bottom: 40px;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.step {
    padding: 0 28px;
    border-right: 1px solid var(--border);
    position: relative;
}

.step:first-child { padding-left: 0; }
.step:last-child { border-right: none; padding-right: 0; }

.step-n {
    font-family: 'Instrument Serif', serif;
    font-size: 2.8rem;
    color: var(--amber-border);
    line-height: 1;
    margin-bottom: 12px;
    font-weight: 400;
}

.step h4 {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink);
    margin-bottom: 6px;
}

.step p {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.6;
}

.problems {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.prob {
    background: var(--surface);
    border-radius: 12px;
    padding: 28px 24px;
    border-left: 3px solid var(--amber);
}

.prob h4 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.prob p {
    font-size: 0.86rem;
    color: var(--body);
    line-height: 1.65;
}

.faq-section {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.faq-section h3 {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: 1.7rem;
    color: var(--ink);
}

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    color: var(--ink);
    font-family: inherit;
}

.faq-q h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink);
    padding-right: 16px;
}

.faq-q .chev {
    width: 18px; height: 18px;
    fill: var(--muted);
    transition: transform 0.25s;
    flex-shrink: 0;
}

.faq-item.open .faq-q .chev { transform: rotate(180deg); }

.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq-item.open .faq-a {
    grid-template-rows: 1fr;
}

.faq-a-inner {
    overflow: hidden;
    padding: 0 0 0;
    font-size: 0.9rem;
    color: var(--body);
    line-height: 1.75;
}

.faq-item.open .faq-a-inner {
    padding: 0 0 20px;
}

.kamp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 56px;
}

.kamp-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
}

.kamp-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.kamp-card:hover img { transform: scale(1.03); }

.kamp-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px;
    background: linear-gradient(to top, rgba(22,34,52,0.88) 0%, rgba(22,34,52,0.3) 70%, transparent 100%);
}

.kamp-tag {
    display: inline-block;
    background: var(--amber);
    color: #fff;
    font-weight: 700;
    font-size: 0.68rem;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.kamp-overlay h3 {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: 1.45rem;
    color: #fff;
    margin-bottom: 6px;
}

.kamp-overlay p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 14px;
}

.kamp-link {
    font-weight: 700;
    font-size: 0.84rem;
    color: var(--amber-border);
    text-decoration: none;
}

.kamp-link:hover { text-decoration: underline; }

.reviews-widget {
    margin-top: 48px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 56px;
    margin-top: 56px;
}

.contact-info-block {
    padding: 40px;
    background: var(--ink);
    border-radius: 12px;
    color: rgba(255,255,255,0.75);
}

.contact-info-block h3 {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: 1.55rem;
    color: #fff;
    margin-bottom: 28px;
}

.ci { display: flex; gap: 14px; margin-bottom: 24px; }
.ci:last-of-type { margin-bottom: 0; }

.ci-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ci-icon svg { width: 18px; height: 18px; fill: var(--amber-border); }

.ci-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2px;
}

.ci p { font-size: 0.9rem; line-height: 1.5; }
.ci a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; }
.ci a:hover { color: #fff; }

.contact-map {
    margin-top: 28px;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.contact-map iframe { width: 100%; height: 100%; border: none; filter: brightness(0.85); }

.contact-form h3 {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: 1.55rem;
    color: var(--ink);
    margin-bottom: 6px;
}

.contact-form > p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 28px;
}

.fg { margin-bottom: 18px; }

.fg label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink-soft);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.fg label .req { color: var(--amber); }

.fg input, .fg textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.fg input::placeholder, .fg textarea::placeholder { color: var(--muted); }

.fg input:focus, .fg textarea:focus {
    border-color: var(--ink);
    background: var(--canvas);
    box-shadow: 0 0 0 3px rgba(22, 34, 52, 0.06);
}

.fg textarea { min-height: 120px; resize: vertical; }

.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.input-uppercase { text-transform: uppercase; }

.btn-submit {
    width: 100%;
    background: var(--ink);
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 4px;
}

.btn-submit:hover:not(:disabled) { background: var(--ink-soft); }
.btn-submit:active:not(:disabled) { transform: scale(0.98); }

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.footer {
    margin-top: 0;
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    max-width: 280px;
}

.footer h4 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--body);
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover { color: var(--ink); }

.footer-c { display: flex; flex-direction: column; gap: 10px; }

.footer-ci {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 0.85rem;
    color: var(--body);
}

.footer-ci svg { width: 14px; height: 14px; fill: var(--muted); flex-shrink: 0; margin-top: 3px; }
.footer-ci a { color: var(--body); text-decoration: none; transition: color 0.2s; }
.footer-ci a:hover { color: var(--ink); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--muted);
}

.footer-bottom a { color: var(--body); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--ink); }

.footer .logo { color: var(--ink); }
.footer .logo-mark { background: var(--ink); }
.footer .logo-mark svg { fill: #fff; }
.footer .logo-text small { color: var(--muted); }

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

.fg input:focus-visible, .fg textarea:focus-visible {
    outline: none;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

#contact-form {
    max-width: 100%;
    overflow: hidden;
}

#contact-form .g-recaptcha {
    transform-origin: left center;
    max-width: 100%;
}

@media (max-width: 1024px) {
    .topbar-inner, .header-inner, .wrap { padding-left: 24px; padding-right: 24px; }
    .topbar-left { gap: 12px; }
    .topbar-right { gap: 12px; }
    .topbar-item { font-size: 0.68rem; }
    .topbar-sep { display: none; }

    .header-inner { height: 72px; }

    .steps-row { grid-template-columns: 1fr 1fr; gap: 24px; }
    .step { border-right: none; padding: 0 0 24px 0; border-bottom: 1px solid var(--border); }
    .step:nth-child(2) { border-bottom: 1px solid var(--border); }
    .step:nth-child(3) { padding-top: 0; }
    .step:last-child { border-bottom: none; padding-bottom: 0; }

    .hero { min-height: 90vh; }
    .hero-content { padding-top: 160px; padding-bottom: 80px; }

    .stats-strip { margin-top: -44px; padding: 0 24px; }
    .stats-inner { max-width: 100%; }

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

    .why-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
    .why-img { aspect-ratio: 1/1; position: static; }

    .diag-hero { grid-template-columns: 1fr; gap: 36px; }
    .diag-img { order: 0; }

    .faq-section { grid-template-columns: 1fr; gap: 24px; }

    .contact-grid { grid-template-columns: 1fr; gap: 36px; }

    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .topbar { display: none; }
    .header { top: 0; }
    .header-inner { height: 64px; padding-left: 16px; padding-right: 16px; }
    .nav { display: none; }
    .menu-btn { display: block; }
    .mobile-nav { display: flex; top: 64px; padding: 16px 20px; }

    .wrap { padding-left: 20px; padding-right: 20px; }

    .logo { gap: 10px; }
    .logo-mark { width: 36px; height: 36px; border-radius: 8px; }
    .logo-mark svg { width: 18px; height: 18px; }
    .logo-text { font-size: 0.84rem; }
    .logo-text small { font-size: 0.6rem; }

    .hero { min-height: 85vh; }
    .hero-content { padding-top: 120px; padding-bottom: 72px; max-width: 100%; }
    .hero-label { margin-bottom: 14px; font-size: 0.65rem; }
    .hero h1 { font-size: 2.4rem; margin-bottom: 20px; }
    .hero-desc { font-size: 0.95rem; margin-bottom: 28px; }

    .stats-strip { margin-top: -36px; padding: 0 20px; }
    .stats-inner { grid-template-columns: 1fr; border-radius: 12px; padding: 8px 0; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 18px 24px; text-align: left; display: flex; align-items: baseline; gap: 12px; }
    .stat-item:last-child { border-bottom: none; }
    .stat-item strong { font-size: 1.8rem; margin-bottom: 0; }
    .stat-item span { font-size: 0.7rem; }

    .cta-inner { flex-direction: column; text-align: center; }
    .cta-banner { padding: 48px 0; }

    .sec { padding: 64px 0; }

    .svc-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 36px; }
    .svc-body { padding: 24px; }

    .why-grid { grid-template-columns: 1fr; gap: 28px; margin-top: 36px; }
    .why-img { aspect-ratio: 16/10; position: static; }
    .why-list { margin-top: 24px; }
    .why-item { padding: 20px 0; gap: 14px; grid-template-columns: 40px 1fr; }
    .why-num { width: 40px; height: 40px; font-size: 1.3rem; border-radius: 8px; }

    .steps-section { padding: 28px 20px; border-radius: 12px; margin-top: 40px; }
    .steps-section h3 { font-size: 1.4rem; margin-bottom: 28px; }
    .steps-row { grid-template-columns: 1fr 1fr; gap: 20px; }
    .step { border-right: none; padding: 0 0 20px 0; border-bottom: 1px solid var(--border); }
    .step:last-child { border-bottom: none; padding-bottom: 0; }
    .step-n { font-size: 2.2rem; }

    .problems { grid-template-columns: 1fr; gap: 14px; margin-top: 40px; }
    .prob { padding: 22px 20px; }

    .faq-section { margin-top: 40px; gap: 20px; }
    .faq-section h3 { font-size: 1.4rem; }

    .kamp-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
    .kamp-overlay { padding: 20px; }
    .kamp-overlay h3 { font-size: 1.2rem; }

    .contact-grid { gap: 28px; margin-top: 36px; }
    .contact-info-block { padding: 24px 20px; }
    .contact-info-block h3 { font-size: 1.3rem; margin-bottom: 20px; }
    .ci { gap: 12px; margin-bottom: 18px; }
    .contact-map { margin-top: 20px; }

    .contact-form h3 { font-size: 1.3rem; }
    .fg { margin-bottom: 14px; }
    .fg-row { grid-template-columns: 1fr; gap: 0; }

    .footer { padding: 48px 0 0; }
    .footer-top { grid-template-columns: 1fr; gap: 24px; padding-bottom: 32px; }
    .footer-bottom { flex-direction: column; gap: 6px; text-align: center; padding: 16px 0; }

    .sec-title { font-size: 1.8rem; }
    .sec-desc { margin-top: 12px; font-size: 0.92rem; }
    .sec-label { margin-bottom: 12px; }
}

@media (max-width: 640px) {
    .contact-grid > div, .grid > div {
        min-width: 0;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .header-inner { height: 60px; }
    .mobile-nav { top: 60px; }

    .hero { min-height: 80vh; }
    .hero-content { padding-top: 100px; padding-bottom: 64px; }
    .hero h1 { font-size: 2rem; }
    .hero-desc { font-size: 0.9rem; }
    .hero-btns { flex-direction: column; gap: 10px; }
    .hero-btns .btn { justify-content: center; width: 100%; }

    .stats-strip { margin-top: -32px; padding: 0 16px; }
    .stat-item { padding: 14px 20px; }
    .stat-item strong { font-size: 1.5rem; }

    .sec { padding: 52px 0; }
    .sec-title { font-size: 1.6rem; }
    .wrap { padding-left: 16px; padding-right: 16px; }

    .steps-row { grid-template-columns: 1fr; }
    .steps-section { padding: 24px 16px; }

    .svc-body { padding: 20px; }
    .svc-body h3 { font-size: 1.3rem; }

    .why-item { grid-template-columns: 36px 1fr; gap: 12px; }
    .why-num { width: 36px; height: 36px; font-size: 1.1rem; border-radius: 8px; }

    .contact-info-block { padding: 20px 16px; }
    .kamp-overlay { padding: 16px; }
    .kamp-overlay h3 { font-size: 1.1rem; }

    .prob { padding: 18px 16px; }
}

@media (max-width: 400px) {
    #contact-form .g-recaptcha {
        transform: scale(0.85);
    }
}

@media (max-width: 340px) {
    #contact-form .g-recaptcha {
        transform: scale(0.75);
    }
}
