/* ===== DESIGN SYSTEM ===== */
:root {
  --color-primary: #F05225;
  --color-accent: #FCA311;
  --color-bg: #FCFBF8;
  --color-text: #1E293B;
  --color-muted: #64748B;
  --color-card-bg: #FFFFFF;
  --color-error: #EF4444;
  --color-success: #10B981;
  --color-whatsapp: #25D366;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --font-main: 'Inter', sans-serif;
  --glow-primary: rgba(240, 82, 37, 0.3);
  --glow-accent: rgba(252, 163, 17, 0.3);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p { color: var(--color-muted); font-size: 14px; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 1rem 0; }
.section-label {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--color-primary);
  margin-bottom: 0.75rem; display: block;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { color: var(--color-muted); max-width: 600px; margin-bottom: 3rem; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.gradient-text {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  /*display: inline-flex; */
  align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: none;
  transition: all var(--transition-normal); position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.15); opacity: 0;
  transition: opacity var(--transition-fast);
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #d94418);
  color: #fff; box-shadow: 0 4px 20px var(--glow-primary);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--glow-primary); }
.btn-accent {
  background: linear-gradient(135deg, var(--color-accent), #e8920a);
  color: #fff; box-shadow: 0 4px 20px var(--glow-accent);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--glow-accent); }
.btn-outline {
  background: transparent; color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }
.btn-ghost {
  background: rgba(240,82,37,0.08); color: var(--color-primary);
}
.btn-ghost:hover { background: rgba(240,82,37,0.15); transform: translateY(-2px); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(252,251,248,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition-normal);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; max-width: 1200px; margin: 0 auto;
}
.nav-logo {
  font-size: 1.5rem; font-weight: 800; color: var(--color-text);
}
.nav-logo span { color: var(--color-primary); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-weight: 500; color: var(--color-muted);
  transition: color var(--transition-fast); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--color-primary);
  transform: scaleX(0); transition: transform var(--transition-fast);
}
.nav-links a:hover, .nav-links a.active { color: var(--color-primary); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 1rem; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--color-text); border-radius: 2px;
  transition: all var(--transition-normal);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--color-card-bg); border-top: 1px solid rgba(0,0,0,0.06);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.75rem 0; font-weight: 500; color: var(--color-muted);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color var(--transition-fast);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--color-primary); }
.mobile-menu .btn { margin-top: 1rem; justify-content: center; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 80px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(240,82,37,0.07) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 20% 80%, rgba(252,163,17,0.06) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.03;
  background-image: linear-gradient(var(--color-text) 1px, transparent 1px),
                    linear-gradient(90deg, var(--color-text) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(240,82,37,0.1); color: var(--color-primary);
  padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem;
  font-weight: 600; margin-bottom: 1.5rem; border: 1px solid rgba(240,82,37,0.2);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-primary); animation: pulse 2s infinite;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero p { font-size: 1.15rem; margin-bottom: 2rem; max-width: 560px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3.5rem; flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; }
.stat-number {
  font-size: 2rem; font-weight: 800; color: var(--color-text);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.85rem; color: var(--color-muted); font-weight: 500; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ===== CARDS ===== */
.card {
  background: var(--color-card-bg); border-radius: 16px;
  padding: 2rem; border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition-normal);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(240,82,37,0.12);
  border-color: rgba(240,82,37,0.2);
}
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(240,82,37,0.1), rgba(252,163,17,0.1));
  color: var(--color-primary);
}
.card-grid { display: grid; gap: 1.5rem; }
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ===== HOW IT WORKS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.step-card { text-align: center; position: relative; }
.step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff; font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; box-shadow: 0 6px 20px var(--glow-primary);
}
.step-card h3 { margin-bottom: 0.5rem; }

