/* HOME page only */
.hero {
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,153,51,0.12) 0, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(51,51,153,0.08) 0, transparent 50%),
    var(--bg);
}

.hero .grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: end; padding-bottom: 100px; }

.hero h1 { font-size: clamp(36px, 4.4vw, 60px); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; }

.hero h1 .b { color: var(--blue); }

.hero h1 .a { color: var(--saffron); }

.hero .deck { margin-top: 28px; font-size: 18px; color: var(--ink-soft); max-width: 52ch; line-height: 1.6; }

.hero .ctas { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }

.hero .meta { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; border-top: 2px solid var(--blue); padding-top: 24px; }

.hero .meta .k { font-family: var(--display); font-weight: 800; font-size: 40px; color: var(--blue); line-height: 1; }

.hero .meta .v { font-family: var(--display); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); margin-top: 6px; }

.hero-art { position: relative; aspect-ratio: 4/5; }

.hero-art .ph.main { position: absolute; inset: 0; }

.hero-art .badge {
  position: absolute; top: 24px; left: 24px;
  background: var(--saffron); color: var(--blue);
  font-family: var(--display); font-weight: 800; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 10px 16px; border-radius: 4px;
  box-shadow: 0 4px 0 0 var(--saffron-deep);
}

.hero-art .quote-card {
  position: absolute; bottom: -24px; right: -24px;
  width: 56%;
  background: var(--blue); color: #fff;
  padding: 24px; border-radius: 8px;
  box-shadow: 0 20px 40px -12px rgba(51,51,153,0.4);
}

.hero-art .quote-card .star { color: var(--saffron); font-size: 14px; letter-spacing: 6px; }

.hero-art .quote-card p { font-family: var(--display); font-weight: 600; font-size: 17px; line-height: 1.4; margin: 12px 0; }

.hero-art .quote-card .who { font-family: var(--display); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--saffron); }

@media (max-width: 980px) {
  .hero .grid { grid-template-columns: 1fr; padding-bottom: 60px; }
  .hero-art { aspect-ratio: 4/4; }
  .hero .meta { grid-template-columns: 1fr 1fr; }
  .hero-art .quote-card { right: 0; }
}

/* Marquee */
.marquee {
  background: var(--blue);
  color: #fff;
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee .track {
  display: inline-flex;
  gap: 48px;
  animation: scroll 32s linear infinite;
  font-family: var(--display); font-weight: 700;
  font-size: 22px;
}

.marquee .star { color: var(--saffron); }

@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Destinations */
.destinations { background: var(--bg-blue); padding: 120px 0; }

.dest-card {
  display: grid;
  grid-template-rows: 320px auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.dest-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -16px rgba(51,51,153,0.2); }

.dest-card .img { position: relative; }

.dest-card .img .ph { width: 100%; height: 100%; border: 0; border-radius: 0; }

.dest-card .body { padding: 32px; display: grid; gap: 14px; }

.dest-card .country-mono {
  font-family: var(--display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--saffron-deep);
}

.dest-card h3 { font-size: 44px; color: var(--blue); }

.dest-card .desc { color: var(--ink-soft); }

.dest-card .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; border-top: 1px solid var(--line); padding-top: 18px; margin-top: 4px; }

.dest-card .stats .k { font-family: var(--display); font-weight: 800; font-size: 28px; color: var(--blue); }

.dest-card .stats .v { font-family: var(--display); font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); }

.dest-card .cta-row { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }

.dest-card .cta-row a { font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; color: var(--blue); border-bottom: 2px solid var(--saffron); padding-bottom: 4px; }

.dest-card .badge {
  position: absolute; top: 18px; left: 18px;
  background: var(--saffron); color: var(--blue);
  padding: 8px 14px; font-family: var(--display); font-weight: 800; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 4px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--blue);
  border-left: 1px solid var(--line);
}

.svc {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 30px;
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: #fff;
  transition: background 0.2s;
}

.svc:hover { background: var(--bg-blue); }

.svc:hover h4 { color: var(--saffron-deep); }

.svc .icn-wrap {
  width: 56px; height: 56px;
  background: var(--saffron-soft);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 24px;
}

.svc .icn-wrap svg { width: 28px; height: 28px; }

