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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background-color: #ffffff;
  font-size: 16px;
  overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  color: #1a202c;
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.5rem;
}

p {
  color: #4a5568;
  line-height: 1.6;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563eb;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #2563eb;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #2563eb;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: #2563eb;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #2563eb;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid white;
  transition: all 0.2s ease;
}

.btn-secondary-white:hover {
  background: transparent;
  color: white;
  border-color: white;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: 16px;
  color: #1a202c;
}

.section-header p {
  font-size: 18px;
  color: #4a5568;
}

/* Hero Section */
.hero {
  background: #0f172a;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  z-index: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0L100,100" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/><path d="M100,0L0,100" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
  opacity: 0.3;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: white;
  line-height: 1.1;
}

.highlight-text {
  background: linear-gradient(45deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.hero-cta {
  margin-top: 40px;
}

.btn-primary-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(45deg, #60a5fa, #3b82f6);
  color: white;
  padding: 18px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
  background: linear-gradient(45deg, #3b82f6, #2563eb);
}

.hero-guarantee {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-guarantee i {
  color: #10b981;
}

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

.floating-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  animation: float 6s ease-in-out infinite;
  max-width: 320px;
  width: 100%;
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  color: white;
}

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

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-card .card-header i {
  font-size: 20px;
  color: #60a5fa;
}

.glass-card .card-header span {
  font-weight: 600;
  color: white;
  font-size: 16px;
}

.verification-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  animation: slideIn 0.6s ease-out forwards;
  opacity: 0;
}

.verification-item:nth-child(1) {
  animation-delay: 0.2s;
}

.verification-item:nth-child(2) {
  animation-delay: 0.4s;
}

.verification-item:nth-child(3) {
  animation-delay: 0.6s;
}

.verification-item:nth-child(4) {
  animation-delay: 0.8s;
}

.verification-item:nth-child(5) {
  animation-delay: 1.0s;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.glass-card .verification-item.success i {
  color: #10b981;
  background: rgba(16, 185, 129, 0.2);
  padding: 6px;
  border-radius: 50%;
  font-size: 12px;
}

.glass-card .verification-item span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 14px;
}

.verification-more {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  animation: slideIn 0.6s ease-out forwards;
  animation-delay: 1.2s;
  opacity: 0;
}

.glass-card .verification-more span {
  color: #60a5fa;
  font-weight: 600;
  font-size: 14px;
}

/* Trust Section */
.trust-section {
  padding: 80px 0;
  background: white;
  border-bottom: 1px solid #e2e8f0;
}

.trust-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.trust-item {
  text-align: center;
  background: #f8fafc;
  padding: 30px 20px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.trust-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.trust-icon {
  width: 60px;
  height: 60px;
  background: #e0f2fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.trust-icon i {
  font-size: 24px;
  color: #0891b2;
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 8px;
}

.trust-label {
  font-size: 14px;
  color: #718096;
  font-weight: 500;
}

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

/* Problem & Solution Section */
.problem-solution-section {
  padding: 100px 0;
  background: #f8fafc;
}

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

.problem-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.problem-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.problem-icon {
  width: 70px;
  height: 70px;
  background: #fee2e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.problem-icon i {
  font-size: 28px;
  color: #e53e3e;
}

.problem-card h3 {
  margin-bottom: 12px;
  color: #1a202c;
}

.problem-card p {
  color: #4a5568;
}

.solution-highlight {
  background: #2563eb;
  border-radius: 16px;
  padding: 60px;
  text-align: center;
  color: white;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.solution-content h3 {
  color: white;
  margin-bottom: 16px;
  font-size: 2rem;
}

.solution-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 24px;
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: white;
}

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

.feature-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}

.feature-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: #e0f2fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.feature-icon i {
  font-size: 32px;
  color: #0891b2;
}

.feature-card h3 {
  margin-bottom: 16px;
  color: #1a202c;
}

.feature-card p {
  color: #4a5568;
  line-height: 1.6;
}

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

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: #f8fafc;
  overflow: hidden;
  position: relative;
}