/* ===== TEAM CARDS ===== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.team-card {
  background: var(--color-card-bg); border-radius: 20px;
  overflow: hidden; border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition-normal);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(240,82,37,0.12);
}
.team-card-img {
  height: 200px; background: linear-gradient(135deg, rgba(240,82,37,0.1), rgba(252,163,17,0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; color: var(--color-primary);
}
.team-card-body { padding: 1.5rem; }
.team-card-body h3 { margin-bottom: 0.25rem; font-size: 1.1rem; }
.team-card-body .role { color: var(--color-primary); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; }
.team-card-body p { font-size: 0.9rem; }
.team-social { display: flex; gap: 0.75rem;justify-content: center; margin-top: 1rem; }
.team-social a {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(240,82,37,0.08); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: all var(--transition-fast);
}
.team-social a:hover { background: var(--color-primary); color: #fff; }

/* ===== COMMUNITY / CTA SECTIONS ===== */
.community-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #d94418 50%, var(--color-accent) 100%);
  color: #fff; text-align: center; padding: 5rem 0; position: relative; overflow: hidden;
}
.community-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.community-section h2, .community-section p { color: #fff; }
.community-section p { opacity: 0.85; }
.community-section .btn-white {
  background: #fff; color: var(--color-primary); 
  /*width: 159px;*/
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.community-section .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ===== FOOTER ===== */
footer {
  background: var(--color-text); color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { color: #fff; margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 600; margin-bottom: 1.25rem; letter-spacing: 0.05em; }
.footer-col a {
  display: block; font-size: 0.9rem; margin-bottom: 0.6rem;
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--color-primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: 0.85rem;
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-fast);
}
.footer-social a:hover { background: var(--color-primary); color: #fff; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition-normal); cursor: pointer;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

/* ===== FORMS ===== */
.form-section { background: var(--color-bg); }
.form-container {
  background: var(--color-card-bg); border-radius: 24px;
  padding: 3rem; border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06); max-width: 760px; margin: 0 auto;
}
.form-group { position: relative; margin-bottom: 1.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 1rem 1rem 0.5rem;
  border: 1.5px solid rgba(0,0,0,0.1); border-radius: 10px;
  font-family: var(--font-main); font-size: 0.95rem;
  background: var(--color-bg); color: var(--color-text);
  transition: all var(--transition-fast); outline: none;
  appearance: none;
}
.form-group select { padding: 0.85rem 1rem; cursor: pointer; }
.form-group textarea { min-height: 100px; resize: vertical; padding-top: 1rem; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--glow-primary);
  background: #fff;
}
.form-group label {
  position: absolute; left: 1rem; top: 0.85rem;
  font-size: 0.9rem; color: var(--color-muted);
  transition: all var(--transition-fast); pointer-events: none;
  background: transparent;
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: 0.25rem; font-size: 0.72rem; color: var(--color-primary); font-weight: 600;
}
.form-group select ~ label { top: 0.25rem; font-size: 0.72rem; color: var(--color-primary); font-weight: 600; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: transparent; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-error { font-size: 0.8rem; color: var(--color-error); margin-top: 0.3rem; display: none; }
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: var(--color-error); }
.form-group.error .form-error { display: block; }
.form-group.success input,
.form-group.success select,
.form-group.success textarea { border-color: var(--color-success); }
.form-section-title {
  font-size: 1.1rem; font-weight: 700; color: var(--color-text);
  margin-bottom: 1.5rem; padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(240,82,37,0.15);
  display: flex; align-items: center; gap: 0.5rem;
}
.form-section-title .step-badge {
  width: 28px; height: 28px; border-radius: 50%;
  /* background: linear-gradient(135deg, var(--color-primary), var(--color-accent)); */
  color: #fff; font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ===== MULTI-STEP FORM ===== */
.step-progress {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2.5rem; gap: 0;
}
.step-dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.08); color: var(--color-muted);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; transition: all var(--transition-normal);
  position: relative; z-index: 1;
}
.step-dot.active {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff; box-shadow: 0 4px 16px var(--glow-primary);
}
.step-dot.completed {
  background: var(--color-success); color: #fff;
}
.step-line {
  flex: 1; height: 2px; background: rgba(0,0,0,0.08);
  max-width: 80px; transition: background var(--transition-normal);
}
.step-line.completed { background: var(--color-success); }
.form-step { display: none; animation: fadeSlideIn 0.4s ease; }
.form-step.active { display: block; }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; }
.success-message {
  text-align: center; padding: 3rem 2rem; display: none;
}
.success-message.show { display: block; animation: fadeSlideIn 0.5s ease; }
.success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-success), #0ea572);
  color: #fff; font-size: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; box-shadow: 0 8px 30px rgba(16,185,129,0.3);
}
.success-message h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 8rem 0 4rem; text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(240,82,37,0.07) 0%, transparent 70%);
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ===== ABOUT PAGE ===== */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.value-card {
  background: var(--color-card-bg); border-radius: 16px; padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06); transition: all var(--transition-normal);
  border-top: 3px solid var(--color-primary);
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(240,82,37,0.1); }
.value-card .icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { margin-bottom: 0.5rem; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); text-align: -webkit-center; }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===== PARTNER PAGE ===== */
.partner-hero {
  padding: 8rem 0 4rem;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(252,163,17,0.08) 0%, transparent 70%);
}
.partner-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.benefit-item {
  text-align: center; padding: 1.5rem;
  background: var(--color-card-bg); border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition-normal);
}
.benefit-item:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(240,82,37,0.1); }
.benefit-item .icon { font-size: 2rem; margin-bottom: 0.75rem; }
.benefit-item h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.benefit-item p { font-size: 0.85rem; }

/* ===== RESPONSIVE ===== */

