:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #f8fafc;
  --surface-strong: #f1f5f9;
  --primary-start: #FFD041;
  --primary: #FF8A00;
  --primary-end: #FF6B00;
  --primary-soft: #FF9B33;
  --primary-strong: #d95300;
  --secondary: #FFA000;
  --accent: #FFC700;
  --navy: #071E3A;
  --text: #071E3A;
  --muted: #475569;
  --border: rgba(15, 23, 42, 0.08);
  --shadow: 0 35px 120px rgba(7, 30, 58, 0.08);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
  color: var(--text);
  line-height: 1.65;
}

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

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

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

.container {
  width: min(1120px, calc(100% - 1.5rem));
  margin: 0 auto;
}

section {
  padding: 80px 0;
}

section.section-compact {
  padding: 60px 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-mark {
  width: 110px;
  height: 110px;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: transparent;
  box-shadow: none;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 1.1rem;
  color: var(--navy);
}

.logo-text span {
  font-size: 0.8rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: rgba(7, 30, 58, 0.85);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 0.2rem 0;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.08rem;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--navy));
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-actions .button {
  padding: 0.9rem 1.05rem;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 20px 40px rgba(255, 107, 0, 0.24);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 50px rgba(255, 107, 0, 0.28);
}

.button-secondary {
  color: var(--navy);
  background: rgba(0, 31, 91, 0.06);
  border-radius: 999px;
  padding: 0.9rem 1.45rem;
}

.button-secondary:hover {
  transform: translateY(-1px);
  background: rgba(0, 31, 91, 0.1);
}

.contact-panel .button-secondary {
  color: #fff;
  background: linear-gradient(135deg, #FF8A00, #FF6B00);
  border: 1px solid transparent;
}

.contact-panel .button-secondary:hover {
  background: linear-gradient(135deg, #FF9B33, #FF8A00);
  border-color: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
}

.hero::before {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -120px;
  background: rgba(255, 107, 0, 0.18);
}

.hero::after {
  width: 280px;
  height: 280px;
  bottom: -80px;
  left: -60px;
  background: rgba(0, 31, 91, 0.12);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
}

.hero-copy {
  z-index: 1;
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
}

.hero-copy h1 {
  font-size: clamp(3rem, 4vw, 4.75rem);
  max-width: 760px;
  margin: 0;
  line-height: 0.96;
}

.hero-copy p {
  margin: 1.6rem 0 2.2rem;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions .button {
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
}

.hero-stats {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  background: rgba(255, 107, 0, 0.05);
  border: 1px solid rgba(255, 107, 0, 0.12);
  border-radius: 24px;
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat-card strong {
  font-size: 1.65rem;
  color: var(--navy);
}

.stat-card span {
  color: var(--muted);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.visual-card {
  position: relative;
  width: min(400px, 100%);
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.88));
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  overflow: hidden;
}

.hero-illustration {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 31, 91, 0.08);
  display: block;
}

.hero-remote {
  position: absolute;
  right: -40px;
  bottom: -10px;
  width: 360px;
  max-width: 40%;
  border-radius: 22px;
  opacity: 0.12;
  filter: blur(6px) saturate(0.95);
  pointer-events: none;
}

.phone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-width: 340px;
  margin: 0 auto;
  border-radius: 44px;
  background: linear-gradient(180deg, #ffffff 0%, #eef2f7 100%);
  border: 3px solid rgba(15, 23, 42, 0.8);
  box-shadow: 0 40px 100px rgba(7, 30, 58, 0.12);
  overflow: hidden;
}

.phone-header {
  height: 48px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0 0.8rem;
  border-bottom: none;
}

.phone-header span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 31, 91, 0.25);
}

.phone-screen {
  padding: 0.9rem;
  display: grid;
  gap: 0.8rem;
  overflow-y: auto;
  max-height: calc(100% - 48px);
}

