:root {
  --navy: #172c46;
  --navy-2: #23476d;
  --blue: #315a84;
  --silver: #b6bec5;
  --silver-dark: #7f8a93;
  --ink: #152230;
  --muted: #617080;
  --paper: #ffffff;
  --soft: #f2f5f7;
  --line: #d9e0e5;
  --shadow: 0 24px 70px rgba(23, 44, 70, 0.13);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Noto Sans Georgian", "Segoe UI", Sylfaen, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-muted { background: var(--soft); }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 9999;
  transform: translateY(-160%); background: #fff; color: var(--navy);
  padding: 10px 14px; border-radius: 8px; box-shadow: var(--shadow);
}
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.91); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217,224,229,.75);
}
.header-inner { min-height: 86px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; min-width: 310px; }
.brand img { width: 58px; height: 62px; object-fit: contain; }
.brand-text { display: grid; line-height: 1.15; }
.brand-text strong { color: var(--navy); font-size: 1.12rem; letter-spacing: .12em; }
.brand-text small { color: var(--muted); font-size: .78rem; margin-top: 4px; }
.site-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.site-nav a { text-decoration: none; font-size: .94rem; font-weight: 700; color: #344353; transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--blue); }
.language-switch { display: flex; align-items: center; gap: 6px; color: var(--silver-dark); }
.lang-btn { border: 0; padding: 4px; background: transparent; color: var(--muted); font-weight: 800; cursor: pointer; }
.lang-btn.active { color: var(--navy); }
.menu-toggle { display: none; margin-left: auto; width: 43px; height: 43px; border: 1px solid var(--line); border-radius: 10px; background: #fff; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span:not(.sr-only) { width: 20px; height: 2px; background: var(--navy); }

.hero { padding-top: 72px; min-height: 710px; display: grid; align-items: center; overflow: hidden; position: relative; }
.hero::before { content: ""; position: absolute; width: 630px; height: 630px; border-radius: 50%; background: radial-gradient(circle, rgba(49,90,132,.12), rgba(49,90,132,0) 68%); top: -190px; left: -260px; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.eyebrow { margin: 0 0 16px; color: var(--blue); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
h1, h2, h3 { font-family: Georgia, "Noto Serif Georgian", Sylfaen, serif; color: var(--navy); line-height: 1.14; margin-top: 0; }
h1 { font-size: clamp(2.65rem, 5vw, 5.15rem); letter-spacing: -.035em; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 3.5vw, 3.35rem); letter-spacing: -.025em; margin-bottom: 22px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
.hero-lead { max-width: 720px; margin: 0 0 30px; color: #47586a; font-size: clamp(1.08rem, 1.6vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 12px; border: 1px solid transparent; text-decoration: none; font-weight: 800; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--navy); box-shadow: 0 10px 24px rgba(23,44,70,.22); }
.button-primary:hover { background: var(--navy-2); }
.button-secondary { color: var(--navy); background: #fff; border-color: var(--line); }
.hero-note { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .94rem; }
.note-icon { color: var(--blue); }
.hero-visual { position: relative; }
.visual-frame { width: min(100%, 520px); margin-left: auto; padding: 16px; border: 1px solid rgba(182,190,197,.7); border-radius: 34px; background: rgba(255,255,255,.75); box-shadow: var(--shadow); transform: rotate(1.2deg); }
.visual-frame img { border-radius: 24px; }

.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.section-heading p:last-child { max-width: 690px; color: var(--muted); }
.section-heading.centered { text-align: center; max-width: 820px; margin: 0 auto 52px; }
.section-heading.centered p:last-child { margin-inline: auto; }
.prose { color: #46586a; font-size: 1.08rem; }
.prose p { margin-top: 0; margin-bottom: 22px; }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; background: #fff; box-shadow: 0 10px 32px rgba(23,44,70,.06); }
.card-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 16px; color: var(--navy); background: var(--soft); margin-bottom: 24px; }
.card-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.info-card p { color: var(--muted); margin: 0; }

.feature-section { padding-top: 62px; }
.feature-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; }
.feature-image img { border-radius: 28px; box-shadow: var(--shadow); }
.feature-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.06rem; }
.status-box { margin-top: 28px; display: flex; align-items: flex-start; gap: 12px; padding: 18px; background: var(--soft); border: 1px solid var(--line); border-radius: 14px; color: #4b5b69; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); margin-top: 8px; box-shadow: 0 0 0 5px rgba(49,90,132,.11); flex: 0 0 auto; }

.contact-section { background: linear-gradient(135deg, #142941, #274d73); color: #fff; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.contact-section h2, .eyebrow.light { color: #fff; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.76); max-width: 520px; }
.email-link { display: inline-block; margin-top: 20px; color: #fff; font-size: clamp(1.35rem, 3vw, 2.1rem); text-decoration: none; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.45); }
.contact-form { padding: 30px; background: #fff; color: var(--ink); border-radius: 22px; box-shadow: 0 24px 70px rgba(0,0,0,.25); }
.form-row { display: grid; gap: 8px; margin-bottom: 18px; }
.form-row label { font-size: .9rem; font-weight: 800; color: #344353; }
.form-row input, .form-row textarea { width: 100%; border: 1px solid #cfd7dd; border-radius: 10px; padding: 12px 14px; color: var(--ink); background: #fff; outline: none; }
.form-row input:focus, .form-row textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(49,90,132,.11); }
.form-row textarea { resize: vertical; min-height: 130px; }
.button-light { color: #fff; background: var(--navy); width: 100%; }
.honeypot { position: absolute; left: -9999px; }
.form-status { min-height: 24px; margin: 12px 0 0; color: #425466; font-size: .9rem; }
.form-status.error { color: #9b2c2c; }
.form-status.success { color: #1d6845; }

.site-footer { padding: 30px 0; background: #0f2033; color: rgba(255,255,255,.74); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 45px; height: 48px; object-fit: contain; filter: saturate(.8); }
.footer-brand div { display: grid; line-height: 1.2; }
.footer-brand strong { color: #fff; letter-spacing: .1em; }
.footer-brand small { margin-top: 4px; }
.footer-meta { display: grid; text-align: right; font-size: .8rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}

@media (max-width: 980px) {
  .brand { min-width: auto; }
  .brand-text small { display: none; }
  .site-nav { gap: 18px; }
  .hero-grid, .feature-grid, .split-grid, .contact-grid { gap: 46px; }
  .hero-grid { grid-template-columns: 1fr .8fr; }
}

@media (max-width: 820px) {
  .header-inner { min-height: 74px; }
  .brand img { width: 48px; height: 51px; }
  .menu-toggle { display: flex; }
  .site-nav { position: absolute; top: calc(100% + 1px); left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 18px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 18px 32px rgba(23,44,70,.12); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 0; }
  .language-switch { margin-left: 0; }
  .hero { padding-top: 54px; }
  .hero-grid, .split-grid, .feature-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 44px; }
  .hero-visual { max-width: 540px; margin-inline: auto; }
  .visual-frame { margin-inline: auto; }
  .cards-grid { grid-template-columns: 1fr; }
  .section { padding: 78px 0; }
  .contact-grid { gap: 46px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand-text { display: none; }
  .language-switch { margin-left: auto; }
  .menu-toggle { margin-left: 0; }
  h1 { font-size: 2.45rem; }
  h2 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .info-card, .contact-form { padding: 24px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-meta { text-align: left; }
}
