:root {
  color-scheme: light;
  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface-muted: #eef1f7;
  --text: #0f172a;
  --text-muted: #5b6477;
  --border: #dbe0ea;
  --primary: #2bb3a2;
  --primary-dark: #1f988a;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  background: rgba(246, 247, 251, 0.85);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.nav {
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 38px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

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

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-trigger svg {
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 1000;
  margin-top: 8px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  pointer-events: auto;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.nav-dropdown-menu a:hover {
  background: var(--surface-muted);
  color: var(--primary);
}

/* Carousel Card Link */
.carousel-card-link {
  text-decoration: none;
  cursor: pointer;
}

.carousel-card-link:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 100;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(43, 179, 162, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(31, 152, 138, 0.08), transparent),
    radial-gradient(ellipse 50% 30% at 20% 80%, rgba(43, 179, 162, 0.06), transparent);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(43, 179, 162, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 179, 162, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(43, 179, 162, 0.3), rgba(31, 152, 138, 0.1));
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(31, 152, 138, 0.2), rgba(43, 179, 162, 0.05));
  bottom: -50px;
  left: -50px;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 20px 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark), #1a7a70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(43, 179, 162, 0.2);
  background: linear-gradient(135deg, rgba(43, 179, 162, 0.08), rgba(255, 255, 255, 0.9));
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-dark);
  backdrop-filter: blur(10px);
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 36px 0 0;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-actions .button-primary {
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
}

.hero-actions .button-primary svg {
  transition: transform 0.2s ease;
}

.hero-actions .button-primary:hover svg {
  transform: translateX(4px);
}

.hero-actions .button-secondary {
  padding: 14px 28px;
  font-size: 15px;
}

/* Hero Stats */
.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 64px auto 0;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(43, 179, 162, 0.1), rgba(43, 179, 162, 0.05));
  color: var(--primary);
  flex-shrink: 0;
}

.stat-content h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

.stat-content p {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hero Animations */
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(43, 179, 162, 0.35);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), #1a7a70);
  box-shadow: 0 12px 32px rgba(43, 179, 162, 0.45);
  transform: translateY(-2px);
}

.button-secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.button-outline {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 24px;
  overflow-x: hidden;
}

.section-fullwidth {
  width: 100%;
  padding: 72px 24px;
  overflow-x: hidden;
}

.section-fullwidth .section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.section-muted {
  background: var(--surface-muted);
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.section-heading p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--text-muted);
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(43, 179, 162, 0.1), rgba(43, 179, 162, 0.05));
  border: 1px solid rgba(43, 179, 162, 0.2);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

/* Features Section */
.features-section {
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  position: relative;
  background: var(--surface);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  border-color: rgba(43, 179, 162, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(43, 179, 162, 0.12), rgba(43, 179, 162, 0.04));
  color: var(--primary);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  transform: scale(1.05);
}

.feature-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--border);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-number {
  color: var(--primary);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.card h3 {
  margin-top: 0;
}

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

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  border-color: rgba(43, 179, 162, 0.3);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(43, 179, 162, 0.12), rgba(43, 179, 162, 0.04));
  color: var(--primary);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  transform: scale(1.05);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 600;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s ease;
}

.service-link:hover {
  gap: 10px;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 50% 80% at 20% 20%, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(ellipse 50% 80% at 80% 80%, rgba(0, 0, 0, 0.1), transparent);
  pointer-events: none;
}

.stats-wrapper {
  position: relative;
  z-index: 1;
}

.stats-heading {
  text-align: center;
  margin-bottom: 48px;
}

.stats-heading .section-badge {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
}

