/* ==========================================================================
   LLC-POLAND.PL - COMPREHENSIVE NEUMORPHISM DESIGN SYSTEM
   Typography: Montserrat
   Palette:
     --black: #3e3e3e
     --white: #ffffff
     --light: #8cc0ff
     --main: #3691ff
     --glass: rgba(255, 255, 255, 0.8)
   ========================================================================== */

:root {
  /* Brand Core Colors */
  --black: #3e3e3e;
  --white: #ffffff;
  --light: #8cc0ff;
  --main: #3691ff;
  --main-dark: #1b74e4;
  --main-hover: #4ea2ff;
  --glass: rgba(255, 255, 255, 0.8);

  /* Light Neumorphic Surfaces & Shadows */
  --bg: #ebf1f8;
  --bg-surface: #ebf1f8;
  --bg-surface-alt: #f1f5fa;
  --shadow-light: #ffffff;
  --shadow-dark: #cdd9e8;
  --shadow-inset-dark: #c0ccd9;
  --border-subtle: rgba(255, 255, 255, 0.75);
  --border-accent: rgba(54, 145, 255, 0.25);

  --text-main: #2f3640;
  --text-muted: #576574;
  --text-light: #8395a7;

  /* Dark Neumorphic Surfaces & Shadows */
  --bg-dark: #19202c;
  --bg-dark-surface: #1e2634;
  --bg-dark-surface-alt: #161c27;
  --shadow-dark-raised-dark: #121720;
  --shadow-dark-raised-light: #283346;
  --shadow-dark-inset-dark: #10151d;
  --shadow-dark-inset-light: #263143;
  --border-dark-subtle: rgba(255, 255, 255, 0.08);
  --text-dark-main: #f3f4f6;
  --text-dark-muted: #9ca3af;
  --text-dark-light: #6b7280;

  /* Typography */
  --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Light Neumorphic Elevations */
  --nm-flat: 8px 8px 18px var(--shadow-dark), -8px -8px 18px var(--shadow-light);
  --nm-flat-sm: 4px 4px 10px var(--shadow-dark), -4px -4px 10px var(--shadow-light);
  --nm-raised: 12px 12px 26px var(--shadow-dark), -12px -12px 26px var(--shadow-light);
  --nm-inset: inset 4px 4px 8px var(--shadow-inset-dark), inset -4px -4px 8px var(--shadow-light);
  --nm-inset-sm: inset 2px 2px 5px var(--shadow-inset-dark), inset -2px -2px 5px var(--shadow-light);
  --nm-glow: 0 10px 25px rgba(54, 145, 255, 0.35);
  --nm-glow-sm: 0 4px 14px rgba(54, 145, 255, 0.22);

  /* Dark Neumorphic Elevations */
  --nm-dark-flat: 8px 8px 18px var(--shadow-dark-raised-dark), -8px -8px 18px var(--shadow-dark-raised-light);
  --nm-dark-flat-sm: 4px 4px 10px var(--shadow-dark-raised-dark), -4px -4px 10px var(--shadow-dark-raised-light);
  --nm-dark-raised: 12px 12px 26px var(--shadow-dark-raised-dark), -12px -12px 26px var(--shadow-dark-raised-light);
  --nm-dark-inset: inset 4px 4px 8px var(--shadow-dark-inset-dark), inset -4px -4px 8px var(--shadow-dark-inset-light);
  --nm-dark-inset-sm: inset 2px 2px 5px var(--shadow-dark-inset-dark), inset -2px -2px 5px var(--shadow-dark-inset-light);

  /* Radii */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  --transition: all 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);
  --container-max: 1240px;
}

/* ==========================================================================
   BASE RESET & TYPOGRAPHY
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

a:hover {
  color: var(--main-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  color: var(--black);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--main);
  background: var(--bg);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--nm-flat-sm);
  margin-bottom: 1rem;
  border: 1px solid var(--border-accent);
}

.section-title {
  margin-bottom: 1.2rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ==========================================================================
   LIGHT NEUMORPHIC SURFACES
   ========================================================================== */
.nm-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--nm-flat);
  border: 1px solid var(--border-subtle);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}

.nm-card-interactive {
  cursor: pointer;
}

.nm-card-interactive:hover {
  transform: translateY(-4px);
  box-shadow: var(--nm-raised);
}

.nm-inset {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--nm-inset);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.nm-inset-sm {
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--nm-inset-sm);
}

