/* Solutions Page - Explanatory Design with Photos */

/* Modern Hero */
.modern-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.modern-hero::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" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(59, 130, 246, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: var(--space-6);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-8);
}

.app-download p {
  color: var(--gray-700);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.download-buttons {
  display: flex;
  gap: var(--space-4);
}

.download-btn img {
  height: 50px;
  transition: var(--transition);
}

.download-btn:hover img {
  transform: scale(1.05);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 600px;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.person-2 {
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}

.person-3 {
  bottom: 30%;
  left: 5%;
  animation-delay: 2s;
}

.person-4 {
  bottom: 10%;
  right: 20%;
  animation-delay: 3s;
}

/* Phone Mockup */
.phone-mockup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: #1a1a1a;
  border-radius: 35px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 27px;
  overflow: hidden;
  position: relative;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
}

.indicators {
  display: flex;
  gap: 4px;
  font-size: 12px;
}

.app-header {
  padding: 0 20px 20px;
}

.app-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.profile .name {
  font-weight: 600;
  font-size: 14px;
  margin: 0;
}

.profile .location {
  font-size: 12px;
  color: var(--gray-500);
  margin: 0;
}

.app-header h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--gray-900);
}

.search-bar {
  position: relative;
  margin-bottom: 20px;
}

.search-bar input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  font-size: 14px;
}

.search-bar i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
}

.service-categories h4,
.popular-services h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  background: var(--gray-50);
  border-radius: 12px;
  text-align: center;
}

.category-item i {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 6px;
}

.category-item span {
  font-size: 11px;
  font-weight: 500;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--gray-50);
  border-radius: 12px;
  margin-bottom: 8px;
}

.service-card img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.service-info {
  flex: 1;
}

.service-info h5 {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.service-info p {
  font-size: 11px;
  color: var(--gray-500);
  margin: 0 0 4px 0;
}

.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
}

.stars {
  color: #fbbf24;
}

.book-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

/* Info Cards */
.info-cards {
  position: absolute;
  width: 100%;
  height: 100%;
}

.info-card {
  position: absolute;
  background: white;
  padding: var(--space-4);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-200);
  width: 200px;
  text-align: center;
}

.info-card i {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  margin: 0 auto var(--space-3);
}

.info-card h4 {
  font-size: 1rem;
  margin-bottom: var(--space-2);
  color: var(--gray-900);
}

.info-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}

.card-1 {
  top: 15%;
  right: -10%;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
}

.card-1 i {
  background: rgba(255, 255, 255, 0.2);
}

.card-1 h4,
.card-1 p {
  color: white;
}

.card-2 {
  top: 45%;
  right: -15%;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
}

.card-2 i {
  background: rgba(255, 255, 255, 0.2);
}

.card-2 h4,
.card-2 p {
  color: white;
}

.card-3 {
  bottom: 15%;
  right: -10%;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
}

.card-3 i {
  background: rgba(255, 255, 255, 0.2);
}

.card-3 h4,
.card-3 p {
  color: white;
}

/* Solutions Detailed */
.solutions-detailed {
  padding: var(--space-24) 0;
  background: var(--white);
}

.solution-section {
  margin-bottom: var(--space-24);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.solution-section.animate {
  opacity: 1;
  transform: translateY(0);
}

.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.solution-section.reverse .solution-content {
  direction: rtl;
}

.solution-section.reverse .solution-text {
  direction: ltr;
}

.solution-text {
  padding: var(--space-8);
}

.solution-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.solution-badge.popular {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.solution-badge.security {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.solution-badge.certified {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.solution-badge.biometric {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.solution-badge.connected {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.solution-text h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: var(--space-6);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.solution-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-8);
  font-weight: 400;
}

.solution-features {
  margin-bottom: var(--space-8);
}

.solution-features h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-4);
}

.solution-features ul {
  list-style: none;
  padding: 0;
}

.solution-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: 1.125rem;
  line-height: 1.6;
}

.solution-features li i {
  color: var(--success);
  font-size: 1.125rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.solution-applications h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-4);
}

.applications-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.applications-tags span {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  color: var(--gray-700);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-300);
}

