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

:root {
  --navy:       #0d2461;
  --navy-dark:  #091840;
  --navy-mid:   #1a3578;
  --red:        #c8102e;
  --red-dark:   #a50d26;
  --green:      #25d366;
  --green-dark: #1da851;
  --white:      #ffffff;
  --off-white:  #f4f6fb;
  --text:       #0d1a3a;
  --text-muted: #5a6380;
  --border:     #dde2ef;
  --radius:     12px;
  --shadow:     0 6px 28px rgba(13,36,97,0.10);
  --shadow-lg:  0 14px 44px rgba(13,36,97,0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1 { font-family: 'Roboto', sans-serif; font-weight: 900; line-height: 1.1; }
h2, h3 { font-family: 'Roboto Slab', serif; font-weight: 700; line-height: 1.25; }

a { color: var(--navy); text-decoration: none; transition: color .25s; }
a:hover { color: var(--red); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── Scroll-reveal ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.reveal-left  { transform: translateX(-36px); }
.reveal.reveal-right { transform: translateX(36px); }
.reveal.revealed     { opacity: 1; transform: translate(0,0); }

/* cards hidden until JS fires */
.info-card, .action-btn, .service-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.info-card.card-visible,
.action-btn.card-visible,
.service-card.card-visible { opacity: 1; transform: translateY(0); }

/* ── Header ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 11px 0;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 12px rgba(13,36,97,0.06);
  transition: box-shadow .3s, padding .3s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(13,36,97,0.14); padding: 7px 0; }

.header-inner { display: flex; align-items: center; justify-content: space-between; }

.logo-img {
  height: 50px; width: auto; display: block; object-fit: contain;
  transition: transform .3s;
}
.logo-img:hover { transform: scale(1.04); }

.top-nav { display: flex; gap: 30px; }
.top-nav a {
  font-size: .82rem; font-weight: 700; color: var(--navy);
  letter-spacing: .07em; text-transform: uppercase;
  padding-bottom: 3px; border-bottom: 2px solid transparent;
  transition: color .25s, border-color .25s;
}
.top-nav a:hover { color: var(--red); border-color: var(--red); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 70% at 50% 110%, rgba(200,16,46,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 20% 10%, rgba(26,53,120,0.5) 0%, transparent 60%),
    linear-gradient(155deg, #060f28 0%, #0d2461 45%, #183070 100%);
}

/* animated grid */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 55px 55px;
  animation: gridDrift 22s linear infinite;
  pointer-events: none;
}
@keyframes gridDrift { from { background-position: 0 0; } to { background-position: 55px 55px; } }

.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(13,36,97,0.3) 0%, transparent 70%);
  pointer-events: none;
}

/* skyline sits at bottom */
.hero-skyline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 230px;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 24px 260px; /* extra bottom so text clears skyline */
  width: 100%;
}

.hero-label {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--white); background: var(--red);
  padding: 7px 22px; border-radius: 99px; margin-bottom: 28px;
  animation: fadeDown .7s ease both, pulse 2.8s ease-in-out 1s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,16,46,.5); }
  50%      { box-shadow: 0 0 0 12px rgba(200,16,46,0); }
}

.hero-title {
  font-size: clamp(2.8rem, 7.5vw, 6.2rem);
  color: var(--white); font-weight: 900;
  letter-spacing: -.02em; margin-bottom: 18px;
  animation: fadeDown .7s .12s ease both;
}
.hero-title span {
  color: var(--red); display: inline-block;
  animation: slideUp .7s .28s ease both;
}

.hero-sub {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(255,255,255,.72); max-width: 520px;
  margin: 0 auto 44px;
  animation: fadeDown .7s .22s ease both;
}

/* ── Countdown ────────────────────────────────────── */
.countdown {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 44px; flex-wrap: wrap;
  animation: fadeDown .7s .32s ease both;
}

.countdown-unit {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 18px 24px; min-width: 90px; text-align: center;
  backdrop-filter: blur(6px);
  transition: background .3s, border-color .3s;
}
.countdown-unit:hover { background: rgba(255,255,255,.12); border-color: rgba(200,16,46,.5); }