/* ==========================================================================
   DARK NEUMORPHISM (REPAIRED FOR DARK BACKGROUNDS)
   ========================================================================== */
.nm-dark-card {
  background: var(--bg-dark-surface);
  color: var(--text-dark-main);
  border-radius: var(--radius-lg);
  box-shadow: var(--nm-dark-flat);
  border: 1px solid var(--border-dark-subtle);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}

.nm-dark-card h1,
.nm-dark-card h2,
.nm-dark-card h3,
.nm-dark-card h4 {
  color: var(--white);
}

.nm-dark-card p {
  color: var(--text-dark-muted);
}

.nm-dark-inset {
  background: var(--bg-dark-surface-alt);
  border-radius: var(--radius-md);
  box-shadow: var(--nm-dark-inset);
  border: 1px solid var(--border-dark-subtle);
}

.nm-dark-inset-sm {
  background: var(--bg-dark-surface-alt);
  border-radius: var(--radius-sm);
  box-shadow: var(--nm-dark-inset-sm);
  border: 1px solid var(--border-dark-subtle);
}

.nm-dark-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--bg-dark-surface);
  color: var(--light);
  box-shadow: var(--nm-dark-flat-sm);
  border: 1px solid rgba(140, 192, 255, 0.25);
}

.nm-dark-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  border: 1px solid var(--border-dark-subtle);
  background: var(--bg-dark-surface);
  color: var(--white);
  box-shadow: var(--nm-dark-flat);
  transition: var(--transition);
}

.nm-dark-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--nm-dark-raised);
  color: var(--light);
  border-color: rgba(140, 192, 255, 0.4);
}

.nm-dark-btn:active {
  transform: translateY(1px);
  box-shadow: var(--nm-dark-inset-sm);
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.nm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  border: none;
  outline: none;
  transition: var(--transition);
  background: var(--bg-surface);
  color: var(--black);
  box-shadow: var(--nm-flat);
  border: 1px solid var(--border-subtle);
  user-select: none;
  white-space: nowrap;
}

.nm-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--nm-raised);
  color: var(--main);
}

.nm-btn:active {
  transform: translateY(1px);
  box-shadow: var(--nm-inset-sm);
}

.nm-btn-primary {
  background: linear-gradient(135deg, var(--main) 0%, #1e72e0 100%);
  color: var(--white) !important;
  box-shadow: var(--nm-glow), 6px 6px 14px var(--shadow-dark);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.nm-btn-primary:hover {
  background: linear-gradient(135deg, var(--main-hover) 0%, #1765c7 100%);
  color: var(--white) !important;
  box-shadow: 0 12px 28px rgba(54, 145, 255, 0.45), 8px 8px 18px var(--shadow-dark);
  transform: translateY(-2px);
}

.nm-btn-primary:active {
  box-shadow: inset 2px 2px 6px rgba(0, 0, 0, 0.3);
  transform: translateY(1px);
}

.nm-btn-lg {
  padding: 1rem 2rem;
  font-size: 1.02rem;
  font-weight: 700;
}

.nm-btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
}

.nm-btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   BADGES & PILLS
   ========================================================================== */
.nm-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--bg);
  box-shadow: var(--nm-flat-sm);
  color: var(--text-muted);
}

.nm-badge-primary {
  background: rgba(54, 145, 255, 0.12);
  color: var(--main);
  border: 1px solid var(--border-accent);
  box-shadow: var(--nm-flat-sm);
}

.nm-badge-success {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: var(--nm-flat-sm);
}

/* ==========================================================================
   FORMS & INPUTS
   ========================================================================== */
.nm-form-group {
  margin-bottom: 1.4rem;
  text-align: left;
}

.nm-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.nm-input,
.nm-select,
.nm-textarea {
  width: 100%;
  font-family: var(--font-family);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem;
  box-shadow: var(--nm-inset);
  outline: none;
  transition: var(--transition);
}

.nm-input:focus,
.nm-select:focus,
.nm-textarea:focus {
  border-color: var(--main);
  box-shadow: inset 3px 3px 7px var(--shadow-inset-dark), inset -3px -3px 7px var(--shadow-light), 0 0 0 3px rgba(54, 145, 255, 0.2);
}

