:root {
  --bg: #f4f7fb;
  --dark: #07111f;
  --dark-2: #0d1b2f;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5eaf1;
  --white: #ffffff;

  --blue: #0b5cff;
  --blue-2: #0046d5;
  --cyan: #13c8ff;
  --orange: #ff8a00;
  --green: #19b66a;

  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;

  --shadow: 0 18px 55px rgba(7, 17, 31, 0.12);
  --shadow-soft: 0 12px 35px rgba(7, 17, 31, 0.08);

  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(19, 200, 255, 0.11), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.11), transparent 26%),
    var(--bg);
  line-height: 1.55;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 234, 241, 0.8);
}

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

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img,
.site-logo {
  height: 56px;
  width: auto;
  display: block;
}

.footer-logo img,
.footer-site-logo {
  height: 48px;
  width: auto;
  display: block;
}

/* Old logo fallback */
.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 28px rgba(11, 92, 255, 0.28);
}

.logo-text,
.footer-logo span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text strong,
.footer-logo strong {
  font-size: 19px;
  color: var(--dark);
  letter-spacing: -0.6px;
}

.footer-logo strong {
  color: #fff;
}

.logo-text small,
.footer-logo small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.footer-logo small {
  color: #9fb0c5;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.2s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.phone-link {
  font-weight: 800;
  color: var(--dark);
  white-space: nowrap;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
  padding: 10px;
  flex-shrink: 0;
}

.burger span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--dark);
  transition: 0.2s ease;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.lang-switch,
.mobile-lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: #eef4ff;
  border: 1px solid var(--line);
}

.lang-switch a,
.mobile-lang-switch a {
  min-width: 38px;
  height: 34px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #334155;
  font-size: 13px;
  font-weight: 900;
}

.lang-switch a.active,
.mobile-lang-switch a.active {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  box-shadow: 0 8px 18px rgba(11, 92, 255, 0.22);
}

.mobile-lang-switch {
  display: none;
}

@media (max-width: 1080px) {
  .logo img,
  .site-logo {
    height: 50px;
  }
}

@media (max-width: 520px) {
  .logo img,
  .site-logo {
    height: 44px;
  }

  .footer-logo img,
  .footer-site-logo {
    height: 42px;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(11, 92, 255, 0.25);
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(11, 92, 255, 0.32);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange), #ffb000);
  box-shadow: 0 14px 28px rgba(255, 138, 0, 0.25);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 58px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(7, 17, 31, 0.96), rgba(10, 37, 76, 0.92)),
    radial-gradient(circle at 72% 25%, rgba(19, 200, 255, 0.45), transparent 24%);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  right: -150px;
  top: 40px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(19, 200, 255, 0.22), transparent 60%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.hero-content {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #d9f6ff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -2.8px;
}

.hero h1 span {
  color: var(--cyan);
}

.hero-lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: #d5dfec;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 34px;
  max-width: 620px;
}

.hero-actions .btn {
  flex: 1;
  min-width: 0;
  justify-content: center;
  min-height: 54px;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.24);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.32);
}

.btn-telegram {
  background: #229ED9;
  color: #fff;
  border: none;
  box-shadow: 0 14px 28px rgba(34, 158, 217, 0.24);
}

.btn-telegram:hover {
  background: #1c8ac0;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(34, 158, 217, 0.32);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hero-point {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-point strong {
  display: block;
  font-size: 21px;
  color: var(--white);
}

.hero-point small {
  display: block;
  margin-top: 4px;
  color: #b9c7d7;
  font-weight: 700;
}

/* Lead card */

.lead-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.26);
}

.lead-card h2,
.form-card h3 {
  margin: 0;
  color: var(--dark);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.9px;
}

