/* ============ VARIABLES ============ */
:root {
  --green-dark: #348834;
  --green: #2d6a3e;
  --green-light: #3f8752;
  --green-pale: #eef5ee;
  --cream: #fdf8ef;
  --gold: #e0a72e;
  --gold-light: #f2c94c;
  --blue: #3b6fa5;
  --blue-light: #eaf1f8;
  --text-dark: #1a2e22;
  --text-gray: #6b7b72;
  --text-light: #a9b7ae;
  --white: #ffffff;
  --border-light: #e2e8e4;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 30px rgba(30,77,43,0.12);
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #FEFBF5;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

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 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-icon { width: 18px; height: 18px; filter: brightness(0) invert(1); }

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(30,77,43,0.25);
}
.btn-primary:hover {
  background: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30,77,43,0.35);
}

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

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--white);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 2px solid var(--green-dark);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { width: 42px; height: 42px; object-fit: contain; }
.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.1;
  color: var(--green-dark);
}
.logo-light .logo-text { color: var(--white); }
.logo-full { height: 46px; width: auto; object-fit: contain; }
.logo-full-light {
  height: 50px;
  background: var(--white);
  padding: 6px 10px;
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
}
.nav-link {
  font-family: var(--font-heading);
  /* font-weight: 200; */
  font-size: 12px;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-dark);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--green-dark); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.call-us { display: flex; align-items: center; gap: 8px; }
.icon-circle {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle img { width: 16px; height: 16px; }
.call-text { display: flex; flex-direction: column; font-size: 12px; }
.call-text strong { font-family: var(--font-heading); font-size: 13px; color: var(--text-dark); }
.call-text span { color: var(--text-gray); font-size: 11px; }

.mobile-register-btn {
  display: none;
  /* width: 100%; */
  margin-top: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 26px; height: 3px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
  padding: 160px 0 90px;
  background: #FEFBF5;
  position: relative;
  overflow: hidden;
}

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

.hero-content h1 {
  font-size: 44px;
  margin-bottom: 22px;
}
.text-green { color: var(--green-dark); }

.hero-desc {
  font-size: 16px;
  color: var(--text-gray);
  max-width: 480px;
  margin-bottom: 30px;
}

.hero-btns { display: flex; gap: 16px; margin-bottom: 40px;}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 28px;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}
.hero-features img { width: 20px; height: 20px; }

.hero-image { position: relative; }
.hero-img {
  width: 100%;
  border-radius: 50% 50% 50% 4%;
  object-fit: cover;
  aspect-ratio: 1/0.9;
  /* box-shadow: var(--shadow-md); */
  animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-badge {
  position: absolute;
  bottom: -20px;
  right: 0;
  background: var(--white);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  max-width: 300px;
  animation: fadeInUp 1s ease 0.5s both, floatY 5s ease-in-out infinite;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.badge-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}
/* .badge-icon img { width: 26px; height: 26px; } */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(30,77,43,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(30,77,43,0.08); }
}
.hero-badge p { font-size: 13px; font-weight: 600; color: var(--text-dark); }

/* ============ SECTION TITLE ============ */
.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 50px;
}
.title-with-lines {
  display: flex;
  align-items: center;
  gap: 20px;
}
.title-with-lines .line { width: 60px; height: 2px; background: var(--gold); }
.section-title h2 { font-size: 32px; }
.eyebrow {
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}
.eyebrow.center { text-align: center; }

/* ============ ABOUT ============ */
.about { padding: 90px 0; background: #FEFBF5; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-image { position: relative; }
.about-img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  /* box-shadow: var(--shadow-md); */
  position: relative;
  z-index: 2;
}
.dot-pattern {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--green-dark) 2px, transparent 2px);
  background-size: 10px 10px;
  border-radius: 24px;
  z-index: 1;
}
.about-content .underline {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 16px 0 20px;
}
.about-content h2 { font-size: 32px; }
.about-content p { color: var(--text-gray); margin-bottom: 22px; max-width: 480px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-weight: 500;
  font-size: 15px;
}
.check-list img { width: 20px; height: 20px; }

