* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Sora', sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: #fff;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}
ul {
  list-style: none;
}
.header {
  background: #fff;
  padding: 12px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a202c;
  letter-spacing: -0.5px;
}
.nav {
  display: flex;
  gap: 25px;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: #4a5568;
  padding: 6px 0;
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: #6366f1;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #6366f1;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  width: 28px;
  height: 22px;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1a202c;
  transition: all 0.3s ease;
}
.hero-modern {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: #0f172a;
  color: #fff;
  overflow: hidden;
  padding: 120px 0 100px;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  opacity: 0.95;
  z-index: 1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.4;
}
.hero-content-wrapper {
  position: relative;
  z-index: 3;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
.hero-modern h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -1.5px;
  color: #fff;
}
.hero-modern p {
  font-size: 20px;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 40px;
  max-width: 650px;
  color: #fff;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 45px;
  padding: 35px 0;
}
.stat-box {
  text-align: center;
  padding: 25px 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.stat-box:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}
.stat-value {
  font-size: 40px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 8px;
  color: #fff;
}
.stat-label {
  font-size: 14px;
  opacity: 0.95;
  color: #fff;
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  height: 70%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 50px;
  pointer-events: none;
}
.hero-visual img {
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  width: auto;
  height: auto;
}
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #fff;
  color: #6366f1;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}
.btn-outline {
  background: transparent;
  border: 2px solid #6366f1;
  color: #6366f1;
}
.btn-outline:hover {
  background: #6366f1;
  color: #fff;
}
.btn-large {
  padding: 18px 40px;
  font-size: 16px;
}
.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: #f0f9ff;
  color: #0284c7;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}
.section-intro {
  text-align: center;
  margin-bottom: 50px;
}
.section-intro h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  text-align: center;
}
.section-intro p {
  font-size: 17px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.expertise {
  padding: 80px 0;
  background: #f8fafc;
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.expertise-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border-color: #6366f1;
}
.expertise-number {
  font-size: 48px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  line-height: 1;
}
.expertise-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a202c;
}
.expertise-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}
.approach {
  padding: 80px 0;
}
.approach-layout {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 60px;
  align-items: center;
}
.approach-visual img {
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.approach-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.approach-content > p {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 35px;
  line-height: 1.7;
}
.approach-steps {
  margin-bottom: 35px;
}
.step-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.step-item:hover {
  background: #f0f9ff;
}
.step-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
}
.step-icon i {
  display: block;
  line-height: 1;
}
.step-content h4 {
  font-size: 17px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 6px;
}
.step-content p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}
.solutions {
  padding: 80px 0;
  background: #f8fafc;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.solution-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}
.solution-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  margin-bottom: 20px;
}
.solution-icon i {
  display: block;
  line-height: 1;
}
.solution-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.solution-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.solution-icon.green {
  background: linear-gradient(135deg, #10b981, #059669);
}
.solution-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 12px;
}
.solution-card > p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
}
.solution-card ul {
  margin-top: 20px;
}
.solution-card ul li {
  padding: 10px 0;
  border-top: 1px solid #f1f5f9;
  font-size: 14px;
  color: #475569;
}
.packages {
  padding: 80px 0;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.package-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
}
.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.package-card.featured {
  border-color: #6366f1;
  background: linear-gradient(180deg, #faf5ff 0%, #fff 100%);
}
.package-badge {
  position: absolute;
  top: -14px;
  right: 25px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.package-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f1f5f9;
}
.package-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
}
.package-header p {
  font-size: 13px;
  color: #64748b;
}
.package-price {
  text-align: center;
  margin-bottom: 30px;
}
.package-price .currency {
  font-size: 20px;
  color: #6366f1;
  font-weight: 600;
  vertical-align: super;
}
.package-price .amount {
  font-size: 48px;
  color: #1a202c;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}
.package-price .period {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-top: 5px;
}
.package-features {
  margin-bottom: 30px;
}
.package-features li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #475569;
}
.package-features i {
  color: #10b981;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonials {
  padding: 80px 0;
  background: #f8fafc;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.testimonial-content {
  margin-bottom: 25px;
}
.testimonial-content p {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  font-style: italic;
}
.author-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 4px;
}
.author-info p {
  font-size: 13px;
  color: #64748b;
}
.results {
  padding: 80px 0;
}
.results-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.results-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.results-text > p {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 35px;
  line-height: 1.7;
}
.results-metrics {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.metric-item {
  padding: 25px;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #6366f1;
}
.metric-value {
  font-size: 36px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: #6366f1;
  margin-bottom: 8px;
}
.metric-item p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}
.results-visual img {
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.industries {
  padding: 80px 0;
  background: #f8fafc;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.industry-item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}
.industry-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border-color: #6366f1;
}
.industry-item i {
  font-size: 32px;
  color: #6366f1;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}
.industry-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1a202c;
}
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  color: #fff;
  text-align: center;
}
.final-cta-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.final-cta-content > p {
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-features {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}
.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}
.cta-feature i {
  font-size: 20px;
  display: inline-block;
  line-height: 1;
}
.footer {
  background: #0f172a;
  color: #fff;
  padding: 50px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}