.lead-card p,
.form-card p {
  margin: 10px 0 22px;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 13px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field label {
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #f8fafc;
  padding: 14px 15px;
  color: var(--dark);
  outline: none;
  transition: 0.2s ease;
  box-shadow: none;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, #64748b 50%),
    linear-gradient(135deg, #64748b 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 22px,
    calc(100% - 16px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field textarea {
  min-height: 98px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(11, 92, 255, 0.55);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(11, 92, 255, 0.08);
}

.form-result {
  min-height: 20px;
  font-weight: 800;
  font-size: 14px;
}

.form-result.success {
  color: var(--green);
}

.form-result.error {
  color: #dc2626;
}

.phone-field .phone-group {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 15px;
  overflow: hidden;
  background: #f8fafc;
  transition: 0.2s ease;
}

.phone-field .phone-group select {
  width: 40px;
  min-width: 40px;
  height: 52px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: #eef4ff;
  padding: 0 6px;
  color: var(--dark);
  font-size: 13px;
  font-weight: 900;
  outline: none;
  cursor: pointer;
}

.phone-field .phone-group input {
  flex: 1;
  min-width: 0;
  height: 52px;
  border: 0 !important;
  border-radius: 0 !important;
  background: #f8fafc;
  padding: 14px 15px;
  color: var(--dark);
  outline: none;
  box-shadow: none !important;
}

.phone-field .phone-group:focus-within {
  border-color: rgba(11, 92, 255, 0.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(11, 92, 255, 0.08);
}

.phone-field .phone-group:focus-within input {
  background: #fff;
}

.field-hint {
  display: block;
  margin-top: 7px;
  color: #718096;
  font-size: 12px;
  line-height: 1.35;
}

.field-error {
  display: none;
  margin-top: 7px;
  color: #dc2626;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #dc2626 !important;
}

.field.has-error .phone-group {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.field.has-error .field-error {
  display: block;
}
/* Sections */

.section {
  padding: 82px 0;
}

.section-white {
  background: var(--white);
}

.section-dark {
  background:
    linear-gradient(135deg, var(--dark), var(--dark-2));
  color: var(--white);
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
}

.section-dark .section-kicker {
  color: var(--cyan);
}

.section-title {
  margin: 0;
  color: var(--dark);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -1.6px;
}

.section-dark .section-title {
  color: var(--white);
}

.section-text {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-dark .section-text {
  color: #c5d0df;
}

/* Cards */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(229, 234, 241, 0.9);
}

.card h3 {
  margin: 0 0 10px;
  color: var(--dark);
  font-size: 22px;
  letter-spacing: -0.5px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.icon-box {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

/* Directions */

.direction-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, #ffffff, #f8fbff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.direction-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(11, 92, 255, 0.08);
}

.direction-card h3 {
  margin: 0;
  color: var(--dark);
  font-size: 30px;
  letter-spacing: -1px;
}

.direction-card p {
  max-width: 480px;
  color: var(--muted);
  font-size: 17px;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 28px;
}

.city-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  background: #eef4ff;
  color: #1646a6;
  font-weight: 800;
  font-size: 13px;
}

/* Steps */

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.step {
  position: relative;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--cyan);
  color: var(--dark);
  font-weight: 900;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.step p {
  margin: 0;
  color: #c5d0df;
}

/* Calculator */

.calculator-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: stretch;
}

.calc-info {
  padding: 34px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(135deg, var(--dark), #123462);
  box-shadow: var(--shadow);
}

.calc-info h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.calc-info p {
  color: #c5d0df;
}

.calc-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.calc-list span {
  display: flex;
  gap: 10px;
  color: #e7f6ff;
  font-weight: 700;
}

.calc-list span::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 900;
}

.form-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

/* City */
.autocomplete-field {
  position: relative;
}

.city-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 30;
  display: none;
  max-height: 260px;
  overflow-y: auto;
  padding: 8px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(7, 17, 31, 0.14);
}

.city-suggestions.active {
  display: block;
}

.city-suggestion-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 11px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: .15s ease;
}

.city-suggestion-item:hover {
  background: #eef4ff;
}

.city-suggestion-item strong {
  color: var(--dark);
  font-size: 14px;
}

.city-suggestion-item small {
  color: var(--muted);
  font-size: 12px;
}
/* FAQ */

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--dark);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-question::after {
  content: "+";
  font-size: 24px;
  color: var(--blue);
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Blog */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.blog-thumb {
  height: 180px;
  background:
    linear-gradient(135deg, rgba(11, 92, 255, 0.94), rgba(19, 200, 255, 0.85));
  display: flex;
  align-items: end;
  padding: 22px;
  color: var(--white);
  font-weight: 900;
  font-size: 18px;
}

.blog-body {
  padding: 22px;
}

.blog-body h3 {
  margin: 0 0 10px;
  color: var(--dark);
}

.blog-body p {
  margin: 0 0 18px;
  color: var(--muted);
}

/* Footer */

.site-footer {

  padding: 68px 0 26px;

  background:

    radial-gradient(circle at 12% 0%, rgba(19, 200, 255, 0.14), transparent 30%),

    radial-gradient(circle at 88% 20%, rgba(11, 92, 255, 0.12), transparent 28%),

    #06101d;

  color: #dce6f3;

}
.footer-logo strong {

  color: var(--white);

}
.footer-main {

  display: grid;

  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.55fr);

  gap: 54px;

  align-items: start;

}

.footer-brand p {

  max-width: 430px;

  margin: 22px 0 0;

  color: #98a8bc;

}

.footer-offices {

  display: grid;

  gap: 10px;

  margin-top: 24px;

}

.footer-offices div {

  padding: 15px 16px;

  border-radius: 18px;

  background: rgba(255,255,255,0.055);

  border: 1px solid rgba(255,255,255,0.09);

}

.footer-offices strong {

  display: block;

  margin-bottom: 4px;

  color: var(--cyan);

  font-size: 12px;

  text-transform: uppercase;

  letter-spacing: 1px;

}

.footer-offices span {

  color: #e6eef8;

  font-weight: 900;

}

.footer-links-wrap {

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 26px;

}

.footer-col {

  min-width: 0;

}

.footer-col h4 {

  margin: 0 0 16px;

  color: var(--white);

  font-size: 14px;

  text-transform: uppercase;

  letter-spacing: 1.2px;

}

.footer-col a {

  display: block;

  margin: 10px 0;

  color: #b9c7d7;

  font-size: 14px;

  line-height: 1.35;

}

.footer-col a:hover {

  color: var(--cyan);

}

.footer-bottom {

  display: flex;

  justify-content: space-between;

  gap: 20px;

  margin-top: 48px;

  padding-top: 22px;

  border-top: 1px solid rgba(255,255,255,0.12);

  color: #7f90a5;

  font-size: 14px;

}

/* Floating contact */

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
}

.floating-contact.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

.floating-contact-btn {
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #ff9a2f);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(255,122,0,0.45), 0 18px 42px rgba(255,122,0,0.42);
  animation: contactPulse 1.8s infinite;
}

@keyframes contactPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255,122,0,0.42), 0 18px 42px rgba(255,122,0,0.35);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(255,122,0,0), 0 18px 42px rgba(255,122,0,0.35);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255,122,0,0), 0 18px 42px rgba(255,122,0,0.35);
  }
}

