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

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

/* Language Switcher */
.language-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 12px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
}

.language-switcher .fi {
  display: inline-block;
  width: 1.333em;
  height: 1em;
  vertical-align: middle;
}

.lang-btn {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 50px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.lang-btn:hover {
  background: #f0f0f0;
  color: #667eea;
}

.lang-btn.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 120px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 80px rgba(255, 255, 255, 0.08);
  animation: float1 20s ease-in-out infinite;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.06);
  animation: float2 25s ease-in-out infinite;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 10%;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
  animation: float3 18s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  33% { transform: translate(-60px, 50px) scale(1.1); opacity: 0.7; }
  66% { transform: translate(30px, -30px) scale(0.9); opacity: 1; }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  33% { transform: translate(50px, -60px) scale(1.15); opacity: 0.6; }
  66% { transform: translate(-30px, 30px) scale(0.85); opacity: 1; }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  50% { transform: translate(70px, -50px) scale(1.2); opacity: 0.6; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.hero-gradient-text {
  background: linear-gradient(to right, #ffffff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subheading {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

.cta-buttons .btn {
  padding: 14px 32px;
  font-size: 1.05rem;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.hero-credibility {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-credibility-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-credibility-item i {
  color: #90EE90;
}

.btn-primary-hero {
  background: white;
  color: #667eea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary-hero:hover {
  background: #f8f9fa;
  color: #667eea;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

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

.btn-secondary-hero:hover {
  background: white;
  color: #667eea;
  border-color: white;
}

/* Stats Bar */
.stats-bar {
  background: #1a1a2e;
  padding: 50px 20px;
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 8px;
}

.stat-label {
  color: #999;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Section Styling */
section {
  padding: 100px 20px;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea20, #764ba220);
  color: #667eea;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1a1a2e;
}

.section-description {
  color: #666;
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Problem/Solution */
.problem-solution {
  background: #f8f9fc;
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.problems-column,
.solutions-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-card {
  background: white;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-left: 4px solid #ef4444;
  transition: transform 0.2s ease;
}

.problem-card:hover {
  transform: translateX(4px);
}

.problem-icon {
  width: 44px;
  height: 44px;
  background: #fef2f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-icon i {
  font-size: 1.25rem;
  color: #ef4444;
}

.problem-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.problem-content p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.solution-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-arrow i {
  font-size: 3rem;
  color: #667eea;
  opacity: 0.3;
}

.solution-card {
  background: white;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-left: 4px solid #667eea;
  transition: transform 0.2s ease;
}

.solution-card:hover {
  transform: translateX(4px);
}

.solution-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #667eea20, #764ba220);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-icon i {
  font-size: 1.25rem;
  color: #667eea;
}

.solution-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.solution-content p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* How it Works */
.how-it-works {
  background: white;
}

.steps-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

.step {
  text-align: center;
  flex: 0 0 200px;
  position: relative;
  padding: 0 20px;
}

.step-number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(30px);
  width: 28px;
  height: 28px;
  background: #667eea;
  color: white;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  position: relative;
}

.step-icon i {
  font-size: 2rem;
  color: white;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a1a2e;
}

.step p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.step-connector {
  display: flex;
  align-items: flex-start;
  padding-top: 40px;
  flex-shrink: 0;
}

.step-connector i {
  font-size: 1.5rem;
  color: #dee2e6;
}

/* Benefits */
.benefits {
  background: #f8f9fc;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-item {
  padding: 32px;
  background: white;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.benefit-icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #667eea20, #764ba220);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon-wrapper i {
  font-size: 1.75rem;
  color: #667eea;
}

.benefit-item h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a2e;
}

.benefit-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Pricing */
.pricing {
  background: white;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: #f8f9fc;
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

.pricing-card.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #fbbf24;
  color: #1a1a2e;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.pricing-card.featured h3 {
  color: white;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 8px;
  line-height: 1;
}

.pricing-card.featured .price {
  color: white;
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
}

.price-note {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.pricing-card.featured .price-note {
  color: rgba(255,255,255,0.8);
}

.pricing-card ul,
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  text-align: left;
  padding: 0;
}

.pricing-card ul li,
.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.pricing-card.featured ul li,
.pricing-card.featured .pricing-features li {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.15);
}

.pricing-card ul li i,
.pricing-features li i {
  color: #22c55e;
  font-size: 1rem;
}

.pricing-card.featured ul li i,
.pricing-card.featured .pricing-features li i {
  color: #a5f3fc;
}

.pricing-card .btn {
  width: 100%;
  padding: 14px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.pricing-card .btn-primary {
  background: #667eea;
  color: white;
}

.pricing-card .btn-primary:hover {
  background: #5a6fd6;
  transform: translateY(-2px);
}

.pricing-card.featured .btn {
  background: white;
  color: #667eea;
}

.pricing-card.featured .btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* Trust Section */
.trust {
  background: #1a1a2e;
  color: white;
}

.trust .section-badge {
  background: rgba(102, 126, 234, 0.2);
}

.trust h2 {
  color: white;
}

.trust .section-description {
  color: #999;
}

.trust-grid,
.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.trust-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}

.trust-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.trust-icon i {
  font-size: 1.5rem;
  color: white;
}

.trust-item h3 {
  color: white;
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 600;
}

.trust-item p {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-25%, -25%); }
}

.final-cta .section-container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  color: white;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.final-cta-text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .cta-buttons {
  margin-bottom: 30px;
}

.final-cta .btn-light {
  background: white;
  color: #667eea;
  padding: 16px 40px;
  font-size: 1.1rem;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.final-cta .btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.cta-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
}

.cta-guarantee i {
  color: #a5f3fc;
}

.final-cta-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
}

.final-cta-guarantee i {
  color: #a5f3fc;
}

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

/* Footer */
footer {
  background: #1a1a1a;
  color: white;
  padding: 15px 0 30px;
  margin-top: 100px;
}

.footer-content {
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.footer-logo {
  text-align: center;
  margin-bottom: 15px;
}

.footer-logo p {
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: #999;
}

.footer-links {
  text-align: center;
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

footer a {
  color: #3498db;
  text-decoration: none;
  font-size: 0.9rem;
}

footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  text-align: center;
  font-size: 0.85rem;
  color: #999;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px 0;
}

@media (max-width: 992px) {
  /* Stats Grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Benefits Grid */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Trust Items */
  .trust-items,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Language Switcher */
  .language-switcher {
    top: 10px;
    right: 10px;
    padding: 8px;
  }
  
  .lang-btn {
    padding: 6px 10px;
    font-size: 0.85rem;
  }
  
  /* Hero Section */
  .hero {
    padding: 80px 20px 60px;
  }
  
  .hero-shapes {
    display: none;
  }
  
  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .hero .subheading {
    font-size: 1rem;
  }
  
  .hero-badges {
    flex-direction: column;
    gap: 8px;
  }
  
  .hero-badge {
    font-size: 0.8rem;
  }
  
  /* Stats Bar */
  .stats-bar {
    padding: 40px 20px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  /* General Sections */
  section {
    padding: 60px 20px;
  }
  
  h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  /* Problem/Solution Grid */
  .problem-solution-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .solution-arrow {
    transform: rotate(90deg);
    padding: 10px 0;
  }
  
  .solution-arrow i {
    font-size: 2rem;
  }
  
  .problem-card,
  .solution-card {
    padding: 16px 20px;
  }
  
  .problem-icon,
  .solution-icon {
    width: 40px;
    height: 40px;
  }
  
  .problem-icon i,
  .solution-icon i {
    font-size: 1.1rem;
  }
  
  /* Steps Grid */
  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  
  .step {
    flex: none;
    width: 100%;
    max-width: 280px;
    padding: 0 20px;
  }
  
  .step-connector {
    transform: rotate(90deg);
    padding: 15px 0;
  }
  
  .step-number {
    left: 50%;
    transform: translateX(30px);
  }
  
  .step-icon {
    width: 70px;
    height: 70px;
  }
  
  .step-icon i {
    font-size: 1.75rem;
  }
  
  /* Benefits Grid */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .benefit-item {
    padding: 24px 20px;
  }
  
  .benefit-icon-wrapper {
    width: 56px;
    height: 56px;
  }
  
  .benefit-icon-wrapper i {
    font-size: 1.5rem;
  }
  
  /* Pricing */
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .pricing-card {
    padding: 32px 24px;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .price {
    font-size: 2.5rem;
  }
  
  /* Trust Items */
  .trust-items,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .trust-item {
    padding: 20px 16px;
  }
  
  .trust-icon {
    width: 48px;
    height: 48px;
  }
  
  .trust-icon i {
    font-size: 1.25rem;
  }
  
  .trust-item h3 {
    font-size: 0.95rem;
  }
  
  .trust-item p {
    font-size: 0.85rem;
  }
  
  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Final CTA */
  .final-cta {
    padding: 60px 20px;
  }
  
  .final-cta h2 {
    font-size: 1.8rem;
  }
  
  .final-cta-text {
    font-size: 1rem;
  }
  
  .final-cta .btn-light {
    padding: 14px 32px;
    font-size: 1rem;
  }
  
  .cta-guarantee {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
  
  /* Footer */
  footer {
    padding: 30px 0 20px;
    margin-top: 50px;
  }
  
  .footer-links {
    gap: 10px;
    font-size: 0.85rem;
  }
  
  footer a {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .trust-items,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .trust-item {
    padding: 16px 12px;
  }
  
  .trust-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }
  
  .trust-item h3 {
    font-size: 0.9rem;
  }
  
  .trust-item p {
    font-size: 0.8rem;
  }
}