.countdown-unit span {
  display: block; font-family: 'Roboto', sans-serif;
  font-weight: 900; font-size: 2.6rem; color: var(--white); line-height: 1;
}
.countdown-unit span.flip { animation: flipNum .3s ease; }
@keyframes flipNum {
  0%   { transform: translateY(-6px); opacity: .4; }
  100% { transform: translateY(0);    opacity: 1; }
}
.countdown-unit small {
  display: block; font-size: .62rem; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 7px;
}
.countdown-sep {
  font-family: 'Roboto', sans-serif; font-weight: 900;
  font-size: 2.2rem; color: var(--red); margin-bottom: 24px;
  animation: blink 1.2s step-start infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ── Hero buttons ─────────────────────────────────── */
.hero-cta {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeDown .7s .42s ease both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  font-weight: 700; font-size: .88rem; padding: 14px 32px;
  border-radius: var(--radius); border: none; cursor: pointer;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.btn-primary:hover {
  background: var(--red-dark); color: var(--white);
  transform: translateY(-3px); box-shadow: 0 10px 28px rgba(200,16,46,.38);
}
.btn-primary:active { transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white); font-weight: 600;
  font-size: .88rem; padding: 13px 28px; border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.4); cursor: pointer; text-decoration: none;
  transition: border-color .25s, background .25s, transform .25s;
}
.btn-outline:hover {
  border-color: var(--white); background: rgba(255,255,255,.1);
  color: var(--white); transform: translateY(-3px);
}

.btn-navy {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 28px;
  background: var(--navy); color: var(--white); font-weight: 700;
  font-size: .88rem; padding: 13px 28px; border-radius: var(--radius);
  letter-spacing: .05em; text-transform: uppercase; text-decoration: none;
  border: 2px solid var(--navy);
  transition: background .25s, transform .25s, box-shadow .25s;
}
.btn-navy:hover {
  background: var(--red); border-color: var(--red); color: var(--white);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,16,46,.3);
}

/* scroll hint */
.scroll-hint { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 3; animation: fadeDown 1s 1s ease both; }
.scroll-hint span { display: block; width: 22px; height: 38px; border: 2px solid rgba(255,255,255,.3); border-radius: 99px; position: relative; }
.scroll-hint span::after {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--white); border-radius: 99px;
  animation: scrollBob 1.8s ease-in-out infinite;
}
@keyframes scrollBob { 0%,100%{top:6px;opacity:1} 80%{top:18px;opacity:0} }

/* ── Stats Strip ──────────────────────────────────── */
.stats-strip {
  background: var(--navy-dark);
  padding: 40px 0;
  border-bottom: 4px solid var(--red);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 16px 24px;
  min-width: 160px;
  transition: opacity .7s ease, transform .7s ease;
}

.stat-number {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}

.stat-label {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ── Services ─────────────────────────────────────── */
.services {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { font-size: 2.2rem; color: var(--navy); }
.section-header h2::after {
  content: ''; display: block; width: 52px; height: 3px;
  background: var(--red); margin: 12px auto 0;
}
.section-header p { color: var(--text-muted); font-size: 1rem; margin-top: 14px; max-width: 540px; margin-left: auto; margin-right: auto; }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: opacity .5s ease, transform .5s ease, box-shadow .3s, border-color .3s;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--navy);
  transition: background .3s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }
.service-card:hover::before { background: var(--red); }

.service-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: transform .35s ease;
}
.service-card:hover .service-icon { transform: scale(1.12) rotate(-3deg); }

.service-icon svg { width: 28px; height: 28px; }
.service-icon--navy { background: rgba(13,36,97,.1); color: var(--navy); }
.service-icon--red  { background: rgba(200,16,46,.1); color: var(--red); }

.service-card h3 {
  font-size: 1rem; color: var(--navy); margin-bottom: 12px; font-weight: 700;
}
.service-card p {
  font-size: .88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px;
}
.service-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--red); background: rgba(200,16,46,.07);
  padding: 4px 12px; border-radius: 99px;
  border: 1px solid rgba(200,16,46,.18);
}

