/* ========== Kubbaan Landing — Brand tokens ========== */
:root {
  --orange: #FF8900;
  --orange-soft: #FFB04D;
  --orange-ink: #FFF7EC;
  --navy: #0A2540;
  --navy-2: #0E2E50;
  --navy-3: #14365E;
  --white: #FFFFFF;
  --ink: #0F1B2D;
  --ink-2: #3D4A5C;
  --ink-3: #6B7689;
  --line: rgba(10, 37, 64, 0.10);
  --line-soft: rgba(10, 37, 64, 0.06);
  --surface: #FFFFFF;
  --surface-2: #F6F8FB;
  --surface-3: #EEF2F7;
  --shadow-sm: 0 1px 2px rgba(10,37,64,0.06), 0 1px 3px rgba(10,37,64,0.05);
  --shadow-md: 0 4px 10px rgba(10,37,64,0.05), 0 12px 32px rgba(10,37,64,0.08);
  --shadow-lg: 0 10px 30px rgba(10,37,64,0.08), 0 30px 70px rgba(10,37,64,0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

/* ========== Reset & base ========== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans Lao", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

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

/* ========== Type ========== */
.lao { font-family: "Noto Sans Lao", "Inter", sans-serif; }
.inter { font-family: "Inter", system-ui, sans-serif; }

.eyebrow {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
}
.section-title {
  font-family: "Noto Sans Lao", "Inter", sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
}
.section-sub {
  margin: 14px auto 0;
  max-width: 640px;
  color: var(--ink-2);
  font-size: 17px;
}
.section-header { text-align: center; margin-bottom: 56px; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: "Noto Sans Lao", "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(255,137,0,0.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(255,137,0,0.45); }

.btn-store {
  background: var(--white);
  color: var(--navy);
  padding: 12px 22px 12px 18px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(10,37,64,0.18);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.btn-store .store-icon { width: 28px; height: 28px; display: grid; place-items: center; }
.btn-store .store-text { display: flex; flex-direction: column; line-height: 1.1; }
.btn-store .store-text small { font-size: 11px; color: var(--ink-3); font-family: "Inter", sans-serif; }
.btn-store .store-text strong { font-size: 16px; font-weight: 700; }
.btn-store:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(10,37,64,0.25); }
.btn-store.dark {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: none;
}
.btn-store.dark .store-text small { color: rgba(255,255,255,0.7); }
.btn-store.disabled {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.10);
  cursor: not-allowed;
  pointer-events: none;
}
.btn-store.disabled .store-text small { color: rgba(255,255,255,0.4); }

/* ========== Navbar ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  padding: 10px 0;
  border-bottom-color: var(--line);
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--orange);
  display: grid; place-items: center;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 12px rgba(255,137,0,0.35);
}
.brand-name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color .25s ease;
}
.nav.scrolled .brand-name { color: var(--navy); }

.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav.scrolled .nav-link { color: var(--ink-2); }
.nav.scrolled .nav-link:hover { color: var(--navy); background: var(--surface-2); }

.nav-cta { margin-left: 8px; padding: 10px 18px; font-size: 14px; }

.nav-burger { display: none; }

/* ========== Hero ========== */
.hero {
  position: relative;
  padding: 140px 0 100px;
  background:
    radial-gradient(ellipse 80% 50% at 85% 30%, rgba(255,137,0,0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 15% 80%, rgba(255,137,0,0.10), transparent 60%),
    linear-gradient(165deg, #0A2540 0%, #0E2E50 60%, #14365E 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
  opacity: 0.6;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,137,0,0.14);
  border: 1px solid rgba(255,137,0,0.32);
  color: #FFD9A8;
  font-size: 13px;
  font-weight: 500;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,137,0,0.20);
}
.hero h1 {
  font-family: "Noto Sans Lao", "Inter", sans-serif;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.10;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 22px 0 18px;
  text-wrap: balance;
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--orange) 0%, #FFC774 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 0 32px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 18px 4px;
  margin-bottom: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.stat .num {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--white);
}
.stat .num .plus { color: var(--orange); }
.stat .lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ========== Phone mockup ========== */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}
.phone {
  position: relative;
  width: 280px;
  height: 580px;
  background: #0B1424;
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 30px 80px rgba(0,0,0,0.55),
    inset 0 0 0 2px rgba(255,255,255,0.04);
  z-index: 2;
}
.phone::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 26px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 36px;
  background: #FAFAFA;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* phone app content */
