/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #3a3f5c;
  background: #fafbfc;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-accent {
  background: linear-gradient(135deg, #f093fb, #f5576c);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(245, 87, 108, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 87, 108, 0.45);
}

.btn-outline {
  background: transparent;
  color: #4a6cf7;
  border-color: #4a6cf7;
}

.btn-outline:hover {
  background: #4a6cf7;
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: #4a6cf7;
  border-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: #3a3f5c;
}

.logo span {
  color: #f093fb;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: #5a6078;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #f093fb;
}

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

.nav-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #3a3f5c;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #e8f0fe 0%, #f0f7f4 40%, #fdf2f8 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.hero-shapes .s1 {
  width: 400px;
  height: 400px;
  background: #a8edea;
  top: -100px;
  right: -80px;
}

.hero-shapes .s2 {
  width: 300px;
  height: 300px;
  background: #fbc2eb;
  bottom: -60px;
  left: -60px;
}

.hero-shapes .s3 {
  width: 200px;
  height: 200px;
  background: #a1c4fd;
  top: 40%;
  right: 20%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 100px;
}

.badge {
  display: inline-block;
  background: rgba(74, 108, 247, 0.1);
  color: #4a6cf7;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: #2a2e45;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #f093fb, #f5576c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: #6b7193;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== SECTIONS COMMON ===== */
.section {
  padding: 100px 0;
}

.bg-light {
  background: #f4f6f9;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.15), rgba(245, 87, 108, 0.15));
  color: #f093fb;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #2a2e45;
  margin-bottom: 14px;
}

.section-header p {
  color: #6b7193;
  font-size: 1.05rem;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ABOUT ===== */
.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text .section-tag {
  margin-bottom: 14px;
}

.about-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2a2e45;
  margin-bottom: 18px;
}

.about-text > p {
  color: #6b7193;
  font-size: 1.02rem;
  margin-bottom: 16px;
}

.mission {
  background: linear-gradient(135deg, #e8f0fe, #f0f7f4);
  padding: 18px 22px;
  border-radius: 14px;
  font-size: 0.95rem;
  color: #4a6cf7;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 28px;
}

.mission i {
  margin-top: 4px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: #3a3f5c;
}

.why-item i {
  color: #f093fb;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 30px;
}

.about-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.about-card i {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}

.about-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #2a2e45;
}

.ac1 i { color: #4a6cf7; }
.ac2 i { color: #2ecc71; }
.ac3 i { color: #f093fb; }
.ac4 i { color: #f5576c; }

.about-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  box-shadow: 0 8px 30px rgba(240, 147, 251, 0.4);
  z-index: 2;
}

.about-center small {
  font-size: 0.75rem;
  font-weight: 500;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.svc-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8f0fe, #f0f7f4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: #4a6cf7;
}

.service-card:nth-child(2) .svc-icon {
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
  color: #f093fb;
}

.service-card:nth-child(3) .svc-icon {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2ecc71;
}

.service-card:nth-child(4) .svc-icon {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  color: #f57c00;
}

.service-card:nth-child(5) .svc-icon {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: #1e88e5;
}

.service-card:nth-child(6) .svc-icon {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
  color: #8e24aa;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2a2e45;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  color: #6b7193;
}

/* ===== STATS ===== */
.stats {
  background: linear-gradient(135deg, #4a6cf7, #6c5ce7);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  color: #fff;
}

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.stat-plus {
  font-size: 2rem;
  font-weight: 700;
}

.stat-item p {
  margin-top: 10px;
  font-size: 0.95rem;
  opacity: 0.85;
  font-weight: 500;
}

/* ===== PROCESS ===== */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 20px;
}

.step {
  flex: 0 0 200px;
  text-align: center;
  padding: 0 10px;
}

.step-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: #f093fb;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f0fe, #f0f7f4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: #4a6cf7;
  box-shadow: 0 4px 15px rgba(74, 108, 247, 0.15);
}

.step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2a2e45;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.88rem;
  color: #6b7193;
}

.step-arrow {
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c0c5d8;
  font-size: 1.2rem;
  padding-top: 30px;
}

/* ===== PORTFOLIO ===== */
.portfolio {
  background: #fff;
}

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

.port-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.port-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.port-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.8);
}