/* --- Tablet: ≤ 1024px --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-split { gap: 2rem; }
  .fc-top { right: -10px; }
  .fc-bottom { left: -10px; }
}

/* --- Tablet: ≤ 900px --- */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem 0 2.5rem;
    text-align: center;
  }
  .hero-split .hero-content { max-width: 600px; margin: 0 auto; }
  .hero-split .hero-content p { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }

  /* Constrain visual so it never overflows */
  .hero-visual {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 2.5rem 0 1rem;
    overflow: visible;
  }
  .fc-top { top: 0; right: 0; }
  .fc-bottom { bottom: 0; left: 0; }
}

/* --- Mobile: ≤ 768px --- */
@media (max-width: 768px) {
  /* Navbar */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Sections */
  .section { padding: 3.5rem 0; }
  .page-hero { padding: 6rem 0 3rem; }
  .partner-hero { padding: 6rem 0 3rem; }

  /* Hero — hide visual panel entirely, show inline stats instead */
  .hero { min-height: auto; padding-top: 70px; padding-bottom: 2.5rem; overflow: hidden; }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 1rem 0 1.5rem;
    text-align: center;
  }
  .hero-split .hero-content { max-width: 100%; }
  .hero-visual { display: none; }

  /* Show mobile stats row instead */
  .hero-mobile-stats {
    display: flex !important;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.07);
  }
  .hero-mobile-stat { text-align: center; }
  .hero-mobile-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-mobile-stat span { font-size: 0.78rem; color: var(--color-muted); font-weight: 500; }

  .hero h1 { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .hero p { font-size: 1rem; }
  .hero-trust { flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
  .hero-trust-text { font-size: 0.82rem; }
  .hero-actions { justify-content: center; }

  /* Cards & grids */
  .card-grid-2,
  .card-grid-3,
  .card-grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .partner-benefits { grid-template-columns: 1fr 1fr; }

  /* Forms */
  .form-container { padding: 1.75rem 1.1rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .step-line { max-width: 36px; }
  .step-nav { gap: 0.75rem; }
  .step-nav .btn { padding: 0.65rem 1.1rem; font-size: 0.88rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%;  justify-content: center; }
}

/* --- Mobile: ≤ 580px --- */
@media (max-width: 580px) {
  .steps-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .partner-benefits { grid-template-columns: 1fr 1fr; }
}

/* --- Mobile: ≤ 480px --- */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 2.75rem 0; }
  .page-hero { padding: 5.5rem 0 2.5rem; }
  .partner-hero { padding: 5.5rem 0 2.5rem; }

  h1 { font-size: clamp(1.55rem, 7vw, 2rem); }
  h2 { font-size: clamp(1.35rem, 5vw, 1.8rem); }

  /* Hero */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; align-items: center; text-align: center; }
  .hero-mobile-stats { gap: 1rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }
  .footer-bottom div { flex-direction: column; gap: 0.5rem; }

  /* Forms */
  .form-container { padding: 1.5rem 1rem; border-radius: 16px; }
  .step-dot { width: 34px; height: 34px; font-size: 0.8rem; }
  .step-line { max-width: 28px; }
  .step-nav { flex-direction: column-reverse; gap: 0.6rem; }
  .step-nav .btn {
      /*width: 60%;*/
  justify-content: center; 
      
  }

  /* Partner benefits */
  .partner-benefits { grid-template-columns: 1fr; }

  /* Community section */
  .community-section { padding: 3.5rem 0; }
}

/* Mobile stats row — hidden by default, shown via media query */
.hero-mobile-stats { display: none; }

/* ===== HERO SPLIT LAYOUT ===== */
.hero-split {
  display: grid;
  
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 3rem 0;
}
.hero-split .hero-content { max-width: 100%; }
.hero-split .hero-content h1 { line-height: 1.15; margin-bottom: 1.25rem; }
.hero-split .hero-content p { font-size: 1.1rem; margin-bottom: 2rem; max-width: 480px; }

/* Trust row */
.hero-trust {
  display: flex; align-items: center; gap: 0.85rem;
  margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.hero-trust-avatars {
  display: flex;
}
.hero-trust-avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(240,82,37,0.12), rgba(252,163,17,0.12));
  border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--color-primary);
  margin-left: -8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.hero-trust-avatars span:first-child { margin-left: 0; }
.hero-trust-text { font-size: 0.88rem; color: var(--color-muted); }
.hero-trust-text strong { color: var(--color-text); font-weight: 700; }

/* Visual panel */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
.hero-visual-blob {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,82,37,0.12) 0%, rgba(252,163,17,0.08) 50%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: blur(40px);
  pointer-events: none;
}