.floating-contact-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 310px;
  padding: 14px;
  border-radius: 24px;
  background: #07111f;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 70px rgba(0,0,0,0.38);
  display: none;
}

.floating-contact.open .floating-contact-panel {
  display: block;
}

.floating-contact-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #fff;
}

.floating-contact-head button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.floating-contact-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 8px 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  color: #dce6f3;
  font-weight: 800;
  font-size: 14px;
}

.floating-contact-panel a:hover {
  background: rgba(255,122,0,0.16);
  color: #fff;
}

.floating-contact-panel .floating-contact-main {
  justify-content: center;
  margin-top: 12px;
  background: var(--orange);
  color: #fff;
}

@media (max-width: 560px) {
  .floating-contact {
    right: 14px;
    bottom: 14px;
  }

  .floating-contact-panel {
    width: calc(100vw - 28px);
    right: 0;
  }

  .floating-contact-btn {
    width: 58px;
    height: 58px;
  }
}

/* Inner pages */

.page-hero {
  padding: 72px 0;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(13, 42, 83, 0.94));
  color: var(--white);
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1;
  letter-spacing: -2px;
}

.page-hero p {
  max-width: 720px;
  color: #c5d0df;
  font-size: 19px;
}

.content-block {
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
}

.content-block h2,
.content-block h3 {
  color: var(--dark);
  line-height: 1.15;
}

