

/* Start:/local/templates/Partner_v2/css/styles.css?178729808014538*/
/* ═══════════════════════════════════════════
   Partner_v2 — site template styles
   Source: partners Nuxt app → assets/css/main.css
   ═══════════════════════════════════════════ */

:root {
  color-scheme: light;
  --brand: #00aacc;
  --brand-hover: #0fb7d9;
  --brand-pressed: #0096b4;
  --success: #00cc84;
  --warning: #ffa621;
  --error: #ef5350;
  --text: #333842;
  --text-soft: #667085;
  --text-muted: #8c94a6;
  --text-inverted: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f6f7f8;
  --bg-muted: #f1f2f4;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --border: #e2e4e9;
  --border-hover: #d9dce2;
  --shadow: 0 24px 70px rgba(51, 56, 66, 0.1);
  --shadow-soft: 0 16px 40px rgba(51, 56, 66, 0.08);
  --ring: 0 0 0 3px rgba(0, 170, 204, 0.2);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 40px));
  --type-hero-lead: 20px;
  --type-section-lead: 18px;
  --type-card-title: 18px;
  --type-body: 16px;
  --type-body-sm: 15px;
  --type-label: 14px;
  --type-caption: 12px;
  --section-padding-y: 48px;
  --section-inner-gap: 48px;
  --btn-height: 48px;
}

:root[data-theme='dark'] {
  color-scheme: dark;
  --text: #ffffff;
  --text-soft: #c5cad3;
  --text-muted: #8c94a6;
  --bg: #10151b;
  --bg-soft: #151b22;
  --bg-muted: #1d252e;
  --surface: rgba(29, 37, 46, 0.82);
  --surface-strong: #1b232c;
  --border: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 8%, rgba(0, 170, 204, 0.16), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(120, 96, 190, 0.16), transparent 30%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
  background-attachment: fixed;
  min-height: 100%;
  line-height: 1.5;
  transition: color 0.2s ease, background 0.2s ease;
}

html {
  background-attachment: fixed;
  min-height: 100%;
}

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

/* ── Site header ──────────────────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px 14px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px);
  transition: border-radius 0.25s ease;
}

.site-header--open {
  border-radius: 24px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.logo {
  display: block;
  width: 105px;
  height: auto;
}

/* ── Desktop nav ─────────────────────────────────────────────────────────── */

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--text-soft);
  font-size: 14px;
}

.main-nav a,
.main-nav-trigger {
  color: inherit;
  font: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.main-nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.main-nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 12px;
}

.main-nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.main-nav-trigger svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.main-nav-trigger-icon-open {
  transform: rotate(180deg);
}

.main-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 320px;
  display: grid;
  gap: 2px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 30;
}

.main-nav-dropdown-menu a {
  padding: 8px 10px;
  border-radius: 10px;
  display: block;
  color: var(--text-soft);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.main-nav-dropdown-menu a:hover {
  background: var(--bg-soft);
  color: var(--text);
}

.main-nav-dropdown-open .main-nav-dropdown-menu,
.main-nav-dropdown:hover .main-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.main-nav a:hover,
.main-nav-trigger:hover {
  color: var(--brand);
}

/* ── Header actions ──────────────────────────────────────────────────────── */

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle,
.header-cta,
.btn {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  padding: 0;
  color: var(--text);
  background: var(--bg-muted);
  border: 1px solid var(--border);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-hover));
}

/* ── Burger ──────────────────────────────────────────────────────────────── */

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-muted);
  cursor: pointer;
}

.burger-line {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Mobile nav ──────────────────────────────────────────────────────────── */

.mobile-nav {
  width: 100%;
  padding-top: 14px;
  padding-bottom: 4px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 2px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 10px;
  border-radius: 14px;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease;
}

.mobile-nav-link:hover {
  background: var(--bg-soft);
}

.mobile-nav-toggle {
  width: 100%;
  justify-content: space-between;
}

.mobile-nav-toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.mobile-nav-toggle-open {
  transform: rotate(180deg);
}

.mobile-nav-section {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  border-radius: 16px;
  background: var(--bg-soft);
  overflow: hidden;
}

.mobile-nav-submenu {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 8px 8px;
  margin: 0;
  min-width: 0;
  border-top: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
}

.mobile-nav-sub-link {
  align-items: flex-start;
  padding: 10px 12px 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-soft);
  line-height: 1.4;
  min-height: auto;
  white-space: normal;
  word-break: break-word;
  hyphens: auto;
  border-radius: 10px;
}

.mobile-nav-cta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-hover));
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.mobile-nav-cta-link:hover { opacity: 0.9; }

/* ── Btn ─────────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-hover));
  box-shadow: 0 16px 34px rgba(0, 170, 204, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-hover), var(--brand-pressed));
}

.btn-secondary {
  color: var(--text);
  background: var(--surface-strong);
  border: 1px solid var(--border);
}

/* ── Site footer ─────────────────────────────────────────────────────────── */

.site-footer {
  width: var(--container);
  margin: 48px auto 32px;
  padding: 36px 36px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 0.9fr;
  gap: 36px;
  align-items: start;
  padding-bottom: 32px;
}

.footer-logo {
  display: block;
  width: 110px;
  height: auto;
  margin-bottom: 12px;
}

.footer-tagline {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.footer-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-muted);
  color: var(--text-soft);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-social-link:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 10%, transparent);
}

.footer-social-link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.footer-col-label {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav-col {
  display: grid;
  gap: 4px;
}

.footer-nav-col a {
  display: block;
  padding: 5px 0;
  color: var(--text-soft);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-col a:hover { color: var(--brand); }

.footer-contacts-col {
  display: grid;
  gap: 8px;
}

.footer-contacts-col a {
  display: block;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contacts-col a:hover { color: var(--brand); }

.footer-phone-item {
  display: grid;
  gap: 2px;
}

.footer-phone-note {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 400;
}

.footer-address {
  font-style: normal;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.footer-address p { color: var(--text); }

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (min-width: 1025px) {
  .burger-btn { display: none !important; }
  .mobile-nav { display: none !important; }
}

@media (max-width: 1024px) {
  .main-nav { display: none; }

  .burger-btn { display: inline-flex; }

  .site-header--open {
    align-items: stretch;
    gap: 12px;
    overflow: hidden;
    padding-bottom: 14px;
  }

  .site-header--open .mobile-nav {
    flex: 1 1 100%;
    order: 10;
    min-width: 0;
    margin-top: 4px;
    padding-top: 12px;
  }

  .mobile-nav-toggle { text-align: left; }
}

@media (max-width: 1080px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 720px) {
  :root { --container: min(100vw - 24px, 1180px); }

  .site-header {
    align-items: center;
    border-radius: 24px;
    gap: 12px;
    padding: 10px 12px 10px 16px;
  }

  .header-cta { display: none; }

  .site-footer {
    padding: 24px 24px 0;
    border-radius: 24px;
  }

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

/* End */
/* /local/templates/Partner_v2/css/styles.css?178729808014538 */
