/* =============================================
   LUNQENTRO - Main Stylesheet
   Professional Kitchen Equipment Repair
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --slate-900: #1a2332;
  --slate-800: #243044;
  --slate-700: #2e3f58;
  --slate-600: #3d5170;
  --copper: #b87333;
  --copper-light: #d4894a;
  --copper-dark: #8a5520;
  --grey-100: #f4f6f9;
  --grey-200: #e8ecf1;
  --grey-300: #cdd4de;
  --grey-500: #7e8fa6;
  --grey-700: #4a5568;
  --white: #ffffff;
  --text-primary: #1a2332;
  --text-secondary: #4a5568;
  --text-muted: #7e8fa6;
  --border: #dde3ec;
  --shadow-sm: 0 1px 3px rgba(26,35,50,0.08);
  --shadow-md: 0 4px 16px rgba(26,35,50,0.10);
  --shadow-lg: 0 12px 40px rgba(26,35,50,0.14);
  --shadow-xl: 0 24px 64px rgba(26,35,50,0.18);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--slate-900);
}

a { color: var(--copper); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--copper-light); }

img { max-width: 100%; height: auto; display: block; }

p { margin-bottom: 1rem; color: var(--text-secondary); }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; color: var(--text-secondary); }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-copper { color: var(--copper); }
.bg-slate { background: var(--slate-900); }
.bg-light { background: var(--grey-100); }
.bg-white { background: var(--white); }

/* ---- Section Spacing ---- */
.section { padding: 80px 0; }
.section-lg { padding: 100px 0; }
.section-sm { padding: 48px 0; }

/* ---- Section Labels ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  background: rgba(184,115,51,0.10);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}
.btn-primary:hover {
  background: var(--copper-light);
  border-color: var(--copper-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,115,51,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--slate-900);
  border-color: var(--border);
}
.btn-outline-dark:hover {
  background: var(--slate-900);
  color: var(--white);
  border-color: var(--slate-900);
  transform: translateY(-2px);
}

.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184,115,51,0.25);
}
.card-body { padding: 28px; }
.card-img { width: 100%; height: 220px; object-fit: cover; }

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(26,35,50,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(26,35,50,0.99);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  width: 100%;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar-brand .logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--copper), var(--copper-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.5px;
}
.navbar-brand .brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.3px;
}
.navbar-brand .brand-tagline {
  font-size: 0.7rem;
  color: var(--grey-500);
  font-weight: 400;
  display: block;
  line-height: 1;
  margin-top: 1px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0; margin: 0;
}
.navbar-nav a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 7px;
  transition: all var(--transition);
  text-decoration: none;
}
.navbar-nav a:hover, .navbar-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.navbar-cta {
  background: var(--copper) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
}
.navbar-cta:hover {
  background: var(--copper-light) !important;
}

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 230px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  list-style: none;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
}
.dropdown-menu li a {
  display: block;
  padding: 9px 14px;
  color: var(--text-secondary) !important;
  font-size: 0.88rem;
  border-radius: 6px;
}
.dropdown-menu li a:hover {
  background: var(--grey-100) !important;
  color: var(--slate-900) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-700) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,35,50,0.92) 0%, rgba(46,63,88,0.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,115,51,0.18);
  border: 1px solid rgba(184,115,51,0.4);
  color: var(--copper-light);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.4rem;
  font-weight: 800;
}
.hero-title .accent { color: var(--copper-light); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}
.hero-stat-item .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--copper);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-item i { font-size: 1.1rem; opacity: 0.9; }

/* ---- Services Grid ---- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-body { padding: 24px; }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(184,115,51,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--copper);
  margin-bottom: 16px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--copper);
  color: var(--white);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; margin-bottom: 16px; }

/* ---- Stats Section ---- */
.stat-block {
  text-align: center;
  padding: 32px 20px;
}
.stat-block .number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--copper);
  line-height: 1;
  display: block;
}
.stat-block .label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.testimonial-stars { color: #f59e0b; margin-bottom: 16px; font-size: 1.1rem; }
.testimonial-text {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--copper-light);
}
.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  display: block;
}
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* ---- Team ---- */
.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184,115,51,0.25);
}
.team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--copper-light);
}
.team-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.82rem;
  color: var(--copper);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.team-bio { font-size: 0.88rem; color: var(--text-secondary); }

/* ---- Process Timeline ---- */
.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 40px;
}
.process-step:last-child { padding-bottom: 0; }
.process-step::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 50px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.process-step:last-child::after { display: none; }
.step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(184,115,51,0.35);
}
.step-content { flex: 1; padding-top: 8px; }
.step-content h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.step-content p { font-size: 0.9rem; margin: 0; }

