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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

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

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

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
    transform: translateY(-1px);
}

.btn-nav {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white !important;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
    border-radius: 2px;
}

/* ===== Hero Section ===== */
.hero-cta {
  margin-top: 32px;
}
.hero-cta .btn-primary {
  font-size: 1.15rem;
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0,229,168,0.15);
  background: linear-gradient(135deg, #00e5a8, #43c2ff);
  color: #031028;
  transition: all 0.3s ease;
}
.hero-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,229,168,0.25);
}
/* Removed floating logo styles */
:root {
  --hh-bg1: #0b1020;
  --hh-bg2: #111b39;
  --hh-accent: #00e5a8;
  --hh-accent-2: #43c2ff;
  --hh-text: #e8eef9;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 0 80px;
  background:
    radial-gradient(1200px 800px at 20% -10%, rgba(67,194,255,.25), transparent 60%),
    radial-gradient(1200px 800px at 120% 20%, rgba(0,229,168,.18), transparent 60%),
    linear-gradient(180deg, var(--hh-bg1), var(--hh-bg2));
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid #ffffff26;
  border-radius: 999px;
  color: var(--hh-text);
  background: linear-gradient(180deg, #ffffff12, #ffffff05);
  backdrop-filter: blur(8px);
  font-weight: 700;
  margin-bottom: 18px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--hh-accent);
  box-shadow: 0 0 0 6px rgba(0,229,168,.15);
  animation: pulse 2.2s infinite;
}

