@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --orange: #F97316;
  --orange-light: #FB923C;
  --orange-dark: #EA580C;
  --orange-glow: rgba(249,115,22,0.18);
  --white: #FFFFFF;
  --off-white: #FAF8F5;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --charcoal: #18181B;
  --accent-teal: #0D9488;
  --accent-amber: #F59E0B;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.14);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--gray-800);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ───── SCROLLBAR ───── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 99px; }

/* ═══════════════════════════════
   NAVBAR
═══════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 72px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo .logo-icon svg { width: 20px; height: 20px; fill: white; }
.nav-logo .brand { color: var(--charcoal); }
.nav-logo .brand span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--orange);
  background: var(--orange-glow);
}

.nav-links a.active {
  color: var(--orange);
  background: var(--orange-glow);
  border-bottom: 2px solid var(--orange);
  font-weight: 600;
}

.nav-cta {
  background: none !important;
  color: var(--gray-600) !important;
  padding: 8px 14px !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none !important;
  box-shadow: none !important;
}

.nav-cta:hover {
  color: var(--orange) !important;
  background: var(--orange-glow) !important;
  transform: none !important;
  box-shadow: none !important;
}

.nav-cta.active {
  color: var(--orange) !important;
  background: var(--orange-glow) !important;
  border-bottom: 2px solid var(--orange) !important;
  font-weight: 600 !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ═══════════════════════════════
   BUTTONS
═══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 8px 24px rgba(249,115,22,0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(249,115,22,0.4);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--charcoal);
  color: white;
}
.btn-dark:hover {
  background: var(--gray-900);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 6% 60px;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(24,24,27,0.92) 0%, rgba(24,24,27,0.75) 50%, rgba(234,88,12,0.65) 100%),
    url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(249,115,22,0.22) 0%, transparent 70%);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.2);
  border: 1px solid rgba(249,115,22,0.4);
  color: var(--orange-light);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.6s ease both;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  color: white;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  opacity: 0.35;
  border-radius: 2px;
}

.hero p {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.75;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-stat { color: white; }
.hero-stat .num {
  font-family: 'Syne', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--orange);
  display: block;
}
.hero-stat .label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

/* ═══════════════════════════════
   SECTIONS
═══════════════════════════════ */
.section { padding: 90px 6%; }
.section-alt { background: var(--white); }

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: clamp(30px, 4vw, 48px);
  color: var(--gray-900);
  margin-bottom: 14px;
}
.section-title p {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 520px;
}
.section-title.centered { text-align: center; }
.section-title.centered p { margin: 0 auto; }

/* ═══════════════════════════════
   SERVICES GRID
═══════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 34px 30px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 54px; height: 54px;
  background: var(--orange-glow);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-size: 26px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--orange);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 19px;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.75;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }

/* ═══════════════════════════════
   TRACKING
═══════════════════════════════ */
.tracking-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.tracking-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.tracking-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 70%);
  bottom: -150px; left: -100px;
  pointer-events: none;
}

.tracking-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative; z-index: 1;
}
.tracking-inner h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: white;
  margin-bottom: 14px;
}
.tracking-inner p { color: rgba(255,255,255,0.6); margin-bottom: 36px; }

.track-form {
  display: flex;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 8px 8px 8px 24px;
  backdrop-filter: blur(12px);
}
.track-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: white;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
}
.track-form input::placeholder { color: rgba(255,255,255,0.4); }
.track-form .btn { flex-shrink: 0; }

