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

html {
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

a, button, [role="button"] {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ─── CUSTOM PROPERTIES ─── */
:root {
  --bg: #FAFAF8;
  --surface: #FFFFFF;
  --text: #1A1A1A;
  --text-muted: #6B7280;
  --accent: #0D6B75;
  --accent-light: #E8F4F5;
  --accent-hover: #0A5760;
  --divider: #E5E7EB;
  --footer-bg: #111110;

  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;

  --nav-h: 72px;
  --max-w: 1200px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 8px 28px rgba(13, 107, 117, 0.12);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── UTILITY ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section-pad {
  padding: 96px 0;
}

/* ─── TYPE SCALE ─── */
.label-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
}

.section-sub {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 56ch;
  margin-top: 12px;
}

.sep {
  width: 40px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  margin: 20px 0;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid transparent;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}
.btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-ghost:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}
.btn-ghost:active {
  transform: translateY(0) scale(0.98);
}

/* ─── NAVIGATION ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250, 250, 248, 0.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  border-color: var(--divider);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.nav-logo-divider {
  width: 1px;
  height: 20px;
  background: var(--divider);
}

.nav-logo-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.3;
  max-width: 160px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
  border-radius: var(--radius-md);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition);
  border-radius: 1px;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--text);
}

.nav-cta {
  margin-left: 12px;
  padding: 10px 22px;
  font-size: 0.875rem;
}

/* ─── MOBILE NAV TOGGLE ─── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: background var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover {
  background: var(--accent-light);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: rgba(250, 250, 248, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mobile-menu-link {
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--divider);
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
  display: block;
  letter-spacing: -0.01em;
}

.mobile-menu-link:hover {
  color: var(--accent);
  padding-left: 8px;
}

.mobile-menu-cta {
  margin-top: 28px;
  align-self: flex-start;
}

/* ─── HERO ─── */
.hero {
  min-height: calc(100dvh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: 44px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.78;
  color: var(--text-muted);
  max-width: 50ch;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-tel {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 14px 0;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-tel:hover {
  color: var(--accent);
}

.hero-tel-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ─── LANGUAGE PANEL ─── */
.lang-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--divider);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
}

.lang-panel-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lang-panel-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lang-panel-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.lang-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 24px;
  border-bottom: 1px solid var(--divider);
  transition: background var(--transition);
}

.lang-item:last-child {
  border-bottom: none;
}

.lang-item:hover {
  background: var(--accent-light);
}

.lang-item-name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.lang-item-pair {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  line-height: 1.2;
}

.lang-item-pair-arrow {
  color: var(--accent);
  font-size: 0.75rem;
}

/* ─── INDUSTRIES ─── */
.industries {
  background: var(--surface);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.industries-header {
  margin-bottom: 56px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--divider);
  gap: 1px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.industry-item {
  background: var(--surface);
  padding: 36px 32px;
  transition: background var(--transition);
}

.industry-item:hover {
  background: #F5FBFB;
}

.industry-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 16px;
  stroke-width: 1.5;
}

.industry-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text);
  margin-bottom: 8px;
}

.industry-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ─── ABOUT TEASER ─── */
.about-teaser {
  background: var(--bg);
}

.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-teaser-text {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin: 20px 0 36px;
  max-width: 52ch;
}

.about-teaser-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--accent);
  text-decoration: none;
  transition: gap var(--transition);
}

.about-teaser-link:hover {
  gap: 12px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--divider);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
}

.about-stat {
  padding: 28px 32px;
  border-bottom: 1px solid var(--divider);
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-stat:last-child {
  border-bottom: none;
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.about-stat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-stat-label {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
}

.about-stat-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ─── CONTACT CTA ─── */
.contact-cta {
  background: var(--accent);
  color: #fff;
}

.contact-cta .section-title {
  color: #fff;
}

.contact-cta .section-sub {
  color: rgba(255, 255, 255, 0.92);
  max-width: 48ch;
  margin-top: 16px;
}

.contact-cta-channels {
  display: flex;
  gap: 40px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.contact-cta-channel {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-cta-channel-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.contact-cta-channel-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-cta-channel-value:hover {
  opacity: 0.78;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--footer-bg);
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.footer-brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.footer-brand-name {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.38);
  max-width: 260px;
}

.footer-col-heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-link:hover {
  color: #fff;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.footer-contact-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.footer-contact-value {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-value:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-service-area {
  color: rgba(255, 255, 255, 0.45);
  cursor: default;
}

.contact-page-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.02em;
}

.contact-page-sub {
  margin-top: 16px;
}

.contact-info-note strong {
  color: var(--text);
  font-weight: 700;
}

/* ─── FADE ANIMATIONS ─── */
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-anim {
  animation: heroIn 0.7s var(--ease-out) both;
}
.hero-anim-1 { animation-delay: 0.05s; }
.hero-anim-2 { animation-delay: 0.18s; }
.hero-anim-3 { animation-delay: 0.30s; }
.hero-anim-4 { animation-delay: 0.42s; }

.lang-anim {
  animation: heroIn 0.55s var(--ease-out) both;
}
.lang-anim-0 { animation-delay: 0.30s; }
.lang-anim-1 { animation-delay: 0.40s; }
.lang-anim-2 { animation-delay: 0.50s; }
.lang-anim-3 { animation-delay: 0.60s; }
.lang-anim-4 { animation-delay: 0.70s; }
.lang-anim-header { animation-delay: 0.22s; }

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.08s; }
.fade-up.delay-2 { transition-delay: 0.16s; }
.fade-up.delay-3 { transition-delay: 0.24s; }
.fade-up.delay-4 { transition-delay: 0.32s; }
.fade-up.delay-5 { transition-delay: 0.40s; }
.fade-up.delay-6 { transition-delay: 0.48s; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--divider);
}