.hero-title {
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
  line-height: 1.08;
  font-weight: 900;
  color: var(--hh-text);
  margin-bottom: 16px;
}
.hero-title .hero-highlight {
  background: linear-gradient(135deg, var(--hh-accent), var(--hh-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: #cfd7ea;
  max-width: 52ch;
  margin-bottom: 28px;
}

.hero-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  color: #9fb0d6;
  font-size: .95rem;
}
.hero-meta .sep { opacity: .6; }

/* Visual panel */
.hero-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 20px;
  background: #0d1430;
  border: 1px solid #2d3e74;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(5,15,40,.5);
}
.hero-visual .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: .9;
}
.orb.o1 {
  width: 180px; height: 180px;
  background: radial-gradient(circle at 30% 30%, #7ee1ff, transparent 60%);
  left: -40px; top: -40px;
  animation: float 9s ease-in-out infinite;
}
.orb.o2 {
  width: 260px; height: 260px;
  background: radial-gradient(circle at 60% 40%, #00ffc3, transparent 65%);
  right: -60px; bottom: -60px;
  animation: float 11s ease-in-out -2s infinite;
}

.card-stack {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.card {
  width: min(86%, 560px);
  background: #0f1938;
  border: 1px solid #2a3a6e;
  border-radius: 16px;
  padding: 16px;
  transform: rotate(-2deg);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.card + .card {
  position: absolute;
  transform: rotate(4deg) translateY(24px);
  width: min(74%, 480px);
  opacity: .95;
}

.card .row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.badge {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  color: #031028;
  background: linear-gradient(135deg, #7ee1ff, #00ffc3);
}
.pill {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #2f427a;
  color: #c2d5ff;
  font-size: .8rem;
}
.kpis {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 10px;
}
.kpi {
  background: #0b122b;
  border: 1px solid #2a3a6e;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}
.kpi b {
  display: block;
  font-size: 1.3rem;
  color: #e9f1ff;
}
.kpi span {
  color: #8ea3d8;
  font-size: .85rem;
}

/* Animations */
@keyframes pulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0,229,168,.15); }
  50% { transform: scale(1.15); box-shadow: 0 0 0 0 rgba(0,229,168,0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.client-banner {
  background: #f8fafc;
  padding: 64px 0 56px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
}

.client-logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.client-logo-large {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 18px rgba(37,99,235,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 120px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.client-logo-large img {
  max-width: 140px;
  max-height: 80px;
  object-fit: contain;
  filter: none;
  transition: transform 0.3s, filter 0.3s;
}
.client-logo-large:hover {
  box-shadow: 0 8px 32px rgba(37,99,235,0.18);
  transform: translateY(-6px) scale(1.04);
}
.client-logo-large:hover img {
  filter: brightness(1.15) saturate(1.2);
  transform: scale(1.08);
}


.banner-title {
  text-align: center;
  font-size: 1.5rem;
  color: #64748b;
  margin-bottom: 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.client-logos-slider {
  overflow: hidden;
  white-space: nowrap;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: scroll 35s linear infinite;
}

.client-logo {
  flex-shrink: 0;
  width: 160px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: none; /* No grayscale by default */
}

.client-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.client-logo:hover img {
  filter: brightness(1.2) saturate(1.4);
  transform: scale(1.05);
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
  .logo-track {
    gap: 1.5rem;
  }

  .client-logo {
    width: 120px;
    height: 70px;
    border-radius: 12px;
  }

  .client-logo img {
    max-height: 50px;
  }
}

@media (max-width: 480px) {
  .client-banner {
    padding: 40px 0;
  }

  .logo-track {
    gap: 1rem;
  }

  .client-logo {
    width: 90px;
    height: 50px;
    border-radius: 10px;
  }

  .client-logo img {
    max-height: 35px;
  }
}

.solutions {
  padding: 100px 0;
  background: #f9fafb;
}

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

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #111827;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 580px;
  margin: 0 auto;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.primary-card {
  border: 2px solid #3b82f6;
  background: linear-gradient(135deg, #e0f2fe, #ffffff);
}

.card-header {
  margin-bottom: 1.5rem;
  position: relative;
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.card-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
}

.card-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  color: #000;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.card-description {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.card-features {
  list-style: none;
  margin-bottom: 2rem;
  padding: 0;
}

.card-features li {
  padding: 0.4rem 0;
  color: #374151;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.card-features li::before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.card-pricing {
  margin-bottom: 1.5rem;
  text-align: center;
}

.price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #2563eb;
}

.period {
  font-size: 0.9rem;
  color: #6b7280;
}

.btn-card-primary,
.btn-card-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.btn-card-primary {
  background: linear-gradient(to right, #2563eb, #1d4ed8);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-card-primary:hover {
  background: linear-gradient(to right, #1d4ed8, #2563eb);
}

.btn-card-secondary {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-card-secondary:hover {
  background: #2563eb;
  color: white;
}


/* How It Works - Enhanced */
.modern-timeline {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  margin: 56px 0 48px 0;
  flex-wrap: wrap;
}
.timeline-card {
  background: rgba(255,255,255,0.85);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(67,194,255,0.10);
  border: 1.5px solid #e5e7eb;
  padding: 2.2rem 1.6rem 1.6rem 1.6rem;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}
.timeline-card:hover {
  box-shadow: 0 16px 48px rgba(67,194,255,0.18);
  transform: translateY(-8px) scale(1.04);
  border-color: #43c2ff;
}
.timeline-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2976f6, #43c2ff);
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 18px rgba(67,194,255,0.12);
}
.timeline-blue .timeline-icon { background: linear-gradient(135deg, #2976f6, #43c2ff); }
.timeline-purple .timeline-icon { background: linear-gradient(135deg, #7c3aed, #43c2ff); }
.timeline-red .timeline-icon { background: linear-gradient(135deg, #ef4444, #43c2ff); }
.timeline-orange .timeline-icon { background: linear-gradient(135deg, #f59e42, #43c2ff); }
.timeline-content {
  text-align: center;
}
.timeline-content .title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #232b36;
  margin-bottom: 0.7rem;
}
.timeline-content .description {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
}
.accent-title {
  background: linear-gradient(135deg, #2976f6, #43c2ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
.enhanced-benefits {
  margin-top: 48px;
}
.accent-card {
  border: 2px solid #43c2ff;
  background: linear-gradient(135deg, #e0f7fa, #fff);
  box-shadow: 0 8px 32px rgba(67,194,255,0.10);
}
.accent-emoji {
  font-size: 2.2rem;
  margin-bottom: 1.1rem;
}
@media (max-width: 900px) {
  .modern-timeline {
    flex-wrap: wrap;
    gap: 18px;
  }
  .timeline-card {
    min-width: 180px;
    max-width: 100%;
    padding: 1.2rem 0.8rem 1rem 0.8rem;
  }
}
.how-it-works {
    padding: 100px 0;
    background: #f9fafb;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.timeline-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin: 4rem 0 6rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.timeline-horizontal::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
    filter: drop-shadow(0 0 3px rgba(37, 99, 235, 0.6));
    z-index: 0;
    animation: pulseLine 3s infinite ease-in-out;
}

@keyframes pulseLine {
    0%, 100% { filter: drop-shadow(0 0 3px rgba(37, 99, 235, 0.6)); }
    50% { filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.9)); }
}

.timeline-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 0.8s forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }
.timeline-item:nth-child(4) { animation-delay: 0.7s; }

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

.timeline-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    font-weight: 800;
    font-size: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 15px rgba(37, 99, 235, 0.4),
        inset 0 -4px 8px rgba(255, 255, 255, 0.25);
    position: relative;
    transition: box-shadow 0.3s ease;
    cursor: default;
}

.timeline-circle:hover {
    box-shadow:
        0 12px 30px rgba(37, 99, 235, 0.7),
        inset 0 -6px 12px rgba(255, 255, 255, 0.4);
}

.timeline-text h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
}

.timeline-text p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
    max-width: 320px;
    margin: 0 auto;
}

/* Benefits Highlight - upgraded */
.benefits-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 5rem;
}

.benefit-item {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow:
        0 10px 20px rgba(0,0,0,0.06),
        0 6px 8px rgba(0,0,0,0.04);
    border: 4px solid transparent;
    transition: all 0.35s ease;
    cursor: default;
}

.benefit-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow:
        0 20px 40px rgba(37, 99, 235, 0.25),
        0 10px 15px rgba(37, 99, 235, 0.12);
    border-image: linear-gradient(135deg, #2563eb, #1d4ed8) 1;
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

.benefit-item h4 {
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 0.6rem;
    color: #111827;
}

.benefit-item p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .timeline-horizontal {
        flex-direction: column;
        gap: 3.5rem;
        margin-bottom: 3rem;
    }

    .timeline-horizontal::before {
        top: 0;
        left: 40px;
        width: 6px;
        height: 100%;
        background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
        animation: pulseLineVertical 3s infinite ease-in-out;
    }

    @keyframes pulseLineVertical {
        0%, 100% { filter: drop-shadow(0 0 3px rgba(37, 99, 235, 0.6)); }
        50% { filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.9)); }
    }

    .timeline-item {
        text-align: left;
        padding-left: 5rem;
    }

    .timeline-circle {
        position: absolute;
        left: 0;
        top: 0;
        cursor: default;
    }
}



/* Pricing */
.pricing {
    padding: 100px 0;
    background: white;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #2563eb;
}

.pricing-card.featured {
    border-color: #2563eb;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.plan-description {
    color: #6b7280;
    margin-bottom: 1rem;
}

.plan-features {
    margin-bottom: 2rem;
}

.feature-highlight {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.plan-features li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.btn-pricing {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    width: 100%;
    justify-content: center;
}

.btn-pricing:hover {
    background: #2563eb;
    color: white;
}

.btn-pricing-featured {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Success Stories */

.success-stories {
  padding: 100px 0;
  background: #f9fafb;
}
.improved-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.improved-card {
  background: rgba(255,255,255,0.92);
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(67,194,255,0.12);
  border: 2px solid #e5e7eb;
  padding: 2.8rem 2.2rem 2.2rem 2.2rem;
  min-width: 320px;
  max-width: 420px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}
.improved-card:hover {
  box-shadow: 0 24px 64px rgba(67,194,255,0.18);
  transform: translateY(-10px) scale(1.03);
  border-color: #43c2ff;
}
.testimonial-quote {
  text-align: center;
  font-size: 1.18rem;
  color: #232b36;
  font-style: italic;
  margin-bottom: 2.2rem;
  position: relative;
}
.quote-icon {
  font-size: 2.8rem;
  color: #2976f6;
  font-weight: 900;
  position: absolute;
  left: -18px;
  top: -18px;
}
.improved-author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}
.improved-author .author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e5e7eb;
  border: 3px solid #43c2ff;
  box-shadow: 0 0 12px rgba(67,194,255,0.18);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #b0b7c3;
}

.author-avatar.no-person::before {
  content: "\1F464";
  font-family: 'Segoe UI Emoji', 'Arial Unicode MS', Arial, sans-serif;
  font-size: 2.2rem;
  color: #b0b7c3;
}

.improved-author .author-info strong {
  display: block;
  color: #232b36;
  font-weight: 800;
  font-size: 1.15rem;
}
.improved-author .author-info span {
  color: #6b7280;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}
.improved-stats {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.improved-stats .stat {
  text-align: center;
  flex: 1 1 90px;
}
.improved-stats .stat-number {
  font-size: 2.1rem;
  font-weight: 900;
  color: #2976f6;
  display: block;
  margin-bottom: 0.2rem;
  letter-spacing: 0.03em;
}
.improved-stats .stat-label {
  font-size: 0.92rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}
@media (max-width: 700px) {
  .improved-grid {
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
  }
  .improved-card {
    min-width: 90vw;
    max-width: 99vw;
    padding: 1.2rem 0.8rem 1rem 0.8rem;
  }
  .improved-author .author-avatar {
    width: 48px;
    height: 48px;
  }
  .improved-stats {
    gap: 1.2rem;
  }
}


/* Contact */
.contact {
    padding: 100px 0;
    background: white;
}

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

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

.contact-info p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #374151;
}

.contact-form-container {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.btn-form-submit {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    font-size: 1.1rem;
    padding: 18px 32px;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.footer {
    background: #232b36;
    color: white;
    padding: 45px 0 18px 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    flex: 1 1 340px;
    min-width: 220px;
    max-width: 340px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: #2563eb;
    color: white;
    border-radius: 8px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 9px;
    font-size: 1.2rem;
}

.footer-brand p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 7px;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    flex: 2 2 500px;
    justify-content: flex-end;
    gap: 48px;
}

.footer-section {
    min-width: 140px;
}

.footer-section h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 9px;
}

.footer-section ul li:last-child {
    margin-bottom: 0;
}

.footer-section a {
    color: #b7bec7;
    font-size: 0.98rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #74a8ff;
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    opacity: 0.5;
    font-size: 0.97rem;
    border-top: 1px solid #313b47;
    padding-top: 20px;
    letter-spacing: 0.03em;
}

.footer-highlight-link {
  color: #43c2ff;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-highlight-link:hover {
  color: #00ffd0;
}

@media (max-width: 900px) {
    .footer-content {
        gap: 24px;
        padding: 0 0;
    }
    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 700px) {
    .footer-content {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
        max-width: 99vw;
    }
    .footer-brand {
        max-width: 100%;
    }
    .footer-links {
        justify-content: flex-start;
        width: 100%;
        gap: 24px;
    }
    .footer-section {
        min-width: 125px;
    }
}

/* Enhanced Footer */
.enhanced-footer {
  background: #0a1833;
  color: #cbd5e1;
  padding: 48px 0 24px 0;
  border-top: 2px solid #1d2a3a;
}
.enhanced-footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px;
}
.enhanced-footer .footer-brand {
  flex: 1 1 340px;
  min-width: 220px;
  max-width: 340px;
}
.enhanced-footer .footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.enhanced-footer .logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #43c2ff, #2563eb);
  color: white;
  font-size: 2rem;
  font-weight: 900;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  box-shadow: 0 2px 12px #43c2ff33;
}
.enhanced-footer .footer-social {
  margin-top: 18px;
  display: flex;
  gap: 18px;
  justify-content: center;
}
.enhanced-footer .footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-decoration: none;
}
.enhanced-footer .footer-icon:hover {
  background: rgba(255,255,255,0.28);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.enhanced-footer .footer-icon svg {
  display: block;
}
.enhanced-footer .footer-icon span {
  font-size: 1.3rem;
}
.enhanced-footer .footer-links {
  flex: 2 2 500px;
  display: flex;
  justify-content: flex-end;
  gap: 48px;
}
.enhanced-footer .footer-section {
  min-width: 140px;
}
.enhanced-footer .footer-section h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.enhanced-footer .footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.enhanced-footer .footer-section ul li {
  margin-bottom: 9px;
}
.enhanced-footer .footer-section ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}
.enhanced-footer .footer-section ul li a:hover {
  color: #43c2ff;
}
.enhanced-footer .footer-bottom {
  text-align: center;
  margin-top: 32px;
  color: #6b7280;
  font-size: 0.95rem;
}
@media (max-width: 700px) {
  .enhanced-footer .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  .enhanced-footer .footer-links {
    flex-direction: column;
    gap: 24px;
    justify-content: flex-start;
  }
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-highlight {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .solution-card,
    .pricing-card,
    .testimonial-card {
        padding: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}

.enhanced-hero {
  position: relative;
  background: linear-gradient(135deg, #0a1833 60%, #0f233d 100%);
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(67,194,255,0.10);
  padding: 64px 32px;
  text-align: center;
  overflow: hidden;
  min-height: 340px;
  margin-bottom: 32px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.5;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #43c2ff 0%, #0a1833 80%);
  top: -40px;
  left: -40px;
  z-index: 1;
}
.hero-glow2 {
  background: radial-gradient(circle, #00ffd0 0%, #0a1833 80%);
  bottom: -40px;
  right: -40px;
  top: auto;
  left: auto;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
}
.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00ffd0;
  margin-bottom: 1.2rem;
}
.hero-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #43c2ff, #00ffd0);
  border-radius: 2px;
  margin: 0 auto 1.2rem auto;
}
.hero-desc {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
}
.hero-highlight {
  color: #43c2ff;
  font-weight: 700;
}
.hero-cta {
  display: inline-block;
  background: linear-gradient(90deg, #43c2ff, #00ffd0);
  color: #0a1833;
  font-weight: 800;
  padding: 16px 38px;
  border-radius: 12px;
  font-size: 1.15rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(67,194,255,0.18);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.hero-cta:hover {
  background: linear-gradient(90deg, #00ffd0, #43c2ff);
  color: #0f233d;
  box-shadow: 0 8px 32px rgba(67,194,255,0.28);
}
@media (max-width: 700px) {
  .enhanced-hero {
    padding: 32px 8px;
    min-height: 220px;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
}