.nm-textarea {
  min-height: 120px;
  resize: vertical;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR (DARK NEUMORPHIC ACCENT)
   ========================================================================== */
.top-announcement-bar {
  background: var(--bg-dark-surface-alt);
  color: var(--text-dark-muted);
  font-size: 0.82rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--border-dark-subtle);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-highlights {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.top-bar-locations {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-locations span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ==========================================================================
   HEADER & NAVBAR (FULL WIDTH)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(235, 241, 248, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(205, 217, 232, 0.5);
  transition: var(--transition);
}

.navbar-full {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: 100%;
  padding-left: clamp(1.2rem, 3.5vw, 3.5rem);
  padding-right: clamp(1.2rem, 3.5vw, 3.5rem);
  gap: 1.5rem;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: 100%;
  padding-left: clamp(1.2rem, 3.5vw, 3.5rem);
  padding-right: clamp(1.2rem, 3.5vw, 3.5rem);
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo img {
  height: 44px;
  width: auto;
}

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

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--black);
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--main);
}

.nav-link.active {
  color: var(--main);
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  box-shadow: var(--nm-flat-sm);
  cursor: pointer;
  color: var(--black);
  font-size: 1.4rem;
  line-height: 1;
}

.mobile-toggle:active {
  box-shadow: var(--nm-inset-sm);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 4.5rem 0 5.5rem 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  background: var(--bg);
  box-shadow: var(--nm-flat-sm);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--main);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-accent);
}

.hero-title {
  margin-bottom: 1.3rem;
  line-height: 1.18;
}

.hero-title span.gradient-text {
  background: linear-gradient(135deg, var(--main) 0%, #155bb5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(205, 217, 232, 0.6);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item i {
  color: var(--main);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-card-container {
  position: relative;
}

.hero-calc-card {
  padding: 2.2rem;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 1.5rem 0;
}

.stat-box {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-box .number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--main);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-box .label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* ==========================================================================
   PERKS & BENEFITS SECTION
   ========================================================================== */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.perk-card {
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.perk-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--bg);
  box-shadow: var(--nm-flat-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--main);
  font-size: 1.6rem;
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.perk-card:hover .perk-icon-wrap {
  box-shadow: var(--nm-glow-sm), var(--nm-flat-sm);
  color: #1765c7;
  transform: scale(1.05);
}

.perk-title {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.perk-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  flex-grow: 1;
}

.perk-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--main);
}

/* ==========================================================================
   TAXES SECTION & INTERACTIVE CALCULATOR
   ========================================================================== */
.taxes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.tax-model-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tax-model-item {
  padding: 1.8rem;
  border-left: 4px solid var(--main);
}

.tax-model-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.tax-rate-badge {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--main);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
}

.calc-widget {
  padding: 2.2rem;
}

.calc-slider-group {
  margin: 1.8rem 0;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.6rem;
}

.slider-val {
  font-weight: 700;
  color: var(--main);
  font-size: 1.05rem;
}

.nm-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: var(--bg);
  box-shadow: var(--nm-inset-sm);
  outline: none;
}

.nm-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--main);
  cursor: pointer;
  box-shadow: var(--nm-glow-sm), 2px 2px 5px var(--shadow-dark);
  transition: var(--transition);
}

.nm-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-result-box {
  margin-top: 2rem;
  padding: 1.5rem;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(205, 217, 232, 0.8);
  font-size: 0.95rem;
}

.result-row:last-child {
  border-bottom: none;
  padding-top: 1rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--main);
}

/* ==========================================================================
   HOW IT WORKS (STEP-BY-STEP TIMELINE)
   ========================================================================== */
.timeline-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 32px;
  width: 4px;
  background: linear-gradient(to bottom, var(--main), var(--light));
  border-radius: 2px;
}

.timeline-step {
  position: relative;
  display: flex;
  gap: 2rem;
  margin-bottom: 2.8rem;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-node {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: var(--nm-flat);
  border: 3px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--main);
  flex-shrink: 0;
  z-index: 2;
  transition: var(--transition);
}

.timeline-step:hover .timeline-node {
  box-shadow: var(--nm-glow), var(--nm-raised);
  transform: scale(1.08);
  color: #1765c7;
}

.timeline-content {
  flex-grow: 1;
  padding: 1.8rem;
}

.timeline-timeframe {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--main);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

/* ==========================================================================
   KNOWLEDGE & FAQ SECTION
   ========================================================================== */
