/* ==========================================================================
   JANA PADYŠÁKOVÁ – RIADITEĽKA SINGULOGI
   Master CSS Design System & Responsive Stylesheet
   Brand Colors: #1a3932, #118d5e, #c3f53c, #ffffff, #0c1f1a
   ========================================================================== */

:root {
  /* Brand Manual Color Palette */
  --primary-dark: #1a3932;
  --primary-dark-rgb: 26, 57, 50;
  --primary-darker: #0c1f1a;
  --primary-emerald: #118d5e;
  --primary-emerald-rgb: 17, 141, 94;
  --primary-emerald-light: #16a36d;
  --accent-lime: #c3f53c;
  --accent-lime-rgb: 195, 245, 60;
  --accent-lime-hover: #b4ea2a;
  --pure-white: #ffffff;
  
  /* Background & Surface Colors */
  --bg-body: #f8faf9;
  --bg-card: #ffffff;
  --bg-card-dark: #142f29;
  --bg-subtle: #edf5f0;
  --bg-dark-section: #0f2420;
  --bg-glass-dark: rgba(26, 57, 50, 0.88);
  --bg-glass-light: rgba(255, 255, 255, 0.92);

  /* Typography Colors */
  --text-dark: #122822;
  --text-muted: #556e66;
  --text-light: #f1f8f4;
  --text-light-muted: #a3c2b8;
  
  /* Borders & Shadows */
  --border-light: rgba(26, 57, 50, 0.12);
  --border-dark: rgba(255, 255, 255, 0.14);
  --border-accent: rgba(195, 245, 60, 0.4);
  
  --shadow-sm: 0 2px 8px rgba(26, 57, 50, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 57, 50, 0.08);
  --shadow-lg: 0 16px 40px rgba(26, 57, 50, 0.12);
  --shadow-glow: 0 0 30px rgba(195, 245, 60, 0.28);
  --shadow-dark: 0 20px 45px rgba(0, 0, 0, 0.4);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Transitions & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.15s ease;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Badges & Pills */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-lime {
  background-color: var(--accent-lime);
  color: var(--primary-darker);
}

.badge-emerald {
  background-color: rgba(17, 141, 94, 0.12);
  color: var(--primary-emerald);
  border: 1px solid rgba(17, 141, 94, 0.25);
}

.badge-dark-lime {
  background: rgba(195, 245, 60, 0.12);
  color: var(--accent-lime);
  border: 1px solid var(--border-accent);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-lime);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(195, 245, 60, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(195, 245, 60, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(195, 245, 60, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(195, 245, 60, 0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-lime);
  color: var(--primary-darker);
  box-shadow: 0 4px 14px rgba(195, 245, 60, 0.35);
}

.btn-primary:hover {
  background-color: var(--accent-lime-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(195, 245, 60, 0.45);
}

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

.btn-dark:hover {
  background-color: var(--primary-emerald);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary-dark);
  border: 1.5px solid var(--border-light);
}

.btn-outline-dark:hover {
  border-color: var(--primary-dark);
  background: rgba(26, 57, 50, 0.05);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  background: rgba(12, 31, 26, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  will-change: transform;
}

.site-header.scrolled {
  background: rgba(12, 31, 26, 0.96);
  border-bottom-color: rgba(195, 245, 60, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo img {
  height: 34px;
}

.agent-header-meta {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 14px;
  display: flex;
  flex-direction: column;
}

.agent-header-name {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
}

.agent-header-title {
  color: var(--accent-lime);
  font-size: 0.75rem;
  font-weight: 600;
}

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

.nav-link {
  color: var(--text-light-muted);
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-lime);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--primary-darker);
  border-bottom: 2px solid var(--accent-lime);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  box-shadow: var(--shadow-dark);
}

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

.mobile-nav .nav-link {
  font-size: 1.1rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #1a3932 0%, #0c1f1a 70%);
  padding: 140px 0 80px 0;
  overflow: hidden;
  color: #ffffff;
}

.hero-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(195, 245, 60, 0.08) 0%, rgba(17, 141, 94, 0) 70%);
  top: 10%;
  right: 5%;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-director-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(195, 245, 60, 0.35);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hero-director-badge span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-lime);
}

.hero-title {
  font-size: 2.8rem;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

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

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-light-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-desc strong {
  color: #ffffff;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-pill svg {
  color: var(--accent-lime);
}

/* Hero Portrait Card */
.hero-card-wrapper {
  position: relative;
}

.hero-portrait-card {
  position: relative;
  background: linear-gradient(145deg, rgba(26, 57, 50, 0.6), rgba(12, 31, 26, 0.9));
  border: 1.5px solid rgba(195, 245, 60, 0.3);
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: var(--shadow-dark);
  overflow: hidden;
}

.hero-photo-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-photo-container img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}

.hero-photo-container:hover img {
  transform: scale(1.03);
}

.hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(12, 31, 26, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(195, 245, 60, 0.4);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.badge-info-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: #ffffff;
}

.badge-info-role {
  font-size: 0.82rem;
  color: var(--accent-lime);
  font-weight: 600;
}

.badge-region-tag {
  background: rgba(195, 245, 60, 0.15);
  color: var(--accent-lime);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid rgba(195, 245, 60, 0.3);
}

/* ==========================================================================
   Stats Section (Dôvera v číslach - Mecesic / Singulogi style)
   ========================================================================== */
.stats-section {
  background: var(--bg-card);
  padding: 60px 0;
  position: relative;
  border-bottom: 1px solid var(--border-light);
  margin-top: -30px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  z-index: 10;
  box-shadow: 0 -15px 35px rgba(0, 0, 0, 0.05);
}

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

.stat-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-emerald);
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-emerald);
  opacity: 0;
  transition: var(--transition);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  width: 42px;
  height: 42px;
  background: rgba(17, 141, 94, 0.12);
  color: var(--primary-emerald);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Section General Styling
   ========================================================================== */
