/* AzerBelTrade — главная, узоры + анимации */
.abt, .abt * { box-sizing: border-box; margin: 0; padding: 0; }
.abt {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7f2ea;
  color: #1a2634;
  line-height: 1.55;
  overflow-x: hidden;
}
.abt a { text-decoration: none; color: inherit; }
.abt img { max-width: 100%; display: block; height: auto; }
.abt-serif { font-family: 'Playfair Display', Georgia, serif; }

/* Азербайджанский узор (бутя) — фон секций */
.abt-pattern {
  background-color: #f7f2ea;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230093b8' fill-opacity='0.06'%3E%3Cpath d='M30 5c-3 8-12 10-12 18 0 6 5 10 12 10s12-4 12-10c0-8-9-10-12-18zm0 32c-3 8-12 10-12 18 0 6 5 10 12 10s12-4 12-10c0-8-9-10-12-18z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.abt-pattern--gold {
  background-color: #1a2634;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a227' fill-opacity='0.08'%3E%3Cpath d='M24 4c-2 6-8 7-8 12 0 4 3 7 8 7s8-3 8-7c0-5-6-6-8-12zm0 20c-2 6-8 7-8 12 0 4 3 7 8 7s8-3 8-7c0-5-6-6-8-12z'/%3E%3C/g%3E%3C/svg%3E");
}

/* Декоративная полоса-орнамент */
.abt-ornament {
  height: 12px;
  background: repeating-linear-gradient(
    90deg,
    #0093b8 0, #0093b8 20px,
    #c9a227 20px, #c9a227 40px,
    #9b1b30 40px, #9b1b30 60px,
    #c45c26 60px, #c45c26 80px
  );
  background-size: 80px 12px;
  animation: abtOrnamentMove 4s linear infinite;
}
@keyframes abtOrnamentMove {
  to { background-position: 80px 0; }
}

/* Появление при скролле */
.abt-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.abt-reveal.abt-visible {
  opacity: 1;
  transform: translateY(0);
}
.abt-reveal-delay-1 { transition-delay: 0.1s; }
.abt-reveal-delay-2 { transition-delay: 0.2s; }
.abt-reveal-delay-3 { transition-delay: 0.3s; }

/* Плавающие элементы */
@keyframes abtFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}
@keyframes abtPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 0.75; }
}
@keyframes abtGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes abtShine {
  0% { left: -100%; }
  100% { left: 150%; }
}
@keyframes abtTick {
  to { transform: translateX(-50%); }
}

.abt-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.abt-ic {
  width: 22px; height: 22px; flex-shrink: 0;
  stroke: currentColor; fill: none; stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round;
}