.knowledge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.accordion-item {
  margin-bottom: 1.2rem;
  overflow: hidden;
  padding: 0;
}

.accordion-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.3rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-family);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  transition: var(--transition);
}

.accordion-header:hover {
  color: var(--main);
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: var(--nm-flat-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  box-shadow: var(--nm-inset-sm);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease;
  padding: 0 1.6rem;
}

.accordion-item.active .accordion-body {
  max-height: 800px;
  padding: 0.5rem 1.6rem 1.6rem 1.6rem;
}

/* ==========================================================================
   PRICING / PACKAGES SECTION
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  position: relative;
}

.pricing-card.popular {
  border: 2px solid var(--main);
  box-shadow: var(--nm-glow-sm), var(--nm-raised);
  transform: translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--main);
  color: var(--white);
  padding: 0.35rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--nm-glow-sm);
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-name {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
  margin: 1rem 0 0.25rem 0;
}

.pricing-price .currency {
  font-size: 1.2rem;
  font-weight: 600;
  vertical-align: super;
}

.pricing-price .period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0 2.5rem 0;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.93rem;
  color: var(--text-muted);
}

.pricing-features li i {
  color: var(--main);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ==========================================================================
   BLOG SECTION
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 1.8rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.82rem;
}

.blog-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  line-height: 1.35;
}

.blog-card-title a {
  color: var(--black);
}

.blog-card-title a:hover {
  color: var(--main);
}

.blog-excerpt {
  font-size: 0.94rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(205, 217, 232, 0.6);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Blog Single Article Reader */
.article-header {
  text-align: center;
  max-width: 860px;
  margin: 2rem auto 3rem auto;
}

.article-title {
  margin: 1.2rem 0;
}

.article-meta-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.article-meta-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.article-body {
  max-width: 860px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.85;
}

.article-body h2 {
  margin: 2.5rem 0 1.2rem 0;
}

.article-body h3 {
  margin: 2rem 0 1rem 0;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body ul, .article-body ol {
  margin: 1.2rem 0 1.8rem 2rem;
}

.article-body li {
  margin-bottom: 0.6rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CALL TO ACTION BANNER (CLEAN LIGHT DESIGN)
   ========================================================================== */
.cta-banner {
  background: linear-gradient(145deg, #f3f8fd 0%, #e6eff9 100%);
  color: var(--text-main);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 14px 14px 30px var(--shadow-dark), -14px -14px 30px var(--shadow-light);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.cta-banner h2 {
  color: var(--black);
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
}

.cta-banner p {
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.1rem;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER & LEGAL NOTICE (MANDATORY EXACT TEXT)
   ========================================================================== */
.site-footer {
  margin-top: auto;
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2.5rem 0;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 1.3rem;
  position: relative;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  display: inline-block;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--main);
  transform: translateX(3px);
}

/* Legal Notice Box */
.footer-legal-container {
  padding: 2.2rem;
  margin-bottom: 2.5rem;
}

.legal-notice-heading {
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--main);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legal-notice-text {
  font-size: 0.84rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.legal-notice-text p {
  font-size: 0.84rem;
  margin-bottom: 1rem;
}

.legal-notice-text p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(205, 217, 232, 0.7);
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS & MOBILE REPAIRS)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid,
  .taxes-grid,
  .knowledge-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .navbar,
  .navbar-full {
    height: 72px;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .brand-logo img {
    height: 38px;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(235, 241, 248, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem 1.5rem;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-150%);
    transition: transform 0.32s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-bottom: 1px solid var(--border-subtle);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .nav-link {
    font-size: 1.05rem;
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: center;
    border-radius: var(--radius-md);
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-actions .nm-btn {
    display: none;
  }

  .mobile-only-cta {
    display: block !important;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-trust-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timeline-line {
    left: 22px;
  }

  .timeline-step {
    gap: 1.2rem;
    margin-bottom: 2rem;
  }

  .timeline-node {
    width: 48px;
    height: 48px;
    font-size: 1.05rem;
  }

  .timeline-content {
    padding: 1.4rem 1.2rem;
  }

  .cta-banner {
    padding: 3rem 1.5rem;
    border-radius: var(--radius-lg);
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .nm-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-stat-row {
    grid-template-columns: 1fr;
  }

  .top-bar-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }

  .top-bar-locations {
    justify-content: center;
    gap: 0.8rem;
  }

  .pricing-price {
    font-size: 2rem;
  }
}
