:root {
  --color-primary: #2563EB;
  --color-accent: #22C55E;
  --color-dark: #1e293b;
  --color-gray: #64748b;
  --color-light: #f8fafc;
  --color-white: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--color-dark);
}

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

/* Navigation */
.navbar {
  background: var(--color-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-primary);
}

.nav-brand .logo {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-brand:hover .logo {
  transform: scale(1.05);
}

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

.nav-links .nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-dark);
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

.nav-links .nav-item svg {
  transition: all 0.3s ease;
  color: var(--color-primary);
}

.nav-links .nav-item:hover {
  color: var(--color-primary);
  background: rgba(37, 99, 235, 0.05);
}

.nav-links .nav-item:hover svg {
  transform: scale(1.1);
  color: var(--color-accent);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-features {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--color-white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.feature-icon {
  font-size: 1.5rem;
}

/* Form Card */
.form-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
  transition: left 0.6s ease;
}

.form-card:hover::before {
  left: 100%;
}

.form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.form-card h3 {
  margin-bottom: 0.5rem;
  color: var(--color-dark);
  text-align: center;
}

.form-card .form-subtitle {
  text-align: center;
  color: var(--color-gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.recaptcha-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.recaptcha-wrapper .g-recaptcha {
  transform: scale(0.95);
  transform-origin: center;
}

.btn-primary {
  width: 100%;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-primary.loading {
  background: var(--color-gray);
  cursor: not-allowed;
}

.btn-primary.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid var(--color-white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.form-message {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  text-align: center;
  display: none;
}

.form-message.success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-message.error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--color-light) 100%);
  position: relative;
}

.services h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
  font-weight: 700;
}

.services-subtitle {
  text-align: center;
  color: var(--color-gray);
  font-size: 1.2rem;
  margin-bottom: 4rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-card {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 16px;
  background: var(--color-white);
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.1);
}

.service-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-icon svg {
  width: 64px;
  height: 64px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(34, 197, 94, 0.1));
  border-radius: 16px;
  color: var(--color-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon svg {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}


.service-card h3 {
  margin-bottom: 1rem;
  color: var(--color-dark);
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--color-primary);
}

.service-card p {
  color: var(--color-gray);
  line-height: 1.7;
  font-size: 1rem;
}

/* Clients Section */
.clients {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--color-dark) 0%, #0f172a 100%);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.clients::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.clients h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.clients-subtitle {
  font-size: 1.25rem;
  margin-bottom: 4rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.clients-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.98);
  padding: 2rem 1.75rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

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

.testimonial-card:hover::after {
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
  border-color: rgba(37, 99, 235, 0.3);
}

.client-logo {
  margin-bottom: 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.client-logo img {
  max-height: 70px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.3);
  opacity: 0.8;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover .client-logo img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.1);
}

.client-logo.text-logo {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  padding: 0.875rem 2rem;
  border-radius: 12px;
  height: auto;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
  transition: all 0.5s ease;
}

.testimonial-card:hover .client-logo.text-logo {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
}

.client-logo.text-logo span {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 2px;
}

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

.testimonial-content p {
  color: var(--color-gray);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
}

.client-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.7rem 1.5rem;
  background: var(--color-white);
  color: var(--color-primary);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid var(--color-primary);
  position: relative;
  z-index: 1;
}

.client-link:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* About Section */
.about {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--color-light) 0%, #ffffff 100%);
  position: relative;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
  font-weight: 700;
}

.about-subtitle {
  font-size: 1.25rem;
  color: var(--color-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-hero {
  position: relative;
  margin: 3rem 0 4rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-hero img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

.about-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 3rem 2rem 2rem;
}

.about-hero-overlay p {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
  line-height: 1.4;
  font-style: italic;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

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

.feature-box {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.2);
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.4s ease;
}

/* Blue - AI */
.feature-blue .feature-icon-box {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(59, 130, 246, 0.15));
  color: #2563EB;
}

.feature-blue:hover .feature-icon-box {
  background: linear-gradient(135deg, #2563EB, #3b82f6);
  color: var(--color-white);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

/* Purple - Speed */
.feature-purple .feature-icon-box {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(147, 51, 234, 0.15));
  color: #a855f7;
}

.feature-purple:hover .feature-icon-box {
  background: linear-gradient(135deg, #a855f7, #9333ea);
  color: var(--color-white);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
}

/* Orange - Time */
.feature-orange .feature-icon-box {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(234, 88, 12, 0.15));
  color: #f97316;
}

.feature-orange:hover .feature-icon-box {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: var(--color-white);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

/* Green - Money */
.feature-green .feature-icon-box {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.15));
  color: #22c55e;
}

.feature-green:hover .feature-icon-box {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: var(--color-white);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.feature-box h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-dark);
  font-weight: 600;
}

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

/* Contact Section */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #dbeafe 100%);
  position: relative;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-header .badge {
  display: inline-block;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: var(--color-primary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(37, 99, 235, 0.2);
}

.contact-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
  font-weight: 700;
}

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

