/* ============================================================
   Loginfotech — Main Stylesheet
   Theme: Dark Blue (#0a1628) + Golden (#d4a017)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-dark:   #0a1628;
  --blue-mid:    #112244;
  --blue-nav:    #0d1e4a;
  --blue-light:  #1a3066;
  --gold:        #d4a017;
  --gold-light:  #f0c040;
  --gold-dark:   #b8860b;
  --white:       #ffffff;
  --off-white:   #f4f6fb;
  --text-muted:  #8fa3c8;
  --border:      rgba(212,160,23,0.25);
  --shadow:      0 8px 32px rgba(10,22,40,0.45);
  --radius:      8px;
  --transition:  0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--blue-dark);
  color: var(--white);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { color: #c5d3e8; }

.gold { color: var(--gold); }
.text-center { text-align: center; }

/* ---------- Layout ---------- */
.container { width: 90%; max-width: 1180px; margin: 0 auto; }
.section    { padding: 80px 0; }
.section-alt { background: var(--blue-mid); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 span { color: var(--gold); }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 12px auto 0; }

.divider {
  width: 64px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--blue-dark);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,23,0.4);
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--blue-dark);
  transform: translateY(-2px);
}

/* ---------- Header / Navigation ---------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--blue-nav);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--blue-dark);
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}
.logo-name span { color: var(--gold); }
.logo-tagline {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }

.nav-item { position: relative; }

.nav-link {
  display: block;
  padding: 8px 16px;
  color: #cdd8ef;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(212,160,23,0.1);
}

/* Dropdown */
.has-dropdown { cursor: pointer; }
.has-dropdown > .nav-link::after {
  content: ' ▾';
  font-size: 0.75rem;
  opacity: 0.8;
}
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: var(--blue-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 0;
  z-index: 200;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }

.dropdown a {
  display: block;
  padding: 10px 20px;
  color: #cdd8ef;
  font-size: 0.875rem;
  transition: all var(--transition);
}
.dropdown a:hover {
  color: var(--gold);
  background: rgba(212,160,23,0.08);
  padding-left: 26px;
}

.nav-cta {
  margin-left: 12px;
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--blue-dark) !important;
  font-weight: 700;
  border-radius: var(--radius);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  color: var(--blue-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212,160,23,0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0d2166 50%, var(--blue-mid) 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(212,160,23,0.08) 0%, transparent 70%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 36px 56px;
  align-items: stretch;
  position: relative;
  min-height: calc(88vh - 160px);
}

/* left col, row 1: text */
.hero-content {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
}

/* right col, row 1: animated card */
.hero-visual {
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
}

/* full width, row 2: stats strip */
.hero-stats {
  grid-column: 1 / -1;
  grid-row: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.35);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.1rem;
  color: #a8bcda;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Hero visual — right column, fills row height */