/* ── About ────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
}

/* Left visual panel */
.about-visual-inner {
  background: var(--navy);
  border-radius: 18px;
  padding: 44px 32px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-visual-inner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
/* red top accent bar */
.about-visual-inner::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--red);
}

.about-logo-img {
  width: 130px; height: auto; object-fit: contain;
  display: block; margin: 0 auto 16px;
  position: relative; z-index: 1;
  transition: transform .4s;
}
.about-logo-img:hover { transform: scale(1.06); }

.about-tagline {
  font-size: .85rem; color: rgba(255,255,255,.6);
  font-style: italic; margin-bottom: 24px;
  position: relative; z-index: 1;
  line-height: 1.5;
}

.about-mini-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; border-top: 1px solid rgba(255,255,255,.1);
  margin: 0 -32px; padding: 18px 32px;
  position: relative; z-index: 1;
}
.ms-item { flex: 1; text-align: center; }
.ms-num {
  display: block; font-family: 'Roboto', sans-serif; font-weight: 900;
  font-size: 1.8rem; color: var(--white); line-height: 1;
}
.ms-lab {
  display: block; font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 4px;
}
.ms-divider { width: 1px; height: 36px; background: rgba(255,255,255,.12); flex-shrink: 0; }

.about-house {
  display: block; width: 100%; margin-top: 4px;
  position: relative; z-index: 1;
}

/* Right text */
.about-text h2 { font-size: 2.2rem; color: var(--navy); margin-bottom: 20px; }
.about-text h2::after {
  content: ''; display: block; width: 0; height: 3px;
  background: var(--red); margin-top: 12px;
  transition: width .8s ease .3s;
}
.revealed h2::after { width: 52px; }

.about-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 1rem; }
.about-text p strong { color: var(--navy); font-weight: 700; }

.services-list {
  list-style: none; margin-top: 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
}
.services-list li {
  position: relative; padding-left: 22px;
  font-size: .9rem; color: var(--text-muted);
  transition: color .2s, padding-left .2s;
}
.services-list li:hover { color: var(--navy); padding-left: 28px; }
.services-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 9px; height: 9px; background: var(--red);
  clip-path: polygon(50% 0%,100% 50%,50% 100%,0% 50%);
  transition: transform .2s;
}
.services-list li:hover::before { transform: scale(1.3); }

/* ── Contact Section ──────────────────────────────── */
.contact-section {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

/* Action buttons */
.action-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.action-btn {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 24px; border-radius: var(--radius);
  text-decoration: none; cursor: pointer; min-width: 0;
  transition: opacity .5s ease, transform .5s ease, box-shadow .25s;
}
.action-btn:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.action-btn:active { transform: translateY(-2px); }

.action-btn--wa    { background: var(--green); }
.action-btn--wa:hover { background: var(--green-dark); color: var(--white); }
.action-btn--call  { background: var(--navy); }
.action-btn--call:hover { background: var(--navy-dark); color: var(--white); }
.action-btn--email { background: var(--red); }
.action-btn--email:hover { background: var(--red-dark); color: var(--white); }

.action-btn__icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: rgba(255,255,255,.2); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, transform .25s;
}
.action-btn:hover .action-btn__icon { background: rgba(255,255,255,.3); transform: scale(1.08); }

.action-btn__body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.action-btn__label {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.8); white-space: nowrap;
}
.action-btn__value {
  font-size: .95rem; font-weight: 700; color: var(--white);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Info cards */
.contact-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}

.info-card {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 26px 24px; background: var(--off-white);
  border: 1px solid var(--border); border-top: 4px solid var(--navy);
  border-radius: var(--radius); min-width: 0;
  transition: opacity .5s ease, transform .5s ease,
              border-top-color .3s, box-shadow .3s;
}
.info-card:hover { border-top-color: var(--red); box-shadow: var(--shadow); transform: translateY(-4px); }
.info-card--fb       { border-top-color: #1877f2; }
.info-card--fb:hover { border-top-color: #1464cc; box-shadow: 0 6px 28px rgba(24,119,242,.14); }

.info-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--navy); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: transform .3s;
}
.info-card:hover .info-icon { transform: scale(1.08); }
.info-icon svg { width: 20px; height: 20px; }
.info-icon--fb  { background: #1877f2; }
.info-icon--red { background: var(--red); }

.info-body { display: flex; flex-direction: column; gap: 6px; min-width: 0; flex: 1; }
.info-body strong {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy); font-weight: 700; white-space: nowrap;
}
.info-body a {
  font-size: .9rem; color: var(--text-muted); display: block;
  overflow-wrap: break-word; word-break: break-word; transition: color .2s;
}
.info-body a:hover { color: var(--red); }