.testimonials-shadow-left,
.testimonials-shadow-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-shadow-left {
  left: 0;
  background: linear-gradient(to right, #f8fafc, transparent);
}

.testimonials-shadow-right {
  right: 0;
  background: linear-gradient(to left, #f8fafc, transparent);
}

.testimonials-scroll-container {
  margin: 60px 0;
  position: relative;
}

.testimonials-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  animation-duration: 60s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

.testimonials-row[data-direction="left"] {
  animation-name: scrollLeft;
}

.testimonials-row[data-direction="right"] {
  animation-name: scrollRight;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(calc(-374px * 6));
  }
  100% {
    transform: translateX(calc(-374px * 12));
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(calc(-374px * 12));
  }
  100% {
    transform: translateX(calc(-374px * 6));
  }
}

.testimonial-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  min-width: 350px;
  max-width: 350px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.stars {
  display: flex;
  gap: 4px;
}

.stars i {
  color: #f6ad55;
  font-size: 14px;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #dcfce7;
  color: #166534;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.verified-badge i {
  color: #16a34a;
  font-size: 12px;
}

.testimonial-card blockquote {
  font-size: 15px;
  margin-bottom: 16px;
  color: #2d3748;
  font-style: italic;
  line-height: 1.5;
  word-wrap: break-word;
  white-space: normal;
}

.testimonial-card cite {
  font-size: 13px;
  color: #718096;
  font-weight: 500;
  font-style: normal;
}

.cta-center {
  text-align: center;
  margin-top: 60px;
}

.cta-center h3 {
  margin-bottom: 24px;
  font-size: 2rem;
  color: #1a202c;
}

/* Use Cases Section */
.use-cases-section {
  padding: 100px 0;
  background: white;
}

.use-cases-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.use-case-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 30px;
  transition: box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}

.use-case-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.use-case-icon {
  width: 60px;
  height: 60px;
  background: #e0f2fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.use-case-icon i {
  font-size: 24px;
  color: #0891b2;
}

.use-case-card h3 {
  margin-bottom: 16px;
  color: #1a202c;
}

.platform-list {
  list-style: none;
  padding: 0;
}

.platform-list li {
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
  color: #4a5568;
  font-size: 15px;
}

.platform-list li:last-child {
  border-bottom: none;
}

.use-cases-cta {
  text-align: center;
}

/* How It Works Section */
.how-it-works-section {
  padding: 100px 0;
  background: #f8fafc;
  position: relative;
}

.how-it-works-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 200px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 200"><path d="M50,100 Q200,50 350,100 T650,100" stroke="%232563eb" stroke-width="3" fill="none" opacity="0.3"/><path d="M50,120 Q200,70 350,120 T650,120" stroke="%2360a5fa" stroke-width="2" fill="none" opacity="0.2"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 0;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.step-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
  width: 70px;
  height: 70px;
  background: #e0f2fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon i {
  font-size: 28px;
  color: #0891b2;
}

.step-card h3 {
  margin-bottom: 12px;
  color: #1a202c;
}

.step-card p {
  color: #4a5568;
}

.guarantee-section {
  text-align: center;
  position: relative;
  z-index: 1;
}

.guarantee-content {
  background: #10b981;
  color: white;
  padding: 50px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.guarantee-content i {
  font-size: 32px;
  color: #fbbf24;
  margin-bottom: 16px;
  display: block;
}

.guarantee-content h3 {
  color: white;
  margin-bottom: 12px;
}

.guarantee-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

/* Final CTA Section */
.final-cta-section {
  padding: 100px 0;
  background: #1a202c;
  color: white;
  text-align: center;
}

.final-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-section h2 {
  color: white;
  margin-bottom: 24px;
  font-size: 3rem;
}

.final-cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.final-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.final-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}

.final-feature i {
  color: #fbbf24;
}

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

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

.contact-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}

.contact-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: #e0f2fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-icon i {
  font-size: 28px;
  color: #0891b2;
}

