/* Vision Target Inc. — B2B procurement & export */

:root {
  --navy-950: #071428;
  --navy-900: #0c1e3d;
  --navy-800: #132f55;
  --navy-700: #1a3d6b;
  --navy-600: #245082;
  --gold-500: #d4a012;
  --gold-400: #e8b923;
  --gold-600: #b8860b;
  --orange-500: #e67e22;
  --white: #ffffff;
  --gray-50: #f5f7fa;
  --gray-100: #e8ecf1;
  --gray-200: #d1d9e6;
  --gray-500: #6b7c93;
  --gray-700: #3d4f66;
  --text-on-dark: rgba(255, 255, 255, 0.92);
  --text-muted-dark: rgba(255, 255, 255, 0.72);
  --shadow-sm: 0 1px 3px rgba(7, 20, 40, 0.08);
  --shadow-md: 0 8px 24px rgba(7, 20, 40, 0.12);
  --shadow-lg: 0 16px 48px rgba(7, 20, 40, 0.18);
  --radius: 8px;
  --radius-lg: 12px;
  --font-sans: "Inter", "Segoe UI", system-ui, sans-serif;
  --header-h: 76px;
  --topbar-h: 36px;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

section[id],
.hero[id] {
  scroll-margin-top: calc(var(--header-h) + 36px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--navy-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--navy-700);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold-600); }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75em;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.875rem, 4.5vw, 2.75rem); }
h2 { font-size: clamp(1.375rem, 3vw, 2rem); }
h3 { font-size: 1.125rem; }
p { margin: 0 0 1em; }

.container { width: min(1140px, 92vw); margin-inline: auto; }

/* Top bar */
.top-bar {
  background: var(--navy-950);
  color: var(--text-muted-dark);
  font-size: 0.8125rem;
  padding: 0.4rem 0;
  border-bottom: 2px solid var(--gold-500);
}
.top-bar .container {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
  justify-content: space-between; align-items: center;
}
.top-bar a { color: var(--gold-400); font-weight: 500; }
.top-bar a:hover { color: var(--white); text-decoration: none; }
.top-bar__contacts { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  height: var(--header-h);
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 1rem;
}
.logo {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; color: var(--navy-900);
}
.logo:hover { text-decoration: none; }
.logo__img {
  display: block;
  width: auto;
  height: 52px;
  max-width: min(300px, 58vw);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.site-header .logo__img {
  height: 56px;
  max-width: min(320px, 62vw);
}

.site-header .logo__text {
  display: none;
}

.logo__name { font-weight: 700; font-size: 0.95rem; line-height: 1.2; }
.logo__tagline { font-size: 0.65rem; color: var(--gray-500); font-weight: 500; letter-spacing: 0.03em; text-transform: uppercase; }

.nav-toggle { display: none; background: none; border: none; padding: 0.5rem; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy-900); margin: 5px 0; border-radius: 1px; }

.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 0.125rem; align-items: center; }
.main-nav a {
  color: var(--navy-800); font-weight: 500; font-size: 0.875rem;
  padding: 0.5rem 0.7rem; border-radius: var(--radius); text-decoration: none;
}
.main-nav a:hover { background: var(--gray-50); color: var(--navy-900); text-decoration: none; }
.main-nav a.is-active { color: var(--navy-900); background: rgba(212, 160, 18, 0.12); font-weight: 600; }
.header-cta { margin-left: 0.25rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.875rem;
  padding: 0.625rem 1.25rem; min-height: 2.5rem;
  border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--gold-500); color: var(--navy-950); border-color: var(--gold-500); }
