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

:root {
  --primary: #19376d;
  --primary-dark: #0b2447;
  --primary-mid: #576cbc;
  --accent: #f5a623;
  --accent-green: #25d366;
  --text: #1a2332;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --white: #fff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.15);
  --radius: 16px;
  --radius-sm: 10px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

/* ========================= NAVBAR ========================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #e8f4fd, #dbeafe);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.brand-text .brand-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.brand-text .brand-sub {
  font-size: 11px;
  color: var(--text-muted);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: .2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active {
  border-bottom: 2px solid var(--primary);
  border-radius: 0;
}

.nav-login {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 6px !important;
  padding: 6px 14px !important;
  position: relative;
}

.nav-login:hover {
  background: var(--primary-dark) !important;
}

.login-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  min-width: 160px;
  z-index: 9999;
  overflow: hidden;
}

.login-dropdown a {
  display: block;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text) !important;
  background: transparent !important;
  border-radius: 0 !important;
  border-bottom: 1px solid #f1f5f9;
  white-space: nowrap;
}

.login-dropdown a:last-child { border-bottom: none; }

.login-dropdown a:hover {
  background: #eff6ff !important;
  color: var(--primary) !important;
}

.nav-login-wrap:hover .login-dropdown,
.nav-login-wrap.open .login-dropdown {
  display: block;
}

.nav-login-wrap { position: relative; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: .3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  padding: 16px 20px 24px;
  z-index: 998;
  border-top: 1px solid #e2e8f0;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  transition: .2s;
}

.mobile-nav a:hover { background: #eff6ff; color: var(--primary); }
.mobile-nav a.active { color: var(--primary); font-weight: 700; }

.mobile-nav .m-login {
  display: block;
  margin-top: 12px;
  background: var(--primary);
  color: #fff !important;
  text-align: center;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
}

/* ========================= HERO ========================= */
.hero-section {
  background: linear-gradient(135deg, #0b2447 0%, #19376d 50%, #576cbc 100%);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(87, 108, 188, 0.15);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  color: #dbeafe;
}

.hero-title {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 16px;
  color: #bfdbfe;
  line-height: 1.9;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: .25s;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
}

.btn-primary:hover { background: #e0921a; transform: translateY(-2px); }

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover { background: #1aab52; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
}

.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.hero-img-wrap {
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 20px;
}

.hero-img {
  width: 100%;
  max-width: 620px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  transition: .4s;
  object-fit: cover;
}

.hero-img:hover { transform: translateY(-8px); }

/* ========================= STATS ========================= */
.stats-wrapper {
  padding: 0 40px;
}

.stats-bar {
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,.10);
  border-radius: 20px;
  margin-top: -40px;
  padding: 28px 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 10;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.stat-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 3px;
}

.services-section { padding-top: 100px; }

/* ========================= SECTION COMMON ========================= */
.section {
  padding: 80px 40px;
}

.section-bg {
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  background: #dbeafe;
  color: var(--primary);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
}

.inner { max-width: 1200px; margin: 0 auto; }

/* ========================= SERVICE CARDS ========================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
  transition: .3s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  margin: 0 auto 18px;
}

.card-icon.orange { background: #fff7ed; color: #ea580c; }
.card-icon.green { background: #f0fdf4; color: #16a34a; }
.card-icon.purple { background: #faf5ff; color: #7c3aed; }

.service-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ========================= TRADE GRID ========================= */
.trade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trade-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: .3s;
}

.trade-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.trade-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.trade-card h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.trade-card p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ========================= TWO-COL ========================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ========================= AMC SECTION ========================= */
.amc-card {
  background: linear-gradient(135deg, #0b2447, #19376d);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
}

.amc-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.amc-card p {
  color: #bfdbfe;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.amc-list {
  list-style: none;
}

.amc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #dbeafe;
  margin-bottom: 10px;
}

.amc-list li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.amc-badge {
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,.1);
  border: 3px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  margin: 30px auto 0;
}

/* ========================= RENEWAL ========================= */
.renewal-item {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  transition: .3s;
}

.renewal-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }

.renewal-check {
  width: 36px;
  height: 36px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  font-size: 14px;
  flex-shrink: 0;
}

.renewal-item h5 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.renewal-item p { font-size: 12px; color: var(--text-muted); margin: 0; }

