/* ══════════════════════════════════════════════
   LANDING PAGE CSS
   Black / White / Yellow — high-contrast UI
══════════════════════════════════════════════ */

/* ── NAVBAR ── */
.navbar {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 24px rgba(17,17,17,0.08);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.navbar-logo { text-decoration: none; }

.logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.65rem;
  font-weight: 500;
  color: #000;
  letter-spacing: -1px;
}

.logo-text span { color: #000; }

.navbar-links {
  display: flex;
  gap: 4px;
}

.nav-link {
  color: #111;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.18s ease;
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: #000;
  background: rgba(0,0,0,0.05);
}

.nav-btn {
  background: #F5C400;
  color: #111;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 6px;
  letter-spacing: 0.03em;
  transition: all 0.18s ease;
  box-shadow: 0 4px 16px rgba(245,196,0,0.30);
}

.nav-btn:hover {
  background: #d4a800;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000; /* black hamburger */
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Mobile menu */

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #000;
  border-top: 1px solid #111;
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  color: #fff;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: all 0.15s ease;
}

.mobile-link:hover {
  background: #111;
  color: #fff;
}

.mobile-admin {
  color: #F5C400;
  font-weight: 700;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero { display: flex; flex-direction: column; background: #fff; }
.hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 48px 20px 36px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  background: #fff;
  width: 100%;
}
.hero-text-col {
  flex: 1; z-index: 2; padding-right: 8px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fffde7;
  color: #111111;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid #fde68a;
  margin-bottom: 20px;
  animation: fadeUp 0.5s ease both;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.hero-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(1.9rem, 7vw, 2.8rem);
  font-weight: 800;
  color: #111111;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  color: #4b5563;
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 28px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-send-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #111111;
  color: #F5C400;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 24px;
  border-radius: 10px;
  text-decoration: none;
  width: 100%;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 6px 24px rgba(17,17,17,0.35);
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-send-btn span { font-size: 1.3rem; font-weight: 300; }
.hero-send-btn:hover { background: #222222; transform: translateY(-2px); }

.hero-graphic-col {
  flex-shrink: 0; width: 140px; height: 220px;
  position: relative; margin-right: -20px; margin-top: -10px;
}
.hero-ring {
  width: 260px; height: 260px;
  position: absolute; top: -30px; right: -40px;
  animation: ringReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
  transform-origin: 75% 25%;
}
@keyframes ringReveal {
  from { opacity: 0; transform: rotate(-30deg) scale(0.8); }
  to   { opacity: 1; transform: rotate(0deg) scale(1); }
}
.hero-photo { width: 100%; line-height: 0; overflow: hidden; }
.hero-photo-img {
  width: 100%; height: 300px;
  object-fit: cover; object-position: center 25%; display: block;
  animation: photoReveal 0.9s 0.4s ease both;
}
@keyframes photoReveal {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}
.hero-bottom {
  background: #fff; position: relative; overflow: hidden;
  padding: 36px 20px 44px;
  border-top: 1.5px solid #f3f4f6;
}
.hero-bottom-inner { width: 100%; }
.hero-track-wrap { width: 100%; margin-bottom: 32px; }
.hero-track-label {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.72rem; font-weight: 700; color: #9ca3af;
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px;
}
.hero-track-form {
  display: flex; background: #fff; border-radius: 10px; overflow: hidden;
  border: 2px solid #e5e7eb; margin-bottom: 10px; width: 100%;
}
.track-input-wrap {
  display: flex; align-items: center; flex: 1; padding: 0 14px; gap: 10px;
}
.track-icon { width: 18px; height: 18px; color: #9ca3af; flex-shrink: 0; }
.hero-track-form input {
  flex: 1; border: none; outline: none;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: #1f2937; background: transparent;
  padding: 17px 0; letter-spacing: 0.03em; min-width: 0;
}
.hero-track-form input::placeholder { color: #9ca3af; font-size: 0.85rem; }
.hero-track-btn {
  display: flex; align-items: center; gap: 6px;
  background: #F5C400; color: #111111;
  font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700;
  padding: 0 20px; letter-spacing: 0.06em;
  border: none; cursor: pointer; transition: background 0.18s;
  white-space: nowrap; flex-shrink: 0;
}
.hero-track-btn svg { width: 15px; height: 15px; }
.hero-track-btn:hover { background: #d4a800; }
.hero-track-hint { font-size: 0.76rem; color: #9ca3af; margin-bottom: 32px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; width: 100%;
}
.stat-pill {
  background: #f9fafb; border: 1.5px solid #f3f4f6;
  border-radius: 12px; padding: 16px 10px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; transition: all 0.2s ease;
}
.stat-pill:hover { border-color: #F5C400; background: #fffde7; }
.stat-num {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.4rem; font-weight: 800; color: #111111;
  line-height: 1; margin-bottom: 4px;
}
.stat-label { font-size: 0.68rem; color: #6b7280; font-weight: 500; line-height: 1.3; letter-spacing: 0.01em; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0.1); }
}

@media (max-width: 480px) {
  .hero-top { padding: 40px 16px 28px; min-height: 240px; }
  .hero-graphic-col { width: 110px; margin-right: -16px; }
  .hero-ring { width: 200px; height: 200px; right: -24px; top: -20px; }
  .hero-photo-img { height: 240px; }
  .hero-bottom { padding: 28px 16px 36px; }
  .stat-num { font-size: 1.15rem; }
  .stat-label { font-size: 0.62rem; }
  .hero-track-btn { padding: 0 14px; font-size: 0.78rem; }
}


/* ── GLOBAL UTILITIES ── */
.container { width: 100%; padding: 0 20px; box-sizing: border-box; }
.section-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800;
  color: #1f2937; margin-bottom: 10px; line-height: 1.2;
}
.section-sub { font-family: 'DM Sans', sans-serif; font-size: 1rem; color: #6b7280; line-height: 1.6; margin-bottom: 0; font-weight: 400; }


/* ── NOTICE SECTION ── */
.notice-section { padding: 40px 24px; background: LightGray; }
.notice-stripe { display: none; }
.notice-card {
  display: flex; gap: 28px;
  background: #FF809;
  border-left: 5px solid #111111;
  border-radius: 0; padding: 24px 28px;
  align-items: center; max-width: 780px; margin: 0 auto;
}
.notice-postmark { flex-shrink: 0; width: 110px; display: flex; align-items: center; justify-content: center; }
.postmark-img { width: 100px; height: 100px; object-fit: contain; filter: grayscale(20%) opacity(0.85); }
.notice-body { flex: 1; }
.notice-body p { font-size: 0.95rem; color: #1a1a1a; line-height: 1.65; margin: 0; font-family: 'DM Sans', sans-serif; }
.notice-body strong { font-weight: 700; color: #1a1a1a; }
.link-blue { color: #111111; font-weight: 500; text-decoration: underline; }
.link-blue:hover { color: #333333; }
@media (max-width: 600px) {
  .notice-card { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .notice-postmark { width: auto; }
}


/* ══════════════════════════════════════════════
   MANAGE SECTION
══════════════════════════════════════════════ */
.manage-section {
  padding: 64px 0; background: #fff; width: 95%; margin: 0 auto;
  animation: fadeInSection 0.8s ease forwards; opacity: 0;
}
@keyframes fadeInSection {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}
.manage-section .container { padding: 0 16px; max-width: 1400px; margin: 0 auto; }
.manage-section .section-title { color: #1f2937; text-align: center; }
.manage-section .section-sub { text-align: center; padding: 0 20px; }
.manage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; width: 100%; }
.manage-card {
  background: var(--card-bg); border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  cursor: pointer; width: 100%;
}
.manage-card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(0,0,0,0.18); }
.manage-grid:hover .manage-card:not(:hover) { opacity: 0.6; }
.manage-card-top { padding: 22px 20px 26px; flex: 1; }
.manage-illus { width: 72px; height: 72px; margin-bottom: 16px; }
.manage-illus svg { width: 72px; height: 72px; }
.manage-card h4 { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.manage-card p { font-size: 0.88rem; color: rgba(255,255,255,0.85); line-height: 1.6; margin: 0; font-weight: 300; }
.manage-card-footer { background: var(--card-footer); padding: 16px 20px; }
.manage-card-footer a { display: flex; align-items: center; justify-content: space-between; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600; color: #fff; text-decoration: none; transition: opacity 0.2s ease; }
.manage-card-footer a:hover { opacity: 0.85; }
.manage-card-footer a span { font-size: 1.15rem; font-weight: 400; }
@media (max-width: 480px) {
  .manage-section { width: 95%; padding: 48px 0; }
  .manage-grid { grid-template-columns: 1fr; gap: 16px; }
  .manage-card-top { padding: 18px 16px 20px; }
  .manage-card h4 { font-size: 1rem; }
  .manage-card p { font-size: 0.85rem; }
}


/* ── BUSINESS SECTION ── */
.business-section { background: #fff; padding: 72px 0 56px; }
.business-section .container { text-align: center; margin-bottom: 48px; }
.biz-item { max-width: 620px; margin: 0 auto 72px; padding: 0 24px; }
.biz-item:last-child { margin-bottom: 0; }
.biz-img-full { width: 100%; border-radius: 6px; overflow: hidden; margin-bottom: 32px; }
.biz-img-full img { width: 100%; height: 340px; object-fit: cover; object-position: center; display: block; }
.biz-text { text-align: center; padding: 0 12px; }
.biz-text h3 { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; font-size: clamp(1.3rem, 3vw, 1.65rem); font-weight: 400; color: #1a1a1a; line-height: 1.3; margin-bottom: 16px; letter-spacing: -0.01em; }
.biz-text h3 sup { font-size: 0.55em; vertical-align: super; font-weight: 400; }
.biz-text p { font-size: 1rem; color: #4b5563; line-height: 1.7; margin-bottom: 20px; font-weight: 300; }
.biz-link { display: inline-block; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; font-size: 0.82rem; font-weight: 700; color: #111111; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; border-bottom: 2px solid #111111; padding-bottom: 2px; transition: all 0.18s; }
.biz-link:hover { color: #F5C400; border-color: #F5C400; }
@media (max-width: 768px) { .business-section { padding: 48px 0 40px; } .biz-item { margin-bottom: 52px; padding: 0 16px; } .biz-img-full img { height: 260px; } .biz-text { padding: 0; } }
@media (max-width: 480px) { .biz-img-full img { height: 220px; } .biz-text h3 { font-size: 1.2rem; } }


/* ══════════════════════════════════════════════
   SERVICES CAROUSEL
══════════════════════════════════════════════ */
.carousel-section { background: #fff; padding: 64px 0 48px; overflow: hidden; position: relative; }
.carousel-wrapper { display: flex; align-items: center; justify-content: center; gap: 0; position: relative; max-width: 680px; margin: 0 auto; padding: 0 64px; }
.carousel-track-container { overflow: hidden; width: 100%; border-radius: 4px; }
.carousel-track { display: flex; transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1); will-change: transform; }
.carousel-slide { min-width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; }
.carousel-slide.animating-in { animation: slideIn 0.6s cubic-bezier(0.77, 0, 0.175, 1) both; }
@keyframes slideIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.slide-image { width: 100%; max-width: 460px; height: 280px; border-radius: 8px; overflow: hidden; margin-bottom: 36px; position: relative; box-shadow: 0 12px 40px rgba(0,0,0,0.12); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.slide-image:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(17,17,17,0.18); }
.slide-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.6s ease; }
.slide-image:hover img { transform: scale(1.04); }
.slide-title { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; font-size: clamp(2rem, 6vw, 2.8rem); font-weight: 800; color: #111111; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; transition: opacity 0.4s ease; }
.slide-desc { font-family: 'DM Sans', sans-serif; font-size: 1rem; color: #4b5563; line-height: 1.75; max-width: 420px; margin: 0 auto 36px; font-weight: 400; }
.slide-desc sup { font-size: 0.55em; vertical-align: super; }
.slide-btn { display: block; width: 100%; max-width: 460px; background: #111111; color: #F5C400; font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; padding: 18px 32px; border-radius: 8px; border: none; cursor: pointer; letter-spacing: 0.03em; transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; box-shadow: 0 6px 24px rgba(17,17,17,0.3); }
.slide-btn:hover { background: #F5C400; color: #111111; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,196,0,0.35); }
.slide-btn:active { transform: translateY(0); }
.carousel-arrow { position: absolute; top: 38%; transform: translateY(-50%); z-index: 10; width: 48px; height: 48px; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.2s ease, opacity 0.2s ease; opacity: 0.45; padding: 0; }
.carousel-arrow svg { width: 36px; height: 36px; color: #111111; stroke-width: 2.5; }
.carousel-prev { left: 4px; }
.carousel-next { right: 4px; }
.carousel-arrow:hover { opacity: 1; transform: translateY(-50%) scale(1.15); }
.carousel-arrow:active { transform: translateY(-50%) scale(0.95); }
.carousel-dots { display: flex; justify-content: center; gap: 12px; margin-top: 36px; }
.dot { width: 14px; height: 14px; border-radius: 50%; border: 2.5px solid #111111; background: transparent; cursor: pointer; transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease; padding: 0; }
.dot.active { background: #111111; transform: scale(1.2); }
.dot:hover:not(.active) { border-color: #F5C400; transform: scale(1.1); }
.carousel-progress { width: 100%; max-width: 460px; height: 3px; background: #fef9c3; margin: 20px auto 0; border-radius: 2px; overflow: hidden; }
.carousel-progress-bar { height: 100%; background: linear-gradient(90deg, #111111, #F5C400); border-radius: 2px; width: 0%; transition: width 0.1s linear; }
@media (max-width: 768px) { .carousel-wrapper { padding: 0 48px; } .carousel-arrow svg { width: 28px; height: 28px; } .slide-image { height: 220px; } .slide-title { font-size: 2rem; } }
@media (max-width: 480px) { .carousel-wrapper { padding: 0 40px; } .carousel-section { padding: 40px 0 36px; } .slide-image { height: 190px; } .slide-title { font-size: 1.7rem; } .slide-desc { font-size: 0.92rem; } .slide-btn { padding: 16px 24px; font-size: 0.92rem; } .dot { width: 12px; height: 12px; } }


/* ── CTA BANNER ── */
.cta-banner { background: #fafafa; padding: 56px 24px; }
.cta-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: flex-start; border-radius: 16px; overflow: hidden; min-height: 380px; box-shadow: 0 8px 32px rgba(0,0,0,0.10); }
.cta-image-side { flex: 1.5; overflow: hidden; position: relative; }
.cta-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.cta-content-side { flex: 1; padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; text-align: left; background: #fff; }
.cta-content-side h2 { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; font-size: clamp(1.25rem, 2.2vw, 1.7rem); font-weight: 800; color: #111111; line-height: 1.3; margin-bottom: 10px; z-index: 1; text-align: left; }
.cta-content-side p { font-family: 'Syne', sans-serif; font-size: 0.95rem; color: #333; line-height: 1.7; margin-bottom: 30px; z-index: 1; text-align: left; }
.cta-btn { display: inline-block; border: 2px solid #111111; background: #fff; color: #111111; font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; padding: 13px 28px; border-radius: 4px; letter-spacing: 0.04em; white-space: nowrap; transition: all 0.2s ease; box-shadow: 0 6px 20px rgba(245,196,0,0.20); cursor: pointer; }
.cta-btn:hover { background: #111111; color: #F5C400; }
@media (max-width: 900px) { .cta-banner { padding: 32px 16px; } .cta-inner { flex-direction: column; min-height: auto; border-radius: 12px; } .cta-image-side { height: 260px; flex: none; } .cta-content-side { padding: 36px 28px; } }
@media (max-width: 600px) { .cta-banner { padding: 24px 16px; } .cta-inner { border-radius: 10px; } .cta-image-side { height: 200px; } .cta-content-side { padding: 28px 22px; } .cta-content-side h2 { font-size: 1.2rem; } }


/* ── FOOTER ── */
.footer { background: #fff; padding: 56px 24px 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: flex; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid #e4e4e7; }
.footer-brand { max-width: 260px; flex-shrink: 0; }
.footer-logo { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; font-size: 1.5rem; font-weight: 800; color: #111111; letter-spacing: -0.5px; margin-bottom: 14px; }
.footer-logo span { color: #F5C400; }
.footer-brand p { font-size: 0.85rem; color: #6b7280; line-height: 1.65; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; background: #e4e4e7; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #6b7280; transition: all 0.18s; }
.social-link:hover { background: #111111; color: #F5C400; }
.social-link svg { width: 16px; height: 16px; }
.footer-cols { flex: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col h5 { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; color: #111111; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: #4b5563; transition: color 0.15s; }
.footer-col ul li a:hover { color: #111111; }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding: 18px 0; font-size: 0.8rem; color: #9ca3af; }


/* ── SERVICE TABS ── */
.service-tabs { background: #fff; box-shadow: 0 4px 24px rgba(0,0,0,0.07); position: relative; z-index: 10; }
.tab-bar { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid #e5e7eb; }
.tab-item { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 22px 16px; cursor: pointer; transition: all 0.2s; border-right: 1px solid #e5e7eb; background: #f9fafb; }
.tab-item:last-child { border-right: none; }
.tab-item:hover { background: #fffde7; }
.tab-item.active { background: #111111; }
.tab-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
.tab-icon svg { width: 32px; height: 32px; color: #6b7280; }
.tab-item.active .tab-icon svg { color: #F5C400; }
.tab-item span { font-family: 'Syne', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; color: #4b5563; text-align: center; }
.tab-item.active span { color: #F5C400; }
.tab-panels { padding: 0; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.panel-content { max-width: 680px; margin: 0 auto; padding: 36px 24px; }
.panel-content h3 { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 700; color: #1f2937; margin-bottom: 6px; }
.panel-content p { color: #6b7280; font-size: 0.9rem; margin-bottom: 24px; }
.rate-form, .track-form-panel { display: flex; flex-direction: column; gap: 12px; }
.rate-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-input { width: 100%; padding: 12px 16px; border: 1.5px solid #e5e7eb; border-radius: 7px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: #1f2937; background: #fff; outline: none; transition: border-color 0.18s; }
.form-input:focus { border-color: #111111; }
.track-input-big { font-size: 1rem; padding: 14px 18px; letter-spacing: 0.05em; }
.btn-orange { display: inline-flex; align-items: center; gap: 8px; background: #F5C400; color: #111111; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; font-size: 0.9rem; font-weight: 700; padding: 13px 28px; border-radius: 7px; border: none; cursor: pointer; letter-spacing: 0.04em; transition: all 0.18s; box-shadow: 0 4px 14px rgba(245,196,0,0.30); align-self: flex-start; }
.btn-orange:hover { background: #d4a800; transform: translateY(-1px); }
.ship-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }
.ship-option { border: 1.5px solid #e5e7eb; border-radius: 10px; padding: 18px 12px; text-align: center; cursor: pointer; transition: all 0.18s; }
.ship-option:hover { border-color: #111111; background: #fffde7; }
.ship-icon { font-size: 1.6rem; margin-bottom: 8px; }
.ship-option h4 { font-size: 0.85rem; font-weight: 700; color: #1f2937; margin-bottom: 3px; }
.ship-option p { font-size: 0.75rem; color: #6b7280; margin: 0; }
.hint-text { font-size: 0.82rem; color: #9ca3af; margin-top: 10px; margin-bottom: 0; }
.link-orange { color: #F5C400; font-weight: 600; }
.link-orange:hover { text-decoration: underline; }


/* ── GLOBAL RESPONSIVE ── */
@media (max-width: 900px) {
  .desktop-only { display: none !important; }
  .hamburger { display: flex; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-brand { max-width: 100%; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-icon { display: none; }
}
@media (max-width: 640px) {
  .hero-stats { gap: 8px; }
  .stat-pill { padding: 8px 16px; }
  .rate-row { grid-template-columns: 1fr; }
  .ship-options { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}


/* ══════════════════════════════════════════════
   SCROLL ANIMATIONS — same structure, recoloured
══════════════════════════════════════════════ */

@keyframes revealUp { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: translateY(0); } }
@keyframes revealLeft { from { opacity: 0; transform: translateX(-44px); } to { opacity: 1; transform: translateX(0); } }
@keyframes revealRight { from { opacity: 0; transform: translateX(44px); } to { opacity: 1; transform: translateX(0); } }
@keyframes revealScale { from { opacity: 0; transform: scale(0.93); } to { opacity: 1; transform: scale(1); } }
@keyframes revealFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes statShimmer { 0% { opacity: 0; transform: translateY(12px) scale(0.88); filter: blur(4px); } 60% { filter: blur(0); } 100% { opacity: 1; transform: none; filter: blur(0); } }
@keyframes dotPop { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }

@supports (animation-timeline: view()) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-fade {
    animation-fill-mode: both; animation-duration: 0.001ms;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-timeline: view(); animation-range: entry 0% entry 35%;
  }
  .reveal       { animation-name: revealUp;    animation-duration: 700ms; }
  .reveal-left  { animation-name: revealLeft;  animation-duration: 700ms; }
  .reveal-right { animation-name: revealRight; animation-duration: 700ms; }
  .reveal-scale { animation-name: revealScale; animation-duration: 650ms; }
  .reveal-fade  { animation-name: revealFade;  animation-duration: 750ms; }
  .delay-1 { animation-delay: calc(-1 * 0.10s) !important; }
  .delay-2 { animation-delay: calc(-1 * 0.20s) !important; }
  .delay-3 { animation-delay: calc(-1 * 0.30s) !important; }
  .delay-4 { animation-delay: calc(-1 * 0.40s) !important; }
  .delay-5 { animation-delay: calc(-1 * 0.50s) !important; }
  .stagger-children > * { animation-name: revealUp; animation-duration: 600ms; animation-fill-mode: both; animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1); animation-timeline: view(); animation-range: entry 0% entry 40%; }
  .stagger-children > *:nth-child(1) { animation-delay: 0s; }
  .stagger-children > *:nth-child(2) { animation-delay: 0.1s; }
  .stagger-children > *:nth-child(3) { animation-delay: 0.2s; }
  .stagger-children > *:nth-child(4) { animation-delay: 0.3s; }
  .stagger-children > *:nth-child(5) { animation-delay: 0.4s; }
  .stagger-children > *:nth-child(6) { animation-delay: 0.5s; }
  .stagger-children > *:nth-child(n+7) { animation-delay: 0.6s; }
  .section-fade { animation-name: revealFade; animation-duration: 800ms; animation-fill-mode: both; animation-timing-function: ease; animation-timeline: view(); animation-range: entry 0% entry 30%, exit 70% exit 100%; }
  .stagger-children .stat-num { animation-name: statShimmer; animation-duration: 800ms; animation-fill-mode: both; animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1); animation-timeline: view(); animation-range: entry 5% entry 45%; }
  .carousel-dots .dot { animation-name: dotPop; animation-duration: 450ms; animation-fill-mode: both; animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1); animation-timeline: view(); animation-range: entry 10% entry 50%; }
  .carousel-dots .dot:nth-child(2) { animation-delay: 0.07s; }
  .carousel-dots .dot:nth-child(3) { animation-delay: 0.14s; }
  .carousel-dots .dot:nth-child(4) { animation-delay: 0.21s; }
  .carousel-dots .dot:nth-child(5) { animation-delay: 0.28s; }
  .footer-cols-animate .footer-col { animation-name: revealUp; animation-duration: 550ms; animation-fill-mode: both; animation-timing-function: ease; animation-timeline: view(); animation-range: entry 0% entry 40%; }
  .footer-cols-animate .footer-col:nth-child(2) { animation-delay: 0.1s; }
  .footer-cols-animate .footer-col:nth-child(3) { animation-delay: 0.2s; }
  .footer-cols-animate .footer-col:nth-child(4) { animation-delay: 0.3s; }
  .parallax-slow { animation-duration: 1000ms !important; }
  .parallax-fast { animation-duration:  450ms !important; }
  .navbar { transition: box-shadow 0.3s ease, background 0.3s ease; }
  .navbar-inner { transition: height 0.3s ease; }
  .navbar.scrolled { background: #222222; box-shadow: 0 4px 32px rgba(17,17,17,0.45); }
  .navbar.scrolled .navbar-inner { height: 56px; }
}

@supports not (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); will-change: opacity, transform; }
    .reveal-left { opacity: 0; transform: translateX(-44px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); will-change: opacity, transform; }
    .reveal-right { opacity: 0; transform: translateX(44px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); will-change: opacity, transform; }
    .reveal-scale { opacity: 0; transform: scale(0.93); transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1); will-change: opacity, transform; }
    .reveal-fade { opacity: 0; transition: opacity 0.75s ease; will-change: opacity; }
    .reveal.in-view, .reveal-left.in-view, .reveal-right.in-view, .reveal-scale.in-view, .reveal-fade.in-view { opacity: 1; transform: none; }
    .stagger-children > * { opacity: 0; transform: translateY(28px); transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); will-change: opacity, transform; }
    .stagger-children.in-view > *:nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
    .stagger-children.in-view > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.1s; }
    .stagger-children.in-view > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.2s; }
    .stagger-children.in-view > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.3s; }
    .stagger-children.in-view > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.4s; }
    .stagger-children.in-view > *:nth-child(6) { opacity:1; transform:none; transition-delay:0.5s; }
    .stagger-children.in-view > *:nth-child(n+7) { opacity:1; transform:none; transition-delay:0.6s; }
    .section-fade { opacity: 0; transform: translateY(24px); transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1); will-change: opacity, transform; }
    .section-fade.in-view { opacity: 1; transform: none; }
    .section-fade.out-view { opacity: 0; transform: translateY(-20px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .delay-1 { transition-delay: 0.10s !important; }
    .delay-2 { transition-delay: 0.20s !important; }
    .delay-3 { transition-delay: 0.30s !important; }
    .delay-4 { transition-delay: 0.40s !important; }
    .delay-5 { transition-delay: 0.50s !important; }
    .stagger-children.in-view .stat-num { animation: statShimmer 0.8s cubic-bezier(0.22,1,0.36,1) both; }
    .carousel-dots.in-view .dot { animation: dotPop 0.45s cubic-bezier(0.34,1.56,0.64,1) both; }
    .carousel-dots.in-view .dot:nth-child(2) { animation-delay:0.07s; }
    .carousel-dots.in-view .dot:nth-child(3) { animation-delay:0.14s; }
    .carousel-dots.in-view .dot:nth-child(4) { animation-delay:0.21s; }
    .carousel-dots.in-view .dot:nth-child(5) { animation-delay:0.28s; }
    .footer-cols-animate .footer-col { opacity:0; transform:translateY(20px); transition:opacity 0.55s ease,transform 0.55s ease; }
    .footer-cols-animate.in-view .footer-col:nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
    .footer-cols-animate.in-view .footer-col:nth-child(2) { opacity:1; transform:none; transition-delay:0.1s; }
    .footer-cols-animate.in-view .footer-col:nth-child(3) { opacity:1; transform:none; transition-delay:0.2s; }
    .footer-cols-animate.in-view .footer-col:nth-child(4) { opacity:1; transform:none; transition-delay:0.3s; }
    .navbar { transition: box-shadow 0.3s ease, background 0.3s ease; }
    .navbar-inner { transition: height 0.3s ease; }
    .navbar.scrolled { background: #222222; box-shadow: 0 4px 32px rgba(17,17,17,0.45); }
    .navbar.scrolled .navbar-inner { height: 56px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .reveal,.reveal-left,.reveal-right,.reveal-scale,.reveal-fade { opacity:0; transform:none !important; transition:opacity 0.4s ease; }
    .reveal.in-view,.reveal-left.in-view,.reveal-right.in-view,.reveal-scale.in-view,.reveal-fade.in-view { opacity:1; }
    .stagger-children > * { opacity:0; transform:none !important; transition:opacity 0.35s ease; }
    .stagger-children.in-view > * { opacity:1; }
    .section-fade { opacity:0; transition:opacity 0.35s ease; }
    .section-fade.in-view { opacity:1; }
    .section-fade.out-view { opacity:0; }
    .footer-cols-animate .footer-col { opacity:0; transition:opacity 0.3s ease; }
    .footer-cols-animate.in-view .footer-col { opacity:1; }
  }
  .no-js .reveal, .no-js .reveal-left, .no-js .reveal-right, .no-js .reveal-scale, .no-js .reveal-fade,
  .no-js .stagger-children > *, .no-js .section-fade, .no-js .footer-cols-animate .footer-col {
    opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important;
  }
}

.partners-section {
  background: #ebebeb;
  padding: 80px 0 70px;
  overflow: hidden;
}

.partners-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 
             'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 800;
  color: #111;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
  padding: 0 24px;
}

/* ── Marquee row wrapper ── */
.mq-row {
  width: 100%;
  overflow: hidden;
  padding: 14px 0;
  margin-bottom: 26px;

  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.mq-row:last-child { margin-bottom: 0; }

.mq-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0;
}

/* ── Scroll Animations ── */
.mq-row.right .mq-track { animation: mScroll 36s linear infinite; }
.mq-row.left  .mq-track { animation: mScroll 32s linear infinite reverse; }
.mq-row.slow  .mq-track { animation: mScroll 52s linear infinite; }

@keyframes mScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.mq-row:hover .mq-track { animation-play-state: paused; }

/* ── Individual logo item ── */
.logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px;   /* bigger spacing */
  flex-shrink: 0;
}

/* ── Logos ── */
.logo-item img {
  height: 40px;   /* bigger logos */
  width: auto;
  max-width: 160px;
  object-fit: contain;

  filter: grayscale(100%);
  opacity: 0.7;

  transition: 
    transform 0.3s ease,
    filter 0.3s ease,
    opacity 0.3s ease;

  display: block;
}

/* Middle row bigger */
.mq-row.mid .logo-item img {
  height: 52px;
  max-width: 190px;
  opacity: 0.85;
}

/* Small row */
.mq-row.sm .logo-item img {
  height: 32px;
  max-width: 120px;
  opacity: 0.55;
}

/* Hover effect */
.logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

/* ═══════════════════════════════════════════
   STATS COUNT-UP SECTION
   Layout exactly matching the screenshot:
   [6K+]    [25+]
       [9K+]
   [100K+]  [5M+]
       [2M+]
═══════════════════════════════════════════ */
.stats-section {
  background: #fff;
  padding: 72px 24px 80px;
}

.stats-grid {
  max-width: 580px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 56px;
}

/* Items that span full width (9K+, 2M+) */
.s-item.full {
  grid-column: 1 / -1;
}

.s-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.s-num {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 
             'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(2.6rem, 9vw, 4rem);
  font-weight: 800;
  color: #111;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
  display: block;
}

.s-label {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.8rem, 2.5vw, 0.95rem);
  color: #555;
  font-weight: 400;
  line-height: 1.45;
  max-width: 185px;
}

@media (max-width: 480px) {
  .stats-grid { max-width: 340px; row-gap: 44px; }
  .s-num { font-size: 2.6rem; }
  .logo-item { padding: 0 28px; }
  .logo-item img { height: 22px; }
  .mq-row.mid .logo-item img { height: 28px; }
}
