/* ============================================================
   RePartage — styles.css
   ============================================================ */

/* ---------- Reset & base ---------- */
*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #4caf50;
  --green-light: #e8f5e9;
  --green-mid: #a5d6a7;
  --blue: #1976d2;
  --blue-light: #e3f2fd;
  --blue-mid: #68a1cf;
  --dark: #0f1117;
  --grey-1: #f5f6f8;
  --grey-2: #e6e8ed;
  --grey-3: #d4d8e0;
  --grey-text: #8b8f9e;
  --white: #ffffff;
  --off-white: #f7f8fc;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0, 0, 0, .18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- Nav ---------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: var(-white);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(0, 0, 0, .7);
}

.nav-links a:not(.btn-nav):hover {
  color: var(--green);
}

.btn-nav {
  background: var(--green);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  transition: opacity .2s;
}


.btn-nav:hover {
  opacity: .85;
}

/* ---------- Hero ---------- */
.hero-top {
  max-width: 1200px;
  text-align: center;
  padding: 72px 48px 0;
  margin: 0px auto;
  padding-top: 140px;
}

.eyebrow,
.sec-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.hero-top h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 20px;
}

.hero-top h1 em {
  font-style: normal;
  color: var(--green);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, .65);
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: opacity .2s, transform .2s;
}

.btn-primary:hover {
  opacity: .88;
  transform: translateY(-2px);
}

.btn-ghost {
  border: 2px solid rgba(0, 0, 0, .25);
  color: var(--dark);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: border-color .2s;
}

.btn-ghost:hover {
  border-color: rgba(0, 0, 0, .6);
}

/* ---------- Dual section ---------- */
.dual-section {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 80px 0px 0px;
  margin: 0px auto;
  gap: 40px;
  align-items: start;
}

.phone-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.col-header {
  text-align: center;
  max-width: 340px;
}

.col-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.col-badge-green {
  background: var(--green-light);
  color: #2e7d32;
}

.col-badge-blue {
  background: var(--blue-light);
  color: #0d47a1;
}

.col-title {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.col-desc {
  font-size: .95rem;
  color: rgba(0, 0, 0, .6);
  line-height: 1.6;
}

/* Phone frame */
.phone-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.phone-frame {
  width: 220px;
  height: 440px;
  background: #1a1d26;
  border-radius: 36px;
  border: 2px solid rgba(0, 0, 0, .12);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .5);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 10px;
  background: #0f1117;
  border-radius: 10px;
  z-index: 10;
}

.phone-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity .5s ease;
}

.screen.active {
  opacity: 1;
}

.screen img {
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: contain;
  object-position: top;
  transition: transform 2800ms linear;
  will-change: transform;
}

.glow-green {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(76, 175, 80, .35), transparent 70%);
  border-radius: 50%;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(20px);
  pointer-events: none;
}

.glow-blue {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(25, 118, 210, .35), transparent 70%);
  border-radius: 50%;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(20px);
  pointer-events: none;
}

/* Dots */
.phone-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  opacity: .35;
  transition: opacity .2s, transform .2s;
  background: var(--white);
}

.dot.active {
  opacity: 1;
  transform: scale(1.3);
}

.dot-g.active {
  background: var(--green);
}

.dot-b.active {
  background: var(--blue);
}

/* Screen label */
.screen-label {
  text-align: center;
}

.sl-title {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.sl-desc {
  font-size: .78rem;
  color: var(--grey-text);
}

/* Play overlay */
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  background: rgba(0, 0, 0, .25);
  transition: background .3s;
}

.play-overlay:hover {
  background: rgba(0, 0, 0, .1);
}

.play-overlay.hidden {
  display: none;
}

.play-btn {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, .9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
}

.play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #1976d2;
  margin-left: 4px;
}

.play-icon.pause {
  width: 14px;
  height: 18px;
  border: none;
  background: linear-gradient(to right, #1976d2 4px, transparent 4px, transparent 10px, #1976d2 10px);
}

/* ---------- Countdown ---------- */
.countdown-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 24px;
  background: rgba(0, 0, 0, .03);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: var(--radius);
  min-width: 220px;
  text-align: center;
  align-self: center;
}

.cd-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-text);
}

.cd-grid {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cd-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
}

.cd-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--dark);
}

.cd-unit {
  font-size: .6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey-text);
  margin-top: 4px;
}

.cd-sep {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--grey-text);
  line-height: 1;
  margin-bottom: 12px;
}

.cd-date {
  font-size: .85rem;
  color: rgba(0, 0, 0, .6);
}