.stats-heading h2 {
  color: white;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.stats-heading .text-gradient {
  background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stats-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stats-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.stats-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  margin-bottom: 16px;
}

.stats-card h3 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.stats-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

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

details {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0;
  background: var(--surface);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
}

details:hover {
  border-color: rgba(43, 179, 162, 0.3);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

details[open] {
  border-color: var(--primary);
}

summary {
  cursor: pointer;
  font-weight: 600;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

details[open] summary::after {
  transform: rotate(-135deg);
}

details p {
  color: var(--text-muted);
  padding: 0 24px 20px;
  margin: 0;
  line-height: 1.7;
}

.cta {
  background: var(--surface-muted);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(43, 179, 162, 0.1), transparent),
    radial-gradient(ellipse 60% 60% at 100% 100%, rgba(43, 179, 162, 0.06), transparent);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-form {
  margin-top: 40px;
  display: grid;
  gap: 20px;
  background: var(--surface);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(15, 23, 42, 0.06);
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 15px;
  background: var(--surface);
  transition: all 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(43, 179, 162, 0.1);
}

textarea {
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  text-align: left;
  color: var(--text-muted);
}

.checkbox input {
  margin-top: 4px;
  width: auto;
  accent-color: var(--primary);
}

.cta-form .button-primary {
  width: 100%;
  padding: 18px;
  font-size: 16px;
  gap: 10px;
}

.cta-form .button-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.form-message {
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 14px;
  text-align: center;
}

.form-message.success {
  background: rgba(43, 179, 162, 0.1);
  border: 1px solid rgba(43, 179, 162, 0.3);
  color: var(--primary-dark);
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}

.form-message.info {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #2563eb;
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.field-error {
  display: none;
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
}

.input-error {
  border-color: #dc2626 !important;
}

.input-error:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

/* Phone Input with intl-tel-input */
.phone-wrapper .iti {
  width: 100%;
  display: block;
}

.phone-wrapper .iti input,
.phone-wrapper .iti input[type="tel"] {
  width: 100% !important;
  padding: 14px 18px 14px 90px !important;
  border-radius: 12px !important;
  border: 1px solid var(--border) !important;
  font-family: inherit !important;
  font-size: 15px !important;
  background: var(--surface) !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
}

.phone-wrapper .iti input:focus {
  outline: none !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(43, 179, 162, 0.1) !important;
}

.iti__country-container {
  padding-left: 12px;
}

.iti__selected-dial-code {
  font-size: 14px;
  color: var(--text);
}

/* Checkbox links */
.checkbox a {
  color: var(--primary);
  text-decoration: underline;
}

.checkbox a:hover {
  color: var(--primary-dark);
}

.captcha-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.captcha-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.captcha-row input {
  max-width: 200px;
}

.captcha-row .field-error {
  max-width: 200px;
}

.disclaimer {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.site-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 48px 24px;
}

.footer-centered {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 0 40px;
}

.footer-logo {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-contact-info {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e2e8f0;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-email:hover {
  color: var(--primary);
}

.footer-divider {
  color: #475569;
}

.footer-telegram {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e2e8f0;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-telegram:hover {
  color: #29b6f6;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #94a3b8;
  font-size: 14px;
  transition: color 0.2s ease;
}

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

.site-footer p,
.site-footer li {
  color: #cbd5f5;
  font-size: 14px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-contact {
  margin-top: 16px;
  font-weight: 600;
}

.footer-note {
  color: #94a3b8;
  font-size: 13px;
  margin: 0;
}

.footer-disclaimer {
  max-width: 900px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #64748b;
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
}

/* Legal Pages */
.legal-page {
  max-width: 900px;
}

.legal-header {
  text-align: center;
  margin-bottom: 48px;
}

.legal-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 16px 0;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 14px;
}

.legal-content {
  background: var(--surface);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(15, 23, 42, 0.06);
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-section h2 {
  font-size: 1.4rem;
  margin: 0 0 16px;
  color: var(--text);
}

.legal-section h3 {
  font-size: 1.1rem;
  margin: 24px 0 12px;
  color: var(--text);
}

.legal-section p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-section ul {
  color: var(--text-muted);
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-section strong {
  color: var(--text);
}

/* Industries Carousel */
.carousel-wrapper {
  overflow: hidden;
  position: relative;
  margin-top: 32px;
}

.carousel-wrapper::before,
.carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.carousel-track {
  display: flex;
  gap: 24px;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

.carousel-card {
  flex-shrink: 0;
  width: 260px;
  background: var(--surface);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.carousel-icon {
  display: block;
  font-size: 32px;
  margin-bottom: 12px;
}

.carousel-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.carousel-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

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

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

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

@media (max-width: 860px) {
  .nav {
    flex-direction: row;
    justify-content: space-between;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 8px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 99;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 16px;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-links .button-outline {
    margin-top: 16px;
    width: 100%;
    text-align: center;
    border-bottom: none;
  }

  /* Mobile Dropdown */
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    font-size: 16px;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    margin-top: 0;
    background: transparent;
  }

  .nav-dropdown-menu a {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .nav-dropdown-menu a:hover {
    background: transparent;
  }

  .hero {
    padding: 60px 20px 50px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .stat-card {
    padding: 16px;
  }

  .stat-icon {
    width: 42px;
    height: 42px;
  }

  .stat-content h3 {
    font-size: 1.2rem;
  }

  .hero-orb-1 {
    width: 250px;
    height: 250px;
  }

  .hero-orb-2 {
    width: 180px;
    height: 180px;
  }

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

  .feature-card {
    padding: 24px;
  }

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

  .service-card {
    padding: 24px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stats-card {
    padding: 24px 16px;
  }

  .stats-card h3 {
    font-size: 2rem;
  }

  .cta-form {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .carousel-wrapper::before,
  .carousel-wrapper::after {
    width: 40px;
  }

  .carousel-card {
    width: 220px;
    padding: 20px;
  }

  .legal-content {
    padding: 24px;
  }

  .legal-section h2 {
    font-size: 1.2rem;
  }
}