/* ============ SERVICES ============ */
.services { padding: 90px 0; background: #FEFBF5; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 30px 18px;
  text-align: center;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-dark);
}
.service-icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  /* border: 3px solid var(--green-dark); */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.08); box-shadow: 0 6px 18px rgba(30,77,43,0.3); }
.service-icon img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-icon img { transform: scale(1.1); }
.service-card h3 { font-size: 15px; margin-bottom: 6px; }
.service-card p { font-size: 12.5px; color: var(--text-gray); }

/* ============ WHY US ============ */
.why-us { padding: 90px 0; background: #FEFBF5; }
.why-us-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 50px;
  align-items: start;
}
.why-us-content h2 { font-size: 30px; margin-top: 8px; }
.why-us-content .underline {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 16px 0 18px;
}
.why-us-content p { color: var(--text-gray); }

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 24px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.why-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* .why-icons img { width: 22px; height: 22px; } */
.why-card p { font-size: 14px; font-weight: 600; color: var(--text-dark); }

/* ============ PROCESS ============ */
.process { padding: 90px 0; background: #FEFBF5; }
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 190px;
  position: relative;
}
.step-circle {
  width: 96px; height: 96px;
  border-radius: 50%;
  /* border: 3px solid var(--green-dark); */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: var(--transition);
}
.step:hover .step-circle { transform: scale(1.08); box-shadow: 0 6px 18px rgba(30,77,43,0.3); }
.step-circle img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.step:hover .step-circle img { transform: scale(1.1); }
.step-num { color: var(--green-dark); font-weight: 700; font-family: var(--font-heading); margin-bottom: 6px; }
.step h4 { font-size: 16px; margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--text-gray); }
.arrow { font-size: 22px; color: var(--green-dark); align-self: center; margin-top: 30px; }

/* ============ PLANS ============ */
.plans { padding: 90px 0; background: #FEFBF5; }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.plan-card {
  border-radius: 18px;
  padding: 34px 26px;
  text-align: center;
  border: 2px solid var(--border-light);
  transition: var(--transition);
  position: relative;
}
.plan-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.plan-free { background: #eef7ee; border-color: #cfe8cf; }
.plan-silver { background: #f4f4f4; border-color: #dcdcdc; }
.plan-gold { background: #fdf3dd; border-color: var(--gold-light); }
.plan-premium { background: #eaf1fa; border-color: #c9dcf0; }

.plan-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  /* overflow: hidden; */
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: var(--shadow-sm); */
}
/* .plan-icon img { width: 100%; height: 100%; object-fit: cover; } */
.plan-card h3 { font-size: 20px; letter-spacing: 1px; margin-bottom: 14px; }
.plan-free h3 { color: var(--green-dark); }
.plan-silver h3 { color: #8a8a8a; }
.plan-gold h3 { color: var(--gold); }
.plan-premium h3 { color: var(--blue); }
.plan-desc { font-size: 13px; color: var(--text-gray); min-height: 60px; }
.plan-list { text-align: left; margin-bottom: 16px; }
.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 10px;
  min-height: 20px;
}
.plan-list img { width: 16px; height: 16px; margin-top: 2px; }
.plan-price { font-size: 26px; font-weight: 800; font-family: var(--font-heading); color: var(--text-dark); margin-top: 10px; }
.plans-cta { text-align: center; margin-top: 44px; }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 90px 0; background: #FEFBF5; }
.testimonial-slider { position: relative; overflow: hidden; touch-action: pan-y; cursor: grab; }
.testimonial-slider:active { cursor: grabbing; }
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}
.testimonial-card {
  background: var(--white);
  border-radius: 18px;
  padding: 30px 26px;
  min-width: calc((100% - 48px) / 3);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.quote-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.quote-icon { width: 30px; height: 30px; opacity: 0.8; }
.stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.testimonial-card p { font-size: 14.5px; color: var(--text-dark); margin-bottom: 22px; min-height: 80px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.avatar-initial {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
}
.testimonial-author strong { display: block; font-size: 14px; }
.testimonial-author span { font-size: 12px; color: var(--text-gray); }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-light); cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--green-dark); width: 26px; border-radius: 5px; }

/* ============ CTA BANNER ============ */
.cta-banner { background: #F3F6F1; padding: 40px 0; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-left { display: flex; align-items: center; gap: 20px; }
.cta-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.cta-icon img { width: 34px; height: 34px; }
.cta-left h3 { font-size: 22px; margin-bottom: 4px; }
.cta-left p { font-size: 14px; color: var(--text-gray); }

/* ============ FOOTER ============ */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 70px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  opacity: 0.3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 0;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col {
  padding: 0 40px;
  position: relative;
}

.footer-col:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.1);
}