.tracking-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.tf {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.tf .icon {
  width: 32px; height: 32px;
  background: rgba(249,115,22,0.18);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

/* ═══════════════════════════════
   ABOUT
═══════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 10px;
}

.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4/3;
  filter: brightness(0.95);
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: white;
  border-radius: 16px;
  padding: 20px 24px;
  font-family: 'Syne', sans-serif;
  box-shadow: 0 12px 30px rgba(249,115,22,0.4);
}
.about-img-badge .big { font-size: 36px; font-weight: 800; display: block; }
.about-img-badge .small { font-size: 12px; opacity: 0.85; }

.about-text h2 {
  font-size: clamp(26px, 3vw, 40px);
  color: var(--gray-900);
  margin-bottom: 20px;
}
.about-text p {
  font-size: 15.5px;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-bullets {
  list-style: none;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-700);
  font-weight: 500;
}
.about-bullets li::before {
  content: '✓';
  width: 26px; height: 26px;
  background: var(--orange-glow);
  color: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

/* ═══════════════════════════════
   FAQ
═══════════════════════════════ */
.faq-grid {
  max-width: 820px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 22px;
}

.faq-item.open .faq-q .arrow {
  transform: rotate(180deg);
  background: var(--orange);
  color: white;
}



.faq-item.open { box-shadow: var(--shadow); border-color: rgba(249,115,22,0.25); }

.faq-q {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  user-select: none;
}
.faq-q .arrow {
  width: 32px; height: 32px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-q .arrow {
  transform: rotate(180deg);
  background: var(--orange);
  color: white;
}


/* ═══════════════════════════════
   REGISTRATION
═══════════════════════════════ */
.registration-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.reg-info h2 {
  font-size: clamp(26px, 3vw, 40px);
  color: var(--gray-900);
  margin-bottom: 16px;
}
.reg-info p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 28px;
}
.reg-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reg-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.reg-step .step-num {
  width: 36px; height: 36px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.reg-step h4 {
  font-size: 15px;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.reg-step p { font-size: 13.5px; color: var(--gray-500); }

.reg-form-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.upload-zone {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}
.upload-zone:hover, .upload-zone.dragover {
  border-color: var(--orange);
  background: var(--orange-glow);
}
.upload-zone input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%; height: 100%;
}
.upload-icon {
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
}
.upload-zone p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 4px;
}
.upload-zone span {
  font-size: 12px;
  color: var(--gray-400);
}
.upload-zone strong {
  color: var(--orange);
  font-weight: 600;
}
.upload-preview {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(249,115,22,0.08);
  border: 1.5px solid rgba(249,115,22,0.3);
  border-radius: 8px;
  margin-top: 10px;
  font-size: 14px;
  color: var(--gray-700);
}
.upload-preview.show { display: flex; }
.upload-preview .file-icon { font-size: 22px; }
.upload-preview .file-info { flex: 1; }
.upload-preview .file-name { font-weight: 600; color: var(--gray-800); display: block; }
.upload-preview .file-size { font-size: 12px; color: var(--gray-400); }
.upload-preview .remove-file {
  background: none; border: none; cursor: pointer; font-size: 18px;
  color: var(--gray-400); padding: 4px; transition: color 0.2s;
}
.upload-preview .remove-file:hover { color: #EF4444; }

.success-banner {
  display: none;
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  border: 1.5px solid #6EE7B7;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 20px;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: #065F46;
  font-weight: 500;
}
.success-banner.show { display: flex; }
.success-banner .check { font-size: 22px; }

/* ═══════════════════════════════
   CONTACT
═══════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.contact-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(249,115,22,0.3);
}
.contact-icon {
  font-size: 34px;
  margin-bottom: 16px;
  display: block;
}
.contact-card h3 {
  font-size: 15px;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
}
.contact-card p {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
}
.contact-card a {
  color: var(--orange);
  transition: color 0.2s;
}
.contact-card a:hover { color: var(--orange-dark); }

.map-placeholder {
  margin-top: 50px;
  border-radius: 20px;
  overflow: hidden;
  height: 360px;
  background: linear-gradient(135deg, var(--gray-200), var(--gray-100));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray-200);
  position: relative;
}
.map-placeholder iframe {
  width: 100%; height: 100%; border: none;
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 60px 6% 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 260px;
  color: rgba(255,255,255,0.55);
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 13px;
  gap: 20px;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.social-link:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

/* ═══════════════════════════════
   PAGE HEADER (inner pages)
═══════════════════════════════ */
.page-header {
  padding: 140px 6% 70px;
  background: linear-gradient(135deg, var(--charcoal) 0%, #27272a 100%);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 65%);
  top: -200px; right: -100px;
}
.page-header-inner { position: relative; z-index: 1; }
.page-header h1 {
  font-size: clamp(34px, 5vw, 56px);
  color: white;
  margin-bottom: 12px;
}
.page-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ═══════════════════════════════
   ANIMATIONS
═══════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .registration-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 5%; }
  .nav-links { display: none; flex-direction: column; gap: 8px; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: white;
    padding: 20px 5%;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
  }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--gray-100); border-radius: 0; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; }
  .track-form { flex-direction: column; border-radius: 16px; padding: 16px; }
  .track-form .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .reg-form-card { padding: 28px 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-img-badge { bottom: 10px; right: 10px; }
}
.still-need {
  background: linear-gradient(135deg, #EA580C, #F97316);
  border-radius: 20px;
  padding: 48px 38px;
  text-align: center;
  margin-top: 56px;
}
.still-need h3 {
  font-size: 26px;
  color: white;
  margin-bottom: 9px;
}
.still-need p {
  color: white;
  margin-bottom: 24px;
  font-size: 16px;
}
.still-need-actions {
  display: flex;
  gap: 13px;
  justify-content: center;
  flex-wrap: wrap;
}


@media (max-width: 480px) {
  .section { padding: 60px 5%; }
  .hero h1 { font-size: 36px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
