/* =============================================================
   Uraan — Homepage styles
   ============================================================= */

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 6vw, 80px) 0 0;
  background: var(--bg-1);
  overflow: hidden;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; flex-direction: column; align-items: center;
  gap: 22px; text-align: center;
}
.hero h1 {
  position: relative;
  isolation: isolate;
  font-family: var(--font-sans); font-weight: 900;
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.028em;
  color: var(--ink-900);
  max-width: 18ch;
  padding: 0.12em 0 0.18em;
  text-wrap: balance;
}
.hero h1::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.05em;
  width: min(92vw, 1120px);
  height: clamp(150px, 18vw, 230px);
  border-radius: 36px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.92), rgba(255,255,255,0.68) 44%, rgba(255,255,255,0.2)),
    linear-gradient(135deg, rgba(229,35,46,0.26), rgba(229,35,46,0.06)),
    url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1800&q=80');
  background-size: cover;
  background-position: center 48%;
  box-shadow: 0 26px 70px rgba(229, 35, 46, 0.12);
  transform: translateX(-50%) rotate(-1deg);
  z-index: -2;
}
.hero h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.07em;
  width: min(88vw, 1060px);
  height: clamp(132px, 16vw, 208px);
  border: 1px solid rgba(229, 35, 46, 0.08);
  border-radius: 34px;
  transform: translateX(-50%) rotate(-1deg);
  z-index: -1;
}
.hero h1 em {
  font-style: normal;
  color: var(--red-500);
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: 4%;
  height: 0.16em;
  background: var(--red-500);
  opacity: 0.18;
  border-radius: 4px;
  z-index: -1;
}
.hero-banner {
  position: relative;
  display: inline-block;
  padding: 0.02em 0.18em 0.06em;
  z-index: 0;
}
.hero-banner::before {
  content: "";
  position: absolute;
  left: 0.08em; right: 0.02em; bottom: 0.08em;
  height: 0.32em;
  border-radius: 999px;
  background: rgba(229,35,46,0.12);
  box-shadow: 0 14px 34px rgba(229,35,46,0.08);
  z-index: -1;
}
.hero-sub {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.6;
  color: var(--fg-3);
  max-width: 62ch;
}
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-top: 8px;
}
.hero-meta {
  display: flex; gap: 28px; flex-wrap: wrap; justify-content: center;
  margin-top: 14px;
  font-size: 14px; color: var(--fg-3);
  font-weight: 600;
}
.hero-meta-item { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta-item svg { width: 16px; height: 16px; color: var(--red-500); }

/* ---------- CITY STACK ---------- */
.city-stack-wrap {
  width: 100%;
  margin-top: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(48px, 6vw, 96px);
}
.city-stack {
  position: relative;
  width: min(1100px, 100%);
  margin: 0 auto;
  height: clamp(320px, 36vw, 460px);
  display: flex; align-items: center; justify-content: center;
}
.city {
  position: absolute;
  width: clamp(180px, 18vw, 240px);
  aspect-ratio: 0.78 / 1;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 28px 56px rgba(22,22,26,0.22), 0 6px 16px rgba(22,22,26,0.08);
  transition: transform 0.7s var(--ease-out), box-shadow 0.5s var(--ease-out);
  isolation: isolate;
}
.city::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--photo, none);
  background-size: cover; background-position: center;
  z-index: 0;
}
.city::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 14, 24, 0.12) 0%, rgba(8, 14, 24, 0.42) 100%);
  z-index: 1;
}
.city-name {
  position: absolute; inset: 0;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: clamp(22px, 2.5vw, 30px);
  z-index: 2;
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: 0.005em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  text-align: center;
  line-height: 1;
}
.city-name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(9px, 0.85vw, 11px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 8px;
}
.city:nth-child(1) { transform: translateX(-180%) rotate(-9deg); z-index: 1; }
.city:nth-child(2) { transform: translateX(-90%)  rotate(-4.5deg); z-index: 2; }
.city:nth-child(3) { transform: translateX(0)     rotate(0deg);    z-index: 3; }
.city:nth-child(4) { transform: translateX(90%)   rotate(4.5deg);  z-index: 2; }
.city:nth-child(5) { transform: translateX(180%)  rotate(9deg);    z-index: 1; }
.city-stack:hover .city:nth-child(1) { transform: translateX(-200%) rotate(-12deg) translateY(-6px); }
.city-stack:hover .city:nth-child(2) { transform: translateX(-100%) rotate(-6deg)  translateY(-4px); }
.city-stack:hover .city:nth-child(3) { transform: translateX(0)     rotate(0deg)   translateY(-8px); }
.city-stack:hover .city:nth-child(4) { transform: translateX(100%)  rotate(6deg)   translateY(-4px); }
.city-stack:hover .city:nth-child(5) { transform: translateX(200%)  rotate(12deg)  translateY(-6px); }