.svc h4 { font-size: 22px; color: var(--blue); transition: color 0.2s; }

.svc p { font-size: 14px; color: var(--ink-soft); margin: 8px 0 0; }

.svc .num { font-family: var(--display); font-weight: 700; font-size: 11px; letter-spacing: 0.18em; color: var(--saffron-deep); }

.svc.dark-svc { background: var(--blue); color: #fff; }

.svc.dark-svc h4 { color: #fff; }

.svc.dark-svc:hover h4 { color: var(--saffron); }

.svc.dark-svc p { color: rgba(255,255,255,0.75); }

.svc.dark-svc .num { color: var(--saffron); }

.svc.dark-svc .icn-wrap { background: rgba(255,255,255,0.1); }

.svc.dark-svc .icn-wrap svg path, .svc.dark-svc .icn-wrap svg circle, .svc.dark-svc .icn-wrap svg rect { stroke: var(--saffron); }

@media (max-width: 980px) { .services-grid { grid-template-columns: 1fr; } }

/* AAYRA Method */
.process { padding: 120px 0; background: var(--bg-blue); }

.process .grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }

.process .left { position: sticky; top: 100px; }

.process .pts { display: grid; gap: 0; }

.process .pt {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 28px; padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.process .pt:first-child { border-top: 2px solid var(--blue); }

.process .pt:last-child { border-bottom: 0; }

.process .pt .n {
  font-family: var(--display); font-weight: 900;
  color: var(--saffron-deep);
  width: 60px; height: 60px;
  border: 2px solid var(--saffron);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 20px;
  background: #fff;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.process .pt:hover .n { background: var(--saffron); color: var(--blue); transform: scale(1.05); }

.process .pt h4 { font-size: 24px; color: var(--blue); }

.process .pt .row1 { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 6px; }

.process .pt .tag {
  font-family: var(--display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 10px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--blue);
  border-radius: 4px;
  white-space: nowrap;
}

.process .pt .tag.free { background: #E8F4EC; border-color: #C7E0CC; color: #1A6B3A; }

.process .pt p { color: var(--ink-soft); margin: 8px 0 0; max-width: 60ch; }

.process .pt .outcome {
  margin-top: 14px;
  font-family: var(--display);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  display: inline-flex; align-items: center; gap: 8px;
}

.process .pt .outcome::before { content: '→'; color: var(--saffron); font-weight: 800; }

.process .pt .outcome strong { color: var(--blue); font-weight: 700; }

@media (max-width: 980px) {
  .process .grid { grid-template-columns: 1fr; gap: 40px; }
  .process .left { position: static; }
}

/* Why us */
.why { padding: 120px 0; background: #fff; }

.why .grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }

.why .left { position: sticky; top: 100px; }

.why .pts { display: grid; gap: 0; }

.why .pt {
  display: grid; grid-template-columns: 110px 1fr;
  gap: 28px; padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.why .pt:first-child { border-top: 2px solid var(--blue); }

.why .pt .n-col {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  width: 110px; overflow: hidden;
}

.why .pt .n {
  font-family: var(--display); font-weight: 900; font-size: 18px;
  color: var(--saffron);
  width: 60px; height: 60px; flex-shrink: 0;
  border: 2px solid var(--saffron);
  border-radius: 50%;
  display: grid; place-items: center;
}

.why .pt .n-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--saffron); line-height: 1;
  white-space: nowrap; padding-left: 4px;
}

.why .pt h4 { font-size: 24px; color: var(--blue); }

.why .pt p { color: var(--ink-soft); margin: 8px 0 0; max-width: 60ch; }

@media (max-width: 980px) { .why .grid { grid-template-columns: 1fr; gap: 40px; } .why .left { position: static; } }

/* Student Stories */
.testimonial-band {
  background:
    radial-gradient(circle at 15% 20%, rgba(51,51,153,0.05) 0, transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(255,153,51,0.07) 0, transparent 55%),
    var(--bg-paper);
  padding: 100px 0;
  position: relative;
}

.testimonial-band .stories-head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: end; margin-bottom: 56px; }

.testimonial-band .stories-head h2 { font-size: clamp(32px, 3.6vw, 48px); }

.testimonial-band .stories-head .lead { color: var(--ink-soft); font-size: 16px; max-width: 48ch; line-height: 1.6; }

@media (max-width: 880px) { .testimonial-band .stories-head { grid-template-columns: 1fr; gap: 16px; } }

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

@media (max-width: 980px) { .stories { grid-template-columns: 1fr; gap: 20px; } }

.story-card {
  background: #fff;
  border: 1px solid rgba(51,51,153,0.08);
  border-radius: 16px;
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.story-card::before {
  content: '"';
  position: absolute;
  top: -22px; right: 18px;
  font-family: Georgia, serif;
  font-size: 140px;
  line-height: 1;
  color: var(--saffron);
  opacity: 0.18;
  font-weight: 700;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.story-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -20px rgba(51,51,153,0.22); border-color: rgba(255,153,51,0.5); }

.story-card:hover::before { opacity: 0.32; transform: scale(1.06); }

.story-card .stars { color: var(--saffron); font-size: 14px; letter-spacing: 3px; }

.story-card blockquote {
  font-family: var(--display); font-weight: 600;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin: 0;
  position: relative;
  z-index: 1;
}

.story-card blockquote em { color: var(--saffron-deep); font-style: italic; }

.story-card .who { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(51,51,153,0.08); }

.story-card .av {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 16px;
  color: #fff;
  flex: 0 0 48px;
  background: var(--blue);
}

.story-card .av.s2 { background: linear-gradient(135deg, var(--saffron), var(--saffron-deep)); }

.story-card .av.s3 { background: linear-gradient(135deg, var(--blue), var(--blue-deep)); }

.story-card .who .name { font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--blue); }

.story-card .who .ctx { font-family: var(--display); font-size: 11px; font-weight: 500; color: var(--ink-muted); margin-top: 3px; line-height: 1.4; }

.story-card .flag-pill {
  position: absolute; top: 24px; right: 24px;
  font-size: 10px; font-family: var(--display); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue);
  background: var(--saffron-soft);
  padding: 5px 10px;
  border-radius: 20px;
  z-index: 2;
}

.stories-cta { display: flex; justify-content: center; gap: 24px; margin-top: 48px; align-items: center; flex-wrap: wrap; }

.stories-cta .stat { font-family: var(--display); }

.stories-cta .stat .k { font-size: 32px; font-weight: 800; color: var(--blue); line-height: 1; }

.stories-cta .stat .v { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); margin-top: 4px; }

