@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-tertiary: #1a1a25;
  --accent-primary: #22d3ee;
  --accent-secondary: #06b6d4;
  --accent-light: #67e8f9;
  --accent-dark: #0891b2;
  --text-heading: #E2E8F0;
  --text-primary: #F8FAFC;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  --gradient-glow: linear-gradient(135deg, #22d3ee 0%, #06b6d4 50%, #0891b2 100%);
  --gradient-vibrant: linear-gradient(135deg, #22d3ee 0%, #a855f7 50%, #ec4899 100%);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
}

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

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.6);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .service-title,
.roadmap-title, .case-study-title, .cta-title,
.service-hero-title, .problem-title, .trust-title,
.footer-title {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-heading);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

#header-placeholder {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header {
  background: rgba(18, 18, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(8, 145, 178, 0.3);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 0.6rem 0;
  background: rgba(18, 18, 26, 0.98);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-text {
  background: var(--gradient-vibrant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-vibrant);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--bg-primary);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width 0.3s ease;
}

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

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

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

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-secondary);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0.5rem;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background: rgba(34, 211, 238, 0.1);
  color: var(--accent-primary);
}

.cta-button {
  background: var(--gradient-vibrant);
  color: var(--bg-primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(8, 145, 178, 0.3);
  z-index: 999;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

.mobile-nav a:hover {
  background: rgba(34, 211, 238, 0.1);
  color: var(--accent-primary);
}

main {
  flex: 1;
  padding-top: 70px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(34, 211, 238, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(34, 211, 238, 0.08), transparent);
  pointer-events: none;
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-title span {
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

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

.btn-primary {
  background: var(--gradient-vibrant);
  color: var(--bg-primary);
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(34, 211, 238, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(34, 211, 238, 0.3);
  color: var(--text-primary);
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  border-color: var(--accent-primary);
  background: rgba(34, 211, 238, 0.1);
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1), transparent 70%);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(10, 10, 15, 0.5);
  border-radius: var(--radius-md);
  border: 1px solid rgba(34, 211, 238, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-primary);
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.services-section {
  padding: 6rem 0;
  position: relative;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

.section-badge {
  display: inline-block;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-description {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.service-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(34, 211, 238, 0.1);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-glow);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(34, 211, 238, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.service-brand-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(34, 211, 238, 0.3));
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-link:hover {
  gap: 0.75rem;
}

.problem-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.problem-card {
  background: var(--bg-primary);
  border: 1px solid rgba(34, 211, 238, 0.1);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '✕';
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  font-size: 1.25rem;
}

.problem-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.problem-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.strategy-section {
  padding: 6rem 0;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.roadmap-step {
  position: relative;
  padding: 2.5rem;
  background: var(--bg-secondary);
  border: 1px solid rgba(34, 211, 238, 0.1);
  border-radius: var(--radius-md);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.roadmap-step:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(34, 211, 238, 0.2),
    inset 0 0 30px rgba(34, 211, 238, 0.05);
}

.roadmap-step::after {
  content: '→';
  position: absolute;
  top: 50%;
  right: -1.5rem;
  transform: translateY(-50%);
  color: var(--accent-primary);
  font-size: 2rem;
  display: none;
}

.roadmap-step:last-child::after {
  display: none;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--gradient-glow);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bg-primary);
  margin-bottom: 1.5rem;
}

.roadmap-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.roadmap-description {
  color: var(--text-secondary);
  line-height: 1.7;
}

.case-study-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.case-study-card {
  background: var(--bg-primary);
  border: 1px solid rgba(34, 211, 238, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.4s ease;
}

.case-study-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.case-study-image {
  height: 200px;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(8, 145, 178, 0.3);
  position: relative;
  overflow: hidden;
}

.case-study-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(45deg, transparent 40%, rgba(34, 211, 238, 0.05) 50%, transparent 60%);
}

.case-study-placeholder {
  text-align: center;
  color: var(--text-muted);
}

.case-study-screenshot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.case-study-card:hover .case-study-screenshot {
  transform: scale(1.1);
}

.case-study-placeholder-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

.case-study-content {
  padding: 2rem;
}

.case-study-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.case-study-metrics {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-primary);
}

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

.trust-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  width: 100%;
}

.trust-stat {
  text-align: center;
  padding: 2rem;
  background: var(--bg-primary);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--radius-md);
}

.trust-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-primary);
  display: block;
}