.section {
  padding: 90px 0;
  position: relative;
}

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

.section-header.text-center {
  text-align: center;
}

.section-header.text-center .badge {
  margin-bottom: 14px;
}

.section-title {
  font-size: 2.3rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
}

.section-header.text-center .section-desc {
  margin: 0 auto;
}

.dark-section {
  background: var(--bg-dark-section);
  color: #ffffff;
}

.dark-section .section-title {
  color: #ffffff;
}

.dark-section .section-desc {
  color: var(--text-light-muted);
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(17, 141, 94, 0.4);
}

.service-card.highlight-card {
  border: 2px solid var(--accent-lime);
  background: linear-gradient(180deg, #ffffff 0%, #f4faf6 100%);
}

.service-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(17, 141, 94, 0.1);
  color: var(--primary-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-card.highlight-card .service-icon-wrap {
  background: var(--primary-dark);
  color: var(--accent-lime);
}

.service-card-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.service-perks {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-perks li {
  font-size: 0.88rem;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.service-perks li svg {
  color: var(--primary-emerald);
  flex-shrink: 0;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-link {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary-emerald);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  color: var(--primary-dark);
  transform: translateX(4px);
}

/* ==========================================================================
   Calculators Module
   ========================================================================== */
.calc-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.calc-nav-tabs {
  display: flex;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-light);
  overflow-x: auto;
}

.calc-tab-btn {
  flex: 1;
  padding: 18px 24px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.calc-tab-btn:hover {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.5);
}

.calc-tab-btn.active {
  color: var(--primary-dark);
  background: #ffffff;
  border-bottom-color: var(--primary-emerald);
}

.calc-panel {
  display: none;
  padding: 40px;
}

.calc-panel.active {
  display: block;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: flex-start;
}

.calc-input-group {
  margin-bottom: 24px;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.calc-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.calc-value-badge {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-emerald);
  background: rgba(17, 141, 94, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

/* Range input slider styling */
.calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #dbe7e1;
  outline: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-emerald);
  border: 3px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: var(--accent-lime);
}

.calc-range-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-family: var(--font-mono);
}

/* Calc Results Card */
.calc-results-box {
  background: linear-gradient(145deg, #1a3932, #0c1f1a);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(195, 245, 60, 0.3);
}

.calc-results-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-lime);
  margin-bottom: 12px;
}

.calc-main-result {
  margin-bottom: 24px;
}

.calc-main-result-val {
  font-family: var(--font-mono);
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.calc-main-result-label {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  margin-top: 4px;
}

.calc-breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
}

.calc-breakdown-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
}

.calc-breakdown-item .label {
  color: var(--text-light-muted);
}

.calc-breakdown-item .value {
  font-family: var(--font-mono);
  font-weight: 700;
  color: #ffffff;
}

.calc-breakdown-item .value.savings {
  color: var(--accent-lime);
}

/* ==========================================================================
   Region & Team Hub (Čadca & Žilina)
   ========================================================================== */
.region-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.region-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.region-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-emerald);
}

.region-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.region-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(17, 141, 94, 0.1);
  color: var(--primary-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
}