/* Main profile card */
.hero-main-card {
  background: var(--color-card-bg);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  position: relative; z-index: 1;
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hmc-header {
  display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1rem;
}
.hmc-avatar {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(240,82,37,0.12), rgba(252,163,17,0.12));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--color-primary); flex-shrink: 0;
}
.hmc-name { font-weight: 700; font-size: 1rem; color: var(--color-text); }
.hmc-role { font-size: 0.8rem; color: var(--color-muted); }
.hmc-badge-verified {
  margin-left: auto; font-size: 0.75rem; font-weight: 600;
  color: var(--color-success); background: rgba(16,185,129,0.1);
  padding: 0.3rem 0.7rem; border-radius: 50px;
  border: 1px solid rgba(16,185,129,0.2);
  white-space: nowrap;
}
.hmc-tags {
  display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem;
}
.hmc-tags span {
  font-size: 0.75rem; font-weight: 600; padding: 0.3rem 0.7rem;
  border-radius: 50px; background: rgba(240,82,37,0.08);
  color: var(--color-primary); border: 1px solid rgba(240,82,37,0.15);
}
.hmc-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0.5rem; margin-bottom: 1rem;
  background: var(--color-bg); border-radius: 12px; padding: 0.85rem;
}
.hmc-stats div { text-align: center; }
.hmc-stats strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--color-text); }
.hmc-stats span { font-size: 0.72rem; color: var(--color-muted); }
.hmc-footer { border-top: 1px solid rgba(0,0,0,0.06); padding-top: 0.85rem; }
.hmc-match {
  font-size: 0.82rem; font-weight: 600; color: var(--color-accent);
}
.hmc-match i { margin-right: 0.3rem; }

/* Floating stat cards */
.hero-float-card {
  position: absolute; z-index: 2;
  background: var(--color-card-bg);
  border-radius: 14px; padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 0.65rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.06);
  animation: floatCardAlt 5s ease-in-out infinite;
}
@keyframes floatCardAlt {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-6px) rotate(1deg); }
}
.fc-top { top: -10px; right: -20px; }
.fc-bottom { bottom: 20px; left: -20px; animation-delay: 1.5s; }
.fc-icon { font-size: 1.1rem; color: var(--color-primary); width: 32px; text-align: center; }
.fc-text strong { display: block; font-size: 1rem; font-weight: 800; color: var(--color-text); }
.fc-text span { font-size: 0.72rem; color: var(--color-muted); }

/* Companies strip */
.hero-companies {
  background: var(--color-card-bg);
  border-radius: 14px; padding: 0.85rem 1.1rem;
  display: flex; align-items: center; gap: 0.75rem;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  position: relative; z-index: 1;
}
.hc-label { font-size: 0.75rem; font-weight: 600; color: var(--color-muted); white-space: nowrap; }
.hc-logos { display: flex; gap: 0.4rem; }
.hc-logo {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(240,82,37,0.08), rgba(252,163,17,0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--color-primary); border: 1px solid rgba(0,0,0,0.06);
}
.hc-count { font-size: 0.78rem; font-weight: 600; color: var(--color-primary); margin-left: auto; white-space: nowrap; }

/* Responsive hero split — handled in main responsive block above */

/* ===== ABOUT PAGE — MISSING CLASSES ===== */

/* About hero */
.about-hero {
  padding: 7rem 0 4rem; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(240,82,37,0.07) 0%, transparent 70%);
}
.about-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(var(--color-text) 1px, transparent 1px),
                    linear-gradient(90deg, var(--color-text) 1px, transparent 1px);
  background-size: 60px 60px; opacity: 0.025;
}
.about-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; position: relative; z-index: 1;
}
.about-hero-content h1 { margin-bottom: 1rem; }
.about-hero-content p { font-size: 1.05rem; margin-bottom: 1.75rem; max-width: 480px; }
.about-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.about-visual-card {
  background: var(--color-card-bg); border-radius: 14px;
  padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.85rem;
  border: 1px solid rgba(0,0,0,0.07); box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform var(--transition-normal);
}
.about-visual-card:hover { transform: translateY(-3px); }
.about-visual-card.accent { border-left: 3px solid var(--color-accent); }
.about-visual-icon { font-size: 1.2rem; color: var(--color-primary); width: 28px; text-align: center; }
.about-visual-num { display: block; font-size: 1.3rem; font-weight: 800; color: var(--color-text); }
.about-visual-label { font-size: 0.78rem; color: var(--color-muted); }
.about-hero-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}

/* Stats bar */
.about-stats-bar {
  background: var(--color-card-bg); border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06); padding: 1.75rem 0;
}
.about-stats-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.about-stat { text-align: center; padding: 0.5rem 2.5rem; }
.about-stat-num { display: block; font-size: 2rem; font-weight: 800; }
.about-stat-label { font-size: 0.82rem; color: var(--color-muted); font-weight: 500; }
.about-stat-divider {
  width: 1px; height: 40px; background: rgba(0,0,0,0.1);
}

