/* ============================================================
   LastX — Main Stylesheet
   Light Mode | Premium Design
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --bg: #F7F7FB;
  --bg2: #FFFFFF;
  --bg3: #EFEFF7;
  --surface: #FFFFFF;
  --surface2: #F4F4FA;
  --glass: rgba(255, 255, 255, 0.82);
  --glass2: rgba(255, 255, 255, 0.96);
  --border: rgba(79, 70, 229, 0.10);
  --border2: rgba(79, 70, 229, 0.20);
  --shadow-sm: 0 2px 8px rgba(79, 70, 229, 0.07);
  --shadow: 0 8px 32px rgba(79, 70, 229, 0.10);
  --shadow-lg: 0 20px 60px rgba(79, 70, 229, 0.13);
  --txt: #18182e;
  --txt2: #5a5a7a;
  --txt3: #9898b8;
  --blue: #4F46E5;
  --blue-lt: #EEF2FF;
  --cyan: #0891B2;
  --cyan-lt: #E0F7FC;
  --violet: #7C3AED;
  --violet-lt: #F5F0FF;
  --gold: #D97706;
  --gold-lt: #FEF3C7;
  --green: #059669;
  --green-lt: #ECFDF5;
  --grad: linear-gradient(135deg, #4F46E5, #7C3AED, #0891B2);
  --grad2: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  --r: 14px;
  --r2: 20px;
  --r3: 28px;
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--txt);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg3); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 99px; }

/* ── GRID BACKGROUND ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(79, 70, 229, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 70, 229, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* ── LOADER ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  transition: opacity 0.5s ease;
}
#loader.hide {
  opacity: 0;
  pointer-events: none;
}
.loader-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}
.loader-bar {
  width: 160px;
  height: 3px;
  background: #e8e8f4;
  border-radius: 99px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: var(--grad);
  border-radius: 99px;
  animation: fill 1.4s ease forwards;
}
@keyframes fill {
  from { width: 0; }
  to { width: 100%; }
}

/* ── ORB BLOBS ── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}
.orb1 { width: 700px; height: 700px; background: #c7d2fe; top: -300px; left: -200px; }
.orb2 { width: 500px; height: 500px; background: #ddd6fe; top: 40%; right: -180px; }
.orb3 { width: 420px; height: 420px; background: #bae6fd; bottom: -120px; left: 25%; }

/* ── LAYOUT ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
section { position: relative; z-index: 2; }

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(247, 247, 251, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(79, 70, 229, 0.07);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}
.nav-logo span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  color: var(--txt2);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--grad2);
  border-radius: 99px;
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--grad);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.28);
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79, 70, 229, 0.40);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--txt);
  border-radius: 99px;
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(247, 247, 251, 0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--txt);
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Bricolage Grotesque', sans-serif;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--txt);
  font-size: 1.8rem;
  cursor: pointer;
}

/* ── FOUNDER BANNER ── */
.founder-banner { padding: 120px 0 0; }
.founder-card {
  background: var(--glass2);
  border: 1.5px solid var(--border2);
  border-radius: var(--r3);
  box-shadow: var(--shadow-lg);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
}
.founder-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(79, 70, 229, 0.04), transparent 60%);
  pointer-events: none;
}
.founder-avatar {
  width: 120px; height: 120px; min-width: 120px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 8px 28px rgba(79, 70, 229, 0.30);
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0;
}
.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  display: block;
}
/* Fallback initials shown via pseudo-element if image fails */
.founder-avatar[data-initials]::after {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  background: var(--grad);
}
.founder-avatar::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--grad);
  z-index: -1;
  opacity: 0.2;
  filter: blur(10px);
}
.founder-info { flex: 1; position: relative; z-index: 1; }
.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold-lt);
  border: 1px solid rgba(217, 119, 6, 0.22);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.founder-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--txt);
  margin-bottom: 4px;
}
.founder-title { color: var(--txt2); font-size: 0.95rem; margin-bottom: 12px; }
.founder-tagline {
  font-size: 1.02rem;
  color: var(--txt2);
  font-style: italic;
  margin-bottom: 20px;
  border-left: 3px solid var(--blue);
  padding-left: 14px;
  line-height: 1.65;
}
.founder-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg3);
  border: 1.5px solid var(--border2);
  color: var(--txt2);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 99px;
  text-decoration: none;
  transition: all 0.25s;
}
.social-pill:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.24);
}
.founder-decor {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  opacity: 0.03;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -4px;
  z-index: 0;
  user-select: none;
}