.footer-col h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-col p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover {
  color: #fff;
}
.footer-col ul li i {
  font-size: 13px;
  flex-shrink: 0;
  width: 16px;
}
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-bottom p {
  font-size: 13px;
  color: #94a3b8;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12px;
  color: #94a3b8;
}
.footer-links a:hover {
  color: #fff;
}
.privacy-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  z-index: 10000;
  display: none;
}
.privacy-popup.show {
  display: block;
}
.privacy-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 10px;
}
.privacy-content p {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 15px;
  line-height: 1.5;
}
.privacy-buttons {
  display: flex;
  gap: 10px;
}
.btn-accept {
  background: #6366f1;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-accept:hover {
  background: #4f46e5;
}
.btn-more {
  background: #f1f5f9;
  color: #1e293b;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-more:hover {
  background: #e2e8f0;
}
@media (max-width: 1024px) {
  .hero-visual {
    display: none;
  }
  .hero-content-wrapper {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .header {
    padding: 10px 0;
  }
  .nav {
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    gap: 0;
    z-index: 999;
    max-height: calc(100vh - 52px);
    overflow-y: auto;
  }
  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
  }
  .menu-toggle {
    display: flex;
  }
  .hero-modern {
    min-height: auto;
    padding: 80px 0 60px;
  }
  .hero-modern h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .hero-modern p {
    font-size: 17px;
    margin-bottom: 30px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 25px 0;
    margin-bottom: 35px;
  }
  .stat-box {
    padding: 20px;
  }
  .stat-value {
    font-size: 32px;
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
  }
  .expertise {
    padding: 50px 0;
  }
  .section-intro h2 {
    font-size: 28px;
  }
  .section-intro p {
    font-size: 15px;
  }
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .approach {
    padding: 50px 0;
  }
  .approach-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .approach-content h2 {
    font-size: 28px;
  }
  .solutions {
    padding: 50px 0;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .packages {
    padding: 50px 0;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .testimonials {
    padding: 50px 0;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .results {
    padding: 50px 0;
  }
  .results-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .industries {
    padding: 50px 0;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .final-cta {
    padding: 50px 0;
  }
  .final-cta-content h2 {
    font-size: 28px;
  }
  .cta-features {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .footer {
    padding: 40px 0 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-links {
    justify-content: center;
  }
  .privacy-popup {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .logo a {
    font-size: 16px;
  }
  .hero-modern {
    padding: 60px 0 50px;
  }
  .hero-modern h1 {
    font-size: 28px;
    line-height: 1.2;
  }
  .hero-modern p {
    font-size: 16px;
  }
  .hero-badge {
    font-size: 11px;
    padding: 6px 16px;
  }
  .section-intro h2 {
    font-size: 24px;
  }
  .section-intro p {
    font-size: 14px;
  }
  .package-price .amount {
    font-size: 36px;
  }
  .final-cta-content h2 {
    font-size: 24px;
  }
  .final-cta-content > p {
    font-size: 16px;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .industry-item {
    padding: 25px 15px;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
  }
  .footer-links a {
    font-size: 13px;
  }
}
@media (max-width: 375px) {
  .container {
    padding: 0 10px;
  }
  .hero-modern h1 {
    font-size: 24px;
  }
  .hero-modern p {
    font-size: 14px;
  }
  .stat-value {
    font-size: 24px;
  }
  .stat-label {
    font-size: 12px;
  }
  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  .section-intro h2 {
    font-size: 22px;
  }
  .expertise-number {
    font-size: 40px;
  }
  .expertise-card h3 {
    font-size: 18px;
  }
  .expertise-card p {
    font-size: 13px;
  }
  .approach-content h2 {
    font-size: 24px;
  }
  .step-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  .step-content h4 {
    font-size: 16px;
  }
  .solution-card h3 {
    font-size: 20px;
  }
  .package-card {
    padding: 28px;
  }
  .package-price .amount {
    font-size: 32px;
  }
  .final-cta-content h2 {
    font-size: 22px;
  }
  .final-cta-content > p {
    font-size: 15px;
  }
  .cta-feature {
    font-size: 14px;
  }
}
@media (max-width: 320px) {
  .container {
    padding: 0 12px;
  }
  .logo a {
    font-size: 15px;
  }
  .menu-toggle {
    width: 24px;
    height: 20px;
  }
  .hero-modern {
    padding: 50px 0 40px;
    min-height: auto;
  }
  .hero-modern h1 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 18px;
  }
  .hero-modern p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
  }
  .hero-badge {
    font-size: 10px;
    padding: 5px 14px;
    margin-bottom: 15px;
  }
  .stat-box {
    padding: 15px;
  }
  .stat-value {
    font-size: 24px;
  }
  .stat-label {
    font-size: 12px;
  }
  .hero-stats {
    gap: 12px;
    padding: 20px 0;
    margin-bottom: 25px;
  }
  .hero-actions {
    gap: 10px;
  }
  .btn {
    padding: 12px 20px;
    font-size: 13px;
  }
  .btn-large {
    padding: 14px 24px;
    font-size: 14px;
  }
  .section-label {
    font-size: 11px;
    padding: 5px 14px;
  }
  .section-intro h2 {
    font-size: 20px;
  }
  .section-intro p {
    font-size: 13px;
  }
  .expertise {
    padding: 40px 0;
  }
  .expertise-card {
    padding: 28px 20px;
  }
  .expertise-number {
    font-size: 36px;
  }
  .expertise-card h3 {
    font-size: 17px;
  }
  .expertise-card p {
    font-size: 13px;
  }
  .approach {
    padding: 40px 0;
  }
  .approach-content h2 {
    font-size: 22px;
  }
  .approach-content > p {
    font-size: 14px;
  }
  .step-item {
    padding: 15px;
    gap: 12px;
  }
  .step-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .step-content h4 {
    font-size: 15px;
  }
  .step-content p {
    font-size: 13px;
  }
  .solutions {
    padding: 40px 0;
  }
  .solution-card {
    padding: 28px;
  }
  .solution-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  .solution-card h3 {
    font-size: 18px;
  }
  .solution-card > p {
    font-size: 13px;
  }
  .solution-card ul li {
    font-size: 13px;
    padding: 8px 0;
  }
  .packages {
    padding: 40px 0;
  }
  .package-card {
    padding: 25px;
  }
  .package-header h3 {
    font-size: 22px;
  }
  .package-price .amount {
    font-size: 28px;
  }
  .package-price .currency {
    font-size: 18px;
  }
  .package-features li {
    font-size: 13px;
    padding: 10px 0;
  }
  .testimonials {
    padding: 40px 0;
  }
  .testimonial-card {
    padding: 28px;
  }
  .testimonial-content p {
    font-size: 14px;
  }
  .author-info h4 {
    font-size: 15px;
  }
  .results {
    padding: 40px 0;
  }
  .results-text h2 {
    font-size: 22px;
  }
  .metric-value {
    font-size: 28px;
  }
  .metric-item p {
    font-size: 13px;
  }
  .industries {
    padding: 40px 0;
  }
  .industry-item {
    padding: 20px 12px;
  }
  .industry-item i {
    font-size: 28px;
  }
  .industry-item h4 {
    font-size: 14px;
  }
  .final-cta {
    padding: 40px 0;
  }
  .final-cta-content h2 {
    font-size: 20px;
  }
  .final-cta-content > p {
    font-size: 14px;
  }
  .cta-feature {
    font-size: 13px;
  }
  .cta-feature i {
    font-size: 18px;
  }
  .footer {
    padding: 30px 0 15px;
  }
  .footer-col h4 {
    font-size: 16px;
  }
  .footer-col p {
    font-size: 13px;
  }
  .footer-col ul li a {
    font-size: 12px;
  }
  .footer-bottom p {
    font-size: 12px;
  }
  .footer-links a {
    font-size: 12px;
  }
  .privacy-popup {
    padding: 15px;
    bottom: 5px;
    right: 5px;
    left: 5px;
  }
  .privacy-content h3 {
    font-size: 15px;
  }
  .privacy-content p {
    font-size: 12px;
  }
  .btn-accept,
  .btn-more {
    padding: 8px 16px;
    font-size: 12px;
  }
}
.page-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}
.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.page-hero p {
  font-size: 18px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}
.content-section {
  padding: 80px 0;
}
.content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.content-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.content-text p {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.7;
}
.content-image img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.benefits-list {
  margin-top: 30px;
}
.benefit-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.benefit-item i {
  color: #6366f1;
  font-size: 24px;
  margin-top: 3px;
  flex-shrink: 0;
}
.benefit-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 5px;
}
.benefit-item p {
  font-size: 14px;
  color: #64748b;
}
.automation-features {
  padding: 80px 0;
  background: #f8fafc;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.feature-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #6366f1;
}
.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
}
.feature-icon i {
  display: block;
  line-height: 1;
}
.feature-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a202c;
}
.feature-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}
.implementation {
  padding: 80px 0;
}
.timeline {
  max-width: 800px;
  margin: 40px auto 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e2e8f0;
}
.timeline-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 40px;
}
.timeline-marker {
  position: absolute;
  left: 20px;
  top: 0;
  width: 20px;
  height: 20px;
  background: #6366f1;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 0 4px #e2e8f0;
}
.timeline-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 10px;
}
.timeline-content p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}
.transformation-pillars {
  padding: 80px 0;
  background: #f8fafc;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.pillar-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}
.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #6366f1;
}
.pillar-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
}
.pillar-icon i {
  display: block;
  line-height: 1;
}
.pillar-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a202c;
}
.pillar-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}
.transformation-journey {
  padding: 80px 0;
}
.transformation-journey h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  text-align: center;
}
.transformation-journey .section-intro {
  text-align: center;
  font-size: 16px;
  color: #64748b;
  margin-bottom: 50px;
}
.journey-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.journey-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 25px 15px;
}
.journey-step .step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
}
.journey-step .step-icon i {
  display: block;
  line-height: 1;
}
.journey-step h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 10px;
}
.journey-step p {
  font-size: 13px;
  color: #64748b;
}
.journey-arrow {
  color: #cbd5e0;
  font-size: 24px;
}
.technologies {
  padding: 80px 0;
  background: #f8fafc;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}
.section-header p {
  font-size: 17px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}
.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.tech-category {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}
.tech-category h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tech-category h3 i {
  color: #6366f1;
  font-size: 22px;
  flex-shrink: 0;
}
.tech-category p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #6366f1;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 5px;
}
.stats-grid .stat-label {
  font-size: 14px;
  color: #64748b;
}
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  color: #fff;
  text-align: center;
}
.cta-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.cta-content p {
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.btn-light {
  background: #fff;
  color: #6366f1;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.contact-section {
  padding: 80px 0;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
}
.contact-info > p {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 30px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact-item {
  display: flex;
  gap: 15px;
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-icon i {
  display: block;
  line-height: 1;
}
.contact-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 5px;
}
.contact-text p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}
.contact-form-wrapper {
  background: #f8fafc;
  padding: 40px;
  border-radius: 16px;
}
.contact-form h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 25px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
}
.checkbox-label {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: #475569;
  cursor: pointer;
}
.checkbox-label input[type='checkbox'] {
  margin-top: 3px;
  cursor: pointer;
}
.checkbox-label a {
  color: #6366f1;
  text-decoration: underline;
}
.map-section {
  padding: 60px 0 0;
}
.map-section h2 {
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 40px;
}
.map-container {
  width: 100%;
  height: 450px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.thankyou-section {
  padding: 100px 0;
  min-height: calc(100vh - 400px);
  display: flex;
  align-items: center;
}
.thankyou-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.thankyou-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 50px;
}
.thankyou-icon i {
  display: block;
  line-height: 1;
}
.thankyou-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
}
.thankyou-content p {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 30px;
  line-height: 1.7;
}
.thankyou-info {
  background: #f8fafc;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  text-align: left;
}
.thankyou-info p {
  font-size: 15px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 15px;
}
.thankyou-info ul {
  list-style: none;
}
.thankyou-info ul li {
  padding: 10px 0;
  font-size: 14px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 12px;
}
.thankyou-info ul li i {
  color: #6366f1;
  font-size: 18px;
  flex-shrink: 0;
}
.thankyou-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.error-section {
  padding: 100px 0;
  min-height: calc(100vh - 400px);
  display: flex;
  align-items: center;
}
.error-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.error-number {
  font-size: 120px;
  font-weight: 700;
  color: #e2e8f0;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
  margin-bottom: 20px;
}
.error-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
}
.error-content p {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 30px;
}
.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.error-links {
  background: #f8fafc;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
}
.error-links h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 15px;
}
.error-links ul li {
  margin-bottom: 12px;
}
.error-links ul li a {
  font-size: 14px;
  color: #6366f1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.error-links ul li a i {
  flex-shrink: 0;
}
.error-links ul li a:hover {
  text-decoration: underline;
}
.policy-section {
  padding: 60px 0;
}
.policy-content {
  max-width: 900px;
  margin: 0 auto;
}
.policy-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 10px;
}
.policy-date {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 40px;
}
.policy-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #1a202c;
  margin-top: 40px;
  margin-bottom: 15px;
}
.policy-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin-top: 25px;
  margin-bottom: 12px;
}
.policy-content p {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 15px;
}
.policy-content ul {
  margin: 15px 0 15px 25px;
}
.policy-content ul li {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 8px;
  list-style: disc;
}
.policy-content strong {
  color: #1a202c;
  font-weight: 600;
}
@media (max-width: 768px) {
  .page-hero {
    padding: 50px 0;
  }
  .page-hero h1 {
    font-size: 28px;
  }
  .page-hero p {
    font-size: 16px;
  }
  .content-section {
    padding: 50px 0;
  }
  .content-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .content-text h2 {
    font-size: 28px;
  }
  .content-text p {
    font-size: 15px;
  }
  .automation-features {
    padding: 50px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .implementation {
    padding: 50px 0;
  }
  .timeline::before {
    left: 10px;
  }
  .timeline-item {
    padding-left: 50px;
  }
  .timeline-marker {
    left: 0;
  }
  .transformation-pillars {
    padding: 50px 0;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .transformation-journey {
    padding: 50px 0;
  }
  .transformation-journey h2 {
    font-size: 28px;
  }
  .journey-steps {
    flex-direction: column;
  }
  .journey-arrow {
    transform: rotate(90deg);
  }
  .technologies {
    padding: 50px 0;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .section-header p {
    font-size: 15px;
  }
  .tech-categories {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cta {
    padding: 50px 0;
  }
  .cta-content h2 {
    font-size: 28px;
  }
  .cta-content p {
    font-size: 16px;
  }
  .contact-section {
    padding: 50px 0;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info h2 {
    font-size: 28px;
  }
  .contact-info > p {
    font-size: 15px;
  }
  .contact-form-wrapper {
    padding: 25px;
  }
  .contact-form h3 {
    font-size: 20px;
  }
  .form-group label {
    font-size: 13px;
  }
  .form-group input,
  .form-group textarea {
    font-size: 13px;
    padding: 10px 12px;
  }
  .checkbox-label {
    font-size: 12px;
  }
  .map-section {
    padding: 40px 0 0;
  }
  .map-section h2 {
    font-size: 28px;
  }
  .map-container {
    height: 350px;
  }
  .thankyou-section {
    padding: 60px 0;
  }
  .thankyou-icon {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }
  .thankyou-content h1 {
    font-size: 28px;
  }
  .thankyou-content p {
    font-size: 15px;
  }
  .thankyou-actions {
    flex-direction: column;
    width: 100%;
  }
  .error-section {
    padding: 60px 0;
  }
  .error-number {
    font-size: 80px;
  }
  .error-content h1 {
    font-size: 24px;
  }
  .error-content p {
    font-size: 15px;
  }
  .error-actions {
    flex-direction: column;
    width: 100%;
  }
  .policy-section {
    padding: 40px 0;
  }
  .policy-content h1 {
    font-size: 28px;
  }
  .policy-content h2 {
    font-size: 22px;
  }
  .policy-content h3 {
    font-size: 18px;
  }
  .policy-content p {
    font-size: 14px;
  }
  .policy-content ul li {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .page-hero {
    padding: 40px 0;
  }
  .page-hero h1 {
    font-size: 24px;
  }
  .page-hero p {
    font-size: 15px;
  }
  .content-section {
    padding: 40px 0;
  }
  .content-text h2 {
    font-size: 24px;
  }
  .feature-card {
    padding: 25px 20px;
  }
  .feature-card h3 {
    font-size: 17px;
  }
  .timeline-content h3 {
    font-size: 18px;
  }
  .pillar-card h3 {
    font-size: 17px;
  }
  .journey-step h3 {
    font-size: 16px;
  }
  .contact-section {
    padding: 40px 0;
  }
  .contact-info h2 {
    font-size: 24px;
  }
  .contact-item {
    gap: 12px;
  }
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .contact-text h4 {
    font-size: 15px;
  }
  .contact-text p {
    font-size: 13px;
  }
  .contact-form-wrapper {
    padding: 20px;
  }
  .contact-form h3 {
    font-size: 18px;
  }
  .map-section h2 {
    font-size: 24px;
  }
  .map-container {
    height: 300px;
  }
  .thankyou-section {
    padding: 50px 0;
  }
  .thankyou-icon {
    width: 70px;
    height: 70px;
    font-size: 35px;
  }
  .thankyou-content h1 {
    font-size: 24px;
  }
  .thankyou-info {
    padding: 25px;
  }
  .error-section {
    padding: 50px 0;
  }
  .error-number {
    font-size: 60px;
  }
  .error-content h1 {
    font-size: 22px;
  }
  .error-links {
    padding: 25px;
  }
  .policy-section {
    padding: 30px 0;
  }
  .policy-content h1 {
    font-size: 24px;
  }
  .policy-content h2 {
    font-size: 20px;
  }
}
@media (max-width: 375px) {
  .page-hero h1 {
    font-size: 22px;
  }
  .page-hero p {
    font-size: 14px;
  }
  .content-text h2 {
    font-size: 22px;
  }
  .benefit-item i {
    font-size: 20px;
  }
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  .contact-info h2 {
    font-size: 22px;
  }
  .contact-form-wrapper {
    padding: 18px;
  }
  .map-container {
    height: 280px;
  }
  .thankyou-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
  .thankyou-content h1 {
    font-size: 22px;
  }
  .error-number {
    font-size: 50px;
  }
  .error-content h1 {
    font-size: 20px;
  }
  .policy-content h1 {
    font-size: 22px;
  }
}
@media (max-width: 320px) {
  .page-hero {
    padding: 30px 0;
  }
  .page-hero h1 {
    font-size: 20px;
  }
  .page-hero p {
    font-size: 13px;
  }
  .content-section {
    padding: 30px 0;
  }
  .content-text h2 {
    font-size: 20px;
  }
  .content-text p {
    font-size: 13px;
  }
  .benefit-item {
    gap: 12px;
  }
  .benefit-item i {
    font-size: 18px;
  }
  .benefit-item h4 {
    font-size: 15px;
  }
  .benefit-item p {
    font-size: 13px;
  }
  .automation-features {
    padding: 30px 0;
  }
  .feature-card {
    padding: 22px 18px;
  }
  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
    margin-bottom: 15px;
  }
  .feature-card h3 {
    font-size: 16px;
  }
  .feature-card p {
    font-size: 13px;
  }
  .implementation {
    padding: 30px 0;
  }
  .timeline-item {
    padding-left: 45px;
  }
  .timeline-marker {
    width: 16px;
    height: 16px;
    left: 18px;
  }
  .timeline-content h3 {
    font-size: 16px;
  }
  .timeline-content p {
    font-size: 13px;
  }
  .transformation-pillars {
    padding: 30px 0;
  }
  .pillar-card {
    padding: 22px 18px;
  }
  .pillar-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
    margin-bottom: 15px;
  }
  .pillar-card h3 {
    font-size: 16px;
  }
  .pillar-card p {
    font-size: 13px;
  }
  .transformation-journey {
    padding: 30px 0;
  }
  .transformation-journey h2 {
    font-size: 20px;
  }
  .journey-step {
    padding: 20px 12px;
    min-width: auto;
  }
  .step-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
    margin-bottom: 15px;
  }
  .journey-step h3 {
    font-size: 15px;
  }
  .journey-step p {
    font-size: 12px;
  }
  .technologies {
    padding: 30px 0;
  }
  .section-header h2 {
    font-size: 20px;
  }
  .section-header p {
    font-size: 13px;
  }
  .tech-category {
    padding: 22px;
  }
  .tech-category h3 {
    font-size: 16px;
  }
  .tech-category p {
    font-size: 13px;
  }
  .stat-item {
    padding: 15px 0;
  }
  .stat-number {
    font-size: 32px;
  }
  .stats-grid .stat-label {
    font-size: 13px;
  }
  .cta {
    padding: 40px 0;
  }
  .cta-content h2 {
    font-size: 20px;
  }
  .cta-content p {
    font-size: 14px;
  }
  .btn-light {
    padding: 10px 16px;
    font-size: 12px;
  }
  .contact-section {
    padding: 30px 0;
  }
  .contact-info h2 {
    font-size: 20px;
  }
  .contact-info > p {
    font-size: 13px;
  }
  .contact-details {
    gap: 20px;
  }
  .contact-item {
    gap: 10px;
  }
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .contact-text h4 {
    font-size: 14px;
  }
  .contact-text p {
    font-size: 12px;
  }
  .contact-form-wrapper {
    padding: 15px;
  }
  .contact-form h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .form-group {
    margin-bottom: 15px;
  }
  .form-group label {
    font-size: 12px;
    margin-bottom: 6px;
  }
  .form-group input,
  .form-group textarea {
    font-size: 12px;
    padding: 9px 10px;
  }
  .form-group textarea {
    min-height: 100px;
  }
  .checkbox-label {
    font-size: 11px;
    gap: 8px;
  }
  .map-section {
    padding: 30px 0 0;
  }
  .map-section h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .map-container {
    height: 250px;
  }
  .thankyou-section {
    padding: 40px 0;
  }
  .thankyou-icon {
    width: 55px;
    height: 55px;
    font-size: 28px;
    margin-bottom: 20px;
  }
  .thankyou-content h1 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .thankyou-content p {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .thankyou-info {
    padding: 20px;
  }
  .thankyou-info p {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .thankyou-info ul li {
    font-size: 13px;
    padding: 8px 0;
  }
  .error-section {
    padding: 40px 0;
  }
  .error-number {
    font-size: 45px;
    margin-bottom: 15px;
  }
  .error-content h1 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .error-content p {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .error-links {
    padding: 20px;
  }
  .error-links h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .error-links ul li {
    margin-bottom: 10px;
  }
  .error-links ul li a {
    font-size: 13px;
  }
  .policy-section {
    padding: 25px 0;
  }
  .policy-content h1 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .policy-date {
    font-size: 12px;
    margin-bottom: 30px;
  }
  .policy-content h2 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 12px;
  }
  .policy-content h3 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .policy-content p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 12px;
  }
  .policy-content ul {
    margin: 12px 0 12px 20px;
  }
  .policy-content ul li {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 6px;
  }
}

/* Disclaimer styling for testimonials */
.disclaimer-small {
  font-size: 0.75rem;
  color: #888;
  font-style: italic;
  margin-top: 0.5rem;
}