.hero-visual {
  position: relative;
  display: flex;
  align-items: stretch;
}
.hero-card-stack { position: relative; width: 340px; height: 380px; }
.hcard {
  position: absolute;
  background: var(--blue-mid);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.hcard-main { width: 300px; top: 40px; left: 20px; z-index: 2; }
.hcard-back { width: 280px; top: 10px; left: 50px; z-index: 1; transform: rotate(4deg); opacity: 0.6; }
.hcard-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.hcard h4 { color: var(--white); margin-bottom: 6px; }
.hcard p  { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.hcard-tag {
  display: inline-block;
  background: rgba(212,160,23,0.15);
  color: var(--gold);
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 14px;
  font-weight: 600;
}

/* ---------- Cards Grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: var(--blue-mid);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(212,160,23,0.45); }
.card:hover::before { opacity: 1; }

.card-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(212,160,23,0.18), rgba(212,160,23,0.06));
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
}
.card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.card p  { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 20px;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; }

/* ---------- Why Us / Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-dot {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
.feature-item h4 { color: var(--gold-light); margin-bottom: 4px; }
.feature-item p  { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ---------- Process Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  counter-reset: step;
}
.step {
  text-align: center;
  padding: 32px 20px;
  background: var(--blue-mid);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
}
.step-num {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin: 0 auto 20px;
}
.step h4 { color: var(--white); margin-bottom: 8px; }
.step p  { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial {
  background: var(--blue-mid);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial blockquote {
  font-style: italic;
  color: #a8bcda;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
  color: var(--blue-dark);
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 0.9rem; }
.reviewer-role { font-size: 0.78rem; color: var(--text-muted); }

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(135deg, #0d2166, #1a3066);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 span { color: var(--gold); }
.cta-band p { color: var(--text-muted); max-width: 560px; margin: 16px auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark), #0d2166);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: var(--text-muted); max-width: 640px; margin: 16px auto 0; font-size: 1.1rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: 0.5; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  background: var(--blue-mid);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
}
.about-icon-ring {
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 28px;
  background: rgba(212,160,23,0.08);
}
.about-nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.about-num {
  background: var(--blue-dark);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.about-num strong { font-size: 1.8rem; color: var(--gold); display: block; }
.about-num small { font-size: 0.78rem; color: var(--text-muted); }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--blue-mid);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-5px); border-color: rgba(212,160,23,0.4); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 700;
  color: var(--blue-dark);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  margin: 0 auto 20px;
}
.team-card h4 { margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--gold); font-weight: 600; }
.team-bio  { font-size: 0.83rem; color: var(--text-muted); margin-top: 12px; }

/* ---------- Service/Product Detail ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  align-items: flex-start;
}
.service-sidebar {
  position: sticky;
  top: 92px;
}
.sidebar-card {
  background: var(--blue-mid);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.sidebar-card h4 { color: var(--gold); margin-bottom: 20px; font-size: 1rem; }
.sidebar-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.875rem;
  color: #a8bcda;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-card li:last-child { border-bottom: none; }
.sidebar-card li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.content-section h2 {
  font-size: 1.5rem;
  color: var(--gold-light);
  margin: 40px 0 16px;
}
.content-section h2:first-child { margin-top: 0; }
.content-section p { margin-bottom: 16px; }
.content-section ul { margin: 0 0 20px 0; }
.content-section ul li {
  padding: 8px 0;
  color: #a8bcda;
  font-size: 0.925rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.content-section ul li::before { content: '▸'; color: var(--gold); flex-shrink: 0; margin-top: 1px; }

.tech-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.tech-tag {
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: flex-start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--blue-mid);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.contact-item-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(212,160,23,0.2), rgba(212,160,23,0.06));
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item h4 { color: var(--gold); font-size: 0.9rem; margin-bottom: 4px; }
.contact-item p  { font-size: 0.875rem; color: var(--text-muted); margin: 0; }
.contact-item a  { color: #a8bcda; }
.contact-item a:hover { color: var(--gold); }

/* Form */
.contact-form {
  background: var(--blue-mid);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.contact-form h3 { margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: #8fa3c8; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--blue-dark);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #4a6080; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.12);
}
.form-group select option { background: var(--blue-dark); color: var(--white); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit { width: 100%; font-size: 1rem; padding: 15px; margin-top: 8px; }

/* ---------- Footer ---------- */
#site-footer {
  background: #060d1a;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); margin: 16px 0 24px; max-width: 300px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--blue-mid);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}
.social-btn:hover { background: var(--gold); color: var(--blue-dark); border-color: var(--gold); }

.footer-col h5 {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--gold); }

/* ---------- Product Pricing Card ---------- */
.pricing-card {
  background: var(--blue-mid);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 36px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow);
}
.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  margin: 16px 0 4px;
}
.pricing-price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-price sub { font-size: 0.9rem; color: var(--text-muted); }
.pricing-card h3 { font-size: 1.4rem; }
.pricing-card p  { color: var(--text-muted); font-size: 0.875rem; margin: 8px 0 28px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.875rem;
  color: #a8bcda;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ---------- Alert / Notice ---------- */
.notice {
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.35);
  border-radius: var(--radius);
  padding: 18px 24px;
  color: var(--gold-light);
  font-size: 0.875rem;
  margin: 24px 0;
}

/* ---------- Hero Card Switcher ---------- */
.hcard-switcher {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
}

/* Each card fills the full switcher */
.hcard-slide {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  will-change: opacity, transform;

  /* layered background: dark base + subtle gold radial glow */
  background:
    radial-gradient(ellipse 70% 60% at 85% 15%, rgba(212,160,23,0.10) 0%, transparent 65%),
    linear-gradient(155deg, #0f1f4a 0%, #0a1628 100%);
  border: 1px solid rgba(212,160,23,0.18);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
}

/* Left accent bar */
.hcard-slide::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: none;
}

.hcard-slide.hcard-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hcard-slide.hcard-active::before {
  opacity: 1;
}

.hcard-slide.hcard-exit {
  opacity: 0;
  transform: translateY(-16px) scale(0.98);
}

/* Inner content wrapper with padding */
.hcard-slide-inner {
  position: absolute;
  inset: 0;
  padding: 36px 32px 70px;
  display: flex;
  flex-direction: column;
}

/* Number + category row */
.hcard-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.hcard-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
  font-variant-numeric: tabular-nums;
}

