/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(90deg, #c79d62, #a97e45, #c79d62);
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 16px;
  letter-spacing: 0.04em;
}
@keyframes shimmer {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.announcement-bar a {
  color: #fff;
  text-decoration: underline;
}

/* ===== NAV ===== */
nav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #c79d62;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo span {
  color: #e8c990;
}
.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #e8c990, #c79d62);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #3d4f45;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover {
  color: #e8c990;
}
.nav-cta {
  background: linear-gradient(135deg, #e8c990, #c79d62);
  color: white !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(58, 158, 85, 0.3);
  text-wrap-mode: nowrap;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(58, 158, 85, 0.4);
}

/* ===== HERO ===== */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #f2ede6 0%, #ffffff 55%, #faf8f5 100%);
  overflow: hidden;
}
.hero > .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(58, 158, 85, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.hero-text {
  animation: fadeUp 0.8s ease both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-globe-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1.5px solid #faf8f5;
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #c79d62;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(46, 125, 66, 0.1);
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-globe-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(199, 157, 98, 0.08);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.4);
  }
}

.hero h1 {
  margin-bottom: 22px;
  animation: fadeUp 0.8s 0.2s ease both;
  line-height: 1.15;
}
.hero h1 em {
  font-style: italic;
  color: #e8c990;
}
.hero-desc {
  font-size: 1.12rem;
  line-height: 1.75;
  color: #3d4f45;
  margin-bottom: 36px;
  max-width: 500px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s ease both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(199, 157, 98, 0.7), #c79d62);
  color: white;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 24px rgba(46, 125, 66, 0.35);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(46, 125, 66, 0.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #c79d62;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid rgba(199, 157, 98, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.btn-secondary:hover {
  background: #faf8f5;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  animation: fadeUp 0.8s 0.5s ease both;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #c79d62;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9e9e9e;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  background: #e8e8e8;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeUp 0.9s 0.3s ease both;
}
.hero-card {
  background: white;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(46, 125, 66, 0.18);
  border: 1px solid rgba(58, 158, 85, 0.1);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    rgba(199, 157, 98, 0.08),
    #c79d62,
    #c8a44a
  );
}
.hero-card-title {
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8c990;
  margin-bottom: 20px;
}
.psy-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.psy-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e8e8e8;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.psy-item:hover {
  border-color: rgba(199, 157, 98, 0.08);
  background: #f2ede6;
  transform: translateX(4px);
}
.psy-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.psy-info {
  flex: 1;
  min-width: 0;
}
.psy-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a2e22;
}
.psy-spec {
  font-size: 0.75rem;
  color: #9e9e9e;
  margin-top: 2px;
}
.psy-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  background: #faf8f5;
  color: #c79d62;
  white-space: nowrap;
}
.floating-badge {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 8px 32px rgba(46, 125, 66, 0.14);
  border: 1px solid #e8e8e8;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
  z-index: 100;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.badge-1 {
  top: -24px;
  right: -20px;
}
.badge-2 {
  bottom: -24px;
  left: -20px;
  animation-delay: 2s;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(199, 157, 98, 0.08);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 0;
  background: #ffffff;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  margin-bottom: 14px;
}
.section-header p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #e8e8e8;
  border-radius: 24px;
  padding: 36px 30px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f2ede6, transparent);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.step-card:hover {
  border-color: rgba(199, 157, 98, 0.08);
  box-shadow: 0 8px 32px rgba(46, 125, 66, 0.14);
  transform: translateY(-4px);
}
.step-card:hover::before {
  opacity: 1;
}
.step-number {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(58, 158, 85, 0.25);
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #faf8f5, white);
  border: 1.5px solid rgba(58, 158, 85, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.step-card p {
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== WHY CHOOSE ===== */
.why-choose {
  padding: 100px 0;
  background: linear-gradient(180deg, #f2ede6 0%, #ffffff 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-text-col h2 {
  margin-bottom: 20px;
}
.why-text-col > p {
  margin-bottom: 36px;
  font-size: 1.05rem;
  line-height: 1.8;
}
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #faf8f5;
  border: 1.5px solid rgba(58, 158, 85, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.benefit-text strong {
  display: block;
  font-size: 0.95rem;
  color: #1a2e22;
  margin-bottom: 3px;
}
.benefit-text span {
  font-size: 0.85rem;
  color: #9e9e9e;
}

.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-card {
  background: white;
  border-radius: 14px;
  padding: 28px 22px;
  border: 1.5px solid #e8e8e8;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-card:hover {
  border-color: rgba(199, 157, 98, 0.08);
  box-shadow: 0 2px 12px rgba(46, 125, 66, 0.1);
}
.why-card.tall {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #c79d62, #a97e45);
  color: white;
}
.why-card.tall h3 {
  color: white;
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.why-card.tall p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
}
.why-card-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.why-card h4 {
  font-family: "Lato", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a2e22;
  margin-bottom: 6px;
}
.why-card p {
  font-size: 0.8rem;
  color: #9e9e9e;
  line-height: 1.6;
}

/* ===== SPECIALTIES ===== */
.specialties {
  padding: 100px 0;
  background: #f5f5f5;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.spec-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1.5px solid #e8e8e8;
  background: white;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.spec-chip:hover {
  border-color: rgba(199, 157, 98, 0.08);
  background: #f2ede6;
  transform: translateY(-2px);
  box-shadow: 0 2px 12px rgba(46, 125, 66, 0.1);
}
.spec-chip-icon {
  font-size: 1.3rem;
}
.spec-chip-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a2e22;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #c79d62 0%, #a97e45 100%);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '"';
  font-family: "Playfair Display", serif;
  font-size: 28rem;
  position: absolute;
  top: -80px;
  left: -40px;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}
.testimonials .section-header h2 {
  color: white;
}
.testimonials .section-header p {
  color: rgba(255, 255, 255, 0.75);
}
.testimonials .section-label {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 32px 28px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.testi-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}
.stars {
  color: #c8a44a;
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testi-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.25);
}
.testi-name {
  font-weight: 700;
  color: white;
  font-size: 0.88rem;
}
.testi-loc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

/* ===== ABROAD SECTION ===== */
.abroad {
  padding: 100px 0;
  background: #ffffff;
}
.abroad-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.abroad-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.flag-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #faf8f5;
  border: 1.5px solid rgba(58, 158, 85, 0.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #c79d62;
}
.abroad-visual {
  background: linear-gradient(135deg, #f2ede6, #faf8f5);
  border-radius: 24px;
  padding: 48px 40px;
  border: 1.5px solid rgba(58, 158, 85, 0.2);
  text-align: center;
}
.world-icon {
  font-size: 5rem;
  margin-bottom: 20px;
  display: block;
  animation: float 5s ease-in-out infinite;
}
.abroad-visual h3 {
  margin-bottom: 12px;
}
.abroad-visual p {
  font-size: 0.92rem;
  color: #3d4f45;
  margin-bottom: 24px;
}
.abroad-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ah-item {
  background: white;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #e8e8e8;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a2e22;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: #f5f5f5;
}
.faq-grid {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border-radius: 14px;
  border: 1.5px solid #e8e8e8;
  overflow: hidden;
  transition: border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item:hover {
  border-color: rgba(199, 157, 98, 0.08);
}
.faq-q {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a2e22;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-q::after {
  content: "+";
  font-size: 1.4rem;
  color: #e8c990;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 24px;
  font-size: 0.92rem;
  line-height: 1.75;
  color: #3d4f45;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0;
  background: #ffffff;
}
.cta-inner {
  background: linear-gradient(135deg, #c79d62, #a97e45);
  border-radius: 28px;
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.cta-inner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.cta-inner h2 {
  color: white;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn-white {
  background: white;
  color: #c79d62;
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-white:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  background: #fafcfb;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #555555;
}
.trust-icon {
  font-size: 1.2rem;
  color: #e8c990;
}

/* ===== FOOTER ===== */

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25d366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  animation: wa-pop 0.5s 1.5s ease both;
}
@keyframes wa-pop {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero > .container {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding: 60px 0;
  }
  .hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .abroad-inner {
    grid-template-columns: 1fr;
  }
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .nav-links a {
    display: none;
  }
  .nav-links a.nav-cta {
    display: block;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero-visual {
    display: none;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    padding: 48px 28px;
  }
  .hero-stats {
    gap: 16px;
  }
  .stat-num {
    font-size: 1.5rem;
  }
  .why-visual {
    grid-template-columns: 1fr;
  }
  .why-card.tall {
    grid-row: auto;
  }
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .abroad-highlights {
    grid-template-columns: 1fr;
  }
}