.cd-stores {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.cd-store {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: .8rem;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(0, 0, 0, .06);
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 8px;
  color: rgba(0, 0, 0, .7);
}

/* ---------- Mission ---------- */
.mission {
  background: var(--grey-1);
  padding: 100px 48px;
  margin-top: 80px;
}

.mission-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mission-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.mission-text {
  font-size: 1rem;
  color: rgba(0, 0, 0, .65);
  line-height: 1.8;
  margin-bottom: 56px;
}

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

.ms-cell {
  background: rgba(0, 0, 0, .04);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ms-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
}

.ms-label {
  font-size: .85rem;
  color: rgba(0, 0, 0, .55);
  line-height: 1.4;
}

/* ---------- Team ---------- */
.team {
  padding: 100px 48px;
}

.team-inner {
  max-width: 960px;
  margin: 0 auto;
}

.team-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.team-intro {
  font-size: 1rem;
  color: rgba(0, 0, 0, .6);
  max-width: 640px;
  margin-bottom: 48px;
}

/* Featured card */
.tm-featured {
  position: relative;
  background: rgba(76, 175, 80, .06);
  border: 1px solid rgba(76, 175, 80, .2);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
  padding: 40px;
}

.tm-fea-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(76, 175, 80, .2), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.tm-fea-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  pointer-events: none;
  width: 100%;
}

.tm-fea-content {
  position: relative;
  z-index: 1;
}

.tm-fea-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tm-badge {
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(0, 0, 0, .08);
  color: rgba(0, 0, 0, .7);
}

.tm-badge-gold {
  background: rgba(255, 193, 7, .15);
  color: #ffc107;
}

.tm-star {
  margin-right: 4px;
}

.tm-fea-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.tm-avatars-duo {
  display: flex;
  align-items: center;
}

.tm-av-duo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  border: 2px solid var(--dark);
}


.tm-av-1 {
  background: var(--green);
  color: #fff;
  left: 0;
  z-index: 2;
}

.tm-av-2 {
  background: #2e7d32;
  color: #fff;
  left: 24px;
  z-index: 1;
  margin-left: -18px
}

.tm-fea-name {
  font-size: 1.5rem;
  font-weight: 800;
}

.tm-amp {
  color: var(--green);
}

.tm-fea-role {
  font-size: .85rem;
  color: rgba(0, 0, 0, .55);
}

.tm-fea-bio {
  font-size: .95rem;
  color: rgba(0, 0, 0, .7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.tm-fea-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tm-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  background: rgba(76, 175, 80, .12);
  border: 1px solid rgba(76, 175, 80, .2);
  border-radius: 50px;
  color: var(--green-mid);
}

/* Team grid */
.tm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tm-card {
  position: relative;
  background: rgba(0, 0, 0, .03);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: var(--radius);
  padding: 28px 24px;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}

.tm-card:hover {
  border-color: rgba(0, 0, 0, .18);
  transform: translateY(-3px);
}

.tm-card-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: var(--card-tint);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.tm-card-deco {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.2rem;
}

.tm-av-card {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.tm-card-name {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.tm-card-role {
  font-size: .82rem;
  font-weight: 600;
  color: var(--card-c);
  margin-bottom: 12px;
}

.tm-card-role span {
  color: var(--grey-text);
}

.tm-card-bio {
  font-size: .85rem;
  color: rgba(0, 0, 0, .6);
  line-height: 1.65;
  margin-bottom: 16px;
}

.tm-card-skill {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--card-bg);
  color: var(--card-c);
}

/* ---------- Timeline ---------- */
.timeline {
  background: var(--grey-1);
  padding: 100px 48px;
}

.timeline-inner {
  max-width: 900px;
  margin: 0 auto;
}

.timeline-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.timeline-intro {
  font-size: 1rem;
  color: rgba(0, 0, 0, .6);
  margin-bottom: 60px;
}

.tl-track {
  position: relative;
  padding: 0 20px;
}

.tl-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0, 0, 0, .08);
  transform: translateX(-50%);
}

.tl-item {
  position: relative;
  display: flex;
  margin-bottom: 48px;
  width: 50%;
}

.tl-left {
  padding-right: 48px;
  justify-content: flex-end;
  text-align: right;
}

.tl-right {
  padding-left: 48px;
  margin-left: 50%;
  justify-content: flex-start;
  text-align: left;
}

.tl-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 8px;
  z-index: 2;
}

.tl-left .tl-dot {
  right: -7px;
}

.tl-right .tl-dot {
  left: -7px;
}

.tl-dot-done {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(76, 175, 80, .2);
}

.tl-dot-current {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(25, 118, 210, .2);
}

.tl-dot-todo {
  background: var(--grey-3);
}