.phone-frame::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.02));
  pointer-events: none;
  box-shadow: inset 0 2px 12px rgba(0,0,0,0.04);
}

.phone-frame::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 6px;
  background: rgba(0, 31, 91, 0.12);
  border-radius: 6px;
  pointer-events: none;
}

/* Section title accent used for main headings */
.section-title {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  font-weight: 800;
  color: var(--navy);
  position: relative;
  padding-left: 0.8rem;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 56%;
  background: linear-gradient(180deg, var(--primary), var(--primary-end));
  border-radius: 4px;
}

.flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 12px 30px rgba(0, 31, 91, 0.04);
  font-size: 0.95rem;
}

.flow-step .badge {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--primary);
  flex-shrink: 0;
}

.flow-step strong {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.flow-step small {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
  grid-column: 2;
}

.hero-visual .floating-chip {
  position: absolute;
  left: 50%;
  bottom: -45px;
  transform: translateX(-50%);
  width: calc(100% + 2rem);
  height: 80px;
  /* background: linear-gradient(90deg, rgba(255,107,0,0.16), rgba(0,31,91,0.1)); */
  border-radius: 30px;
}

.trust {
  background: linear-gradient(180deg, rgba(255, 107, 0, 0.05), transparent 100%);
}

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

.trust-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 1.45rem;
  text-align: center;
}

.trust-card strong {
  display: block;
  font-size: 2rem;
  color: var(--primary);
}

.trust-card span {
  color: var(--muted);
}

.steps {
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  width: 6px;
  height: calc(100% - 60px);
  background: linear-gradient(180deg, rgba(255, 107, 0, 0.25), rgba(0, 31, 91, 0.15));
  border-radius: 999px;
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 30px;
  padding: 1.7rem;
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.step-card:nth-child(odd) {
  transform: translateX(-10%);
}

.step-card:nth-child(even) {
  transform: translateX(10%);
}

.step-card .icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--primary);
  font-size: 1.5rem;
}

.step-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

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

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

.language-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 28px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.language-card .language-icon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.language-pill {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 107, 0, 0.12);
  color: var(--primary);
  font-weight: 700;
}

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

.feature-block {
  display: grid;
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
  gap: 2.5rem;
  align-items: center;
  margin: 0 auto;
}

.profile-card {
  margin: 2rem auto 0;
  width: 100%;
  max-width: 900px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 36px;
  padding: 2rem;
  box-shadow: 0 22px 45px rgba(7, 30, 58, 0.09);
}

.profile-card-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.75rem;
}

.profile-card-logo {
  width: 140px;
  height: 140px;
  /* border-radius: 14px; */
  /* background: linear-gradient(135deg, var(--primary), var(--secondary)); */
  /* display: grid; */
  place-items: center;
}

.profile-card-logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.profile-card-copy strong {
  display: block;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.profile-card-copy span {
  color: var(--primary);
  display: inline-block;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.profile-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.profile-card-links p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.profile-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.profile-links-grid a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--navy);
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.profile-links-grid a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 107, 0, 0.2);
  background: rgba(255, 107, 0, 0.08);
}

.profile-links-grid img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.profile-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.profile-entity {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.profile-entity .avatar {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
}

.profile-entity div span {
  display: block;
  font-weight: 700;
}

.profile-list {
  display: grid;
  gap: 0.85rem;
}

.profile-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.profile-item i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: rgba(255, 107, 0, 0.08);
  border-radius: 14px;
}

.profile-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.badge-img,
.step-icon,
.feature-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: inline-block;
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin-right: 0.9rem;
}

.badge-img {
  width: 46px;
  height: 46px;
}

.step-icon {
  width: 48px;
  height: 48px;
}

.inline-icon {
  width: 28px;
  height: 28px;
  margin-right: 0.8rem;
  vertical-align: middle;
}

.profile-item span {
  color: var(--muted);
}

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

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 30px;
  padding: 1.4rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
}