.app-statusbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px 6px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.app-statusbar .icons { display: flex; gap: 5px; align-items: center; }
.app-header {
  padding: 18px 18px 14px;
}
.app-greet { font-size: 12px; color: var(--ink-3); }
.app-greet-name { font-size: 18px; font-weight: 700; color: var(--navy); margin-top: 2px; }
.app-search {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 2px 8px rgba(10,37,64,0.06);
  border: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--ink-3);
}
.app-chips {
  display: flex; gap: 8px; padding: 0 18px; margin-top: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.app-chips::-webkit-scrollbar { display: none; }
.app-chip {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--white);
  border: 1px solid var(--line);
}
.app-chip.active { background: var(--orange); color: var(--white); border-color: transparent; }

.app-section-title {
  padding: 14px 18px 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  display: flex; justify-content: space-between; align-items: center;
}
.app-section-title small { font-size: 10px; color: var(--orange); font-weight: 600; }

.app-card {
  margin: 0 18px 10px;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(10,37,64,0.06);
}
.app-card .img {
  height: 110px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.app-card .tag {
  position: absolute; top: 8px; left: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: "Inter", sans-serif;
}
.app-card .heart {
  position: absolute; top: 8px; right: 8px;
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.92);
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 13px;
}
.app-card .info { padding: 10px 12px; }
.app-card .ttl { font-size: 12px; font-weight: 700; color: var(--navy); }
.app-card .addr { font-size: 10px; color: var(--ink-3); margin-top: 2px; display: flex; gap: 3px; align-items: center; }
.app-card .price { font-size: 14px; font-weight: 700; color: var(--orange); margin-top: 6px; font-family: "Inter", sans-serif; }

.app-tabbar {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 10px 8px 18px;
  background: var(--white);
  border-top: 1px solid var(--line-soft);
}
.app-tab { text-align: center; font-size: 9px; color: var(--ink-3); font-weight: 600; }
.app-tab .ic { display: block; font-size: 18px; margin-bottom: 2px; }
.app-tab.active { color: var(--orange); }

/* Floating cards around phone */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.30), 0 2px 6px rgba(0,0,0,0.12);
  padding: 12px 14px;
  z-index: 3;
  animation: floatY 6s ease-in-out infinite;
}
.float-card.f1 {
  top: 8%; left: -10px;
  display: flex; align-items: center; gap: 10px;
  width: 220px;
  animation-delay: -1s;
}
.float-card.f2 {
  bottom: 18%; right: -20px;
  display: flex; align-items: center; gap: 10px;
  animation-delay: -3s;
}
.float-card.f3 {
  top: 38%; right: -30px;
  display: flex; align-items: center; gap: 10px;
  animation-delay: -2s;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.float-icon.orange { background: rgba(255,137,0,0.12); color: var(--orange); }
.float-icon.green { background: rgba(76,175,80,0.14); color: #2E8B33; }
.float-icon.purple { background: rgba(140,82,255,0.14); color: #6F3DD8; }
.float-card .ft-ttl { font-size: 12px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.float-card .ft-sub { font-size: 11px; color: var(--ink-3); margin-top: 2px; font-family: "Inter", sans-serif; font-weight: 600; }

/* ========== Features ========== */
.features { padding: 110px 0; background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,137,0,0.25);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,137,0,0.18) 0%, rgba(255,137,0,0.06) 100%);
  color: var(--orange);
  display: grid; place-items: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.feature-title { font-size: 19px; font-weight: 700; color: var(--navy); margin: 0 0 8px; }
.feature-desc { font-size: 15px; color: var(--ink-2); margin: 0; line-height: 1.55; }

/* ========== How it works ========== */
.how { padding: 110px 0; background: var(--surface-2); position: relative; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 16.66%; right: 16.66%;
  height: 2px;
  background-image: linear-gradient(to right, rgba(255,137,0,0.5) 50%, transparent 50%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}
.step { position: relative; text-align: center; z-index: 1; }
.step-num {
  width: 80px; height: 80px;
  border-radius: 999px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--orange) 0%, #FF6E00 100%);
  color: var(--white);
  display: grid; place-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 30px;
  box-shadow: 0 10px 24px rgba(255,137,0,0.35);
  border: 6px solid var(--surface-2);
}
.step h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin: 0 0 8px; }
.step p { color: var(--ink-2); margin: 0 auto; max-width: 280px; font-size: 16px; }

/* ========== Property types ========== */
.types { padding: 110px 0; background: var(--white); overflow: hidden; }
.types-scroll {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.type-card {
  position: relative;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease;
}
.type-card:hover { transform: translateY(-4px); }
.type-card .bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.type-card:hover .bg { transform: scale(1.08); }
.type-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,37,64,0) 0%, rgba(10,37,64,0.85) 100%);
}
.type-card .label {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  color: var(--white);
}
.type-card .icon { font-size: 26px; margin-bottom: 6px; }
.type-card .name { font-size: 18px; font-weight: 700; }