.trust-label {
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.partners-section {
  padding: 4rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(34, 211, 238, 0.1);
}

.partners-title {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 0 2rem;
}

.partner-logo {
  height: 40px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 1.2rem;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  color: var(--accent-primary);
}

.cta-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.cta-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1) 0%, rgba(18, 18, 26, 0.8) 100%);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.2), transparent 70%);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.cta-description {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
}

.contact-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.contact-form {
  background: var(--bg-primary);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--radius-md);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08), transparent 70%);
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2322d3ee' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

.form-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  background: var(--gradient-vibrant);
  color: var(--bg-primary);
  padding: 1.25rem 2rem;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(34, 211, 238, 0.3);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  width: 80px;
  height: 80px;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-secondary);
}

#footer-placeholder {
  margin-top: auto;
}

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(34, 211, 238, 0.1);
  padding: 4rem 0 2rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-links a {
  display: block;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--bg-primary);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-primary);
  color: var(--bg-primary);
  border-color: var(--accent-primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(34, 211, 238, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--text-muted);
}

.footer-legal a:hover {
  color: var(--accent-primary);
}

.service-hero {
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(34, 211, 238, 0.15), transparent);
  pointer-events: none;
}

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

.service-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.service-hero-title span {
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.animate-fade-in {
  animation: fadeInUp 0.8s 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; }
.delay-5 { animation-delay: 0.5s; }

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2rem 1.5rem;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-description {
    margin: 0 auto 2rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-visual {
    max-width: 100%;
    padding: 0 1rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-item {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

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

  .section-header {
    padding: 0 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }

  .roadmap {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
    gap: 1.5rem;
  }

  .roadmap-step::after {
    display: none;
  }

  .roadmap-step {
    padding: 1.5rem;
  }

  .case-study-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1.5rem;
  }

  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .footer-inner {
    padding: 0 1.5rem;
  }

  .service-hero {
    padding: 120px 0 60px;
  }

  .service-hero-title {
    font-size: 2.75rem;
  }

  .contact-container {
    padding: 0 1.5rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    padding: 0;
  }

  body {
    overflow-x: hidden;
  }

  .header {
    padding: 0.75rem 0;
  }

  .header-inner {
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .mobile-menu-btn {
    display: block;
    font-size: 1.25rem;
    padding: 0.5rem;
  }

  .mobile-nav {
    top: 60px;
    padding: 0.5rem;
  }

  .mobile-nav a {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 80px;
    min-height: auto;
  }

  .hero-inner {
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .hero-content {
    text-align: center;
  }

  .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .hero-card {
    padding: 1.5rem 1rem;
  }

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

  .stat-item {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .services-section,
  .problem-section,
  .strategy-section,
  .case-study-section,
  .trust-section,
  .contact-section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .section-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .section-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0 1rem;
  }

  .service-card {
    padding: 1.5rem;
    text-align: center;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
  }

  .service-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .service-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  .problem-card {
    padding: 1.25rem;
  }

  .problem-card::before {
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .problem-title {
    font-size: 1.1rem;
    padding-right: 2rem;
    margin-bottom: 0.5rem;
  }

  .problem-description {
    font-size: 0.875rem;
  }

  .roadmap {
    gap: 1.25rem;
    padding: 0 1rem;
  }

  .roadmap-step {
    padding: 1.5rem 1.25rem;
    text-align: center;
  }

  .step-number {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .roadmap-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .roadmap-description {
    font-size: 0.9rem;
  }

  .case-study-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0 1rem;
  }

  .case-study-image {
    height: 160px;
  }

  .case-study-content {
    padding: 1.25rem;
  }

  .case-study-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .case-study-metrics {
    gap: 1rem;
  }

  .metric-value {
    font-size: 1.25rem;
  }

  .metric-label {
    font-size: 0.75rem;
  }

  .trust-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  .trust-stat {
    padding: 1.5rem 1rem;
  }

  .trust-number {
    font-size: 2rem;
  }

  .trust-label {
    font-size: 0.85rem;
  }

  .partners-section {
    padding: 2rem 0;
  }

  .partners-grid {
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .partner-logo {
    font-size: 1rem;
  }

  .cta-box {
    margin: 0 1rem;
    padding: 2rem 1.5rem;
  }

  .cta-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .cta-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .contact-section .section-header {
    margin-bottom: 2rem;
  }

  .contact-container {
    padding: 0 1rem;
  }

  .contact-form {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-md);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-label {
    font-size: 0.875rem;
    margin-bottom: 0.4rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
  }

  .form-textarea {
    min-height: 120px;
  }

  .form-submit {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    margin-top: 0.5rem;
  }

  .form-success {
    padding: 1rem;
  }

  .form-success-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .form-success h3 {
    font-size: 1.25rem;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-inner {
    padding: 0 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-description {
    font-size: 0.875rem;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-title {
    margin-bottom: 1rem;
  }

  .footer-links a {
    padding: 0.4rem 0;
    font-size: 0.875rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 1.5rem 1rem 0;
  }

  .footer-legal {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-hero {
    padding: 100px 0 40px;
  }

  .service-hero-content {
    padding: 0 1rem;
  }

  .service-hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .service-hero-description {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .service-hero .hero-buttons {
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .cta-title {
    font-size: 1.35rem;
  }

  .service-hero-title {
    font-size: 1.75rem;
  }

  .stat-number {
    font-size: 1.35rem;
  }

  .trust-number {
    font-size: 1.75rem;
  }

  .case-study-metrics {
    flex-direction: column;
    gap: 0.75rem;
  }

  .metric {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .metric-value {
    font-size: 1.1rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0.65rem 0;
  }

  .header-inner {
    position: relative;
    min-height: 44px;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  .nav-desktop,
  .cta-button {
    display: none !important;
  }

  .mobile-menu-btn {
    position: absolute;
    right: 0;
    z-index: 1001;
    display: block !important;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.25rem;
    padding: 0.5rem;
    cursor: pointer;
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg-primary);
    border-right: 1px solid rgba(34, 211, 238, 0.2);
    padding: 80px 1.5rem 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

  .mobile-nav.active {
    transform: translateX(0);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
  }

  .mobile-nav-overlay.active {
    display: block;
  }

  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(8, 145, 178, 0.3);
  }

  .mobile-nav-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }

  .mobile-nav a:hover,
  .mobile-nav a.active {
    background: rgba(34, 211, 238, 0.1);
    color: var(--accent-primary);
  }

  .mobile-nav-cta {
    margin-top: 1rem;
    background: transparent;
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary) !important;
    padding: 0.875rem 1.5rem !important;
    border-radius: var(--radius-sm);
    font-weight: 700;
    justify-content: center;
    text-align: center;
    display: flex;
    align-items: center;
  }

  .mobile-nav-cta:hover {
    background: var(--accent-primary);
    color: var(--bg-primary) !important;
  }

  .mobile-dropdown {
    width: 100%;
  }

  .mobile-dropdown-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--radius-sm);
    text-align: left;
    margin-bottom: 0.5rem;
  }

  .mobile-dropdown-btn:hover,
  .mobile-dropdown-btn.active {
    background: rgba(34, 211, 238, 0.1);
    color: var(--accent-primary);
  }

  .mobile-dropdown-content {
    display: none;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
  }

  .mobile-dropdown-content.show {
    display: block;
  }

  .mobile-dropdown-content a {
    font-size: 0.9rem !important;
    padding: 0.75rem 1rem !important;
  }
  
  .dropdown-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
  }
  
  .mobile-dropdown-btn.active .dropdown-icon {
    transform: rotate(180deg);
  }

  .footer-collapse {
    display: none;
  }

  .footer-collapse.active {
    display: block;
  }

  .footer-col {
    border-bottom: 1px solid rgba(8, 145, 178, 0.3);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }

  .footer-col:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .footer-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0;
  }

  .footer-title::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--accent-primary);
    transition: transform 0.3s ease;
  }

  .footer-title.active::after {
    content: '-';
    transform: rotate(180deg);
  }

  .footer-links {
    display: none;
    padding-top: 1rem;
  }

  .footer-links.show {
    display: block;
  }
}