/*
 * Hızlı Okuma - Premium Index Sayfası CSS
 * Modern, profesyonel ve premium ana sayfa tasarımı
 */

/* ===== PREMIUM HERO SECTION ===== */
.hero-video {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -80px;
  padding-top: 80px;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-container:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg, 
    rgba(15, 23, 42, 0.85) 0%, 
    rgba(88, 28, 135, 0.75) 50%, 
    rgba(15, 23, 42, 0.85) 100%
  );
  backdrop-filter: blur(2px);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-content {
  max-width: 1000px;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.02em;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 span {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.cta-buttons .btn-primary {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  color: #1e293b;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5);
  color: #1e293b;
}

.cta-buttons .btn-outline {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.cta-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: translateY(-4px);
  color: white;
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: floatBounce 2s ease-in-out infinite;
  cursor: pointer;
}

.scroll-down i {
  font-size: 1.5rem;
  color: white;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.scroll-down:hover i {
  opacity: 1;
}

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

/* Hero Stats Bar */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

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

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fbbf24;
  display: block;
}

.hero-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== STATS / NEDEN BIZ SECTION ===== */
.stats-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.stats-section .section-title {
  margin-bottom: 1rem;
}

.stats-section .section-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

/* Why Us Grid - Premium Cards */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.why-us-item {
  display: flex;
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.why-us-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-premium);
  opacity: 0.9;
}

.why-us-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(99, 102, 241, 0.1);
}

.why-us-number {
  font-size: 2.25rem;
  font-weight: 800;
  margin-right: 1rem;
  min-width: 45px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: var(--gradient-premium);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-us-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.4;
}

.why-us-content p {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Stats Grid */
.stats-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-premium);
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: var(--gradient-premium);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.stat-item p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  margin: 0;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 5rem 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.05) 100%);
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-text {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.about-text h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about-text h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-premium);
  border-radius: 2px;
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
  color: var(--color-text-secondary);
}

.about-text ul {
  list-style: none;
  margin-top: 1.5rem;
  padding-left: 0;
  display: grid;
  gap: 1rem;
}

.about-text li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.about-text li:hover {
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-color: rgba(99, 102, 241, 0.1);
  transform: translateX(5px);
}

.about-text li i {
  color: white;
  font-size: 1rem;
  padding: 10px;
  background: var(--gradient-premium);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
}

.about-image {
  position: relative;
  z-index: 1;
  padding: 0;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: var(--gradient-premium);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.1;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gradient-gold);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.2;
}

.about-image-inner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

/* Experience Badge */
.experience-badge {
  position: absolute;
  top: 20px;
  right: -10px;
  background: var(--gradient-gold);
  color: #1e293b;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
  z-index: 10;
}

/* ===== SPEED READING SECTION ===== */
.speedreading-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

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

.speedreading-content > p {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

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

.benefit-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-premium);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card i {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.benefit-card:hover i {
  background: var(--gradient-premium);
  color: white;
  transform: scale(1.1);
}

.benefit-card h3 {
  margin-bottom: 0.75rem;
  color: var(--color-dark);
  font-size: 1.2rem;
  font-weight: 700;
}

.benefit-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== PACKAGES SECTION ===== */
.packages-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.packages-section .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-bottom: 3rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.package-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
}

.package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
  border: 2px solid var(--color-primary);
  transform: scale(1.02);
}

.package-card.featured:hover {
  transform: scale(1.02) translateY(-12px);
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-premium);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
}

.package-header {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--gradient-primary);
}

.package-header h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
}

.duration {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.package-body {
  padding: 1.5rem;
}

.package-desc {
  text-align: center;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

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

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.95rem;
  color: var(--color-text);
}

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

.feature-icon {
  width: 20px;
  height: 20px;
  color: var(--color-success);
  flex-shrink: 0;
}

.package-footer {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.package-footer .btn {
  width: 100%;
}

/* Testimonial Slider */
.testimonials-section {
  padding: var(--spacing-xxl) 0;
  background-color: white;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-medium);
  padding: var(--spacing-xl);
  margin: var(--spacing-md);
  text-align: center;
  animation: fallIn 1s ease-out forwards;
  position: relative;
  overflow: hidden;
}

.testimonial-slide::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200%;
  height: 5px;
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary), var(--color-primary));
  background-size: 200% 100%;
  animation: colorSlide 3s infinite linear;
}

.testimonial-content {
  position: relative;
  padding-left: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  font-style: italic;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  left: -15px;
  top: -10px;
  font-size: 4rem;
  color: var(--color-primary);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: var(--spacing-md);
}

.author-info {
  margin-left: var(--spacing-md);
}

.author-info h4 {
  margin-bottom: 0;
  color: var(--color-dark-theme);
}

.author-info p {
  color: var(--color-text);
  opacity: 0.7;
  font-size: var(--font-size-small);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 5rem 0;
  background: var(--gradient-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.contact-section .section-title {
  color: white;
}

.contact-section .section-title::after {
  background: var(--gradient-gold);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.contact-item i {
  color: #fbbf24;
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251, 191, 36, 0.15);
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-item p {
  margin: 0;
  line-height: 1.6;
}

.contact-item a {
  color: white;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #fbbf24;
}

.contact-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-map iframe {
  display: block;
}

/* ===== STEPS SECTION ===== */
.steps-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
}

/* Connection line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-primary));
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-premium);
  color: white;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  position: relative;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.35);
}

.step-icon::after {
  content: attr(data-number);
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #1e293b;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.35);
}

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

.step-card h3 {
  margin-bottom: 0.5rem;
  color: var(--color-dark);
  font-size: 1.25rem;
  font-weight: 700;
}

.step-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* Animasyonlar */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideFromTop {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideFromBottom {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

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

@keyframes slideFromRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

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

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes shimmer {
  0% { background-position: -100% 0; }
  100% { background-position: 100% 0; }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .steps-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    max-width: 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .package-card.featured {
    transform: none;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.85rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .about-text li {
    padding: 0.75rem;
  }
  
  .benefit-card {
    padding: 1.5rem;
  }
  
  .benefit-card i {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
}