.contact-subtitle {
  font-size: 1.25rem;
  color: var(--color-gray);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.trust-indicators {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-dark);
  font-weight: 500;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--color-accent);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.2);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(34, 197, 94, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-white);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.contact-card h4 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-dark);
  font-weight: 600;
}

.contact-card p {
  color: var(--color-gray);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.contact-card.highlight-card {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 2px solid rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-card.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), transparent);
  border-radius: 0 0 0 100%;
}

.contact-icon.gradient-bg {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-white);
}

.benefit-tag, .status-indicator, .location-tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
}

.benefit-tag {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #166534;
  border: 1px solid #86efac;
}

.status-indicator {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #15803d;
  border: 1px solid #86efac;
}

.location-tag {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  border: 1px solid #fcd34d;
}

.contact-link {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.75rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--color-accent);
  transform: translateX(5px);
}

.contact-form-wrapper .form-card {
  background: var(--color-white);
  border: 2px solid rgba(37, 99, 235, 0.1);
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
  color: var(--color-dark);
  padding: 3rem 0 1rem;
  border-top: 1px solid #cbd5e1;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo .logo {
  height: 35px;
  width: auto;
}

.footer-brand h3 {
  color: var(--color-primary);
  margin: 0;
  font-weight: 600;
}

.footer-brand p {
  color: var(--color-gray);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 3rem;
  justify-content: flex-end;
}

.footer-col h4 {
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: var(--color-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid #cbd5e1;
  padding-top: 1.5rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--color-gray);
  margin: 0;
}

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

.footer-legal-links a {
  color: var(--color-gray);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

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

.footer-legal-links span {
  color: var(--color-gray);
  opacity: 0.6;
  font-size: 0.8rem;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--color-dark);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links .nav-item {
    padding: 1rem;
    justify-content: flex-start;
  }
  
  .nav-links .nav-item svg {
    width: 20px;
    height: 20px;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero {
    background-attachment: scroll;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .services {
    padding: 60px 0;
  }
  
  .services h2 {
    font-size: 2rem;
  }
  
  .services-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-card {
    padding: 2.5rem 1.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .clients-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-header h2 {
    font-size: 2rem;
  }
  
  .about-subtitle {
    font-size: 1rem;
  }
  
  .about-hero {
    margin: 2rem 0 3rem;
  }
  
  .about-hero img {
    max-height: 350px;
  }
  
  .about-hero-overlay p {
    font-size: 1.1rem;
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-header h2 {
    font-size: 2rem;
  }
  
  .contact-subtitle {
    font-size: 1rem;
  }
  
  .trust-indicators {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
  
  .trust-item {
    font-size: 0.875rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-info-grid {
    gap: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-links {
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal-links {
    justify-content: center;
  }
}

/* Legal Pages */
.legal-page {
  padding: 120px 0 80px;
  background: var(--color-white);
}

.legal-page h1 {
  font-size: 2.5rem;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.last-updated {
  color: var(--color-gray);
  font-style: italic;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin: 2rem 0 1rem;
}

.legal-page p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.legal-page ul {
  margin: 1rem 0 1rem 2rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .hero {
    background-attachment: scroll;
    padding: 100px 0 60px;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .hero-text p {
    font-size: 1.1rem;
  }
  
  .form-card {
    padding: 1.5rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .services {
    padding: 60px 0;
  }
  
  .clients {
    padding: 60px 0;
  }
  
  .clients h2 {
    font-size: 2rem;
  }
  
  .clients-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
  
  .client-logo {
    height: 70px;
    margin-bottom: 1.5rem;
  }
  
  .client-logo img {
    max-height: 70px;
    max-width: 160px;
  }
  
  .client-logo.text-logo {
    padding: 1rem 2rem;
  }
  
  .client-logo.text-logo span {
    font-size: 1.3rem;
    letter-spacing: 2px;
  }
  
  .testimonial-card {
    padding: 1.75rem 1.5rem;
  }
  
  .testimonial-content p {
    font-size: 0.9rem;
  }
  
  .client-link {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
  }
  
  .about {
    padding: 60px 0;
  }
  
  .about-header h2 {
    font-size: 1.75rem;
  }
  
  .about-hero {
    margin: 1.5rem 0 2.5rem;
    border-radius: 16px;
  }
  
  .about-hero img {
    max-height: 250px;
  }
  
  .about-hero-overlay {
    padding: 2rem 1rem 1rem;
  }
  
  .about-hero-overlay p {
    font-size: 1rem;
  }
  
  .feature-box {
    padding: 1.5rem;
  }
  
  .feature-icon-box {
    width: 50px;
    height: 50px;
  }
  
  .contact {
    padding: 60px 0;
  }
  
  .contact-header h2 {
    font-size: 1.75rem;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
  }
  
  .contact-card h4 {
    font-size: 1.25rem;
  }
}