/* ========================= DOWNLOADS ========================= */
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.download-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: .3s;
}

.download-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.download-card .dl-icon {
  width: 60px;
  height: 60px;
  background: #eff6ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin: 0 auto 16px;
}

.download-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.download-card p { font-size: 12px; color: var(--text-muted); margin-bottom: 18px; }

.btn-download {
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: .2s;
}

.btn-download:hover { background: var(--primary-dark); }

/* ========================= REVIEWS ========================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  transition: .3s;
}

.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.stars { color: #f59e0b; font-size: 18px; margin-bottom: 12px; }

.review-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

/* ========================= DEMO FORM ========================= */
.demo-form-section {
  background: var(--bg-light);
  padding: 80px 40px;
}

.demo-form-inner {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.demo-form-inner h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
}

.demo-form-inner p {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: .2s;
}

.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(25,55,109,.08); }

.btn-submit {
  height: 48px;
  padding: 0 28px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: .2s;
}

.btn-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ========================= FAQ ========================= */
.faq-item {
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  transition: .2s;
}

.faq-q:hover { background: #f8fafc; }

.faq-q .faq-icon { font-size: 20px; color: var(--primary); font-weight: 400; line-height: 1; }

.faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: .3s;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 12px 22px 18px;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-icon { transition: .25s; display: inline-block; }

/* ========================= CTA BANNER ========================= */
.cta-banner {
  background: linear-gradient(135deg, #0b2447, #19376d);
  color: #fff;
  padding: 60px 40px;
  text-align: center;
}

.cta-banner h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-banner p {
  color: #bfdbfe;
  font-size: 15px;
  margin-bottom: 28px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================= FOOTER ========================= */
footer {
  background: #0b1929;
  color: #94a3b8;
  text-align: center;
  padding: 24px 40px;
  font-size: 13px;
}

/* ========================= WHATSAPP FLOAT ========================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  z-index: 9999;
  transition: .2s;
}

.whatsapp-float:hover { transform: scale(1.1); }

/* ========================= RESPONSIVE ========================= */

/* Tablet */
@media (max-width: 1024px) {
  .navbar { padding: 0 24px; }
  .hero-section { padding: 80px 24px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-title { font-size: 44px; }
  .hero-btns { justify-content: center; }
  .hero-img-wrap { justify-content: center; }
  .stats-wrapper { padding: 0 24px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 24px 28px; gap: 16px; }
  .section { padding: 60px 24px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .trade-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .download-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .demo-form-section { padding: 60px 24px; }
  .cta-banner { padding: 50px 24px; }
}

/* Mobile */
@media (max-width: 768px) {
  .navbar { padding: 0 16px; height: 64px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-section { padding: 70px 16px 50px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-title { font-size: 30px; }
  .hero-subtitle { font-size: 14px; line-height: 1.7; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-btns .btn { justify-content: center; }
  .hero-badge { font-size: 12px; }
  .hero-img-wrap { justify-content: center; border-radius: 14px; }

  .stats-wrapper { padding: 0 16px; }
  .stats-bar { grid-template-columns: 1fr 1fr; margin-top: -28px; padding: 20px 16px; gap: 14px; border-radius: 14px; }
  .stat-icon { width: 42px; height: 42px; font-size: 18px; }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 11px; }

  .section { padding: 48px 16px; }
  .services-section { padding-top: 64px; }
  .section-title { font-size: 24px; }
  .section-sub { font-size: 14px; }

  .cards-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .service-card { padding: 22px 16px; }
  .card-icon { width: 52px; height: 52px; font-size: 20px; }

  .trade-grid { grid-template-columns: 1fr; gap: 12px; }

  .amc-card { padding: 28px 20px; }
  .amc-card h3 { font-size: 20px; }

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

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

  .demo-form-section { padding: 48px 16px; }
  .demo-form-inner { padding: 28px 18px; border-radius: 14px; }
  .demo-form-inner h2 { font-size: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }

  .cta-banner { padding: 48px 16px; }
  .cta-banner h2 { font-size: 24px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 280px; justify-content: center; }

  footer { padding: 20px 16px; font-size: 12px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-title { font-size: 26px; line-height: 1.2; }
  .brand-text .brand-sub { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .stat-item { gap: 10px; }
}