.port-info {
  padding: 20px 24px;
  background: #fff;
}

.port-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2a2e45;
  margin-bottom: 4px;
}

.port-info span {
  font-size: 0.82rem;
  color: #6b7193;
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: #f4f6f9;
}

.testi-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testi-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testi-card {
  flex: 0 0 100%;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testi-card > p {
  font-size: 1.05rem;
  color: #5a6078;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.testi-author strong {
  display: block;
  font-size: 0.95rem;
  color: #2a2e45;
}

.testi-author span {
  font-size: 0.82rem;
  color: #6b7193;
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #dde1ea;
  background: #fff;
  color: #4a6cf7;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-btn:hover {
  background: #4a6cf7;
  border-color: #4a6cf7;
  color: #fff;
}

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dde1ea;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.testi-dot.active {
  background: #f093fb;
  width: 28px;
  border-radius: 5px;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.price-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
  border-color: #f093fb;
  transform: scale(1.04);
}

.price-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f093fb, #f5576c);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2a2e45;
  margin-bottom: 16px;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: #2a2e45;
  margin-bottom: 6px;
}

.price span {
  font-size: 1.4rem;
  font-weight: 600;
  vertical-align: super;
}

.price-desc {
  font-size: 0.88rem;
  color: #6b7193;
  margin-bottom: 24px;
}

.price-card ul {
  text-align: left;
  margin-bottom: 30px;
}

.price-card ul li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: #3a3f5c;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card ul li i {
  color: #2ecc71;
  font-size: 0.9rem;
}

.price-card ul li.muted {
  color: #b0b5c8;
}

.price-card ul li.muted i {
  color: #c0c5d8;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #2a2e45;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-q:hover {
  color: #f093fb;
}

.faq-q i {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
  color: #6b7193;
}

.faq-item.active .faq-q i {
  transform: rotate(45deg);
  color: #f093fb;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: #6b7193;
  line-height: 1.8;
}

.faq-item.active .faq-a {
  max-height: 300px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #4a6cf7, #6c5ce7);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CONTACT ===== */
.contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2a2e45;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: #5a6078;
}

.contact-item i {
  color: #f093fb;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.contact-item a {
  color: #4a6cf7;
  transition: color 0.3s ease;
}

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

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f0fe, #f0f7f4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a6cf7;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: linear-gradient(135deg, #f093fb, #f5576c);
  color: #fff;
  transform: translateY(-3px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8ecf2;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: #3a3f5c;
  background: #fafbfc;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #4a6cf7;
  box-shadow: 0 0 0 4px rgba(74, 108, 247, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b0b5c8;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form .btn {
  align-self: flex-start;
}

/* ===== FOOTER ===== */
.footer {
  background: #2a2e45;
  padding: 30px 0;
}

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

.footer .logo {
  color: #fff;
  font-size: 1.3rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.back-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.back-top:hover {
  background: #f093fb;
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .about-grid {
    gap: 40px;
  }

  .process-steps {
    gap: 0;
  }

  .step {
    flex: 0 0 170px;
  }

  .contact-grid {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 100px 36px 36px;
    gap: 20px;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .nav-cta {
    display: none;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .services-grid,
  .portfolio-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 70px 0;
  }

  .services-grid,
  .portfolio-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .stat-num {
    font-size: 2.2rem;
  }

  .process-steps {
    gap: 10px;
  }

  .step {
    flex: 0 0 150px;
  }

  .step-arrow {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .about-visual {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 20px;
  }

  .about-center {
    width: 80px;
    height: 80px;
    font-size: 1.4rem;
  }

  .testi-card {
    padding: 28px 20px;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-6px);
  }
}