.footer-col:first-child {
  padding-left: 0;
}

.footer-col:last-child {
  padding-right: 0;
}

/* Brand Column */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 8px;
}
.footer-logo {
  height: 52px;
  width: auto;
  display: block;
}
.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin: 16px 0 22px;
  max-width: 320px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  /* width: 50px;
  height: 50px; */
  border-radius: 10%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.social-link img {
  width: 25px;
  height: 25px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.social-link:hover {
  /* background: var(--black); */
  transform: translateY(-3px);
}
.social-link:hover img {
  opacity: 1;
}

/* Column Titles */
.footer-title {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
  opacity: 0.6;
}

/* Menu Lists */
.footer-menu {
  list-style: none;
}
.footer-menu li {
  margin-bottom: 12px;
}
.footer-menu li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}
.footer-menu li a::before {
  content: '›';
  position: absolute;
  left: -14px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--gold);
  font-weight: bold;
  font-size: 15px;
}
.footer-menu li a:hover {
  color: var(--white);
  padding-left: 18px;
}
.footer-menu li a:hover::before {
  opacity: 1;
  left: 0;
}

/* Contact List */
.footer-contact {
  list-style: none;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.contact-img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  /* filter: brightness(0) invert(1); */
  opacity: 0.6;
}

/* Footer Bottom */
.footer-bottom {
  padding: 22px 0;
  background: rgba(0,0,0,0.15);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom-links {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}
.footer-bottom-links a:hover {
  color: var(--gold);
}
.footer-sep {
  color: rgba(255,255,255,0.2);
}

/* ============ MODAL ============ */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active {
  display: flex;
}
.modal-container {
  background: var(--white);
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-md);
  animation: fadeInUp 0.3s ease;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
  border-radius: 16px 16px 0 0;
}
.modal-header h3 {
  font-size: 20px;
  color: var(--green-dark);
}
.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--green-pale);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--green-dark);
  line-height: 1;
}
.modal-close:hover {
  background: var(--green-dark);
  color: var(--white);
}
.modal-body {
  padding: 28px;
}
.modal-body h4 {
  font-size: 16px;
  color: var(--green-dark);
  margin: 20px 0 8px;
}
.modal-body h4:first-of-type {
  margin-top: 16px;
}
.modal-body p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 10px;
}
.modal-body p strong {
  color: var(--text-dark);
}

/* ============ SCROLL TOP ============ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  border: none;
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
}
.scroll-top.show { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--green); transform: translateY(-4px); }

/* ============ ANIMATIONS ============ */
[data-aos] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { justify-content: center; }
  .arrow { display: none; }
  .footer-col { padding: 30px 0; }
  .footer-col:not(:last-child)::after { display: none; }
  .footer-col:first-child { padding-top: 0; }
  .footer-col:last-child { padding-bottom: 0; }
}

@media (max-width: 1100px) {
  .nav { gap: 10px; }
  .nav-link { font-size: 12px; }
  .header-right { gap: 10px; }
  .call-text { display: none; }
  .header-right .btn { padding: 10px 16px; font-size: 13px; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .call-us { display: none; }
  .desktop-btn { display: none; }
  .mobile-register-btn { display: block; }
  .hero-inner, .about-inner, .why-us-inner { grid-template-columns: 1fr; }
  .hero-image { order: -1; margin-bottom: 20px; }
  .testimonial-card { min-width: 100%; }

  .nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .hero-content h1 { font-size: 30px; }
  .section-title h2 { font-size: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .header-right .btn { padding: 8px 14px; font-size: 12px; }
  .header-inner { gap: 10px; }
  .logo-full { height: 36px; }
}