/* Branch grid */
.branch-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 12px; margin-top: 4px;
}
.branch {
  font-size: .87rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 5px; padding: 3px 0;
  transition: color .2s;
}
.branch:hover { color: var(--navy); }
.branch--hq {
  grid-column: 1 / -1; color: var(--navy);
  font-weight: 700; font-size: .9rem;
}
.branch--hq em {
  font-style: normal; font-size: .76rem;
  color: var(--red); font-weight: 400;
}

/* Facebook */
.fb-link { font-size: .88rem; color: var(--text-muted); overflow-wrap: break-word; word-break: break-word; }
.fb-btn {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 10px; padding: 9px 16px;
  background: #1877f2; color: var(--white) !important;
  border-radius: 8px; font-size: .82rem; font-weight: 700;
  width: fit-content; transition: background .25s, transform .25s;
}
.fb-btn:hover { background: #1464cc; transform: translateY(-2px); }

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  border-top: 4px solid var(--red);
  padding: 32px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo-img {
  height: 44px; width: auto; object-fit: contain; display: block;
  filter: brightness(0) invert(1); opacity: .85;
  transition: opacity .3s, transform .3s;
}
.footer-logo-img:hover { opacity: 1; transform: scale(1.04); }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.42); }

/* ── Keyframes ────────────────────────────────────── */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp  { from { opacity: 0; transform: translateY(20px); }  to { opacity: 1; transform: translateY(0); } }

/* ── Responsive — large tablet ────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 280px 1fr; gap: 44px; }
}

/* ── Responsive — tablet ──────────────────────────── */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual-inner { padding: 36px 28px 0; }
  .about-logo-img { width: 110px; }
  .services-list { grid-template-columns: 1fr; }
  .action-btns { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .stat-divider { display: none; }
  .stats-grid { gap: 0; }
  .stat { min-width: 140px; flex: unset; width: 50%; }
}

/* ── Responsive — mobile ──────────────────────────── */
@media (max-width: 640px) {
  .top-nav { display: none; }
  .logo-img { height: 42px; }

  .hero-content { padding: 110px 16px 250px; }
  .hero-title { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .hero-sub { font-size: .95rem; }
  .hero-skyline { height: 180px; }

  .countdown { gap: 6px; }
  .countdown-unit { min-width: 68px; padding: 14px 10px; }
  .countdown-unit span { font-size: 2rem; }
  .countdown-sep { font-size: 1.8rem; }

  .hero-cta { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 320px; justify-content: center; }

  .stats-strip { padding: 28px 0; }
  .stat { width: 50%; padding: 14px 16px; }
  .stat-number { font-size: 1.8rem; }

  .services { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { text-align: left; display: flex; flex-direction: row; gap: 16px; align-items: flex-start; padding: 22px 20px; }
  .service-icon { margin: 0; flex-shrink: 0; width: 52px; height: 52px; }
  .service-card h3 { font-size: .95rem; }

  .about { padding: 64px 0; }
  .section-header h2 { font-size: 1.8rem; }
  .contact-section { padding: 64px 0; }

  .action-btn { padding: 16px 18px; }
  .action-btn__icon { width: 44px; height: 44px; }
  .branch-grid { grid-template-columns: 1fr; }
  .branch--hq { grid-column: 1; }

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
}

/* ── Small mobile ─────────────────────────────────── */
@media (max-width: 380px) {
  .countdown { gap: 4px; }
  .countdown-unit { min-width: 58px; padding: 10px 7px; }
  .countdown-unit span { font-size: 1.6rem; }
  .countdown-sep { font-size: 1.4rem; }
  .stat { width: 100%; }
}