.content-block p,
.content-block li {
  color: #475569;
}

.content-block a {
  color: var(--blue);
  font-weight: 800;
}

/* Admin simple */

.admin-body {
  background: #f5f7fb;
}

.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  padding: 24px;
  background: var(--dark);
  color: var(--white);
}

.admin-sidebar a {
  display: block;
  padding: 12px 14px;
  margin: 6px 0;
  border-radius: 12px;
  color: #c5d0df;
}

.admin-sidebar a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.admin-main {
  padding: 34px;
}

.admin-card {
  padding: 24px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 13px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.admin-table th {
  color: var(--dark);
  background: #f8fafc;
}


/* Offices */

.offices-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 95% 0%, rgba(19, 200, 255, 0.28), transparent 34%),
    linear-gradient(135deg, #06101d, #102c55);
  color: var(--white);
  box-shadow: var(--shadow);
}

.offices-panel::before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 138, 0, 0.16);
}

.offices-top {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.offices-top h2 {
  margin: 6px 0 10px;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -1.2px;
}

.offices-top p {
  margin: 0;
  color: #c5d0df;
}

.office-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  margin-top: 16px;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(12px);
}

.office-flag {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 30px rgba(19, 200, 255, 0.2);
}

.office-turkey .office-flag {
  background: linear-gradient(135deg, #e11d48, #ff8a00);
}

.office-label {
  display: inline-block;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.office-card h3 {
  margin: 6px 0 10px;
  font-size: 24px;
  line-height: 1.1;
}

.office-address {
  margin: 0;
  color: #d7e1ee;
  line-height: 1.7;
}

.office-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.office-links a {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all .2s ease;
}

.office-links a:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.office-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.office-actions .btn {
  flex: 1;
  min-width: 180px;
}

.map-placeholder {
  min-height: 420px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(11,92,255,0.12), rgba(19,200,255,0.18)),
    #eaf1fb;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
}

.map-placeholder strong {
  font-size: 32px;
  color: var(--dark);
}

.map-placeholder p {
  color: var(--muted);
}

@media (max-width: 820px) {
  .office-card {
    grid-template-columns: 1fr;
  }

  .office-flag {
    width: 52px;
    height: 52px;
  }

  .office-actions {
    flex-direction: column;
  }

  .offices-top h2 {
    font-size: 30px;
  }
}


/* Breadcrumbs */

.breadcrumbs {

display:flex;

flex-wrap:wrap;

align-items:center;

gap:10px;

margin-bottom:28px;

font-size:14px;

font-weight:700;

color:#64748b;

}

.breadcrumbs a {

color:#64748b;

transition:.2s;

}

.breadcrumbs a:hover {

color:var(--blue);

}

.breadcrumb-current {

color:var(--white);

}

.breadcrumb-separator {

opacity:.45;

}

@media (max-width:768px){

.breadcrumbs{

font-size:13px;

margin-bottom:22px;

}

}



/* Admin article editor */

.article-editor-wrap {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.article-editor {
  min-height: 460px;
  background: #fff;
}

.article-editor .ql-editor {
  min-height: 420px;
  font-size: 16px;
  line-height: 1.7;
}

.article-editor .ql-editor img {
  max-width: 100%;
  border-radius: 14px;
  margin: 14px 0;
}

.slug-help {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

/* Trust block */

.trust-section {
  position: relative;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-card {
  padding: 24px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.trust-card strong {
  display: block;
  color: var(--dark);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.trust-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    padding: 22px;
  }
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: start;
}

.company-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--dark), #123462);
  color: var(--white);
  box-shadow: var(--shadow);
}

.company-card h2 {
  margin: 8px 0 22px;
  color: var(--white);
  font-size: 32px;
  line-height: 1.1;
}

.company-office {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.company-office strong {
  display: block;
  color: var(--cyan);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.company-office p {
  margin: 8px 0;
  color: #c5d0df;
}

.company-office a {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}


/* Latest requests */

.latest-requests-section {
  background:
    radial-gradient(circle at top right, rgba(11,92,255,0.08), transparent 28%),
    var(--bg);
}

.latest-requests-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.latest-request-card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.latest-request-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.latest-request-top strong {
  color: var(--dark);
  font-size: 19px;
  line-height: 1.2;
}

.latest-request-top span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.latest-request-body {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
}

.latest-request-body small {
  color: var(--muted);
  font-weight: 800;
}

.latest-request-route {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .latest-requests-grid {
    grid-template-columns: 1fr;
  }
}

/* 404 */
.not-found-actions {
  margin-top: 32px;
}


/* Tracking strip */

.tracking-strip {
  background: #07111f;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tracking-strip-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tracking-strip-text {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tracking-strip-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,122,0,0.16);
  color: var(--orange);
  font-size: 17px;
}

.tracking-strip-text strong {
  display: block;
  font-size: 14px;
  color: #fff;
}

.tracking-strip-text small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #9fb0c5;
}

.tracking-strip-link {
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.tracking-strip-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255,122,0,0.28);
}

@media (max-width: 700px) {
  .tracking-strip-inner {
    padding: 10px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .tracking-strip-link {
    width: 100%;
    text-align: center;
  }
}

/* Responsive */

@media (max-width: 1180px) {

  .footer-main {

    grid-template-columns: 1fr;

    gap: 36px;

  }

  .footer-links-wrap {

    grid-template-columns: repeat(4, minmax(0, 1fr));

  }

}

@media (max-width: 1080px) {

  .desktop-nav,

  .header-actions {

    display: none;

  }

  .burger {

    display: block;

  }

  .mobile-nav {

    display: none;

    padding: 0 16px 18px;

    background: rgba(255,255,255,0.98);

    border-top: 1px solid var(--line);

  }

  .mobile-nav.active {

    display: grid;

    gap: 10px;

  }

  .mobile-nav a {

    padding: 14px 10px;

    font-weight: 800;

    color: var(--dark);

  }

  .mobile-lang-switch {

    display: inline-flex;

    margin-left: auto;

  }

  .header-inner {

    gap: 10px;

  }

  .hero-grid,

  .calculator-wrap {

    grid-template-columns: 1fr;

  }

  .hero {

    padding-top: 54px;

  }

  .lead-card {

    max-width: 640px;

  }

  .steps {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }

}

@media (max-width: 900px) {

  .footer-links-wrap {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }

}

@media (max-width: 820px) {

  .container {

    width: min(100% - 24px, var(--container));

  }

  .header-inner {

    height: 72px;

  }

  .hero h1 {

    letter-spacing: -1.7px;

  }

  .hero-lead {

    font-size: 18px;

  }

  .hero-actions {

    flex-direction: column;

    max-width: 100%;

  }

  .hero-actions .btn {

    width: 100%;

    white-space: normal;

  }

  .hero-points,

  .grid-2,

  .grid-3,

  .grid-4,

  .blog-grid {

    grid-template-columns: 1fr;

  }

  .direction-card {

    min-height: auto;

  }

  .section {

    padding: 58px 0;

  }

  .form-row {

    grid-template-columns: 1fr;

  }

  .footer-bottom {

    flex-direction: column;

  }

  .admin-layout {

    grid-template-columns: 1fr;

  }

  .admin-sidebar {

    position: relative;

  }

}

@media (max-width: 560px) {

  .footer-links-wrap {

    grid-template-columns: 1fr;

  }

}

@media (max-width: 520px) {

  .hero {

    padding: 42px 0 44px;

  }

  .hero h1 {

    font-size: 38px;

  }

  .hero-actions {

    display: grid;

  }

  .btn {

    width: 100%;

  }

  .lead-card,

  .form-card,

  .calc-info,

  .direction-card,

  .card {

    padding: 22px;

    border-radius: 22px;

  }

  .steps {

    grid-template-columns: 1fr;

  }

  .floating-whatsapp {

    left: 14px;

    right: 14px;

    bottom: 14px;

    width: auto;

  }

  .site-footer {

    padding-bottom: 88px;

  }

}