/* HEADER */
.abt-head {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(247, 242, 234, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26, 38, 52, 0.08);
}
.abt-head__mob {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  min-height: 62px;
  padding: 0 10px;
  max-width: 1200px;
  margin: 0 auto;
}
.abt-head__logo {
  justify-self: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #0093b8, #9b1b30);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.abt-head__ib {
  width: 48px; height: 48px;
  border: none; background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border-radius: 50%;
  transition: background 0.3s, transform 0.3s;
}
.abt-head__ib:hover { background: rgba(0, 147, 184, 0.12); transform: scale(1.05); }
.abt-head__desk { display: none; }
.abt-head__top {
  max-width: 1200px; margin: 0 auto;
  padding: 16px 24px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.abt-head__soc { display: flex; gap: 10px; }
.abt-head__soc a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(26, 38, 52, 0.12);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.35s ease;
}
.abt-head__soc a:hover {
  background: linear-gradient(135deg, #0093b8, #9b1b30);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px) rotate(5deg);
}
.abt-head__pill-logo {
  background: #fff;
  padding: 12px 30px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(0, 147, 184, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}
.abt-head__pill-logo:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(155, 27, 48, 0.2);
}
.abt-head__right { justify-self: end; display: flex; gap: 10px; }
.abt-btn-h {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 0.35s ease;
}
.abt-btn-h--out { background: #fff; border: 1px solid rgba(26,38,52,0.15); }
.abt-btn-h--out:hover { border-color: #0093b8; color: #0093b8; }
.abt-btn-h--fill {
  background: linear-gradient(135deg, #0093b8, #1a6b8a);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.abt-btn-h--fill::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: abtShine 3s infinite;
}
.abt-head__nav {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 8px 28px;
  padding: 14px 24px 16px;
  border-top: 1px solid rgba(26,38,52,0.06);
}
.abt-head__nav a {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #5a6b7d;
  position: relative;
}
.abt-head__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, #0093b8, #c9a227);
  transition: width 0.3s;
}
.abt-head__nav a:hover::after { width: 100%; }
.abt-head__nav a:hover { color: #1a2634; }

/* Overlay */
.abt-ov { display: none; position: fixed; inset: 0; z-index: 10001; }
.abt-ov.on { display: flex; }
.abt-drawer {
  width: 82%; max-width: 360px; height: 100%;
  background: linear-gradient(180deg, #f7f2ea, #efe8dc);
  overflow-y: auto;
}
.abt-drawer__top { padding: 16px; border-bottom: 2px solid #0093b8; }
.abt-drawer a {
  display: block; padding: 18px 28px;
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 1px solid rgba(26,38,52,0.06);
  transition: padding-left 0.3s, background 0.3s;
}
.abt-drawer a:hover { padding-left: 36px; background: rgba(0,147,184,0.08); }
.abt-drawer-bg { flex: 1; background: rgba(26,38,52,0.5); cursor: pointer; }
.abt-pop {
  display: none; position: fixed; inset: 0; z-index: 10002;
  background: rgba(26,38,52,0.55);
  align-items: flex-end; justify-content: center; padding: 16px;
}
.abt-pop.on { display: flex; animation: abtFadeIn 0.3s ease; }
@keyframes abtFadeIn { from { opacity: 0; } to { opacity: 1; } }
.abt-pop__box {
  width: 100%; max-width: 400px;
  background: #fff;
  border-radius: 28px 28px 20px 20px;
  padding: 28px 20px 16px;
  border: 2px solid #c9a227;
  animation: abtPopUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes abtPopUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.abt-pop__item {
  display: block; padding: 16px; margin-bottom: 8px;
  border-radius: 16px; background: #f7f2ea;
  font-weight: 600; text-align: center;
  transition: transform 0.3s, background 0.3s;
}
.abt-pop__item:hover { transform: scale(1.02); background: #e8f4f8; }
.abt-pop__item--tel {
  background: linear-gradient(135deg, #9b1b30, #c45c26);
  color: #fff;
}
body.abt-lock { overflow: hidden; }

/* Buttons */
.abt-pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
  font-family: inherit; border: none; cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative; overflow: hidden;
}
.abt-pill--grad {
  background: linear-gradient(135deg, #0093b8, #1a6b8a, #9b1b30);
  background-size: 200% 200%;
  animation: abtGradient 6s ease infinite;
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 147, 184, 0.35);
}
.abt-pill--grad:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 36px rgba(155,27,48,0.35); }
.abt-pill--light {
  background: #fff; color: #1a2634;
  box-shadow: 0 4px 20px rgba(26,38,52,0.1);
}
.abt-pill--light:hover { transform: translateY(-3px); }
.abt-link {
  font-weight: 700; font-size: 13px;
  color: #0093b8;
  border-bottom: 2px solid #c9a227;
  transition: color 0.3s;
}
.abt-link:hover { color: #9b1b30; }

/* HERO */
.abt-hero {
  position: relative;
  margin: 12px 12px 0;
  border-radius: 36px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.abt-hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a2634 0%, #0d4a5f 40%, #9b1b30 100%);
  background-size: 300% 300%;
  animation: abtGradient 12s ease infinite;
}
.abt-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  mix-blend-mode: overlay;
}
.abt-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: abtPulse 5s ease-in-out infinite;
}
.abt-hero__blob--1 { width: 200px; height: 200px; background: #0093b8; top: 10%; right: 5%; }
.abt-hero__blob--2 { width: 150px; height: 150px; background: #c9a227; bottom: 20%; left: 0; animation-delay: 1s; }
.abt-hero__content {
  position: relative; z-index: 2;
  padding: 40px 28px 36px;
  color: #fff;
}
.abt-hero__tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 162, 39, 0.5);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 18px;
  animation: abtFloat 4s ease-in-out infinite;
}
.abt-hero h1 {
  font-size: clamp(34px, 9vw, 56px);
  line-height: 1.05;
  margin-bottom: 16px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.abt-hero__tx {
  font-size: 16px;
  opacity: 0.92;
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.abt-hero__acts { display: flex; flex-wrap: wrap; gap: 12px; }
.abt-hero__float-img {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 55%;
  max-width: 320px;
  z-index: 1;
  animation: abtFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.4));
}

/* Ticker */
.abt-tick {
  overflow: hidden;
  padding: 18px 0;
  background: #1a2634;
}
.abt-tick__tr {
  display: flex; gap: 12px; width: max-content;
  animation: abtTick 25s linear infinite;
}
.abt-tag {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.15);
}

/* Sections */
.abt-sec { padding: 56px 0; position: relative; }
.abt-sec__t {
  font-size: clamp(28px, 5vw, 42px);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.12;
}
.abt-sec__s {
  text-align: center;
  color: #5a6b7d;
  max-width: 500px;
  margin: 0 auto 40px;
  font-size: 15px;
}

/* Product cards */
.abt-prods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.abt-prod {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 32px rgba(26,38,52,0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.abt-prod:hover {
  transform: translateY(-10px) rotate(-0.5deg);
  box-shadow: 0 20px 48px rgba(0,147,184,0.2);
}
.abt-prod__img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.abt-prod__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.abt-prod:hover .abt-prod__img img { transform: scale(1.1); }
.abt-prod__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,38,52,0.5) 100%);
}
.abt-prod__body { padding: 24px; }
.abt-prod__lb {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #0093b8; margin-bottom: 8px;
}
.abt-prod h3 { font-size: 24px; margin-bottom: 8px; }
.abt-prod p { font-size: 14px; color: #5a6b7d; margin-bottom: 16px; }

/* Bento */
.abt-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.abt-bento__c {
  border-radius: 24px;
  padding: 24px;
  min-height: 160px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.abt-bento__c:hover { transform: scale(1.02); }
.abt-bento__c::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0L22 8h8l-6 5 2 8-6-4-6 4 2-8-6-5h8z' fill='%23fff' fill-opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.8;
}
.abt-bento__c h3 { font-size: 18px; position: relative; z-index: 1; margin-bottom: 8px; }
.abt-bento__c p { font-size: 12px; opacity: 0.9; position: relative; z-index: 1; }
.abt-bento__wide { grid-column: 1 / -1; min-height: 120px; }

/* Culture strip */
.abt-culture {
  margin: 0 12px;
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
.abt-culture__img { min-height: 260px; position: relative; }
.abt-culture__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 260px;
}
.abt-culture__text {
  padding: 36px 28px;
  background: linear-gradient(135deg, #9b1b30, #c45c26);
  color: #fff;
  position: relative;
}
.abt-culture__text::before {
  content: '✦';
  position: absolute;
  top: 20px; right: 24px;
  font-size: 48px;
  opacity: 0.2;
  animation: abtFloat 3s ease-in-out infinite;
}
.abt-culture h2 { font-size: 28px; margin-bottom: 14px; }
.abt-culture p { font-size: 15px; opacity: 0.92; line-height: 1.65; }

/* Stats */
.abt-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0 12px;
}
.abt-stat {
  background: #fff;
  border-radius: 24px;
  padding: 28px 20px;
  text-align: center;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: transform 0.4s, border-color 0.4s;
}
.abt-stat::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, #0093b8, #c9a227, #9b1b30);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}
.abt-stat:hover { transform: translateY(-6px); }
.abt-stat:hover::before { opacity: 1; }
.abt-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  background: linear-gradient(135deg, #0093b8, #9b1b30);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.abt-stat span { font-size: 12px; color: #5a6b7d; }

/* Form */
.abt-form-sec {
  margin: 0 12px 24px;
  padding: 40px 24px;
  border-radius: 32px;
  background: #fff;
  border: 2px solid rgba(201, 162, 39, 0.4);
  box-shadow: 0 12px 40px rgba(0,147,184,0.12);
  position: relative;
  overflow: hidden;
}
.abt-form-sec::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 80%; height: 100%;
  background: radial-gradient(circle, rgba(0,147,184,0.08) 0%, transparent 70%);
  animation: abtPulse 4s ease-in-out infinite;
}
.abt-form-sec h2 { font-size: 30px; margin-bottom: 10px; position: relative; }
.abt-form-sec > p { color: #5a6b7d; margin-bottom: 24px; position: relative; }
.abt-form input, .abt-form textarea {
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 12px;
  border: 2px solid #e8e0d4;
  border-radius: 16px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.abt-form input:focus, .abt-form textarea:focus {
  outline: none;
  border-color: #0093b8;
  box-shadow: 0 0 0 4px rgba(0,147,184,0.15);
}
.abt-form textarea { min-height: 100px; resize: vertical; }
.abt-form .abt-pill { width: 100%; position: relative; }

/* Footer */
.abt-foot {
  background: #1a2634;
  color: #fff;
  padding: 48px 24px 40px;
  text-align: center;
  position: relative;
}
.abt-foot::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #0093b8, #c9a227, #9b1b30, #c45c26);
}
.abt-foot__nm {
  font-size: 14px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 16px;
  color: #c9a227;
}
.abt-foot p { font-size: 13px; opacity: 0.75; margin-bottom: 8px; }
.abt-foot a { color: #7dd3ed; }
.abt-foot__lnks {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 20px; margin: 24px 0;
}
.abt-foot__lnks a {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.3s, color 0.3s;
}
.abt-foot__lnks a:hover { opacity: 1; color: #c9a227; }

/* Desktop */
@media (min-width: 900px) {
  .abt-head__mob { display: none; }
  .abt-head__desk { display: block; }
  .abt-hero {
    margin: 20px 24px 0;
    min-height: 580px;
    flex-direction: row;
    align-items: center;
  }
  .abt-hero__content { flex: 1; padding: 64px 56px; max-width: 55%; }
  .abt-hero__float-img {
    position: relative;
    right: auto; bottom: auto;
    width: 45%; max-width: 480px;
    margin-right: 40px;
  }
  .abt-prods { grid-template-columns: repeat(3, 1fr); }
  .abt-bento { grid-template-columns: repeat(4, 1fr); }
  .abt-bento__wide { grid-column: span 2; }
  .abt-culture { grid-template-columns: 1fr 1fr; margin: 0 24px; }
  .abt-culture__img { min-height: 360px; }
  .abt-stats { grid-template-columns: repeat(4, 1fr); padding: 0 24px; }
  .abt-form-sec { max-width: 600px; margin: 48px auto 32px; padding: 48px 40px; }
  .abt-pop { align-items: center; }
}