.tl-card {
  background: rgba(0, 0, 0, .03);
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: var(--radius);
  padding: 20px 24px;
  max-width: 340px;
}

.tl-date {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey-text);
  display: block;
  margin-bottom: 8px;
}

.tl-h {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tl-p {
  font-size: .85rem;
  color: rgba(0, 0, 0, .6);
  line-height: 1.6;
  margin-bottom: 12px;
}

.tl-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

.tl-tag-done {
  background: rgba(76, 175, 80, .15);
  color: var(--green);
}

.tl-tag-current {
  background: rgba(20, 70, 120, .15);
  color: var(--blue-mid);
}

.tl-tag-todo {
  background: rgba(0, 0, 0, .06);
  color: var(--grey-text);
}

/* ---------- Features ---------- */
.features {
  padding: 100px 48px;
}

.features-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.sec-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 48px;
}

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

.feat-card {
  background: rgba(0, 0, 0, .03);
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: left;
  transition: border-color .2s, transform .2s;
}

.feat-card:hover {
  border-color: rgba(0, 0, 0, .15);
  transform: translateY(-3px);
}

.feat-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.fi-g {
  background: rgba(76, 175, 80, .12);
}

.fi-b {
  background: rgba(25, 118, 210, .12);
}

.feat-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feat-desc {
  font-size: .88rem;
  color: rgba(0, 0, 0, .6);
  line-height: 1.65;
}

/* ---------- CTA ---------- */
.cta-sect {
  background: linear-gradient(135deg, var(--green) 0%, var(--blue-mid) 100%);
  padding: 100px 48px;
  text-align: center;
}

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .75);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.btn-white {
  display: inline-block;
  background: var(--white);
  color: #1b5e20;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  transition: opacity .2s, transform .2s;
}

.btn-white:hover {
  opacity: .9;
  transform: translateY(-2px);
}

/* ---------- Contact ---------- */
.contact {
  padding: 100px 48px;
}

.contact-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-text {
  font-size: .95rem;
  color: rgba(0, 0, 0, .6);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: .9rem;
  color: rgba(0, 0, 0, .65);
}

.ci {
  display: inline-block;
  margin-right: 10px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cf-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cf-label {
  font-size: .82rem;
  font-weight: 700;
  color: rgba(0, 0, 0, .7);
  letter-spacing: .5px;
}

.cf-input {
  background: rgba(0, 0, 0, .05);
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: .95rem;
  color: rgba(0, 0, 0, .3);
  transition: border-color .2s, background .2s;
  outline: none;
}

.cf-input:focus {
  border-color: var(--green);
  background: rgba(76, 175, 80, .05);
}

.cf-input::placeholder {
  color: rgba(0, 0, 0, .3);
}

.cf-select {
  appearance: none;
  cursor: pointer;
}

.cf-textarea {
  resize: vertical;
  min-height: 120px;
}

.cf-foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cf-submit {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
  align-self: flex-start;
}

.cf-submit:hover {
  opacity: .88;
  transform: translateY(-2px);
}

.cf-note {
  font-size: .78rem;
  color: rgba(0, 0, 0, .35);
}

.cf-status {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
}

.cf-status[hidden] {
  display: none;
}

.cf-status.success {
  background: rgba(76, 175, 80, .15);
  color: var(--green);
}

.cf-status.error {
  background: rgba(244, 67, 54, .15);
  color: #ef9a9a;
}

/* ---------- Footer ---------- */
footer {
  background: var(--grey-1);
  border-top: 1px solid rgba(0, 0, 0, .06);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.f-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green);
}

.f-copy {
  font-size: .82rem;
  color: var(--grey-text);
}

.f-links {
  display: flex;
  gap: 20px;
  font-size: .82rem;
  color: var(--grey-text);
}

.f-links a:hover {
  color: var(--white);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  .dual-section {
    grid-template-columns: 1fr;
    padding: 48px 24px 0;
    gap: 32px;
  }

  .countdown-col {
    order: -1;
  }

  .mission,
  .team,
  .timeline,
  .features,
  .contact,
  .cta-sect {
    padding: 64px 24px;
  }

  .mission-stats,
  .tm-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tl-item {
    width: 100%;
  }

  .tl-left,
  .tl-right {
    padding-left: 32px;
    padding-right: 0;
    margin-left: 0;
    text-align: left;
    justify-content: flex-start;
  }

  .tl-left .tl-dot,
  .tl-right .tl-dot {
    left: -7px;
    right: auto;
  }

  .tl-line {
    left: 0;
  }

  .tl-card {
    max-width: 100%;
  }

  footer {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}