/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: #F8F7F4;
  color: #0B1F3A;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, button, textarea { font-family: 'Poppins', sans-serif; }

/* ── TOKENS ── */
:root {
  --navy:      #0B1F3A;
  --navy2:     #132944;
  --orange:    #FF6B35;
  --orange2:   #E85A24;
  --cream:     #F8F7F4;
  --cream2:    #EEEAE3;
  --gray:      #6B7280;
  --border:    #E5E1D8;
  --green:     #22C55E;
  --shadow:    0 4px 24px rgba(11,31,58,0.09);
  --shadow-lg: 0 12px 48px rgba(11,31,58,0.14);
}

/* ── SHARED ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange); color: #fff;
  font-weight: 700; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 50px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--orange2); transform: translateY(-1px); }
.btn-primary.full { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--navy);
  font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 50px;
  border: 2px solid var(--border); cursor: pointer;
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: var(--navy); }

.btn-nav {
  background: var(--navy); color: #fff;
  font-weight: 700; font-size: 0.875rem;
  padding: 10px 22px; border-radius: 50px;
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--navy2); }

.btn-nav-outline {
  background: transparent; color: var(--navy);
  font-weight: 600; font-size: 0.875rem;
  padding: 9px 20px; border-radius: 50px;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s;
}
.btn-nav-outline:hover { border-color: var(--navy); }

.tag {
  display: inline-block;
  background: rgba(255,107,53,0.1); color: var(--orange);
  font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 16px;
}

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(248,247,244,0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
#navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  height: 72px; display: flex; align-items: center; gap: 32px;
}
.logo {
  font-weight: 800; font-size: 1.35rem; color: var(--navy);
  letter-spacing: -0.02em; flex-shrink: 0;
}
.logo span:first-child { color: var(--orange); }
.logo-dot { font-size: 0.85em; color: var(--gray); font-weight: 500; }
.logo-sm { font-size: 1.2rem; }

.nav-links { display: flex; gap: 28px; margin: 0 auto; }
.nav-links a {
  font-weight: 500; font-size: 0.9rem; color: var(--gray);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }

.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-phone { font-weight: 600; font-size: 0.85rem; color: var(--navy); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh; padding: 116px 32px 80px;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.85rem; color: var(--gray);
  letter-spacing: 0.04em; margin-bottom: 20px;
}
.dot {
  width: 8px; height: 8px; background: var(--green);
  border-radius: 50%; box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0.08); }
}

.hero-left h1 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.035em; color: var(--navy); margin-bottom: 24px;
}
.highlight { color: var(--orange); position: relative; }
.highlight::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
  height: 4px; background: var(--orange); opacity: 0.18; border-radius: 2px;
}

.hero-sub {
  font-size: 1.05rem; color: var(--gray); max-width: 460px;
  margin-bottom: 36px; line-height: 1.72;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.trust-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-weight: 600; font-size: 0.8rem; color: var(--navy); }
.trust-sep { width: 1px; height: 18px; background: var(--border); }

/* Hero Right */
.hero-right { position: relative; display: flex; flex-direction: column; gap: 16px; }

.hero-card-main {
  background: var(--navy); border-radius: 24px; padding: 36px;
  color: #fff; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.hero-card-main::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
}
.hcm-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 20px;
}

/* Pay options */
.pay-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.pay-option {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.06); border-radius: 14px;
  padding: 16px 18px; transition: background 0.2s;
  cursor: pointer;
}
.pay-option:hover { background: rgba(255,255,255,0.1); }
.pay-option-icon {
  width: 48px; height: 48px; background: rgba(255,107,53,0.15);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pay-option-text { flex: 1; }
.pay-option-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 2px; }
.pay-option-sub { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.pay-option-arrow { font-size: 1.1rem; color: var(--orange); font-weight: 700; }

.hcm-divider { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 24px; }

.portal-links {}
.portal-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 12px;
}
.portal-row { display: flex; gap: 12px; }
.portal-btn {
  flex: 1; text-align: center; padding: 11px 16px;
  border-radius: 10px; font-weight: 700; font-size: 0.85rem;
  transition: opacity 0.2s;
}
.portal-btn.buyer { background: var(--orange); color: #fff; }
.portal-btn.seller { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.1); }
.portal-btn:hover { opacity: 0.85; }

.hero-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-badge {
  background: #fff; border-radius: 16px; padding: 18px 20px;
  display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow);
}
.badge-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.badge-icon.green { background: rgba(34,197,94,0.1); }
.badge-icon.orange { background: rgba(255,107,53,0.1); }
.badge-title { font-weight: 700; font-size: 0.85rem; color: var(--navy); line-height: 1.2; }
.badge-sub { font-size: 0.73rem; color: var(--gray); margin-top: 2px; }

