/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background-color: #f7f3f0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: "Crimson Text", serif;
  font-weight: 600;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 55, 72, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo .logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.nav-link {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: #2563eb;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  transition: width 0.3s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #2d3748;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Enhanced Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
  background: none;
  position: relative;
  overflow: hidden;
  min-height: 44px; /* Better touch target */
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-dark {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border-color: #2563eb;
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.25);
}

.btn-dark:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px 0 rgba(37, 99, 235, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: #2563eb;
  border-color: #2563eb;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px 0 rgba(37, 99, 235, 0.25);
}

.btn.large {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 14px;
}

.btn.full-width {
  width: 100%;
}

/* Hero Section - Enhanced */
.hero {
  padding: 100px 0 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(59, 130, 246, 0.08) 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-accent {
  font-weight: 600;
  color: #2563eb;
  display: block;
  font-size: 0.85em;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

.hero-description {
  font-size: 1.125rem;
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.7;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 15px;
  color: #4a5568;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(5px);
  color: #2563eb;
}

.check-icon {
  width: 20px;
  height: 20px;
  color: #48bb78;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.benefit-item:hover .check-icon {
  color: #38a169;
  transform: scale(1.1);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-mockup {
  background: white;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  transform: rotate(-2deg);
}

.mockup-header {
  background: #f7fafc;
  padding: 12px 16px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-dots {
  display: flex;
  gap: 4px;
}

.mockup-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e0;
}

.mockup-dots span:first-child {
  background: #fc8181;
}

.mockup-dots span:nth-child(2) {
  background: #f6e05e;
}

.mockup-dots span:last-child {
  background: #68d391;
}

.mockup-title {
  font-weight: 600;
  color: #2d3748;
  font-size: 12px;
}

.mockup-content {
  padding: 16px;
}

.metric-card {
  background: #f0fff4;
  border: 1px solid #c6f6d5;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
  text-align: center;
}

.metric-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 2px;
}

.metric-label {
  font-size: 11px;
  color: #4a5568;
  margin-bottom: 4px;
}

.metric-status {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
}

.metric-status.good {
  background: #c6f6d5;
  color: #22543d;
}

.team-grid {
  margin-bottom: 12px;
}

.progress-section {
  margin-top: 8px;
}

.progress-title {
  font-size: 11px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 4px;
}

.progress-bar {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}

.progress-fill {
  height: 100%;
  width: 85%;
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  border-radius: 3px;
}

.progress-metrics {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #718096;
}

.floating-element {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.element-1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.element-2 {
  bottom: 20%;
  right: -15%;
  animation-delay: 3s;
}

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

/* Trust Section */
.trust-section {
  padding: 40px 0;
  border-bottom: 1px solid rgba(45, 55, 72, 0.1);
}

.trust-text {
  text-align: center;
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: center;
}

.logo-item {
  text-align: center;
  font-weight: 600;
  color: #718096;
  font-size: 12px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  padding: 0.5rem;
}

.logo-item:hover {
  opacity: 1;
}

/* Sections */
.section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.25rem;
  color: #1a202c;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #4a5568;
  line-height: 1.6;
}

/* Enhanced Services Section */
.services-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-card.featured {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px -8px rgba(37, 99, 235, 0.3);
}

.service-card.featured::before {
  background: rgba(255, 255, 255, 0.3);
  transform: scaleX(1);
}

.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.2);
}

.service-card.featured:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px -8px rgba(37, 99, 235, 0.4);
}

.service-card.featured:hover .service-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #3b82f6, #8b5cf6);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:not(.featured):hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -8px rgba(37, 99, 235, 0.25);
  border-color: #2563eb;
  background: linear-gradient(135deg, #f8faff 0%, #f0f7ff 100%);
}

.service-card:not(.featured):hover .service-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
}

.service-card:not(.featured):hover h3 {
  color: #2563eb;
}

.service-card:not(.featured):hover p {
  color: #1a202c;
}