.btn--primary:hover { background: var(--gold-400); border-color: var(--gold-400); color: var(--navy-950); }
.btn--secondary { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); }
.btn--secondary:hover { background: var(--navy-700); border-color: var(--navy-700); color: var(--white); }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); }
.btn--outline-dark { background: transparent; color: var(--navy-800); border-color: var(--gray-200); }
.btn--outline-dark:hover { border-color: var(--navy-700); background: var(--gray-50); }
.btn--whatsapp { background: #25d366; color: var(--white); border-color: #25d366; }
.btn--whatsapp:hover { background: #1fb855; border-color: #1fb855; color: var(--white); }
.btn--sm { padding: 0.4rem 0.9rem; min-height: 2rem; font-size: 0.8125rem; }

/* Hero */
.hero {
  position: relative;
  background: var(--navy-950);
  color: var(--text-on-dark);
  padding: clamp(3rem, 7vw, 5rem) 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(7, 20, 40, 0.94) 0%, rgba(12, 30, 61, 0.88) 50%, rgba(19, 47, 85, 0.75) 100%),
    url("https://images.unsplash.com/photo-1581094794329-cd2e8a79c23f?w=1600&q=80") center/cover no-repeat;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero__grid {
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.1fr 0.9fr; } }

.hero__eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold-400); margin-bottom: 0.75rem;
  padding: 0.3rem 0.75rem; border: 1px solid rgba(232, 185, 35, 0.4); border-radius: 4px;
}
.hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.hero__tagline {
  font-size: 1.125rem; color: var(--gold-400); font-weight: 600;
  margin-bottom: 1rem; line-height: 1.4;
}
.hero__lead { font-size: 1.0625rem; color: var(--text-muted-dark); max-width: 36rem; margin-bottom: 1rem; }
.hero__shipping { font-size: 0.9375rem; color: var(--gold-400); margin-bottom: 1.25rem; max-width: 36rem; }
.hero-panel__note { font-size: 0.75rem; color: var(--text-muted-dark); margin-top: 0.75rem; opacity: 0.9; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.75rem; }
.hero__countries {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem;
}
.country-pill {
  font-size: 0.75rem; font-weight: 500; padding: 0.25rem 0.6rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px; color: var(--text-muted-dark);
}

.hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-panel h3 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; }
.hero-panel ul { list-style: none; margin: 0; padding: 0; }
.hero-panel li {
  position: relative; padding-left: 1.35rem; margin-bottom: 0.55rem;
  font-size: 0.9rem; color: var(--text-muted-dark);
}
.hero-panel li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-400); font-weight: 700; }

/* Page hero (inner) */
.page-hero {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--text-on-dark);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  border-bottom: 3px solid var(--gold-500);
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: var(--text-muted-dark); font-size: 1.0625rem; max-width: 42rem; margin: 0; }
.page-hero .hero__eyebrow { margin-bottom: 0.5rem; }

/* Sections */
.section { padding: clamp(2.75rem, 5vw, 4.5rem) 0; }
.section--dark { background: var(--navy-900); color: var(--text-on-dark); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: var(--text-muted-dark); }
.section--gray { background: var(--gray-50); }
.section--white { background: var(--white); }

.section__header { text-align: center; max-width: 40rem; margin: 0 auto 2.25rem; }
.section__header p { color: var(--gray-500); font-size: 1.0625rem; }
.section--dark .section__header p { color: var(--text-muted-dark); }

.eyebrow {
  display: block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: 0.5rem;
}
.section--dark .eyebrow { color: var(--gold-400); }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.card-grid--3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card-grid--4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-200);
  transform: translateY(-2px);
}
.card--dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.card--dark:hover { border-color: rgba(212, 160, 18, 0.35); }
.card--dark p { color: var(--text-muted-dark); }
.card--dark h3 { color: var(--white); }

.card__icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: var(--radius);
  display: grid; place-items: center;
  font-size: 1.35rem; margin-bottom: 1rem;
}
.card--dark .card__icon { background: linear-gradient(135deg, var(--gold-600), var(--gold-500)); }
.card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.card p { color: var(--gray-500); font-size: 0.9375rem; margin: 0; line-height: 1.55; }
.card ul { margin: 0.75rem 0 0; padding-left: 1.1rem; color: var(--gray-500); font-size: 0.875rem; }
.card ul li { margin-bottom: 0.25rem; }
.card__link { display: inline-block; margin-top: 1rem; font-weight: 600; font-size: 0.875rem; color: var(--navy-700); }
.card__link:hover { color: var(--gold-600); text-decoration: none; }