.feature-card i {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(0, 31, 91, 0.08);
  color: var(--primary);
  font-size: 1.2rem;
}

.feature-card h4 {
  margin: 0;
  font-size: 1.05rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  /* text-align: center; */
  align-items: center;
}

.industry-card {
  padding: 0.95rem;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  text-align: center;
  box-shadow: var(--shadow);
  font-weight: 700;
  color: var(--navy);
}

.demo-panel {
  display: grid;
  gap: 1.2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 36px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.demo-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.demo-step .dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--primary);
}

.demo-step .chevron {
  margin-left: auto;
  color: rgba(0, 31, 91, 0.35);
}

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

.testimonial-card {
  padding: 1.8rem;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(255, 107, 0, 0.16);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
}

.testimonial-header div span {
  display: block;
}

.star-row {
  color: #ffb300;
}

.accordion {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  padding: 1.3rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.4rem;
}

.faq-answer p {
  margin: 1rem 0 1.2rem;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  max-height: 240px;
  padding: 0 1.4rem 1rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  justify-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-copy,
.contact-form {
  min-height: 100%;
}

.contact-copy {
  color: #071E3A;
  text-align: center;
}

.contact-copy .eyebrow {
  color: #FF8A00;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: #071E3A;
}

.contact-copy p {
  margin: 1.3rem 0 2rem;
  color: #475569;
  max-width: 520px;
}

.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 36px;
  padding: 2rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

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

.contact-grid input,
.contact-grid textarea,
.contact-grid select {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 1rem 1rem;
  outline: none;
}

.contact-grid select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.7) 50%), linear-gradient(135deg, rgba(255,255,255,0.7) 50%, transparent 50%);
  background-position: calc(100% - 1rem) center, calc(100% - 0.6rem) center;
  background-size: 0.5rem 0.5rem, 0.5rem 0.5rem;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}

.contact-grid select:focus {
  border-color: rgba(255,255,255,0.4);
}

.contact-grid option {
  color: #fff;
  background: rgba(7, 30, 58, 0.98);
}

.contact-grid option[value=""] {
  color: rgba(255,255,255,0.75);
}

.contact-grid textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-grid label {
  display: none;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}

.contact-actions .button {
  min-width: 160px;
  border-radius: 999px;
  padding: 1rem 2rem;
  font-weight: 600;
}

.footer {
  background: #071E3A;
  color: rgba(255,255,255,0.95);
  padding: 2rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.footer-brand-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo-wrap {
  display: flex;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-logo {
  width: 85px;
  height: 85px;
  object-fit: contain;
}

.footer-brand-text {
  flex: 1;
}

.footer-brand-text strong {
  font-size: 1.5rem;
  color: #fff;
  display: block;
}

.footer-brand-text p {
  margin: 0.5rem 0 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-align: center;
}

.fade-in,
.scale-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.scale-up {
  transform: scale(0.98) translateY(20px);
}

.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 30, 58, 0.95);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.video-modal.active {
  display: grid;
  place-items: center;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.4);
}

.video-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 10;
  transition: background 0.2s ease;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.video-container {
  width: 100%;
  height: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .feature-block,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .feature-block {
    justify-items: center;
  }

  .trust-grid,
  .language-grid,
  .feature-grid,
  .industry-grid,
  .testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-card {
    max-width: 100%;
    padding: 1.75rem;
  }

  .profile-card-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .profile-card-copy span {
    display: block;
  }

  .profile-links-grid {
    grid-template-columns: 1fr;
  }

  .steps::before {
    left: 8px;
  }

  .step-card:nth-child(odd),
  .step-card:nth-child(even) {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  section,
  .header .container {
    padding: 0 1rem;
  }

  .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 8vw, 3.5rem);
  }

  .trust-grid,
  .language-grid,
  .feature-grid,
  .industry-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 540px) {
  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .hero-copy p,
  .contact-copy p {
    font-size: 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }
}