.applications-tags span:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.solution-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.solution-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.solution-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.solution-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.tech-badge {
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Why Choose Section */
.why-choose {
  padding: var(--space-24) 0;
  background: var(--gray-50);
}

.why-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.why-text .lead {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.advantage {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.advantage:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.advantage-content h4 {
  margin-bottom: var(--space-2);
  font-size: 1.125rem;
  color: var(--gray-900);
}

.advantage-content p {
  color: var(--gray-600);
  margin: 0;
  font-size: 0.95rem;
}

.stats-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.stat-item {
  background: var(--white);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.stat-item .stat-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.stat-item .stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: var(--space-1);
}

/* Process Section */
.process-section {
  padding: var(--space-24) 0;
  background: var(--white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  position: relative;
  padding: var(--space-8);
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.4s ease;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.step-number {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 0 0 8px var(--white), var(--shadow-lg);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  margin: var(--space-6) auto var(--space-6);
  transition: all 0.4s ease;
}

.process-step:hover .step-icon {
  transform: scale(1.1);
}

.step-content h3 {
  margin-bottom: var(--space-4);
  font-size: 1.375rem;
  color: var(--gray-900);
  font-weight: 800;
}

.step-content p {
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
  font-size: 1.05rem;
}

/* CTA Section */
.cta {
  padding: var(--space-24) 0;
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 70%, rgba(245, 158, 11, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  animation: float 10s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  margin: 0 auto var(--space-6);
  animation: float 3s ease-in-out infinite;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: var(--space-4);
  font-weight: 900;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: var(--space-8);
  color: var(--gray-200);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
}

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

.cta .btn-primary:hover {
  background: var(--gray-100);
  color: var(--primary);
}

.cta .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-layout {
    gap: var(--space-12);
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .phone-frame {
    width: 250px;
    height: 500px;
  }
  
  .info-card {
    width: 180px;
    padding: var(--space-3);
  }
  
  .solution-content {
    gap: var(--space-12);
  }
  
  .why-content {
    gap: var(--space-12);
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }
  
  .hero-visual {
    height: 400px;
    margin-top: var(--space-8);
  }
  
  .phone-frame {
    width: 220px;
    height: 440px;
  }
  
  .solutions-hero .hero-title {
    font-size: 3rem;
  }
  
  .solutions-hero .hero-stats {
    gap: var(--space-8);
  }
  
  .solution-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }
  
  .solution-section.reverse .solution-content {
    direction: ltr;
  }
  
  .solution-text {
    padding: var(--space-6);
  }
  
  .solution-text h3 {
    font-size: 2rem;
  }
  
  .why-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }
  
  .stats-showcase {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .process-timeline {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
  }
}

@media (max-width: 768px) {
  .modern-hero {
    min-height: 80vh;
    padding-top: 60px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-visual {
    height: 350px;
    padding-top: 60px;
  }
  
  .solutions-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .solutions-hero .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .solutions-hero .hero-stats {
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
  }
  
  .solutions-hero .stat {
    min-width: 100px;
  }
  
  .solution-text {
    padding: var(--space-4);
  }
  
  .solution-text h3 {
    font-size: 1.75rem;
  }
  
  .solution-description {
    font-size: 1.125rem;
  }
  
  .solution-features li {
    font-size: 1rem;
  }
  
  .solution-image img {
    height: 300px;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .advantage {
    flex-direction: column;
    text-align: center;
  }
  
  .stats-showcase {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    top: -25px;
  }
  
  .step-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }
  
  .cta-content h2 {
    font-size: 2.25rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .phone-frame {
    width: 200px;
    height: 400px;
  }
  
  .floating-card {
    width: 60px;
    height: 60px;
  }
  
  .solutions-hero .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .solutions-hero .stat-number {
    font-size: 2rem;
  }
  
  .solution-text h3 {
    font-size: 1.5rem;
  }
  
  .solution-description {
    font-size: 1rem;
  }
  
  .solution-features li {
    font-size: 0.95rem;
  }
  
  .applications-tags {
    gap: var(--space-1);
  }
  
  .applications-tags span {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
  }
  
  .solution-image img {
    height: 250px;
  }
  
  .advantage {
    padding: var(--space-3);
  }
  
  .advantage-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .stat-item {
    padding: var(--space-4);
  }
  
  .stat-item .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .stat-item .stat-number {
    font-size: 1.5rem;
  }
  
  .process-step {
    padding: var(--space-6);
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .info-card {
    display: none;
  }
  
  .solutions-hero .hero-title {
    font-size: 1.75rem;
  }
  
  .solutions-hero .hero-subtitle {
    font-size: 1rem;
  }
  
  .solutions-hero .stat-number {
    font-size: 1.75rem;
  }
  
  .solution-text {
    padding: var(--space-3);
  }
  
  .solution-text h3 {
    font-size: 1.25rem;
  }
  
  .solution-description {
    font-size: 0.95rem;
  }
  
  .solution-features li {
    font-size: 0.9rem;
  }
 
  
  .image-overlay {
    top: var(--space-2);
    right: var(--space-2);
  }
  
  .tech-badge {
    font-size: 0.7rem;
    padding: 0.125rem 0.5rem;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    top: -20px;
  }
  
  .step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .step-content h3 {
    font-size: 1.125rem;
  }
  
  .step-content p {
    font-size: 0.95rem;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
}