/* ========== Provinces / map ========== */
.provinces { padding: 110px 0; background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.provinces::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 75% 25%, rgba(255,137,0,0.18), transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(255,137,0,0.10), transparent 60%);
  pointer-events: none;
}
.provinces .container { position: relative; }
.provinces .section-title { color: var(--white); }
.provinces .section-sub { color: rgba(255,255,255,0.7); }
.provinces-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.laos-map { width: 100%; max-width: 460px; margin: 0 auto; }
.laos-map svg { width: 100%; height: auto; }
.laos-map .country { fill: rgba(255,137,0,0.12); stroke: rgba(255,137,0,0.6); stroke-width: 1.2; }
.laos-map .city {
  fill: var(--orange);
  filter: drop-shadow(0 0 6px rgba(255,137,0,0.7));
}
.laos-map .city-ring {
  fill: none;
  stroke: var(--orange);
  stroke-width: 1;
  opacity: 0.5;
  animation: ringPulse 2.4s ease-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes ringPulse {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0; }
}
.laos-map .city-label {
  fill: rgba(255,255,255,0.85);
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 500;
}

.province-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.province-pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  transition: background .2s, border-color .2s, color .2s;
}
.province-pill:hover {
  background: rgba(255,137,0,0.16);
  border-color: rgba(255,137,0,0.5);
  color: var(--white);
}
.province-pill.major {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* ========== Testimonials ========== */
.testimonials { padding: 110px 0; background: var(--surface-2); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
  position: relative;
}
.testimonial .stars { color: var(--orange); margin-bottom: 16px; letter-spacing: 2px; font-size: 16px; }
.testimonial .quote {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 22px;
}
.testimonial .author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.testimonial .avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  display: grid; place-items: center;
  font-weight: 700;
  color: var(--white);
  font-size: 16px;
}
.testimonial .a-name { font-weight: 700; color: var(--navy); font-size: 15px; }
.testimonial .a-meta { font-size: 13px; color: var(--ink-3); }

/* ========== Download CTA ========== */
.download {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(255,255,255,0.22), transparent 60%),
    linear-gradient(135deg, #FF8900 0%, #FF6E00 60%, #E55A00 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.download::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 40%, #000 30%, transparent 80%);
  opacity: 0.5;
  pointer-events: none;
}
.download .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.download h2 {
  font-family: "Noto Sans Lao", "Inter", sans-serif;
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--white);
}
.download p { font-size: 18px; color: rgba(255,255,255,0.9); margin: 0 0 32px; max-width: 480px; }
.download .btn-store { background: var(--white); color: var(--navy); }
.download .btn-store.disabled { background: rgba(255,255,255,0.18); color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.22); }
.download-phones { position: relative; min-height: 500px; display: flex; justify-content: center; align-items: center; }
.download-phones .phone { transform: rotate(-6deg); }

/* ========== Footer ========== */
footer { background: #061A30; color: rgba(255,255,255,0.7); padding: 70px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-brand .brand-name { color: var(--white); }
.footer-tagline { margin: 16px 0 22px; color: rgba(255,255,255,0.6); max-width: 280px; font-size: 14px; }
.socials { display: flex; gap: 10px; }
.social {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.8);
  transition: background .2s, color .2s, transform .2s;
}
.social:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-contact li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: rgba(255,255,255,0.65);
}
.footer-contact .ic { color: var(--orange); flex-shrink: 0; margin-top: 1px; }
.copyright {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.45);
  flex-wrap: wrap; gap: 10px;
}

/* ========== Reveal animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* ========== Responsive ========== */
@media (max-width: 960px) {
  .hero { padding: 120px 0 80px; }
  .hero .container,
  .download .container,
  .provinces-grid { grid-template-columns: 1fr; gap: 40px; }
  .phone-wrap, .download-phones { min-height: auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .types-scroll { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .nav-menu .nav-link:not(.nav-cta) { display: none; }
  .float-card.f1 { left: 0; top: 0; }
  .float-card.f2 { right: 0; bottom: 0; }
  .float-card.f3 { display: none; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .features-grid { grid-template-columns: 1fr; }
  .types-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }
  .type-card { flex: 0 0 240px; scroll-snap-align: start; }
  .footer-grid { grid-template-columns: 1fr; }
  .copyright { flex-direction: column; align-items: flex-start; }
}