@media (max-width: 760px) {
  .hero h1::before {
    width: calc(100vw - 28px);
    height: 170px;
    border-radius: 26px;
    background-position: center;
  }
  .hero h1::after {
    width: calc(100vw - 42px);
    height: 150px;
    border-radius: 24px;
  }
  .city-stack { height: clamp(260px, 60vw, 380px); }
  .city { width: clamp(120px, 30vw, 180px); }
  .city:nth-child(1) { transform: translateX(-130%) rotate(-10deg); }
  .city:nth-child(2) { transform: translateX(-65%)  rotate(-5deg); }
  .city:nth-child(4) { transform: translateX(65%)   rotate(5deg); }
  .city:nth-child(5) { transform: translateX(130%)  rotate(10deg); }
}

/* ---------- TRUST STRIP ---------- */
.trust-strip { background: var(--ink-50); padding: 32px 0; border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); }
.trust-row {
  display: flex; align-items: center; gap: 24px 48px; flex-wrap: wrap;
  justify-content: space-between;
}
.trust-row .label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--fg-3);
}
.trust-cities {
  display: flex; flex-wrap: wrap; gap: 18px 32px;
  font-family: var(--font-sans);
  font-weight: 800; font-size: clamp(16px, 1.5vw, 20px);
  color: var(--ink-800);
  letter-spacing: -0.005em;
}
.trust-cities span { opacity: 0.6; transition: opacity var(--dur-base); }
.trust-cities span:hover { opacity: 1; color: var(--red-600); }

/* ---------- PROCESS ---------- */
.process {
  background: #fff;
}
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }
.step {
  background: var(--bg-2);
  border-radius: 22px;
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
  display: flex; flex-direction: column; gap: 14px;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.4vw, 56px);
  color: var(--red-500);
  line-height: 1;
}
.step h3 {
  font-family: var(--font-sans); font-weight: 800;
  font-size: clamp(20px, 2vw, 24px); color: var(--ink-900);
  letter-spacing: -0.015em;
}
.step p { font-size: 15px; line-height: 1.6; color: var(--fg-3); margin: 0; }

/* ---------- SERVICES GRID (red overlay photo cards) ---------- */
.services { background: #fff; padding-top: 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

.svc-card {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 22px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 28px;
  isolation: isolate;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-card:active { transform: scale(0.99); }
.svc-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0; transition: transform 1.4s var(--ease-out);
}
.svc-card:hover .svc-photo { transform: scale(1.06); }
.svc-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(10, 10, 12, 0.14) 0%, rgba(10, 10, 12, 0.62) 100%);
  z-index: 1;
}
.svc-eyebrow {
  position: absolute; top: 18px; left: 22px; z-index: 3;
  font-family: var(--font-body);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; opacity: 0.92;
}
.svc-title {
  position: relative; z-index: 3;
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 0.96;
  text-shadow: 0 2px 14px rgba(0,0,0,0.3);
  letter-spacing: 0.003em;
}
.svc-arrow {
  position: absolute; bottom: 18px; right: 22px; z-index: 3;
  color: #fff; font-size: 24px; font-weight: 700;
  transition: transform var(--dur-base) var(--ease-out);
}
.svc-card:hover .svc-arrow { transform: translate(4px, -2px); }

/* ---------- COUNTRIES (feature cards) ---------- */
.countries {
  background: var(--ink-50);
}
.countries-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 960px) { .countries-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .countries-grid { grid-template-columns: 1fr; } }
.country {
  position: relative; aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden; isolation: isolate;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.country:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.country-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.2s var(--ease-out);
}
.country:hover .country-photo { transform: scale(1.06); }
.country-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0) 35%, rgba(10,10,12,0.85) 100%);
}
.country-body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 22px; z-index: 2; color: #fff;
}
.country-tag {
  align-self: flex-start;
  font-family: var(--font-body);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(229, 35, 46, 0.9);
  color: #fff;
  padding: 7px 12px;
  border-radius: 999px;
}
.country-name {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.country-cities {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.88;
  font-weight: 600;
}
.country-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.22);
  font-size: 13px;
  font-weight: 600;
}
.country-bottom .arrow {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  display: grid; place-items: center;
  transition: all var(--dur-base);
}
.country:hover .arrow {
  background: var(--red-500); border-color: var(--red-500);
}

