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

:root {
  --bg: #eef2f7;
  --bg-card: #ffffff;
  --bg-dark: #214B86;
  --bg-warm: #e2eaf3;
  --text: #0a1628;
  --text-secondary: #4a5568;
  --text-muted: #8896a6;
  --accent: #214B86;
  --accent-light: #BDD2E3;
  --accent-secondary: #008FCB;
  --accent-red: #A60000;
  --accent-hover: #1a3d6e;
  --radius: 24px;
  --radius-sm: 16px;
  --radius-xs: 12px;
  --shadow: 0 1px 3px rgba(33,75,134,0.06);
  --shadow-hover: 0 12px 40px rgba(33,75,134,0.13);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-xs);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: var(--radius-sm); }

.btn-dark {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(33,75,134,0.25);
}
.btn-dark:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33,75,134,0.3);
}
.btn-dark:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding-left: 0;
}
.btn-ghost:hover { opacity: 0.7; }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33,75,134,0.2);
}
.btn-outline:active { transform: translateY(0); }

.btn-red {
  background: var(--accent-red);
  color: #fff;
  box-shadow: 0 2px 8px rgba(166,0,0,0.25);
}
.btn-red:hover {
  background: #8a0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(166,0,0,0.35);
}
.btn-red:active { transform: translateY(0); }

.btn-outline-red {
  background: transparent;
  color: var(--accent-red);
  border: 2px solid var(--accent-red);
}
.btn-outline-red:hover {
  background: var(--accent-red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(166,0,0,0.25);
}
.btn-outline-red:active { transform: translateY(0); }

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(238,242,247,0.8);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid rgba(33,75,134,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 32px;
  width: auto;
}
.logo-fallback {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
  display: none;
}
.logo-fallback em { font-style: normal; font-weight: 400; }
.logo-img[src] ~ .logo-fallback { display: none; }
.logo-img:not([src]), .logo-img[src=""] { display: none; }
.logo-img:not([src]) ~ .logo-fallback,
.logo-img[src=""] ~ .logo-fallback { display: inline; }
.logo-fallback--footer { color: #fff; }

.nav-menu {
  display: flex;
  gap: 32px;
}
.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.3s ease;
}
.nav-menu a:hover { color: var(--accent); }
.nav-menu a:hover::after { width: 100%; }

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
}
.header-phone:hover { color: var(--accent); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========== HERO BENTO ========== */
.hero {
  padding: 40px 0 0;
}

.bento-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.bento-hero__main {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
}

.bento-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(33,75,134,0.08);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  width: fit-content;
}

.bento-hero__main h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.bento-hero__main p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.bento-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr auto;
  gap: 12px;
}

.bento-stat {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.bento-stat:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: transparent;
}
.bento-stat:hover .bento-stat__label {
  color: rgba(255,255,255,0.7);
}

.bento-stat__number {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 4px;
}

.bento-stat__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s ease;
}