.service-card:not(.featured):focus-within {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -8px rgba(37, 99, 235, 0.25);
  border-color: #2563eb;
  background: linear-gradient(135deg, #f8faff 0%, #f0f7ff 100%);
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.service-card:not(.featured):focus-within .service-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
}

.service-card:not(.featured):focus-within h3 {
  color: #2563eb;
}

.service-card:not(.featured):focus-within p {
  color: #1a202c;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
}

.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.2);
}

.service-card.featured:hover .service-icon {
  background: rgba(255, 255, 255, 0.3);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: inherit;
}

.service-card p {
  color: inherit;
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.4rem 0;
  color: inherit;
  opacity: 0.9;
  position: relative;
  padding-left: 1.5rem;
  font-size: 14px;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #48bb78;
  font-weight: bold;
}

.service-card.featured .service-features li:before {
  color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.25rem;
  color: #1a202c;
  margin-bottom: 1.5rem;
}

.about-intro {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.value-icon {
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.value-content h4 {
  font-size: 1rem;
  color: #2d3748;
  margin-bottom: 0.25rem;
}

.value-content p {
  color: #718096;
  font-size: 0.875rem;
}

/* Expertise Showcase */
.expertise-showcase {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.expertise-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.expertise-header h3 {
  font-size: 1.25rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.expertise-header p {
  color: #718096;
  font-size: 0.875rem;
}

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

.expertise-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 10px;
  background: #f7fafc;
  transition: all 0.3s ease;
}

.expertise-item:hover {
  background: #edf2f7;
  transform: translateY(-2px);
}

.expertise-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.expertise-content h4 {
  font-size: 0.95rem;
  color: #2d3748;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.expertise-content p {
  color: #718096;
  font-size: 0.8rem;
  line-height: 1.4;
}

.expertise-footer {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.expertise-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 600;
}

.expertise-badge span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Enhanced Approach Section */
.approach-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.approach-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Approach Process - New Timeline Style */
.approach-process {
  position: relative;
  margin: 4rem 0;
}

.process-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(to bottom, #2563eb, #3b82f6);
  transform: translateX(-50%);
  border-radius: 4px;
  z-index: 1;
}

.approach-steps {
  position: relative;
  z-index: 2;
}

.approach-step {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
  align-items: flex-start;
}

.approach-step:nth-child(even) {
  flex-direction: row-reverse;
}

.approach-step:nth-child(even) .step-number {
  margin-left: 2rem;
  margin-right: 0;
}

.approach-step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-right: 2rem;
  flex-shrink: 0;
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.3);
  position: relative;
  z-index: 3;
}

.step-content {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  flex: 1;
  max-width: 400px;
  position: relative;
  transition: all 0.3s ease;
}

.step-icon {
  width: 50px;
  height: 50px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.step-svg {
  width: 24px;
  height: 24px;
  color: #2563eb;
}

.step-content h3 {
  font-size: 1.25rem;
  color: #1a202c;
  margin-bottom: 0.75rem;
}

.step-content p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Work Methods - New Card Style */
.work-methods {
  margin-top: 5rem;
}

.work-methods h3 {
  text-align: center;
  font-size: 1.5rem;
  color: #1a202c;
  margin-bottom: 2rem;
}

.methods-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.method-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.method-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

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

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15);
}