.hcard-category {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  padding: 2px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
}

/* Icon */
.hcard-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, rgba(212,160,23,0.22), rgba(212,160,23,0.06));
  border: 1px solid rgba(212,160,23,0.35);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.hcard h4 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.hcard p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

/* Tag */
.hcard-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.28);
  color: var(--gold-light);
  font-size: 0.73rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  margin-top: 18px;
  align-self: flex-start;
}

/* Gold border pulse on active card */
.hcard-slide.hcard-active::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  border: 1px solid var(--gold);
  opacity: 0;
  animation: hcard-glow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hcard-glow {
  0%, 100% { opacity: 0.2; }
  50%       { opacity: 0.7; }
}

/* Progress bar — thin strip at very bottom of each active card */
.hcard-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}

.hcard-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: inherit;
  transition: none;
}

.hcard-slide.hcard-active .hcard-progress-bar {
  width: 100%;
  transition: width 4s linear;
}

.hcard-slide.hcard-exit .hcard-progress-bar {
  width: 0%;
  transition: none;
}

/* Dots — below the card, vertically clear of it */
.hcard-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  z-index: 10;
}

.hcard-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212,160,23,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.hcard-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

.hcard-dot:hover:not(.active) {
  background: rgba(212,160,23,0.55);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner      { grid-template-columns: 1fr; min-height: 0; text-align: center; }
  .hero-content    { grid-column: 1; grid-row: 1; }
  .hero-visual     { grid-column: 1; grid-row: 2; height: 300px; }
  .hero-stats      { grid-column: 1; grid-row: 3; justify-content: center; }
  .hero p          { margin-left: auto; margin-right: auto; }
  .hero-actions    { justify-content: center; }
  .about-grid      { grid-template-columns: 1fr; }
  .service-detail  { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .footer-main     { grid-template-columns: 1fr 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav  {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--blue-nav);
    border-top: 1px solid var(--border);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  }
  .main-nav.open { display: flex; }
  .dropdown {
    position: static;
    border: none;
    box-shadow: none;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius);
    padding: 4px 0;
    margin-top: 4px;
  }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open .dropdown  { display: block; }
  .nav-cta { margin-left: 0; text-align: center; }
  .section { padding: 56px 0; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .about-nums { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .logo-tagline { display: none; }
  .hero { padding: 60px 0; min-height: 0; }
  .cta-band { padding: 48px 0; }
  .contact-form { padding: 28px 20px; }
  .pricing-card { padding: 32px 20px; }
}
