/* ============================================
   GLOBAL STYLES - Consulting Website
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #0a2540;
  --accent: #c8a96e;
  --light: #f7f9fc;
  --white: #ffffff;
  --gray: #6b7280;
  --dark: #111827;
  --border: #e5e7eb;
  --font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(10,37,64,0.10);
  --radius: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover {
  background: transparent;
  color: var(--primary);
}

/* ============================================
   SECTION HELPERS
   ============================================ */
.section { padding: 90px 0; }
.section-light { background: var(--light); }
.section-dark { background: var(--primary); color: var(--white); }

.section-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-dark .section-title { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 48px;
}

.section-dark .section-sub { color: rgba(255,255,255,0.75); }

.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(10,37,64,0.08);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--accent); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--primary); }

.nav-cta { margin-left: 12px; }

/* Dropdown */
.nav-item { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: var(--white);
  min-width: 200px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px 0;
  z-index: 999;
}
.nav-item:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--dark);
  transition: var(--transition);
}
.dropdown-menu a:hover {
  background: var(--light);
  color: var(--accent);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 60%, #163a5f 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -150px;
  width: 600px; height: 600px;
  background: var(--accent);
  opacity: 0.07;
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -100px;
  width: 400px; height: 400px;
  background: var(--accent);
  opacity: 0.05;
  border-radius: 50%;
}

.hero-content { color: var(--white); max-width: 650px; z-index: 1; }
.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title span { color: var(--accent); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 40px;
  max-width: 500px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(10,37,64,0.14);
}

.card-icon {
  width: 56px; height: 56px;
  background: rgba(200,169,110,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.card-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

/* ============================================
   GRIDS
   ============================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--primary);
  padding: 56px 0;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
  font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 80px;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 16px;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}
.author-name { font-weight: 700; color: var(--primary); font-size: 15px; }
.author-role { font-size: 13px; color: var(--gray); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), #163a5f);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  background: var(--accent);
  opacity: 0.08;
  border-radius: 50%;
}
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 36px;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   CONTACT STRIP
   ============================================ */
.contact-strip {
  background: var(--light);
  padding: 60px 0;
}
.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
  text-align: center;
}
.contact-strip-item .icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.contact-strip-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.contact-strip-item p { color: var(--gray); font-size: 15px; }

/* ============================================
   BLOG
   ============================================ */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.blog-card:hover { transform: translateY(-5px); }
.blog-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), #163a5f);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.blog-body { padding: 24px; }
.blog-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 10px;
}
.blog-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-meta {
  font-size: 13px;
  color: var(--gray);
  display: flex;
  gap: 16px;
}

/* ============================================
   TEAM
   ============================================ */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); }
.team-photo {
  height: 220px;
  background: linear-gradient(135deg, var(--primary) 0%, #1e5080 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  color: var(--accent);
}
.team-info { padding: 24px; }
.team-name { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.team-role { font-size: 14px; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.team-bio { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.step-number {
  min-width: 64px; height: 64px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-weight: 900;
}
.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.step-content p { color: var(--gray); }

/* ============================================
   PRICING
   ============================================ */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px 36px;
  text-align: center;
  border: 2px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  transform: scale(1.04);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
}
.pricing-name { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gray); margin-bottom: 12px; }
.pricing-price { font-size: 52px; font-weight: 900; color: var(--primary); line-height: 1; }
.pricing-price sup { font-size: 24px; vertical-align: super; }
.pricing-period { font-size: 14px; color: var(--gray); margin: 8px 0 28px; }
.pricing-features { text-align: left; margin-bottom: 32px; }
.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--dark);
  display: flex;
  gap: 10px;
  align-items: center;
}
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  font-size: 16px;
}
.faq-question:hover { background: var(--light); }
.faq-icon {
  font-size: 20px;
  color: var(--accent);
  transition: var(--transition);
  min-width: 24px;
  text-align: center;
}
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--gray);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-question { background: var(--light); }

/* ============================================
   CONTACT FORM
   ============================================ */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 7px;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--dark);
  transition: var(--transition);
  font-family: var(--font);
  background: var(--white);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.12);
}
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }

/* ============================================
   MAP PLACEHOLDER
   ============================================ */
.map-placeholder {
  height: 380px;
  background: linear-gradient(135deg, #e8f0fe, #dde8f5);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  gap: 12px;
  border: 2px dashed var(--border);
}
.map-placeholder .map-icon { font-size: 56px; }

/* ============================================
   FILTERS (Project page)
   ============================================ */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 30px;
  border: 2px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 60%, #163a5f);
  padding: 120px 0 70px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  margin-bottom: 14px;
}
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.78); }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  margin-top: 18px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.40); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo span { color: var(--accent); }
.footer-desc { font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover { background: var(--accent); color: var(--primary); }
.footer-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-newsletter input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.40); }
.footer-newsletter input:focus { outline: none; background: rgba(255,255,255,0.12); }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a:hover { color: var(--accent); }

/* ============================================
   CHATBOT
   ============================================ */
.chatbot-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  border: none;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(200,169,110,0.45);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.chatbot-fab:hover { transform: scale(1.1); }

.chatbot-window {
  position: fixed;
  bottom: 100px; right: 28px;
  width: 360px;
  max-height: 520px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(10,37,64,0.20);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0) translateY(20px);
  transform-origin: bottom right;
  transition: 0.3s cubic-bezier(0.34,1.56,0.64,1);
  opacity: 0;
}
.chatbot-window.open {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.chatbot-header {
  background: var(--primary);
  color: var(--white);
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chatbot-header-info h4 { font-size: 16px; font-weight: 700; }
.chatbot-header-info p { font-size: 12px; color: rgba(255,255,255,0.65); }
.chatbot-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  opacity: 0.75;
}
.chatbot-close:hover { opacity: 1; }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-msg {
  max-width: 82%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.6;
}
.chat-msg.bot {
  background: var(--light);
  color: var(--dark);
  border-radius: 4px 14px 14px 14px;
  align-self: flex-start;
}
.chat-msg.user {
  background: var(--primary);
  color: var(--white);
  border-radius: 14px 14px 4px 14px;
  align-self: flex-end;
}

.chatbot-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 12px;
}
.quick-reply {
  padding: 6px 14px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--primary);
  font-weight: 600;
}
.quick-reply:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.chatbot-input-row {
  display: flex;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  gap: 10px;
}
.chatbot-input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 10px 16px;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}
.chatbot-input:focus { border-color: var(--accent); }
.chatbot-send {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.chatbot-send:hover { background: var(--accent); color: var(--primary); }

/* ============================================
   SERVICES INDUSTRY TAGS
   ============================================ */
.industry-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-tag {
  padding: 9px 20px;
  background: var(--light);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  cursor: default;
}
.industry-tag:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ============================================
   TIMELINE (Project Details)
   ============================================ */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 12px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
}
.timeline-dot {
  position: absolute;
  left: -36px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-date {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.timeline-title { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.timeline-desc { font-size: 14px; color: var(--gray); }

/* ============================================
   CAREERS
   ============================================ */
.job-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.job-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.job-title { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--light);
  color: var(--gray);
}
.job-tag.highlight { background: rgba(200,169,110,0.15); color: var(--accent); }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 100px; left: 28px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
  border: none;
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); color: var(--primary); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    align-items: flex-start;
  }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 16px; padding: 8px 0; }
  .nav-toggle { display: flex; }
  .dropdown-menu { position: static; box-shadow: none; padding-left: 16px; display: none; }
  .nav-item:hover .dropdown-menu { display: none; }
  .nav-item.open .dropdown-menu { display: block; }
  .nav-cta { width: 100%; }
  .nav-cta .btn { width: 100%; text-align: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .contact-strip-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .pricing-card.featured { transform: scale(1); }
  .chatbot-window { width: calc(100vw - 32px); right: 16px; }

  .job-card { flex-direction: column; align-items: flex-start; }
  .process-step { flex-direction: column; gap: 16px; }

  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .stat-num { font-size: 36px; }
}