/* Product category cards */
.product-card { padding: 0; overflow: hidden; }
.product-card__head {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white); padding: 1.25rem 1.5rem;
  border-bottom: 3px solid var(--gold-500);
}
.product-card__head h3 { color: var(--white); margin: 0; font-size: 1.0625rem; }
.product-card__body { padding: 1.25rem 1.5rem; }
.product-card__body p { margin-bottom: 0.75rem; }

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  counter-reset: step;
}
.process-step {
  text-align: center; padding: 1.25rem 0.75rem;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); position: relative;
}
.section--dark .process-step {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.process-step::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; margin: 0 auto 0.75rem;
  background: var(--gold-500); color: var(--navy-950);
  font-weight: 800; font-size: 1rem; border-radius: 50%;
}
.process-step h3 { font-size: 0.9375rem; margin-bottom: 0.35rem; }
.section--dark .process-step h3 { color: var(--white); }
.process-step p { font-size: 0.8125rem; color: var(--gray-500); margin: 0; }
.section--dark .process-step p { color: var(--text-muted-dark); }

/* Trust / feature list */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.trust-item {
  display: flex; gap: 0.875rem; align-items: flex-start;
  padding: 1rem; background: var(--white);
  border: 1px solid var(--gray-100); border-radius: var(--radius);
}
.trust-item__icon { font-size: 1.25rem; flex-shrink: 0; }
.trust-item h3 { font-size: 0.9375rem; margin-bottom: 0.25rem; }
.trust-item p { font-size: 0.8125rem; color: var(--gray-500); margin: 0; }

/* Split layout */
.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .split { grid-template-columns: 1fr 1fr; } }
.split__img {
  border-radius: var(--radius-lg);
  min-height: 280px;
  background: var(--gray-100) center/cover no-repeat;
  box-shadow: var(--shadow-md);
}
.split__img--refinery { background-image: url("https://images.unsplash.com/photo-1518704606546-6dc03442f156?w=800&q=80"); }
.split__img--warehouse { background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=800&q=80"); }
.split__img--marine { background-image: url("https://images.unsplash.com/photo-1565026066327-6fffd820a128?w=800&q=80"); }

.feature-list { list-style: none; margin: 1rem 0 0; padding: 0; }
.feature-list li {
  position: relative; padding-left: 1.5rem; margin-bottom: 0.65rem;
  color: var(--gray-700); font-size: 0.9375rem;
}
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; background: var(--gold-500); border-radius: 50%;
}
.section--dark .feature-list li { color: var(--text-muted-dark); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--text-on-dark);
  padding: 3rem 0; text-align: center;
  border-top: 3px solid var(--gold-500);
}
.cta-band h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-band p { color: var(--text-muted-dark); max-width: 36rem; margin: 0 auto 1.25rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* Service list page */
.service-list { display: grid; gap: 1rem; }
.service-block {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 1.5rem;
  border-left: 4px solid var(--gold-500);
}
.service-block h3 { margin-bottom: 0.5rem; font-size: 1.0625rem; }
.service-block p { color: var(--gray-500); margin: 0; font-size: 0.9375rem; }

/* Forms */
.form-section { background: var(--gray-50); }
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.4fr; } }

.contact-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm);
}
.contact-card h3 {
  margin-bottom: 1rem; padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-500); display: inline-block;
}
.contact-item { margin-bottom: 1rem; }
.contact-item__label {
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--gray-500); margin-bottom: 0.2rem;
}
.contact-item a { font-weight: 600; color: var(--navy-800); }

.form-panel {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-md);
}
.form-panel h2 { font-size: 1.375rem; margin-bottom: 0.25rem; }
.form-panel > p { color: var(--gray-500); font-size: 0.9375rem; margin-bottom: 1.5rem; }

.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 560px) {
  .form-row--2 { grid-template-columns: 1fr 1fr; }
  .form-row--3 { grid-template-columns: 1fr 1fr 1fr; }
}
.form-group label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 0.35rem; }
.form-group label .opt { font-weight: 400; color: var(--gray-500); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.55rem 0.75rem; font-family: var(--font-sans);
  font-size: 0.9375rem; border: 1px solid var(--gray-200);
  border-radius: var(--radius); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(26, 61, 107, 0.12);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group input[type="file"] { padding: 0.4rem; font-size: 0.875rem; }

.checkbox-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem; margin-top: 0.35rem;
}
.checkbox-label {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 400; cursor: pointer;
}
.checkbox-label input { width: auto; accent-color: var(--navy-700); }