.bento-telegram {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #0088cc 0%, #0077b5 100%);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,136,204,0.25);
}
.bento-telegram:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,136,204,0.35);
  background: linear-gradient(135deg, #0099dd 0%, #0088cc 100%);
}
.bento-telegram__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.18);
  border-radius: 12px;
  flex-shrink: 0;
}
.bento-telegram__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.bento-telegram__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.bento-telegram__sub {
  font-size: 0.8rem;
  opacity: 0.75;
  font-weight: 400;
}
.bento-telegram__arrow {
  font-size: 1.4rem;
  opacity: 0.6;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.bento-telegram:hover .bento-telegram__arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ========== SECTIONS ========== */
.directions,
.how-it-works,
.why-us,
.contacts,
.about-company {
  padding: 80px 0 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.section-title__accent {
  color: var(--accent-red);
}

/* ========== DIRECTIONS BENTO ========== */
.bento-directions {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.bento-dir {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.bento-dir:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(33,75,134,0.06);
}

.bento-dir--koreec { grid-column: span 7; }
.bento-dir--japonec { grid-column: span 5; }
.bento-dir--kitaec { grid-column: span 5; }
.bento-dir--service {
  grid-column: span 7;
  background: var(--bg-dark);
  color: #fff;
}

.bento-dir--koreec { background: linear-gradient(150deg, #ffffff 0%, #dde8f4 100%); }
.bento-dir--japonec { background: linear-gradient(150deg, #ffffff 0%, #fef2f2 100%); }
.bento-dir--kitaec { background: linear-gradient(150deg, #ffffff 0%, #fefce8 100%); }

.bento-dir--koreec:hover { background: linear-gradient(150deg, #ffffff 0%, #cddcef 100%); }
.bento-dir--japonec:hover { background: linear-gradient(150deg, #ffffff 0%, #fde8e8 100%); }
.bento-dir--kitaec:hover { background: linear-gradient(150deg, #ffffff 0%, #fdf8d8 100%); }
.bento-dir--service:hover { background: #1a3d6e; border-color: transparent; }

.bento-dir__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.bento-dir__tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(0,0,0,0.05);
  padding: 5px 12px;
  border-radius: 100px;
  color: var(--text-muted);
}
.bento-dir--service .bento-dir__tag {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
}

.bento-dir__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.bento-dir--service .bento-dir__arrow {
  background: rgba(255,255,255,0.12);
}
.bento-dir:hover .bento-dir__arrow {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
}
.bento-dir--service:hover .bento-dir__arrow {
  background: #fff;
  color: var(--bg-dark);
}

.bento-dir__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bento-dir__logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
  object-position: left;
  transition: transform 0.3s ease;
}
.bento-dir:hover .bento-dir__logo {
  transform: scale(1.03);
}

.bento-dir--service .bento-dir__logo {
  background: rgba(255,255,255,0.92);
  padding: 10px 18px;
  border-radius: 12px;
  height: 50px;
  width: auto;
  box-sizing: content-box;
}

.bento-dir__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 12px;
}
.bento-dir--service .bento-dir__desc {
  color: rgba(255,255,255,0.65);
}

.bento-dir__brands {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
  margin-top: auto;
}

.bento-dir__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.bento-dir__chips span {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  color: rgba(255,255,255,0.8);
  transition: background 0.2s ease;
}
.bento-dir--service:hover .bento-dir__chips span {
  background: rgba(255,255,255,0.15);
}

/* ========== HOW WE WORK — TIMELINE ========== */
.how-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  background: var(--bg-card);
  border-radius: 14px;
  padding: 4px;
  width: fit-content;
  box-shadow: var(--shadow);
}

.how-tab {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 24px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  transition: all 0.25s ease;
}
.how-tab:hover {
  color: var(--text);
}
.how-tab--active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(33,75,134,0.25);
}
.how-tab--active:hover {
  color: #fff;
}

.how-timeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.how-timeline--hidden {
  display: none;
}

.how-timeline__step {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
}
.how-timeline__step:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(33,75,134,0.08);
}

.how-timeline__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(33,75,134,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
  transition: var(--transition);
}
.how-timeline__step:hover .how-timeline__icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
}

.how-timeline__num {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.how-timeline__step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.how-timeline__step p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.how-timeline__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  align-self: center;
  margin-top: -20px;
}
.how-timeline__connector::after {
  content: '';
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-light), var(--accent));
  border-radius: 1px;
}

/* ========== WHY US ========== */
.bento-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bento-why__card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.bento-why__card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: rgba(33,75,134,0.06);
}

.bento-why__card--wide {
  grid-column: span 2;
}

.bento-why__card--highlight {
  background: var(--bg-card);
  border: 2px solid var(--accent-light);
}
.bento-why__card--highlight:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.bento-why__card--highlight:hover p {
  color: rgba(255,255,255,0.8);
}
.bento-why__card--highlight:hover .bento-why__icon-wrap {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.bento-why__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(33,75,134,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
  transition: var(--transition);
}
.bento-why__card:hover .bento-why__icon-wrap {
  background: rgba(33,75,134,0.12);
  transform: scale(1.05);
}

.bento-why__card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.bento-why__card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ========== CONTACT FORM ========== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.form-group {
  position: relative;
}
.form-group input {
  width: 100%;
  padding: 16px 16px 8px;
  border: 2px solid rgba(33,75,134,0.1);
  border-radius: var(--radius-xs);
  font-family: var(--font);
  font-size: 0.92rem;
  background: var(--bg);
  color: var(--text);
  transition: all 0.25s ease;
  outline: none;
}
.form-group input:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(33,75,134,0.08);
}
.form-group label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: 0.88rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.2s ease;
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label {
  top: 10px;
  transform: translateY(0);
  font-size: 0.68rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.cta-or {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  position: relative;
}
.cta-or::before,
.cta-or::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: rgba(33,75,134,0.1);
}
.cta-or::before { left: 0; }
.cta-or::after { right: 0; }

/* ========== ABOUT COMPANY ========== */
.about-company {
  padding: 80px 0 0;
}
.bento-about {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  align-items: start;
}
.bento-about__text {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.bento-about__text .section-title {
  margin-bottom: 16px;
}
.about-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
}
.about-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-facts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}
.about-facts li svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.bento-about__card {
  background: var(--bg-dark);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.about-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.about-logo {
  height: 64px;
  width: auto;
}
.about-card-inner p {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

/* ========== CONTACTS ========== */
.bento-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bento-contacts__map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 400px;
  box-shadow: var(--shadow);
}
.bento-contacts__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.bento-contacts__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bento-contacts__cta {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}

.bento-contacts__cta h2 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.bento-contacts__sub {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.cta-buttons {
  display: flex;
  gap: 10px;
}

.btn-cta-full {
  flex: 1;
  justify-content: center;
  font-size: 0.9rem;
  padding: 14px 16px;
}

.bento-contacts__info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.bento-contact-card {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.bento-contact-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(33,75,134,0.06);
  transform: translateY(-2px);
}

.bento-contact-card strong {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 700;
}

.bento-contact-card p {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
}

.bento-contact-card a {
  color: var(--text);
  transition: var(--transition);
}
.bento-contact-card a:hover { color: var(--accent); }

.contact-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
  display: block;
}

/* ========== FOOTER ========== */
.footer {
  margin-top: 80px;
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brands {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-top: 12px;
}
.footer-brands span {
  display: block;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-hours {
  margin-top: 4px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer .logo-img--footer {
  height: 28px;
}

.footer-col p,
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-top: 6px;
  transition: var(--transition);
}
.footer-col a:hover { color: #fff; }

.footer-col h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
  font-weight: 700;
}

.footer .footer-logo { margin-bottom: 12px; display: inline-block; }

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ========== FADE IN ANIMATION ========== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== MOBILE NAV ========== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(238,242,247,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .btn-dark {
  margin-top: 8px;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .header-phone { display: none; }
  .burger { display: flex; }

  .bento-hero {
    grid-template-columns: 1fr;
  }

  .bento-hero__main h1 {
    font-size: 2.6rem;
  }

  .bento-directions {
    grid-template-columns: 1fr 1fr;
  }
  .bento-dir--koreec,
  .bento-dir--japonec,
  .bento-dir--kitaec,
  .bento-dir--service {
    grid-column: span 1;
  }

  .how-timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .how-timeline__connector {
    padding: 8px 0;
    margin-top: 0;
  }
  .how-timeline__connector::after {
    width: 2px;
    height: 32px;
  }
  .how-timeline__step {
    text-align: left;
  }
  .how-timeline__icon {
    margin: 0 0 12px 0;
  }

  .bento-why {
    grid-template-columns: 1fr 1fr;
  }
  .bento-why__card--wide {
    grid-column: span 2;
  }

  .bento-about {
    grid-template-columns: 1fr;
  }

  .bento-contacts {
    grid-template-columns: 1fr;
  }
  .bento-contacts__map {
    min-height: 300px;
  }
  .bento-contacts__map iframe {
    min-height: 300px;
  }
  .bento-contacts__info {
    grid-template-columns: 1fr 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .container { padding: 0 16px; }

  .header-inner { height: 60px; }
  .header-right .btn { display: none; }

  .hero { padding: 20px 0 0; }

  .bento-hero__main {
    padding: 32px 24px;
  }

  .bento-hero__main h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-buttons .btn { text-align: center; }

  .bento-hero__stats {
    grid-template-columns: 1fr 1fr;
  }

  .bento-stat {
    padding: 20px 18px;
  }
  .bento-stat__number {
    font-size: 1.4rem;
  }
  .bento-telegram {
    padding: 16px 20px;
    gap: 12px;
  }
  .bento-telegram__icon {
    width: 42px;
    height: 42px;
  }
  .bento-telegram__title {
    font-size: 0.9rem;
  }
  .bento-telegram__sub {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.7rem;
    margin-bottom: 24px;
  }

  .directions,
  .how-it-works,
  .why-us,
  .contacts,
  .about-company {
    padding: 56px 0 0;
  }

  .bento-about {
    grid-template-columns: 1fr;
  }
  .bento-about__text {
    padding: 28px 22px;
  }
  .bento-about__card {
    min-height: 240px;
    padding: 32px 24px;
  }

  .bento-directions {
    grid-template-columns: 1fr;
  }
  .bento-dir--koreec,
  .bento-dir--japonec,
  .bento-dir--kitaec,
  .bento-dir--service {
    grid-column: span 1;
    padding: 24px 22px 20px;
  }
  .bento-dir__logo { height: 34px; }
  .bento-dir--service .bento-dir__logo {
    height: auto;
  }

  .how-tabs {
    width: 100%;
  }
  .how-tab {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
  }

  .bento-why {
    grid-template-columns: 1fr;
  }
  .bento-why__card--wide {
    grid-column: span 1;
  }
  .bento-why__card {
    padding: 24px 20px;
  }

  .bento-contacts__map {
    min-height: 260px;
  }
  .bento-contacts__map iframe {
    min-height: 260px;
  }
  .bento-contacts__cta {
    padding: 28px 22px;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .bento-contacts__info {
    grid-template-columns: 1fr;
  }

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

  .footer {
    margin-top: 56px;
  }
}