/* ---- FAQ Accordion ---- */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text-primary);
  text-align: left;
  gap: 12px;
  transition: all var(--transition);
}
.accordion-button:hover { background: var(--grey-100); }
.accordion-button.active { background: var(--grey-100); color: var(--copper); }
.accordion-button .icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--grey-700);
  flex-shrink: 0;
  transition: all var(--transition);
}
.accordion-button.active .icon {
  background: var(--copper);
  color: var(--white);
  transform: rotate(45deg);
}
.accordion-body {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.accordion-body.show { display: block; }

/* ---- Interactive Quiz/Tool ---- */
.quiz-container {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.quiz-title {
  font-size: 1.3rem;
  font-family: var(--font-heading);
  margin-bottom: 8px;
}
.quiz-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}
.quiz-progress-dot {
  height: 4px;
  flex: 1;
  border-radius: 2px;
  background: var(--grey-200);
  transition: background var(--transition);
}
.quiz-progress-dot.active { background: var(--copper); }
.quiz-question { font-weight: 600; font-size: 1rem; margin-bottom: 16px; }
.quiz-options { display: grid; gap: 10px; }
.quiz-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  color: var(--text-primary);
  background: var(--white);
}
.quiz-option:hover { border-color: var(--copper-light); background: rgba(184,115,51,0.04); }
.quiz-option.selected { border-color: var(--copper); background: rgba(184,115,51,0.08); color: var(--copper); }
.quiz-option i { color: var(--copper); font-size: 1.1rem; }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; }
.quiz-result {
  text-align: center;
  padding: 24px;
  background: var(--grey-100);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.quiz-result-icon { font-size: 3rem; color: var(--copper); margin-bottom: 12px; }

/* ---- Calculator ---- */
.calc-form { display: grid; gap: 20px; }
.calc-field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.calc-field select, .calc-field input[type="range"] {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.calc-field select:focus { border-color: var(--copper); }
.calc-field input[type="range"] {
  padding: 0;
  accent-color: var(--copper);
  cursor: pointer;
}
.calc-result-box {
  text-align: center;
  padding: 28px;
  background: linear-gradient(135deg, var(--slate-900), var(--slate-700));
  border-radius: var(--radius-lg);
  color: var(--white);
}
.calc-result-box .result-years {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--copper-light);
  display: block;
  line-height: 1;
}

/* ---- Map Section ---- */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.map-embed iframe { display: block; width: 100%; }

/* ---- Contact Form ---- */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.form-control {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-primary);
  background: var(--white);
  outline: none;
  transition: all var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(184,115,51,0.12);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-error { font-size: 0.8rem; color: #dc2626; margin-top: 5px; display: none; }
.form-control.error { border-color: #dc2626; }

/* ---- Page Header ---- */
.page-header {
  background: linear-gradient(135deg, var(--slate-900), var(--slate-700));
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/s1.webp') center/cover;
  opacity: 0.12;
}
.page-header-content { position: relative; z-index: 2; }
.page-header h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 540px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.breadcrumb a:hover { color: var(--copper-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); font-size: 0.75rem; }
.breadcrumb .current { color: var(--copper-light); font-size: 0.82rem; font-weight: 500; }

/* ---- Article ---- */
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.article-meta span { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.article-content h2 { font-size: 1.55rem; margin: 2rem 0 1rem; }
.article-content h3 { font-size: 1.2rem; margin: 1.75rem 0 0.75rem; }
.article-content p { margin-bottom: 1.2rem; }
.article-content ul { margin-bottom: 1.2rem; }
.article-content img {
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.article-callout {
  background: rgba(184,115,51,0.07);
  border-left: 4px solid var(--copper);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 2rem 0;
}
.article-callout p { margin: 0; font-weight: 500; }

/* ---- Footer ---- */
.footer {
  background: var(--slate-900);
  color: rgba(255,255,255,0.7);
  padding-top: 70px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-brand .logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--copper), var(--copper-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
}
.footer-brand .name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
}
.footer-desc { font-size: 0.88rem; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer h5 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--copper-light); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.footer-contact-item i { color: var(--copper); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.87rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: gap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; margin: 0; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.footer-legal a:hover { color: var(--copper-light); }

/* ---- SVG Dividers ---- */
.divider-slate-to-white { fill: var(--white); }
.divider-white-to-grey { fill: var(--grey-100); }
.divider-grey-to-white { fill: var(--white); }

/* ---- Cookie Banner ---- */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--slate-900);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  display: none;
  border: 1px solid rgba(255,255,255,0.08);
}
#cookie-banner h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}
#cookie-banner p { font-size: 0.85rem; margin-bottom: 16px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.mobile-menu{
  display: none;
}
.navbar-nav{
  flex-direction: row;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .navbar-nav, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu {
    position: fixed;
    top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--slate-900);
    padding: 24px;
    z-index: 999;
    overflow-y: auto;
    display: none;
  }
  .mobile-menu.open { display: block; }
  .mobile-menu ul { list-style: none; padding: 0; }
  .mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .mobile-menu ul li a {
    display: block;
    padding: 14px 0;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    text-decoration: none;
  }
  .hero-title { font-size: 2.2rem; }
  .process-step { flex-direction: column; }
  .process-step::after { left: 23px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-lg { padding: 70px 0; }
  .hero { min-height: auto; }
  .hero-content { padding: 100px 0 60px; }
  .trust-bar-inner { gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .quiz-container { padding: 24px 20px; }
}

/* ---- Grid helpers ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-3 { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 32px; }

@media (max-width: 991px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2-3, .grid-1-2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ---- Misc ---- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.badge-copper { background: rgba(184,115,51,0.12); color: var(--copper); }
.badge-slate { background: rgba(26,35,50,0.1); color: var(--slate-700); }

.info-box {
  background: var(--grey-100);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.info-box i { color: var(--copper); margin-right: 8px; }

.highlight-panel {
  background: linear-gradient(135deg, var(--slate-900), var(--slate-700));
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.highlight-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(184,115,51,0.12);
}

.check-list { list-style: none; padding: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  color: var(--text-secondary);
  font-size: 0.93rem;
}
.check-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--copper);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Legal page styles */
.legal-content h2 { font-size: 1.4rem; margin: 2.5rem 0 0.75rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
.legal-content p { margin-bottom: 1rem; font-size: 0.95rem; }
.legal-content ul { margin-bottom: 1rem; }
.legal-content ul li { font-size: 0.95rem; }

.logo{
  max-width: 200px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}