.method-icon {
  width: 60px;
  height: 60px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.method-icon svg {
  width: 28px;
  height: 28px;
  color: #2563eb;
}

.method-card h4 {
  font-size: 1.125rem;
  color: #1a202c;
  margin-bottom: 0.75rem;
}

.method-card p {
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: #2563eb;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Contact Section */
.contact-section {
  background: white;
}

.contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 2.5rem;
  color: #1a202c;
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1.125rem;
  color: #4a5568;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.contact-details {
  background: #f7fafc;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.contact-email {
  font-size: 1.5rem;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.contact-email:hover {
  color: #1d4ed8;
  transform: translateY(-2px);
}

.contact-note {
  font-size: 1rem;
  color: #718096;
  margin: 0;
}

/* Form Styles */
.form {
  background: #f7fafc;
  padding: 2rem;
  border-radius: 16px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px; /* Prevents zoom on iOS */
  transition: border-color 0.3s ease;
  background: white;
  min-height: 44px; /* Better touch target */
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
}

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

/* Footer */
.footer {
  background: #1a202c;
  color: white;
  padding: 40px 0 20px;
}

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

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

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.footer-tagline {
  color: #a0aec0;
  font-style: italic;
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: center;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: white;
}

.footer-column a {
  display: block;
  color: #a0aec0;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #2d3748;
}

.footer-bottom p {
  color: #718096;
  font-size: 0.8rem;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-container {
    height: 70px;
    padding: 0 16px;
  }

  .nav-logo .logo {
    height: 65px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(45, 55, 72, 0.1);
    min-height: calc(100vh - 70px);
    justify-content: flex-start;
    padding-top: 3rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 18px;
    padding: 1rem 0;
    width: 100%;
    display: block;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .container {
    padding: 0 16px;
  }

  /* Hero Mobile */
  .hero {
    padding: 90px 0 40px;
    min-height: auto;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

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

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

  .hero-buttons {
    justify-content: center;
    gap: 0.75rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .btn.large {
    padding: 14px 24px;
    font-size: 15px;
  }

  .dashboard-mockup {
    max-width: 300px;
    transform: none;
  }

  .floating-element {
    display: none;
  }

  /* Trust Section Mobile */
  .trust-section {
    padding: 30px 0;
  }

  .trust-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .client-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .logo-item {
    font-size: 11px;
  }

  /* Sections Mobile */
  .section {
    padding: 40px 0;
  }

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

  .section-header h2 {
    font-size: 2.25rem;
  }

  /* Mobile approach layout */
  .process-line {
    left: 30px;
    transform: none;
  }

  .approach-step {
    flex-direction: row !important;
    align-items: flex-start;
  }

  .approach-step:nth-child(even) {
    flex-direction: row !important;
  }

  .approach-step:nth-child(even) .step-number {
    margin-left: 0;
    margin-right: 2rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
    margin-right: 1.5rem;
    position: relative;
    left: 5px;
  }

  .step-content {
    max-width: none;
    padding: 1.5rem;
  }

  .methods-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .method-card {
    padding: 1.5rem;
  }

  /* Contact Section Mobile */
  .contact-email {
    font-size: 1.1rem;
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    line-height: 1.3;
    padding: 0.5rem;
    display: inline-block;
  }

  .contact-details {
    padding: 1.5rem;
  }

  .contact-info h2 {
    font-size: 2rem;
  }

  .contact-info p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-email {
    font-size: 1rem;
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
  }

  .contact-details {
    padding: 1.25rem;
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-container {
    height: 80px;
    padding: 0 24px;
  }

  .nav-logo .logo {
    height: 75px;
  }

  .nav-menu {
    gap: 1.5rem;
  }

  .nav-actions {
    gap: 1rem;
  }

  .nav-actions .nav-link {
    display: none;
  }
  .methods-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .approach-step {
    flex-direction: row !important;
    align-items: flex-start;
  }

  .approach-step:nth-child(even) {
    flex-direction: row !important;
  }

  .approach-step:nth-child(even) .step-number {
    margin-left: 0;
    margin-right: 2rem;
  }

  .step-content {
    max-width: none;
  }

  .process-line {
    left: 30px;
    transform: none;
  }

  .step-number {
    position: relative;
    left: 5px;
  }
}

/* Desktop Styles */
@media (min-width: 1025px) {
  .nav-container {
    height: 90px;
    padding: 0 32px;
  }

  .nav-logo .logo {
    height: 90px;
  }

  .nav-menu {
    gap: 2.5rem;
  }

  .nav-link {
    font-size: 16px;
  }

  .nav-actions {
    gap: 1.5rem;
  }
  .nav-container {
    height: 100px;
  }

  .nav-logo .logo {
    height: 80px;
  }

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

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

  .about-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

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

  .client-logos {
    grid-template-columns: repeat(6, 1fr);
  }

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

  .methods-container {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .footer-links {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .footer-brand {
    text-align: left;
  }

  /* Desktop approach layout */
  .approach-step {
    align-items: center;
  }

  .step-content {
    max-width: 450px;
  }
}