.form-note { font-size: 0.8125rem; color: var(--gray-500); margin-top: 0.75rem; }
.form-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }

.form-alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  border: 1px solid transparent;
}
.form-alert--success {
  background: #e8f5e9;
  border-color: #a5d6a7;
  color: #1b5e20;
}
.form-alert--error {
  background: #ffebee;
  border-color: #ef9a9a;
  color: #b71c1c;
}
.form-alert[hidden] { display: none !important; }

.vt-hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Cap detail lists */
.cap-detail {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; margin-bottom: 1rem;
}
.cap-detail h3 {
  font-size: 1.0625rem; margin-bottom: 0.75rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--gray-100);
}
.cap-detail ul {
  columns: 2; column-gap: 2rem; margin: 0; padding-left: 1.15rem;
  color: var(--gray-500); font-size: 0.875rem;
}
.cap-detail li { margin-bottom: 0.3rem; break-inside: avoid; }
@media (max-width: 600px) { .cap-detail ul { columns: 1; } }

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: var(--text-muted-dark);
  padding: 3rem 0 1.25rem;
}
.footer-grid {
  display: grid; gap: 2rem; margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.site-footer .logo__name, .site-footer h4 { color: var(--white); font-size: 0.9375rem; margin-bottom: 0.75rem; }
.site-footer .logo__tagline { color: var(--text-muted-dark); }
.site-footer .logo__img {
  height: 52px;
  max-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 6px 8px;
  object-position: left center;
}

.site-footer .logo__name {
  display: none;
}

.site-footer .logo__tagline {
  color: var(--gold-400);
  font-size: 0.75rem;
}
.site-footer a { color: var(--text-muted-dark); text-decoration: none; }
.site-footer a:hover { color: var(--gold-400); }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.45rem; font-size: 0.875rem; }
.footer-tagline { font-size: 0.875rem; color: var(--gold-400); font-weight: 500; margin: 0.5rem 0 1rem; }
.footer-bottom {
  padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8125rem; text-align: center;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 90;
  width: 54px; height: 54px; background: #25d366; border-radius: 50%;
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float svg { width: 26px; height: 26px; fill: white; }

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

/* Mobile */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; top: calc(var(--header-h) + var(--topbar-h));
    left: 0; right: 0; background: var(--white);
    border-bottom: 1px solid var(--gray-100); padding: 0.75rem;
    transform: translateY(-120%); opacity: 0; visibility: hidden;
    transition: all 0.2s ease; box-shadow: var(--shadow-lg);
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; align-items: stretch; }
  .main-nav a { display: block; padding: 0.75rem 1rem; }
  .logo__tagline { display: none; }
}
@media (max-width: 480px) {
  .top-bar .container { flex-direction: column; align-items: flex-start; }
}

/* Bilingual sales page */
.lang-switcher-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  padding: 0.75rem 0;
  position: sticky;
  top: calc(var(--header-h) + 36px);
  z-index: 50;
}
.lang-switcher {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
.lang-switcher__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-800);
  margin: 0;
}
.lang-switcher__options {
  display: flex;
  gap: 1.25rem;
}
.lang-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--navy-800);
}
.lang-radio input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--navy-700);
  cursor: pointer;
}
.lang-panel[hidden] {
  display: none !important;
}
html[dir="rtl"] .lang-switcher__options {
  flex-direction: row-reverse;
}
html[dir="rtl"] .feature-list li,
html[dir="rtl"] .trust-item {
  text-align: right;
}
html[dir="rtl"] .trust-item {
  flex-direction: row-reverse;
}
html[dir="rtl"] .split {
  direction: rtl;
}
html[dir="rtl"] .form-group label,
html[dir="rtl"] .section__header {
  text-align: right;
}
html[dir="rtl"] .service-block {
  border-left: none;
  border-right: 4px solid var(--gold-500);
  border-radius: var(--radius) 0 0 var(--radius);
}
html[dir="rtl"] .feature-list li {
  padding-left: 0;
  padding-right: 1.5rem;
}
html[dir="rtl"] .feature-list li::before {
  left: auto;
  right: 0;
}