.page-hero-label {
  margin-bottom: 20px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
  max-width: 22ch;
}

.page-hero-sub {
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--text-muted);
  max-width: 54ch;
}

.rate-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  max-width: 640px;
}

.rate-strip-item {
  min-width: 190px;
  padding: 14px 18px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.rate-strip-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.rate-strip-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--accent);
}

/* ─── SERVICES PAGE ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.pricing-card {
  padding: 44px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-xl);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.pricing-card.primary {
  border-color: var(--accent);
}

.pricing-card.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

.pricing-type {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.pricing-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.pricing-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.pricing-rate-block {
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.pricing-rate-value {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-rate-unit {
  font-size: 1.0625rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  margin-left: 4px;
}

.pricing-rate-min {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.pricing-langs-label {
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.pricing-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.pricing-lang-tag {
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: var(--font-body);
}

.pricing-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding: 16px 20px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  border: 1px solid rgba(13, 107, 117, 0.15);
}

/* ─── HOW IT WORKS ─── */
.how-it-works {
  background: var(--bg);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
}

.step-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--divider);
  transition: background var(--transition);
}

.step-item:last-child {
  border-bottom: none;
}

.step-item:hover {
  background: #F8FEFE;
}

.step-num-col {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--divider);
  padding: 32px 0;
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--divider);
  line-height: 1;
}

.step-content {
  padding: 28px 32px;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── ABOUT PAGE ─── */
.about-mission {
  background: var(--bg);
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-mission-text {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.about-mission-text p + p {
  margin-top: 20px;
}

.lang-list-full {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lang-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 1.5px solid var(--divider);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: background var(--transition), border-color var(--transition);
}

.lang-list-item:hover {
  background: var(--accent-light);
  border-color: rgba(13, 107, 117, 0.4);
}

.lang-list-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text);
}

.lang-list-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.about-languages-section {
  background: var(--surface);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.about-values {
  background: var(--bg);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.value-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}

.value-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: 16px;
  stroke-width: 1.5;
}

.value-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text);
  margin-bottom: 8px;
}

.value-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── CONTACT PAGE ─── */
.contact-page-section {
  background: var(--bg);
}

.contact-page-full {
  min-height: calc(100dvh - var(--nav-h));
  display: flex;
  align-items: flex-start;
  padding-top: 72px;
  padding-bottom: 80px;
}

.pricing-section-surface {
  background: var(--surface);
  border-bottom: 1px solid var(--divider);
}

.contact-channels-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
  max-width: 640px;
}

.contact-channel-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.contact-channel-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.contact-channel-card:active {
  transform: translateY(0) scale(0.99);
}

.contact-channel-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: background var(--transition);
}

.contact-channel-card:hover .contact-channel-icon-wrap {
  background: var(--accent);
  color: #fff;
}

.contact-channel-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
}

.contact-channel-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-channel-type {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-channel-value {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
  letter-spacing: -0.01em;
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-channel-card:hover .contact-channel-value {
  color: var(--accent);
}

.contact-arrow {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  margin-left: auto;
  flex-shrink: 0;
  transition: color var(--transition), transform var(--transition);
  stroke-width: 2;
}

.contact-channel-card:hover .contact-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

.contact-info-note {
  margin-top: 48px;
  max-width: 580px;
  padding: 28px 32px;
  background: var(--accent-light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 107, 117, 0.18);
}

.contact-info-note p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.contact-info-note p + p {
  margin-top: 12px;
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }
}

/* ─── RESPONSIVE 1024px ─── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 3fr 2fr;
    gap: 48px;
  }

  .about-teaser-grid {
    gap: 48px;
  }

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

  .footer-grid > *:first-child {
    grid-column: 1 / -1;
  }
}

/* ─── RESPONSIVE 768px ─── */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .container {
    padding: 0 20px;
  }

  .section-pad {
    padding: 64px 0;
  }

  .nav-right {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 24px 0 44px;
    align-items: flex-start;
  }

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

  .hero-headline {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .hero-sub {
    margin-bottom: 24px;
  }

  .lang-panel-header {
    padding: 13px 18px 11px;
  }

  .lang-item {
    padding: 11px 18px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-teaser-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-mission-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid > *:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ─── RESPONSIVE 480px ─── */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .btn {
    width: 100%;
  }

  .hero-tel {
    padding: 10px 0;
  }

  .lang-item-name {
    font-size: 1rem;
  }

  .lang-item-pair {
    font-size: 0.75rem;
  }

  .rate-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 24px;
  }

  .rate-strip-item {
    min-width: 0;
    padding: 12px 14px;
  }

  .rate-strip-value {
    font-size: 1.125rem;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .contact-cta-channels {
    flex-direction: column;
    gap: 20px;
  }

  .contact-channel-card {
    padding: 24px;
  }

  .contact-channel-value {
    font-size: 1.125rem;
  }

  .pricing-card {
    padding: 32px 28px;
  }
}