/* ── HERO ── */
.hero { padding: 80px 0 100px; text-align: center; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-lt);
  border: 1px solid rgba(79, 70, 229, 0.20);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 99px;
  margin-bottom: 28px;
}
.hero-eyebrow span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.65); }
}
.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--txt);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.12rem;
  color: var(--txt2);
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--grad);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 99px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.28);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(79, 70, 229, 0.40);
}
.btn-secondary {
  background: #fff;
  color: var(--txt);
  border: 1.5px solid var(--border2);
  padding: 14px 32px;
  border-radius: 99px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.12);
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 72px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1.5px solid var(--border);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { color: var(--txt2); font-size: 0.85rem; margin-top: 4px; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  background: var(--blue-lt);
  border: 1px solid rgba(79, 70, 229, 0.18);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--txt);
  margin-bottom: 14px;
}
.section-sub {
  color: var(--txt2);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── COMPANIES ── */
.companies { padding: 100px 0; }
.company-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r3);
  box-shadow: var(--shadow);
  padding: 48px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.company-card:hover {
  border-color: var(--border2);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.company-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-accent, var(--grad));
  border-radius: var(--r3) var(--r3) 0 0;
}
.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.card-brand { display: flex; align-items: center; gap: 18px; }
.brand-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  flex-shrink: 0;
}
.brand-icon-img {
  padding: 0;
  overflow: hidden;
  background: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
  border: 1.5px solid var(--border) !important;
}
.brand-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}
.brand-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--txt);
  margin-bottom: 2px;
}
.brand-cat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
}
.card-desc {
  font-size: 1.04rem;
  color: var(--txt2);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 680px;
}
.card-body { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.btn-group { display: flex; flex-direction: column; gap: 10px; }
.btn-group-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--txt3);
  margin-bottom: 2px;
}
.app-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg3);
  border: 1.5px solid var(--border);
  color: var(--txt);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}
.store-btn i { font-size: 0.9rem; color: var(--txt2); }
.store-btn:hover {
  background: var(--txt);
  border-color: var(--txt);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.store-btn:hover i { color: #fff; }
.visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-lt);
  border: 1.5px solid rgba(79, 70, 229, 0.2);
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s;
}
.visit-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.24);
}
.card-divider { height: 1.5px; background: var(--border); margin: 28px 0; }