.region-name {
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.region-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.region-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.region-detail-item svg {
  color: var(--primary-emerald);
  margin-top: 4px;
  flex-shrink: 0;
}

/* Career Banner */
.career-cta-banner {
  background: linear-gradient(135deg, #1a3932 0%, #0c1f1a 100%);
  border: 1.5px solid rgba(195, 245, 60, 0.35);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.career-banner-title {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.career-banner-desc {
  font-size: 1.05rem;
  color: var(--text-light-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.career-perks-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.career-perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #ffffff;
}

.career-perk-item svg {
  color: var(--accent-lime);
}

/* ==========================================================================
   Articles & Know-how Grid
   ========================================================================== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(17, 141, 94, 0.4);
}

.article-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.article-readtime {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.article-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
  line-height: 1.35;
}

.article-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   Testimonials / Reviews
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars-row {
  display: flex;
  gap: 4px;
  color: #f5a623;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-emerald);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.author-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Modal Popup
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 31, 26, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  display: flex;
  opacity: 1;
}

.modal-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-dark);
  border: 1px solid var(--border-light);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-subtle);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  font-size: 1.2rem;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--primary-dark);
  color: #ffffff;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: #ffffff;
  outline: none;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary-emerald);
  box-shadow: 0 0 0 3px rgba(17, 141, 94, 0.15);
}

.form-radio-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-pill-label {
  cursor: pointer;
}

.radio-pill-label input {
  display: none;
}

.radio-pill-label span {
  display: inline-block;
  padding: 8px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.radio-pill-label input:checked + span {
  background: var(--primary-dark);
  color: #ffffff;
  border-color: var(--primary-dark);
}

/* Floating Contact Button */
.floating-contact-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--accent-lime);
  color: var(--primary-darker);
  padding: 14px 22px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: var(--shadow-lg), 0 0 20px rgba(195, 245, 60, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 900;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.floating-contact-btn:hover {
  transform: translateY(-4px) scale(1.03);
  background: var(--accent-lime-hover);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--primary-darker);
  color: var(--text-light-muted);
  padding: 70px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand-title {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.footer-brand-role {
  color: var(--accent-lime);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-col-title {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-light-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-lime);
  padding-left: 4px;
}

/* Singulogi Partner Badge & Fee Comparison */
.singulogi-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  color: var(--accent-lime);
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
}

.singulogi-partner-badge:hover {
  background: rgba(195, 245, 60, 0.15);
  border-color: var(--accent-lime);
  color: #ffffff;
  transform: translateY(-2px);
}

.fee-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.fee-column {
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.fee-column-bank {
  background: rgba(197, 48, 48, 0.06);
  border-color: rgba(197, 48, 48, 0.2);
}

.fee-column-singulogi,
.fee-column-etf {
  background: rgba(17, 141, 94, 0.08);
  border-color: rgba(17, 141, 94, 0.25);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-light-muted);
}

/* Social Links & Buttons */
.social-icons-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}

.social-icon-btn:hover {
  background: var(--accent-lime);
  color: var(--primary-darker);
  border-color: var(--accent-lime);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(195, 245, 60, 0.35);
}

.social-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-pill-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-dark);
}

.social-pill-card:hover {
  border-color: var(--primary-emerald);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.social-pill-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.social-pill-icon.fb {
  background: #1877f2;
}

.social-pill-icon.ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-pill-icon.li {
  background: #0a66c2;
}

.social-pill-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}


/* Career & Contact Custom Modules */
.career-profiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mentor-quote-card {
  background: linear-gradient(135deg, #1a3932 0%, #0c1f1a 100%) !important;
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  border: 1.5px solid rgba(195, 245, 60, 0.35);
  box-shadow: var(--shadow-dark);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  align-items: center;
  color: #ffffff;
}

.mentor-quote-card h3 {
  color: #ffffff !important;
}

.mentor-quote-card p {
  color: #d6e6df !important;
}

.card-container-padded {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-grid-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: flex-start;
}

.persona-card-contact {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  align-items: center;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid, .articles-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .career-cta-banner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-menu, .nav-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding: 110px 0 50px 0;
  }

  .hero-title {
    font-size: clamp(1.85rem, 6.5vw, 2.4rem);
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: clamp(1.6rem, 5.5vw, 2.1rem);
  }

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

  .services-grid, .articles-grid, .testimonials-grid, .region-cards-grid {
    grid-template-columns: 1fr;
  }

  .career-profiles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mentor-quote-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 20px;
    gap: 20px;
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .calc-panel {
    padding: 24px 18px;
  }

  .calc-results-box {
    padding: 24px 18px;
  }

  .career-perks-list {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .floating-contact-btn span {
    display: none;
  }

  .floating-contact-btn {
    padding: 16px;
    bottom: 20px;
    right: 20px;
  }

  .hero-photo-container img {
    height: 380px;
  }

  .hero-cta-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .trust-pill {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

@media (max-width: 600px) {
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .card-container-padded {
    padding: 24px 16px;
  }

  .persona-card-contact {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
  }

  .container, .container-narrow {
    padding: 0 16px;
  }

  .modal-card {
    padding: 24px 16px;
    border-radius: var(--radius-lg);
  }

  .modal-backdrop {
    padding: 10px;
  }

  .calc-tab-btn {
    padding: 14px 14px;
    font-size: 0.85rem;
    flex: 0 0 auto;
  }

  .fee-compare-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-photo-container img {
    height: 330px;
  }

  .hero-floating-badge {
    position: static;
    margin-top: 12px;
    padding: 12px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .calc-main-result-val {
    font-size: 2.2rem;
  }

  .calc-range-ticks {
    font-size: 0.68rem;
  }

  .btn-lg {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}