.stories-cta .div { width: 1px; height: 32px; background: rgba(51,51,153,0.15); }

/* Trust strip */
.trust { padding: 60px 0; background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.trust .row { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }

.trust .lbl { font-family: var(--display); font-weight: 700; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); }

.trust .marks { display: flex; gap: 56px; align-items: center; flex-wrap: wrap; }

.trust .mark-item { font-family: var(--display); font-weight: 700; font-size: 22px; color: var(--blue); opacity: 0.5; transition: opacity 0.2s; }

.trust .mark-item:hover { opacity: 1; }

.trust .mark-item .it { font-style: italic; font-weight: 400; }

/* Blog */
.blog { padding: 120px 0; }

.blog .head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 56px; gap: 32px; }

.blog .posts { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; }

.post { display: flex; flex-direction: column; gap: 16px; cursor: pointer; }

.post .ph.cover { aspect-ratio: 4/3; transition: transform 0.3s; }

.post.feat .ph.cover { aspect-ratio: 5/4; }

.post:hover .ph.cover { transform: scale(0.99); }

.post:hover h4 { color: var(--saffron-deep); }

.post .meta { display: flex; gap: 12px; align-items: center; }

.post .cat { font-family: var(--display); font-weight: 700; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--saffron-deep); background: var(--saffron-soft); padding: 4px 10px; border-radius: 3px; }

.post .date { font-family: var(--display); font-size: 11px; font-weight: 500; letter-spacing: 0.06em; color: var(--ink-muted); }

.post h4 { font-size: 22px; color: var(--blue); transition: color 0.2s; }

.post.feat h4 { font-size: 32px; }

.post p { color: var(--ink-soft); font-size: 14px; }

@media (max-width: 980px) { .blog .posts { grid-template-columns: 1fr; } .blog .head { flex-direction: column; align-items: start; } }