/* Social Icons */
.social-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.social-icon-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--bg3);
  border: 1.5px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--txt2);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s;
}
.social-icon-btn:hover { transform: translateY(-3px); }
.social-icon-btn.tw:hover { background: #1DA1F2; border-color: #1DA1F2; color: #fff; }
.social-icon-btn.ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent; color: #fff;
}
.social-icon-btn.fb:hover { background: #1877F2; border-color: #1877F2; color: #fff; }
.social-icon-btn.yt:hover { background: #FF0000; border-color: #FF0000; color: #fff; }
.social-icon-btn.li:hover { background: #0A66C2; border-color: #0A66C2; color: #fff; }

/* Brand-specific card accents */
.card-lastcup  { --card-accent: linear-gradient(90deg, #F59E0B, #EF4444); }
.card-lastcup  .brand-icon { background: linear-gradient(135deg, #FEF3C7, #FEE2E2); color: #D97706; border: 1.5px solid #FDE68A; }
.card-lastcup  .brand-cat  { background: #FEF3C7; color: #D97706; border: 1px solid #FDE68A; }

.card-lasthub  { --card-accent: linear-gradient(90deg, #10B981, #0891B2); }
.card-lasthub  .brand-icon { background: linear-gradient(135deg, #ECFDF5, #CFFAFE); color: #059669; border: 1.5px solid #A7F3D0; }
.card-lasthub  .brand-cat  { background: #ECFDF5; color: #059669; border: 1px solid #A7F3D0; }

.card-autocab  { --card-accent: linear-gradient(90deg, #4F46E5, #7C3AED); }
.card-autocab  .brand-icon { background: linear-gradient(135deg, #EEF2FF, #F5F0FF); color: #4F46E5; border: 1.5px solid #C7D2FE; }
.card-autocab  .brand-cat  { background: #EEF2FF; color: #4F46E5; border: 1px solid #C7D2FE; }

/* ── ABOUT ── */
.about { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text .section-header { text-align: left; margin-bottom: 20px; }
.about-text .section-header .section-title { font-size: 2.6rem; }
.about-body { color: var(--txt2); font-size: 1.02rem; line-height: 1.85; margin-bottom: 32px; }
.about-pillars { display: flex; flex-direction: column; gap: 14px; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  padding: 18px 22px;
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.pillar:hover {
  border-color: var(--border2);
  transform: translateX(5px);
  box-shadow: var(--shadow);
}
.pillar-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.20);
}
.pillar-name { font-weight: 700; color: var(--txt); margin-bottom: 3px; font-size: 0.98rem; }
.pillar-desc { color: var(--txt2); font-size: 0.88rem; line-height: 1.55; }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vis-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r2);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.vis-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.vis-card:nth-child(1) {
  grid-column: 1 / 3;
  padding: 32px;
  background: linear-gradient(135deg, var(--blue-lt), var(--violet-lt));
}
.vis-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 6px;
}
.vis-label { color: var(--txt2); font-size: 0.88rem; line-height: 1.5; }

/* ── CONTACT ── */
.contact { padding: 100px 0; background: var(--bg3); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  padding: 20px 22px;
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}
.contact-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.20);
}
.contact-item-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--txt3);
  margin-bottom: 4px;
}
.contact-item-val { color: var(--txt); font-size: 0.95rem; font-weight: 500; }
.contact-form {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r3);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 24px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--txt2);
  margin-bottom: 7px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--bg3);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--txt);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.08);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--txt3); }
.form-submit {
  width: 100%;
  background: var(--grad);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.26);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79, 70, 229, 0.38);
}

/* ── FOOTER ── */
footer {
  border-top: 1.5px solid var(--border);
  padding: 64px 0 32px;
  background: var(--surface);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.footer-tagline { color: var(--txt2); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-col-title {
  font-weight: 700;
  color: var(--txt);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--txt2); font-size: 0.88rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1.5px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { color: var(--txt2); font-size: 0.83rem; }
.footer-copy span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* ── 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-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none !important; }
  .hamburger { display: flex; }
  .founder-card { padding: 32px; flex-direction: column; text-align: center; }
  .founder-socials { justify-content: center; }
  .founder-decor { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .card-body { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .founder-card { padding: 24px 20px; }
  .company-card { padding: 28px 20px; }
  .hero { padding: 60px 0 72px; }
  .hero-stats { gap: 32px; }
  .about-visual .vis-card:nth-child(1) { grid-column: 1 / 3; }
  .contact-form { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
.upcoming-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 58, 237, 0.10);
  border: 1px solid rgba(124, 58, 237, 0.25);
  color: #7C3AED;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  animation: badgePulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4);
  position: relative;
  top: -2px;
}

.upcoming-badge i {
  animation: spin 4s linear infinite;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.35);
    background: rgba(124, 58, 237, 0.10);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(124, 58, 237, 0);
    background: rgba(124, 58, 237, 0.18);
  }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.testing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(5, 150, 105, 0.10);
  border: 1px solid rgba(5, 150, 105, 0.25);
  color: #059669;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  position: relative;
  top: -2px;
  animation: testingPulse 2s ease-in-out infinite;
}

.testing-badge i {
  animation: shake 2s ease-in-out infinite;
}

@keyframes testingPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.35);
    background: rgba(5, 150, 105, 0.10);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(5, 150, 105, 0);
    background: rgba(5, 150, 105, 0.18);
  }
}

@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-15deg); }
  75% { transform: rotate(15deg); }
}
.vis-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 14px;
  margin: 0 auto 10px;
  display: block;
}