/* ---------- WHY / STATS ---------- */
.why {
  background: var(--ink-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  top: -150px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,35,46,0.25), transparent 70%);
  filter: blur(40px);
}
.why-head { position: relative; max-width: 760px; margin: 0 auto 56px; text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.why-head h2 { color: #fff; }
.why-head .lede { color: var(--ink-300); }
.why-stats {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 64px;
  border-top: 1px solid var(--ink-700);
  border-bottom: 1px solid var(--ink-700);
}
@media (max-width: 900px) { .why-stats { grid-template-columns: 1fr 1fr; } }
.why-stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--ink-700);
}
.why-stat:last-child { border-right: 0; }
@media (max-width: 900px) {
  .why-stat:nth-child(2n) { border-right: 0; }
  .why-stat:nth-child(-n+2) { border-bottom: 1px solid var(--ink-700); }
}
.why-stat .n {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--red-400);
  line-height: 1;
}
.why-stat .l {
  margin-top: 12px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-300);
}

.why-grid {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 880px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background var(--dur-base), border-color var(--dur-base), transform var(--dur-base);
}
.why-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(229,35,46,0.4);
  transform: translateY(-3px);
}
.why-card .icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--red-500);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow-red);
}
.why-card .icon svg { width: 24px; height: 24px; }
.why-card h3 {
  font-family: var(--font-sans); font-weight: 800;
  font-size: 22px; color: #fff;
  letter-spacing: -0.015em;
}
.why-card p { font-size: 15px; line-height: 1.6; color: var(--ink-300); margin: 0; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: #fff; }
.tm-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 18px;
}
@media (max-width: 900px) { .tm-grid { grid-template-columns: 1fr; } }
.tm {
  background: var(--bg-2);
  border-radius: 22px;
  padding: 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform var(--dur-base), box-shadow var(--dur-base);
}
.tm:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tm--feature {
  background: var(--red-500); color: #fff;
}
.tm--feature blockquote, .tm--feature .tm-name { color: #fff; }
.tm--feature .tm-detail { color: rgba(255,255,255,0.85); }
.tm-quote {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--red-500);
  opacity: 0.4;
}
.tm--feature .tm-quote { color: #fff; opacity: 0.4; }
.tm blockquote {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  margin: 12px 0 28px;
  flex: 1;
}
.tm--feature blockquote {
  font-size: clamp(20px, 1.8vw, 26px);
}
.tm-meta { display: flex; align-items: center; gap: 14px; }
.tm-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink-900); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-sans); font-weight: 800;
  font-size: 16px;
}
.tm--feature .tm-avatar { background: #fff; color: var(--red-500); }
.tm-name { font-family: var(--font-sans); font-weight: 800; font-size: 15px; color: var(--ink-900); }
.tm-detail { font-size: 13px; color: var(--fg-3); margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq { background: var(--ink-50); }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-1); }
.faq-q {
  width: 100%;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 18px;
  padding: 26px 4px;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--ink-900);
  line-height: 1.35;
  letter-spacing: -0.01em;
  transition: color var(--dur-base);
}
.faq-q:hover { color: var(--red-600); }
.faq-q .faq-text {
  flex: 1 1 auto;
  min-width: 0;
}
.faq-q .plus {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--ink-300);
  display: grid; place-items: center;
  transition: transform var(--dur-base), background var(--dur-base), border-color var(--dur-base), color var(--dur-base);
  flex-shrink: 0; color: var(--ink-900);
  margin-top: 2px;
}
.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
  background: var(--red-500); border-color: var(--red-500); color: #fff;
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 4px 26px;
  font-size: 16px; line-height: 1.7;
  color: var(--fg-2);
  max-width: 70ch;
}

@media (max-width: 760px) {
  .faq-wrap {
    max-width: 100%;
  }
  section[data-screen-label="03 Contact"] .faq-wrap {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  .faq-q {
    padding: 20px 0;
    gap: 14px;
    font-size: 16px;
  }
  .faq-q .plus {
    width: 28px;
    height: 28px;
  }
  .faq-a-inner {
    padding: 0 0 20px;
    font-size: 15px;
    line-height: 1.65;
  }
}