.deco-circle { position: absolute; border-radius: 50%; pointer-events: none; z-index: -1; }
.deco-1 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(255,107,53,0.05) 0%, transparent 70%); top: -80px; right: -80px; }
.deco-2 { width: 180px; height: 180px; background: radial-gradient(circle, rgba(11,31,58,0.04) 0%, transparent 70%); bottom: 0; left: -40px; }

/* ── ABOUT ── */
.about { background: var(--navy); padding: 80px 32px; }
.about-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; gap: 48px; align-items: flex-start;
}
.about-num {
  font-size: 5rem; font-weight: 900; color: rgba(255,255,255,0.06);
  line-height: 1; flex-shrink: 0; letter-spacing: -0.04em;
}
.about-content .tag { background: rgba(255,107,53,0.15); }
.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800;
  letter-spacing: -0.03em; color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.about-content p {
  font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 12px;
}

/* ── SERVICES ── */
.services { padding: 100px 32px; }
.services-inner { max-width: 1100px; margin: 0 auto; }

.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-num {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em;
  color: var(--orange); text-transform: uppercase; margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800;
  letter-spacing: -0.03em; color: var(--navy); line-height: 1.15; margin-bottom: 14px;
}
.section-header p { font-size: 1rem; color: var(--gray); max-width: 480px; margin: 0 auto; }

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

.service-card {
  background: #fff; border-radius: 20px; padding: 36px 28px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.service-icon {
  width: 60px; height: 60px; background: rgba(255,107,53,0.08);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: background 0.2s;
}
.service-card:hover .service-icon { background: rgba(255,107,53,0.14); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--cream2); padding: 100px 32px; }
.testimonials-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.testimonials-inner .tag { display: inline-block; }
.testimonials-inner h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem); font-weight: 800;
  letter-spacing: -0.03em; color: var(--navy); margin-bottom: 12px;
}
.section-sub { font-size: 1rem; color: var(--gray); margin-bottom: 48px; }

.testimonial-card {
  background: #fff; border-radius: 24px; padding: 48px 48px 40px;
  box-shadow: var(--shadow-lg); text-align: left; position: relative;
}
.quote-mark {
  font-size: 5rem; font-weight: 900; color: var(--orange); opacity: 0.15;
  line-height: 0.6; margin-bottom: 16px; font-family: Georgia, serif;
}
.quote-text {
  font-size: 1.05rem; color: var(--navy); line-height: 1.75;
  font-style: italic; margin-bottom: 32px;
}
.quote-author { display: flex; align-items: center; gap: 16px; }
.author-avatar {
  width: 44px; height: 44px; background: var(--navy); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
}
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.author-role { font-size: 0.78rem; color: var(--gray); }

/* ── CONTACT ── */
.contact { padding: 100px 32px; background: var(--navy); }
.contact-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.contact-left .section-num { color: rgba(255,107,53,0.7); }
.contact-left .tag { background: rgba(255,107,53,0.15); }
.contact-left h2 {
  font-size: clamp(2rem, 3vw, 2.6rem); font-weight: 800;
  letter-spacing: -0.03em; color: #fff; margin-bottom: 16px;
}
.contact-left > p { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 40px; }

.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 40px; height: 40px; background: rgba(255,107,53,0.12);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 6px;
}
.contact-val {
  display: block; font-size: 0.92rem; font-weight: 600; color: #fff;
  line-height: 1.5; transition: color 0.2s;
}
a.contact-val:hover { color: var(--orange); }
.contact-note { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 3px; }

.contact-form-card {
  background: #fff; border-radius: 24px; padding: 40px; box-shadow: var(--shadow-lg);
}
.contact-form-card h3 {
  font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 28px; letter-spacing: -0.02em;
}
.cform { display: flex; flex-direction: column; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.78rem; font-weight: 600; color: var(--navy); letter-spacing: 0.02em; }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 0.9rem; color: var(--navy);
  background: var(--cream); outline: none; transition: border-color 0.2s;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--orange); background: #fff; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #bbb; }
.form-note { font-size: 0.72rem; color: var(--gray); text-align: center; }

/* ── FOOTER ── */
footer { background: #070F1C; padding: 56px 32px 28px; color: rgba(255,255,255,0.45); }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 24px;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin: 14px 0 0; max-width: 280px; }
.footer-col h4 {
  font-size: 0.8rem; font-weight: 700; color: #fff;
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li,
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { font-size: 0.78rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-right { gap: 8px; }
  .btn-nav-outline { display: none; }

  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 48px; }
  .hero-right { order: -1; }

  .about-inner { flex-direction: column; gap: 24px; }
  .about-num { font-size: 3rem; }

  .services-grid { grid-template-columns: 1fr; }

  .testimonial-card { padding: 32px 28px; }

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

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .hero-cards-row { grid-template-columns: 1fr; }
  .portal-row { flex-direction: column; }
  .hero-left h1 { font-size: 2.6rem; }
}