/* Mission/Vision */
.mv-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.mv-card {
  background: var(--color-card-bg); border-radius: 20px;
  padding: 2rem; border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all var(--transition-normal);
}
.mv-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(240,82,37,0.1); }
.mv-card-header {
  display: flex; align-items: center; gap: 0.85rem;
  margin-bottom: 1.25rem; padding-bottom: 1.25rem;
  border-bottom: 2px solid rgba(240,82,37,0.1);
}
.mv-card-header.vision { border-bottom-color: rgba(252,163,17,0.15); }
.mv-icon { font-size: 2rem; }
.mv-card-header h3 { margin: 0; }
.mv-card p { line-height: 1.8; margin-bottom: 1.25rem; }
.mv-list { display: flex; flex-direction: column; gap: 0.5rem; }
.mv-list li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; color: var(--color-muted);
}
.mv-list li i { color: var(--color-success); font-size: 0.8rem; flex-shrink: 0; }

/* Story section */
.about-story-section {
  background: var(--color-bg);
}
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.story-content .section-label { margin-bottom: 0.5rem; }
.story-content h2 { margin-bottom: 1.25rem; }
.story-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: flex; gap: 1rem; padding-bottom: 1.75rem;
  position: relative;
}
.timeline-item:not(:last-child)::before {
  content: ''; position: absolute; left: 11px; top: 24px;
  width: 2px; bottom: 0;
  background: linear-gradient(to bottom, rgba(240,82,37,0.3), rgba(240,82,37,0.05));
}
.timeline-dot {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: rgba(240,82,37,0.15); border: 2px solid rgba(240,82,37,0.3);
  margin-top: 2px; position: relative; z-index: 1;
  transition: all var(--transition-normal);
}
.timeline-item.active .timeline-dot {
  background: var(--color-primary); border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(240,82,37,0.15);
}
.timeline-year {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  color: var(--color-primary); margin-bottom: 0.3rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.timeline-content p { font-size: 0.9rem; line-height: 1.7; }

/* Values new */
.values-grid-new {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.value-card-new {
  background: var(--color-card-bg); border-radius: 16px;
  padding: 1.5rem; border: 1px solid rgba(0,0,0,0.06);
  display: flex; gap: 1rem; align-items: flex-start;
  transition: all var(--transition-normal);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.value-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(240,82,37,0.1);
  border-color: rgba(240,82,37,0.15);
}
.value-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: var(--vi-color, rgba(240,82,37,0.1));
  border: 1px solid var(--vi-border, rgba(240,82,37,0.2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.value-body h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.value-body p { font-size: 0.88rem; line-height: 1.65; }

/* Founders row */
.founders-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1.5rem;
}
/* 2-founder variant — centered, max-width constrained */
.founders-row-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.founder-card {
  background: var(--color-card-bg); border-radius: 20px;
  padding: 1.75rem; border: 1px solid rgba(0,0,0,0.06);
  display: flex; gap: 1.25rem; align-items: flex-start;
  transition: all var(--transition-normal);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(240,82,37,0.1);
  border-color: rgba(240,82,37,0.15);
}
.founder-avatar {
  width: 60px; height: 60px; border-radius: 16px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(240,82,37,0.12), rgba(252,163,17,0.12));
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.founder-meta h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.founder-role {
  font-size: 0.78rem; font-weight: 600; color: var(--color-primary);
  display: block; margin-bottom: 0.6rem;
}
.founder-info p { font-size: 0.88rem; line-height: 1.65; margin-bottom: 0.75rem; }
.founder-bio { color: var(--color-muted); }
.founder-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.founder-tags span {
  font-size: 0.72rem; font-weight: 600; padding: 0.2rem 0.6rem;
  border-radius: 50px; background: rgba(240,82,37,0.08);
  color: var(--color-primary); border: 1px solid rgba(240,82,37,0.12);
}

/* Team grid new */
.team-grid-new {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.team-card-new {
  background: var(--color-card-bg); border-radius: 18px;
  padding: 1.5rem; border: 1px solid rgba(0,0,0,0.06);
  text-align: center; transition: all var(--transition-normal);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.team-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(240,82,37,0.1);
  border-color: rgba(240,82,37,0.15);
}
.tcn-avatar {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 0.85rem;
  background: linear-gradient(135deg, rgba(240,82,37,0.12), rgba(252,163,17,0.12));
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.team-card-new h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.tcn-role {
  font-size: 0.78rem; font-weight: 600; color: var(--color-primary);
  display: block; margin-bottom: 0.6rem;
}
.team-card-new p { font-size: 0.85rem; line-height: 1.6; margin-bottom: 0.85rem; }
.team-card-new .team-social { justify-content: center; }

/* ===== ABOUT PAGE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .founders-row { grid-template-columns: 1fr 1fr; }
  .founders-row-2 { grid-template-columns: 1fr 1fr; }
  .values-grid-new { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-hero-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .about-hero-content p { max-width: 100%; }
  .about-hero-actions { justify-content: center;width: 186px;display: inline-flex; }
  .about-hero-visual { grid-template-columns: 1fr 1fr; }
  .about-stats-inner { gap: 0; }
  .about-stat { padding: 0.5rem 1.25rem; }
  .about-stat-num { font-size: 1.5rem; }
  .about-stat-divider { height: 30px; }
  .mv-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-grid .story-visual { order: 2; }
  .story-grid .story-content { order: 1; }
  .founders-row { grid-template-columns: 1fr; }
  .founders-row-2 { grid-template-columns: 1fr; max-width: 480px; }
  .founder-card { flex-direction: column; align-items: center; text-align: center; }
  .founder-tags { justify-content: center; }
  .team-grid-new { grid-template-columns: 1fr 1fr; }
  .values-grid-new { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .about-hero { padding: 5.5rem 0 2.5rem; }
  .about-hero-visual { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .about-visual-card { padding: 0.75rem; }
  .about-visual-num { font-size: 1.1rem; }
  .about-stats-inner { flex-wrap: wrap; }
  .about-stat { flex: 1 1 45%; }
  .about-stat-divider { display: none; }
  .team-grid-new { grid-template-columns: 1fr; }
  .values-grid-new { grid-template-columns: 1fr; }
  .value-card-new { flex-direction: column; }
}
/* HERO SECTION */
/*.hero {*/
  /*padding: 80px 20px;*/
/*  background: #f9fafc;*/
/*}*/

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff2ed;
  color: #F05225;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #F05225;
  border-radius: 50%;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(90deg,#F05225,#ff7a50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 16px;
  color: #555;
  max-width: 520px;
  margin-bottom: 25px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 9px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: #F05225;
  color: #fff;
}

.btn-primary:hover {
  background: #d9441b;
}

.btn-outline {
  border: 2px solid #F05225;
  color: #F05225;
}

.btn-outline:hover {
  background: #F05225;
  color: #fff;
}

/* TRUST ROW */
.hero-trust {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-trust-avatars span {
  font-size: 20px;
  margin-right: -8px;
}

.hero-trust-text {
  font-size: 14px;
  color: #666;
}

/* RIGHT VISUAL */
.hero-visual {
  position: relative;
}

.hero-visual-blob {
  position: absolute;
  width: 320px;
  height: 320px;
  background: #ffe7df;
  border-radius: 50%;
  top: -40px;
  right: 60px;
  z-index: 0;
}

/* MAIN CARD */
.hero-main-card {
  position: relative;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  z-index: 2;
}

.hmc-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hmc-avatar {
  font-size: 28px;
}

.hmc-name {
  font-weight: 600;
}

.hmc-role {
  font-size: 13px;
  color: #777;
}

.hmc-badge-verified {
  margin-left: auto;
  font-size: 12px;
  color: #16a34a;
}

.hmc-tags {
  margin: 15px 0;
}

.hmc-tags span {
  background: #f3f4f6;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  margin-right: 6px;
}

.hmc-stats {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
}

.hmc-stats div {
  text-align: center;
}

.hmc-stats strong {
  display: block;
}

.hmc-footer {
  font-size: 13px;
  color: #F05225;
}

/* FLOAT CARDS */
.hero-float-card {
  position: absolute;
  background: white;
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.fc-top {
  top: -20px;
  right: -30px;
}

.fc-bottom {
  bottom: -20px;
  left: -30px;
}

.fc-text strong {
  display: block;
}

/* COMPANY LOGOS */
.hero-companies {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hc-logos {
  display: flex;
  gap: 8px;
}

.hc-logo {
  width: 34px;
  height: 34px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 992px) {

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content p {
    margin: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 40px;
  }

}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 600px) {

  .hero {
    padding: 60px 16px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-main-card {
    padding: 16px;
  }

  .hmc-stats {
    flex-direction: column;
    gap: 10px;
  }

  .hero-float-card {
    display: none;
  }

  .hero-companies {
    flex-direction: column;
    gap: 8px;
  }

}
.card-grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Mobile Responsive */
@media (max-width: 992px){
  .card-grid-3{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .card-grid-3{
    grid-template-columns: 1fr;
  }
}
.reveal{
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active{
  opacity: 1;
  transform: translateY(0);
}

/* Delay effects */
.delay-1{ transition-delay: 0.1s; }
.delay-2{ transition-delay: 0.2s; }
.delay-3{ transition-delay: 0.3s; }
.card{
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card:hover{
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-icon{
  font-size: 32px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.card:hover .card-icon{
  transform: scale(1.2) rotate(5deg);
}
.card{
  background: linear-gradient(180deg,#ffffff,#fff7f4);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(240,82,37,0.1);
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
}

.card:hover{
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(240,82,37,0.15);
  border-color: rgba(240,82,37,0.3);
}
.card-icon{
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border-radius: 12px;
  margin-bottom: 18px;
  background: linear-gradient(135deg,#F05225,#F97316);
  color: white;
  box-shadow: 0 8px 18px rgba(240,82,37,0.25);
  transition: all 0.3s ease;
}

.card:hover .card-icon{
  transform: scale(1.1) rotate(6deg);
}
.card::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(120deg,transparent,rgba(240,82,37,0.15),transparent);
  opacity: 0;
  transition: 0.4s;
}

.card:hover::before{
  opacity: 1;
}


/* ===== FORM SUBMIT ROW & PARTNER FORM CLASSES ===== */
.form-group-select { display: flex; flex-direction: column; }
.select-label {
  font-size: 0.8rem; color: var(--color-primary);
  font-weight: 600; margin-bottom: 0.4rem;
}
.form-submit-row {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.75rem; margin-top: 2rem;
}
.btn-submit { min-width: 240px; justify-content: center; }
.form-submit-note {
  font-size: 0.8rem; color: var(--color-muted);
  display: flex; align-items: center; gap: 0.4rem;
}

/* ===== FORM TAB SWITCHER ===== */
.form-tabs {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
  background: var(--color-card-bg);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 50px;
  padding: 0.4rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.form-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--color-muted);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
}
.form-tab.active {
  background: linear-gradient(135deg, var(--color-primary), #d94418);
  color: #fff;
  box-shadow: 0 4px 16px var(--glow-primary);
}
.form-tab:not(.active):hover {
  color: var(--color-primary);
  background: rgba(240,82,37,0.06);
}
@media (max-width: 480px) {
  .form-tabs { max-width: 100%; }
  .form-tab { font-size: 0.82rem; padding: 0.65rem 0.75rem; }
}

/* ===== CONSENT BOX ===== */
.consent-box {
  background: rgba(240,82,37,0.05);
  border: 1px solid rgba(240,82,37,0.12);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}
.consent-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 3px;
  accent-color: var(--color-primary);
  cursor: pointer;
}
.consent-label a { color: var(--color-primary); text-decoration: underline; }

/* Final step-nav: submit first on desktop, reversed on mobile */
.step-nav-final {
  flex-direction: row-reverse;
}
@media (max-width: 480px) {
  .step-nav-final {
      width: 70%;
    flex-direction: column;
  }
  .step-nav-final .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== RADIO / CHECKBOX OPTION GROUP ===== */
.form-field-block {
  margin-bottom: 1.5rem;
}
.field-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.65rem;
}
.radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: var(--color-bg);
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--color-muted);
  font-weight: 500;
  transition: all var(--transition-fast);
  user-select: none;
}
.radio-option:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(240,82,37,0.04);
}
.radio-option input[type="radio"] {
  width: 15px;
  height: 15px;
  min-width: 15px;
  /*accent-color: var(--color-primary);*/
  cursor: pointer;
}
.radio-option:has(input:checked) {
  border-color: var(--color-primary);
  background: rgba(240,82,37,0.07);
  color: var(--color-primary);
  font-weight: 600;
}
@media (max-width: 580px) {
  .radio-group { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
  .radio-group { grid-template-columns: 1fr; }
}
.hero{
  /*padding:120px 0;*/
  background:linear-gradient(180deg,#ffffff,#fff7f3);
}

.hero-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

.hero-content{
  max-width:600px;
}

.hero h1{
  font-size:52px;
  line-height:1.2;
  font-weight:700;
  margin-bottom:20px;
}

.hero p{
  font-size:18px;
  color:#555;
  margin-bottom:30px;
}

.hero-buttons{
  display:flex;
  gap:16px;
  margin-bottom:30px;
}

.btn-primary{
  background:#ff5a2c;
  color:white;
  padding:14px 26px;
  border-radius:10px;
  font-weight:600;
  box-shadow:0 10px 20px rgba(255,90,44,0.25);
}

.btn-secondary{
  border:2px solid #ff5a2c;
  color: #ff5a2c;
  padding:14px 26px;
  border-radius:10px;
  font-weight:600;
}

.btn-secondary:hover{
  background:#ff5a2c;
  color:#fff;
  border-color:#ff5a2c;
}

.hero-stats{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:16px;
  color:#444;
}

.hero-image img{
  width:480px;
}
.hero::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:rgba(255,90,44,0.15);
  filter:blur(120px);
  top:-100px;
  right:-150px;
  z-index:-1;
}
/* Tablet */
@media (max-width: 992px){

.hero-content{
  max-width:100%;
  text-align:center;
}

.hero h1{
  font-size:40px;
}

.hero p{
  font-size:17px;
}

.hero-buttons{
  justify-content:center;
  flex-wrap:wrap;
}

.hero-image img{
  width:380px;
  margin-top:40px;
}

}

/* Mobile */
@media (max-width: 768px){

.hero{
  padding:80px 0;
}

.hero h1{
  font-size:32px;
  line-height:1.3;
}

.hero p{
  font-size:16px;
}

.hero-buttons{
  flex-direction:column;
  align-items:center;
  gap:12px;
}

.btn-primary,
.btn-secondary{
  width:100%;
  /*max-width:260px;*/
  text-align:center;
}

.hero-image img{
  width:100%;
  max-width:320px;
}

.hero-stats{
  justify-content:center;
  text-align:center;
}

}

/* Small Mobile */
@media (max-width:480px){

.hero h1{
  font-size:28px;
}

.hero p{
  font-size:15px;
}

.hero-image img{
  max-width:280px;
}

}
@media (max-width:768px){
  .hero-image{
    display:none;
  }
}

.partner-hero{
  position: relative;
  padding: 110px 0 90px;
  text-align: center;
  overflow: hidden;
}

/* soft gradient background */
.partner-hero .hero-bg{
  position:absolute;
  inset:0;
  background: radial-gradient(circle at top,
      rgba(255,140,0,0.15),
      transparent 60%);
  z-index:-1;
}

/* content width */
.partner-hero-content{
  max-width:700px;
  margin:auto;
}

/* heading */
.partner-hero h1{
  font-size:48px;
  font-weight:700;
  margin-top:10px;
  letter-spacing:-0.5px;
}

/* subtitle */
.hero-subtext{
  font-size:18px;
  color:var(--color-muted);
  margin-top:18px;
  line-height:1.6;
}

/* buttons */
.hero-buttons{
  margin-top:30px;
}

.btn-accent{
  padding:14px 26px;
  font-size:15px;
  border-radius:8px;
  background:linear-gradient(135deg,#ff7a18,#ff9a3d);
  color:white;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn-accent:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(255,120,0,0.25);
}
.nav-links a {
  position: relative;
  padding: 14px 22px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  display: inline-block;
}

/* ACTIVE MENU */
.nav-links a.active {
  background:#ffffff;
  z-index: 1;
}

/* ========================================= */
/* PARTNER BENEFITS RE-DESIGN                */
/* ========================================= */
.partner-benefits-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fdfbfb 0%, #ebedee 100%);
  position: relative;
  overflow: hidden;
}
.partner-benefits-section::before {
  content: "";
  position: absolute;
  top: -10%; left: -10%;
  width: 50%; height: 50%;
  background: radial-gradient(circle, rgba(240,82,37,0.08) 0%, transparent 60%);
  z-index: 0;
}
.partner-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}
.pb-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}
.pb-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(240,82,37,0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.pb-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(240,82,37,0.12);
  border-color: rgba(240,82,37,0.2);
}
.pb-card:hover::before {
  opacity: 1;
}
.pb-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff2ed, #ffe0d4);
  color: #F05225;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(240,82,37,0.15);
  transition: transform 0.4s ease;
  position: relative;
  z-index: 2;
}
.pb-card:hover .pb-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #F05225, #ff7a50);
  color: #fff;
}
.pb-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.pb-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}
.feature-box {
  text-align: center;   /* centers everything */
}

.icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
       .nav-logo {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.logo-img {
  height: 55px;
  margin-right: 8px;
  border-radius: 7px;
}
.values-section {
  background: #ffffff;
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.values-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-label {
  font-size: 14px;
  color: #ff5a2c;
  font-weight: 600;
  letter-spacing: 1px;
}

.values-header h2 {
  font-size: 36px;
  margin: 10px 0;
  font-weight: 700;
}

.values-header p {
  color: #666;
  max-width: 600px;
  margin: auto;
}

.gradient-text {
  background: linear-gradient(90deg, #ff5a2c, #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.value-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  position: relative;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: transparent;
}

/* Icon */
.icon {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--color);
  position: relative;
}

.icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: var(--color);
  opacity: 0.1;
}

/* Text */
.value-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.value-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  text-align: -webkit-center;
}

/* Responsive */
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-header h2 {
    font-size: 28px;
  }
}
.value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* DEFAULT TRANSITION */
.value-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

/* HOVER EFFECT */
.value-card:hover {
  background: #fff7f4;
  border-color: #ff5a2c;
}

/* HOVER: TEXT COLOR */
.value-card:hover h3 {
  color: #ff5a2c;
}

/* HOVER: ICON COLOR */
.value-card:hover .icon-box {
  background: rgba(255, 90, 44, 0.1);
  color: #ff5a2c;
}

/* ACTIVE (CLICK) STATE */
.value-card.active {
  background: #ff5a2c;
  border-color: #ff5a2c;
}

/* ACTIVE TEXT */
.value-card.active h3,
.value-card.active p {
  color: #fff;
}

/* ACTIVE ICON */
.value-card.active .icon-box {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.upload-box label {
  color: #ff4d4d;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

.upload-area {
  border: 2px dashed #ff4d4d;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
  background-color: #fff;
}

.upload-area:hover {
  background-color: #fff5f5;
}

.upload-area p {
  margin: 0;
  color: #555;
  font-size: 14px;
}

/* ✅ MOBILE FIX */
@media (max-width: 600px) {
  /*.upload-area {
    padding: 14px;
  }
*/
  .upload-label {
    font-size: 13px;
  }

  .upload-area span {
    font-size: 13px;
  }
}



