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

:root {
  --primary: #2563eb;
  --secondary: #7c3aed;
  --accent: #f59e0b;
  --dark: #0f172a;
  --gray: #64748b;
  --light: #f8fafc;
  --white: #ffffff;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 1.8rem;
}
h3 {
  font-size: 1.3rem;
}
h4 {
  font-size: 1.1rem;
}

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

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

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

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 15px 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.privacy-content p {
  margin: 0;
  font-size: 14px;
  flex: 1;
  min-width: 250px;
}

.privacy-buttons {
  display: flex;
  gap: 12px;
}

.privacy-buttons a {
  color: var(--primary);
  font-size: 14px;
  text-decoration: underline;
}

.privacy-buttons button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.header {
  background: var(--white);
  padding: 15px 0;
  position: relative;
  border-bottom: 1px solid #e2e8f0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
}

.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
}

.mega-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
  color: var(--white);
  padding: 120px 0 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

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

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  top: -15%;
  right: -15%;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
  bottom: -15%;
  left: -10%;
  animation-delay: 7s;
}

.orb-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: 35%;
  left: 45%;
  animation-delay: 14s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

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

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.mega-hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 25px;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, #93c5fd 50%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(20deg);
  }
}

.mega-hero-content > p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 12px;
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: 'Syne', sans-serif;
  margin-bottom: 5px;
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  opacity: 0.8;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
  animation: bounce 2s infinite;
}

.hero-scroll span {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
  opacity: 0.7;
}

.hero-scroll i {
  font-size: 20px;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.btn-primary-large {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 17px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  transition: all 0.3s ease;
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.6);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.services-modern {
  padding: 80px 0;
  background: var(--white);
}

.section-header-modern {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-header-modern h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header-modern p {
  color: var(--gray);
  font-size: 1.05rem;
}

.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-modern {
  background: var(--light);
  padding: 35px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-modern:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
}

.service-icon-modern {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon-modern i {
  font-size: 2rem;
  color: var(--white);
}

.service-modern h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.service-modern p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

.showcase {
  padding: 80px 0;
  background: var(--light);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showcase-content h2 {
  margin-bottom: 20px;
  font-size: 2.3rem;
}

.showcase-content p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 15px;
}

.showcase-features {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.feature-item i {
  color: var(--primary);
  font-size: 18px;
}

.showcase-image img {
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.results {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
}

.results .section-tag {
  background: rgba(255, 255, 255, 0.2);
}

.results .section-header-modern h2 {
  color: var(--white);
}

.results .section-header-modern p {
  color: rgba(255, 255, 255, 0.9);
}

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

.result-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 35px;
  border-radius: 15px;
  text-align: center;
}

.result-number {
  font-size: 1.2rem;
  font-weight: 800;
  font-family: 'Syne', sans-serif;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result-text {
  font-size: 14px;
  opacity: 0.95;
  line-height: 1.6;
}

.team-intro {
  padding: 80px 0;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.team-image img {
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.team-content h2 {
  margin-bottom: 20px;
  font-size: 2.3rem;
}

.team-content p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 15px;
}

.process-preview {
  padding: 70px 0;
  background: var(--light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 20px;
  font-family: 'Syne', sans-serif;
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  color: var(--gray);
  font-size: 14px;
}

.process-preview .btn-secondary {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.testimonials-modern {
  padding: 80px 0;
  background: var(--light);
}

.testimonials-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.testimonial-modern {
  background: var(--white);
  padding: 35px;
  border-radius: 15px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.testimonial-modern:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: var(--accent);
  font-size: 16px;
  margin-right: 3px;
}

.testimonial-modern p {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 25px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author-modern strong {
  display: block;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 16px;
}

.testimonial-author-modern span {
  color: var(--gray);
  font-size: 14px;
}

.process-snapshot {
  padding: 80px 0;
  background: var(--white);
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto 50px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  margin-bottom: 40px;
  align-items: start;
}

.timeline-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Syne', sans-serif;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.timeline-content h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.timeline-content p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

.process-cta {
  text-align: center;
}

.industries {
  padding: 80px 0;
  background: var(--light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.industry-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.industry-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.industry-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  display: block;
}

.industry-card h4 {
  font-size: 1rem;
  font-weight: 600;
}

.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(99, 102, 241, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(236, 72, 153, 0.2) 0%,
      transparent 50%
    );
  z-index: 0;
}

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

.final-cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.final-cta-content p {
  font-size: 1.15rem;
  margin-bottom: 35px;
  opacity: 0.9;
  line-height: 1.7;
}

.cta-trust {
  margin-top: 30px;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-trust span {
  font-size: 14px;
  opacity: 0.8;
}

.cta-trust i {
  margin-right: 8px;
  color: var(--accent);
}

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.8;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 8px;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #334155;
}

.footer-bottom p {
  font-size: 13px;
  color: #94a3b8;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.detailed-process {
  padding: 70px 0;
}

.process-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}

.process-item.reverse {
  grid-template-columns: 1fr 200px;
}

.process-item.reverse .process-visual {
  order: 2;
}

.process-visual {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  width: 150px;
  height: 150px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.process-visual i {
  font-size: 3.5rem;
}

.process-details h2 {
  margin-bottom: 15px;
}

.process-details p {
  color: var(--gray);
  margin-bottom: 20px;
}

.process-details ul {
  list-style: none;
}

.process-details ul li {
  padding: 8px 0;
  color: var(--gray);
  font-size: 14px;
}

.process-details ul li i {
  color: var(--primary);
  margin-right: 10px;
}

.methodology {
  padding: 70px 0;
  background: var(--light);
}

.methodology h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.2rem;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.method-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.method-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  display: block;
}

.method-card h3 {
  margin-bottom: 12px;
}

.method-card p {
  color: var(--gray);
  font-size: 14px;
}

.products {
  padding: 80px 0;
}

.products-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.products-intro-content h2 {
  margin-bottom: 20px;
  font-size: 2.3rem;
}

.products-intro-content p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 15px;
}

.products-intro-image img {
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.products h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 2.2rem;
}

.section-intro {
  text-align: center;
  color: var(--gray);
  margin-bottom: 50px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  padding: 35px;
  border-radius: 15px;
  border: 2px solid #e2e8f0;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-card.featured {
  border-color: var(--primary);
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05) 0%,
    rgba(124, 58, 237, 0.05) 100%
  );
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent) 0%, #f59e0b 100%);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.product-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
}

.product-icon i {
  font-size: 2rem;
}

.product-card h3 {
  margin-bottom: 15px;
}

.product-card > p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 25px;
}

.product-features {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
}

.product-features li {
  padding: 8px 0;
  color: var(--gray);
  font-size: 14px;
}

.product-features li i {
  color: var(--primary);
  margin-right: 10px;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  font-family: 'Syne', sans-serif;
}

.guides {
  padding: 70px 0;
  background: var(--light);
}

.guides h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.2rem;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.guide-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.guide-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  display: block;
}

.guide-card h3 {
  margin-bottom: 12px;
}

.guide-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 20px;
}

.guide-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.guide-link i {
  font-size: 12px;
  margin-left: 5px;
}

.tools {
  padding: 70px 0;
}

.tools h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 2rem;
}

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