.contact-card h3 {
  margin-bottom: 12px;
  color: #1a202c;
}

.contact-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-card p {
  color: #718096;
  font-size: 14px;
}

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

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

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-content p {
  color: #cbd5e1;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #60a5fa;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 1024px) {
  .solution-highlight {
    padding: 40px;
  }

  .guarantee-content {
    padding: 40px;
  }

  .trust-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .testimonials-row {
    animation-duration: 40s;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-visual {
    order: 1;
  }

  .testimonials-shadow-left,
  .testimonials-shadow-right {
    width: 100px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .trust-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .trust-item {
    padding: 20px 15px;
  }

  .trust-number {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
  }

  .final-features {
    justify-content: center;
    gap: 16px;
  }

  .testimonial-card {
    min-width: 300px;
    max-width: 300px;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .floating-card {
    max-width: 280px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-visual {
    order: 1;
  }

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

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

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

  .use-cases-cards {
    grid-template-columns: 1fr;
  }

  .problem-solution-section,
  .features-section,
  .testimonials-section,
  .use-cases-section,
  .how-it-works-section,
  .final-cta-section,
  .contact-section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .testimonials-shadow-left,
  .testimonials-shadow-right {
    width: 80px;
  }

  .footer-links {
    gap: 20px;
  }
}

@media (max-width: 640px) {
    .hero-guarantee{
        display: none;
    }
    
  .trust-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .trust-item {
    padding: 15px 10px;
  }

  .trust-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .trust-icon i {
    font-size: 20px;
  }

  .trust-number {
    font-size: 1.8rem;
  }

  .trust-label {
    font-size: 12px;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .problem-solution-section,
  .features-section,
  .testimonials-section,
  .use-cases-section,
  .how-it-works-section,
  .final-cta-section,
  .contact-section {
    padding: 50px 0;
  }

  h2 {
    font-size: 1.6rem;
  }

  .cta-center h3 {
    font-size: 1.4rem;
  }

  .verified-badge {
    font-size: 10px;
    padding: 3px 6px;
  }
}

@media (max-width: 480px) {
    .hero-guarantee {
        display: none;
    }
    
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 60px 0 50px;
  }

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

  .final-cta-section h2 {
    font-size: 1.6rem;
  }

  .problem-solution-section,
  .features-section,
  .testimonials-section,
  .use-cases-section,
  .how-it-works-section,
  .final-cta-section,
  .contact-section {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .solution-highlight {
    padding: 32px 20px;
  }

  .guarantee-content {
    padding: 32px 20px;
  }

  .testimonials-shadow-left,
  .testimonials-shadow-right {
    width: 60px;
  }

  .testimonial-card {
    min-width: 280px;
    max-width: 280px;
    padding: 20px;
  }

  .btn-primary-large {
    padding: 16px 28px;
    font-size: 16px;
  }

  .trust-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trust-item {
    padding: 12px 8px;
  }

  .trust-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }

  .trust-icon i {
    font-size: 16px;
  }

  .trust-number {
    font-size: 1.5rem;
  }

  .trust-label {
    font-size: 11px;
  }

  h2 {
    font-size: 1.4rem;
  }

  .cta-center h3 {
    font-size: 1.2rem;
  }

  .final-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .verified-badge {
    align-self: flex-end;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 360px) {
    
    .hero-guarantee {
        display: none;
    }
  .container {
    padding: 0 12px;
  }

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

  .trust-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .trust-item {
    padding: 10px 6px;
  }

  .trust-number {
    font-size: 1.3rem;
  }

  .trust-label {
    font-size: 10px;
  }

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

  .testimonial-card {
    min-width: 260px;
    max-width: 260px;
    padding: 16px;
  }

  h2 {
    font-size: 1.2rem;
  }

  .cta-center h3 {
    font-size: 1.1rem;
  }

  .testimonials-shadow-left,
  .testimonials-shadow-right {
    width: 40px;
  }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}