/* GrowthLinks - Modern Business Website */
/* Colors: Green (#10B981) + Blue (#0EA5E9) = Growth + Trust */

:root {
  --primary-green: #10B981;
  --primary-blue: #0EA5E9;
  --dark-green: #059669;
  --dark-blue: #0284C7;
  --light-green: #D1FAE5;
  --light-blue: #E0F2FE;
  --dark: #0F172A;
  --gray: #64748B;
  --light-gray: #F8FAFC;
  --white: #FFFFFF;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --gradient: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
  --gradient-light: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  box-shadow: var(--shadow);
  padding: 0.75rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-green);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--dark);
  margin: 5px 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section - More visible images */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.85) 0%, rgba(2, 132, 199, 0.8) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 850px;
  color: var(--white);
  animation: fadeInUp 0.8s ease;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  opacity: 0.95;
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Buttons */
.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--white);
  color: var(--dark-green);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  background: var(--light-gray);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
}

/* Section Styles */
.section {
  padding: 5rem 1.5rem;
}

.section-alt {
  background: var(--light-gray);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.section-header p {
  color: var(--gray);
  font-size: 1.15rem;
}

/* Problem Section */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.problem-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.problem-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
}

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

.problem-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

.closing-line {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--gradient);
  color: var(--white);
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-lg);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 55px;
  height: 55px;
  background: var(--gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.service-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.service-content p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Free Offer Section */
.offer-section {
  background: var(--gradient);
  color: var(--white);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.offer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.offer-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.offer-content > p {
  opacity: 0.95;
  margin-bottom: 2rem;
  font-size: 1.15rem;
  line-height: 1.6;
}

.offer-list {
  list-style: none;
  margin-bottom: 2rem;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.check-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.offer-tagline {
  font-weight: 700;
  font-size: 1.15rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.offer-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.offer-badge {
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-xl);
}

.offer-badge .price {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
}

.offer-badge .label {
  font-size: 1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 5rem 1.5rem;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--gray);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* About Page */
.about-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 7rem 1.5rem 3rem;
}

.about-hero .hero-overlay {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.7) 0%, rgba(2, 132, 199, 0.65) 100%);
}

.story-section {
  max-width: 850px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.story-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.story-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.story-content p {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.mission-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.mission-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}

/* Testimonials Page */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 35px;
  width: 24px;
  height: 24px;
  background: var(--white);
  transform: rotate(45deg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-gray);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.testimonial-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--gray);
}

.testimonial-card p {
  color: var(--dark);
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--light-green);
  color: var(--dark-green);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: auto;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Services Page - Detailed */
.services-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 7rem 1.5rem 3rem;
}

.services-hero .hero-overlay {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.7) 0%, rgba(2, 132, 199, 0.65) 100%);
}

.service-detail {
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.service-detail-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.service-detail-card:hover {
  box-shadow: var(--shadow-lg);
}

.service-detail-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.service-detail-icon {
  width: 65px;
  height: 65px;
  background: var(--gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.service-detail-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
}

.service-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray);
  font-size: 1rem;
}

.service-features li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--light-green);
  color: var(--dark-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Process Section */
.process-section {
  background: var(--gradient);
  padding: 4rem 1.5rem;
  margin: 3rem 0;
}

.process-container {
  max-width: 1000px;
  margin: 0 auto;
}

.process-section h3 {
  text-align: center;
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.process-step {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 1.75rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step-number {
  width: 50px;
  height: 50px;
  background: var(--white);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1rem;
}

.process-step h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

/* Contact Page */
.contact-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 7rem 1.5rem 3rem;
}

.contact-hero .hero-overlay {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.7) 0%, rgba(2, 132, 199, 0.65) 100%);
}

.contact-section {
  padding: 4rem 1.5rem;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}

.contact-card > p {
  color: var(--gray);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.4s ease;
}

.contact-btn.whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.contact-btn.whatsapp:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.contact-btn.facebook {
  background: #1877F2;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.contact-btn.facebook:hover {
  background: #0D65D9;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.contact-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-gray);
}

.contact-info p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.contact-info strong {
  color: var(--dark);
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 1.5rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-btn.whatsapp {
  background: #25D366;
  color: var(--white);
}

.footer-btn.facebook {
  background: #1877F2;
  color: var(--white);
}

.footer-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.footer-copy {
  color: var(--gray);
  font-size: 0.9rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero {
    padding-top: 5rem;
    min-height: auto;
    padding-bottom: 3rem;
  }
  
  .hero h1 {
    font-size: 1.9rem;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
  
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  
  .offer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  
  .offer-badge {
    width: 160px;
    height: 160px;
  }
  
  .offer-badge .price {
    font-size: 3.5rem;
  }
  
  .section {
    padding: 3rem 1rem;
  }
  
  .story-content {
    padding: 1.75rem;
  }
  
  .contact-card {
    padding: 2rem;
  }
  
  .problem-grid,
  .services-grid,
  .mission-grid,
  .testimonials-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .service-card,
  .service-detail-card {
    flex-direction: column;
    text-align: center;
  }
  
  .service-icon,
  .service-detail-icon {
    margin: 0 auto;
  }
  
  .service-features {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .service-detail-header {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  
  .section-header h2,
  .cta-section h2,
  .offer-content h2 {
    font-size: 1.4rem;
  }
  
  .offer-badge {
    width: 140px;
    height: 140px;
  }
  
  .offer-badge .price {
    font-size: 3rem;
  }
  
  .story-content h2,
  .contact-card h2 {
    font-size: 1.5rem;
  }
}