.tool-item {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-align: center;
}

.tool-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.tool-item h4 {
  margin-bottom: 8px;
}

.tool-item p {
  color: var(--gray);
  font-size: 13px;
}

.contact-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 60px 0;
}

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

.contact-intro h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-intro p {
  font-size: 1.05rem;
  opacity: 0.95;
}

.contact-main {
  padding: 70px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}

.contact-form-wrapper h2 {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.checkbox-group {
  margin-top: 20px;
}

.checkbox-label {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 13px;
  color: var(--gray);
  cursor: pointer;
}

.checkbox-label input[type='checkbox'] {
  width: auto;
  margin-top: 3px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.contact-form button {
  width: 100%;
  margin-top: 10px;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-card {
  background: var(--light);
  padding: 30px;
  border-radius: 12px;
}

.contact-info-card h3 {
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item i {
  font-size: 1.3rem;
  color: var(--primary);
  margin-top: 3px;
}

.info-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

.info-item p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

.office-hours {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.office-hours h4 {
  margin-bottom: 20px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 14px;
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item span:first-child {
  color: var(--dark);
  font-weight: 500;
}

.hours-item span:last-child {
  color: var(--gray);
}

.map-section {
  padding: 70px 0;
  background: var(--light);
}

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

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

.contact-cta {
  padding: 70px 0;
}

.thankyou-section,
.error-section {
  padding: 100px 0;
  text-align: center;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.thankyou-content,
.error-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.success-icon i {
  font-size: 3rem;
  color: var(--white);
}

.thankyou-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.thankyou-content p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 15px;
}

.thankyou-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 35px;
  flex-wrap: wrap;
}

.error-number {
  font-size: 8rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Syne', sans-serif;
  line-height: 1;
  margin-bottom: 20px;
}

.error-content h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.error-content p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 35px;
}

.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.policy-page {
  padding: 70px 0;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.update-date {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e2e8f0;
}

.policy-content h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.policy-content h3 {
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.policy-content p {
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.8;
}

.policy-content ul {
  margin: 15px 0 15px 25px;
}

.policy-content ul li {
  color: var(--gray);
  margin-bottom: 8px;
  line-height: 1.8;
}

@media (max-width: 968px) {
  .mega-hero-content h1 {
    font-size: 3rem;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .showcase-grid,
  .team-grid,
  .products-intro-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .process-item,
  .process-item.reverse {
    grid-template-columns: 1fr;
  }
  .process-item.reverse .process-visual {
    order: 0;
  }
  .process-visual {
    margin: 0 auto;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .timeline-number {
    margin: 0 auto 20px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .mega-hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  .mega-hero-content h1 {
    font-size: 2.2rem;
  }
  .mega-hero-content > p {
    font-size: 1rem;
  }
  .hero-cta-group {
    flex-direction: column;
  }
  .hero-cta-group a {
    width: 100%;
    text-align: center;
  }
  .orb-1,
  .orb-2,
  .orb-3 {
    width: 300px;
    height: 300px;
  }
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .nav.active {
    transform: translateX(0);
  }
  .menu-toggle {
    display: flex;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .error-number {
    font-size: 5rem;
  }
  .final-cta-content h2 {
    font-size: 2rem;
  }
  .section-header-modern h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  h1 {
    font-size: 1.6rem;
  }
  .mega-hero-content h1 {
    font-size: 1.9rem;
  }
  .mega-hero {
    padding: 80px 0 50px;
  }
  .services-modern,
  .showcase,
  .results,
  .team-intro,
  .testimonials-modern,
  .process-snapshot,
  .industries,
  .final-cta,
  .detailed-process,
  .methodology,
  .products,
  .guides,
  .tools,
  .contact-main,
  .map-section,
  .contact-cta,
  .policy-page {
    padding: 50px 0;
  }
  .services-grid-modern,
  .products-grid,
  .guides-grid,
  .tools-grid {
    grid-template-columns: 100%;
  }
  .thankyou-actions,
  .error-actions {
    flex-direction: column;
  }
  .thankyou-actions a,
  .error-actions a {
    width: 100%;
    text-align: center;
  }
  .stat-box {
    padding: 20px;
  }
  .stat-value {
    font-size: 1.8rem;
  }
  .result-number {
    font-size: 1rem;
  }
  .timeline-number {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }
  .cta-trust {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 14px;
  }
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .mega-hero-content h1 {
    font-size: 1.7rem;
  }
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 10px 20px;
    font-size: 14px;
  }
  .btn-primary-large {
    padding: 14px 25px;
    font-size: 15px;
  }
  .service-modern,
  .testimonial-modern {
    padding: 25px;
  }
  .stat-value {
    font-size: 1.5rem;
  }
  .result-number {
    font-size: 0.8rem;
  }
}

.why-choose {
  padding: 80px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-card {
  background: var(--light);
  padding: 35px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-icon i {
  font-size: 2rem;
  color: var(--white);
}

.why-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.why-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

.case-study {
  padding: 80px 0;
  background: var(--light);
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.case-study-content h2 {
  margin-bottom: 20px;
  font-size: 2.3rem;
}

.case-study-content p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 15px;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.metric-item {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #e2e8f0;
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Syne', sans-serif;
  color: var(--primary);
  margin-bottom: 8px;
}

.metric-label {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.4;
}

.case-study-image img {
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-alternative {
  padding: 80px 0;
  background: var(--white);
}

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 60px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
}

.cta-content-left h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-content-left p {
  font-size: 1.05rem;
  margin-bottom: 25px;
  opacity: 0.95;
  line-height: 1.7;
}

.cta-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cta-benefits li {
  padding: 10px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-benefits i {
  color: var(--accent);
  font-size: 18px;
}

.cta-content-right {
  text-align: center;
}

.cta-content-right .btn-primary-large {
  background: var(--white);
  color: var(--primary);
  margin-bottom: 15px;
  width: 100%;
}

.cta-content-right .btn-primary-large:hover {
  background: var(--light);
  transform: translateY(-3px);
}

.cta-note {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

@media (max-width: 968px) {
  .case-study-grid {
    grid-template-columns: 1fr;
  }
  .case-metrics {
    grid-template-columns: 1fr;
  }
  .cta-box {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .logo {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .cta-box {
    padding: 30px 20px;
  }
  .metric-number {
    font-size: 2rem;
  }
}
