/* ========================================
   plusbike.com — Main Stylesheet
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

/* ========================================
   CSS Variables
   ======================================== */
:root {
  --color-dark: #2D3436;
  --color-mid: #636E72;
  --color-primary: #00B894;
  --color-accent: #55EFC4;
  --color-light: #DFE6E9;
  --color-white: #ffffff;
  --color-bg: #f8fafb;

  --font-heading: 'DM Sans', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  --radius: 12px;
  --transition: 0.3s ease;
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);

  --container: 1200px;
  --header-h: 72px;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-dark);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ========================================
   Container
   ======================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   Header
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-light);
  height: var(--header-h);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-dark);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.logo span {
  color: var(--color-primary);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--color-mid);
  padding: 6px 12px;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary);
  background: rgba(0, 184, 148, 0.08);
}

.nav-cta {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  padding: 8px 20px !important;
  border-radius: 6px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--color-dark) !important;
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: all var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-light);
  z-index: 999;
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-md);
}

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

.mobile-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-dark);
  padding: 12px 16px;
  border-radius: 8px;
  transition: all var(--transition);
}

.mobile-nav a:hover {
  background: rgba(0, 184, 148, 0.08);
  color: var(--color-primary);
}

/* ========================================
   Page Offset
   ======================================== */
.page-content {
  padding-top: var(--header-h);
}

/* ========================================
   Hero — Full Viewport
   ======================================== */
.hero-full {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-dark);
}

.hero-full .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-full .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-full .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 40px 24px;
  max-width: 860px;
}

.hero-full .hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--color-white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero-full .hero-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  font-weight: 300;
}

/* ========================================
   Hero — Banner (with breadcrumb)
   ======================================== */
.hero-banner {
  position: relative;
  padding: 120px 0 80px;
  background: var(--color-dark);
  overflow: hidden;
}

.hero-banner .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.hero-banner .hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}

.hero-banner h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--color-white);
  margin-bottom: 1rem;
}

.hero-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
}

/* ========================================
   Hero — Compact
   ======================================== */
.hero-compact {
  background: var(--color-dark);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-compact::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--color-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-compact .hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}

.hero-compact h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.hero-compact p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
}

/* ========================================
   Breadcrumb
   ======================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--color-accent);
}

.breadcrumb span {
  color: rgba(255,255,255,0.5);
}

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

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.btn-outline-dark:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

/* ========================================
   Section Spacing
   ======================================== */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 50px 0;
}

.section-lg {
  padding: 100px 0;
}

.section-alt {
  background: var(--color-bg);
}

.section-dark {
  background: var(--color-dark);
  color: var(--color-white);
}

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

/* ========================================
   Section Headers
   ======================================== */
.section-header {
  margin-bottom: 3rem;
}

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

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-mid);
  max-width: 600px;
  font-weight: 300;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* ========================================
   Cards
   ======================================== */
.card {
  border: 1px solid var(--color-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  background: var(--color-white);
}

.card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-primary);
}

.card-body {
  padding: 24px;
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-tag {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card-text {
  font-size: 0.95rem;
  color: var(--color-mid);
  line-height: 1.6;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--color-mid);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-light);
}

/* ========================================
   Feature / Icon Cards
   ======================================== */
.feature-card {
  padding: 32px;
  border: 1px solid var(--color-light);
  border-radius: var(--radius);
  transition: all var(--transition);
  background: var(--color-white);
}

.feature-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 184, 148, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-primary);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--color-mid);
}

/* ========================================
   Grid Layouts
   ======================================== */
.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-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* ========================================
   Stats / Counter
   ======================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid var(--color-light);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-mid);
  font-weight: 500;
}

/* ========================================
   Partners Logo Strip
   ======================================== */
.partners-strip {
  background: var(--color-bg);
  padding: 40px 0;
  border-top: 1px solid var(--color-light);
  border-bottom: 1px solid var(--color-light);
}

.partners-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-mid);
  margin-bottom: 2rem;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
}

.partner-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-mid);
  opacity: 0.6;
  transition: opacity var(--transition);
  letter-spacing: -0.02em;
}

.partner-logo:hover {
  opacity: 1;
  color: var(--color-dark);
}

/* ========================================
   Tabs
   ======================================== */
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--color-light);
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: 0;
}

.tab-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 20px;
  border: none;
  background: none;
  color: var(--color-mid);
  cursor: pointer;
  transition: all var(--transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
}

.tab-btn.active, .tab-btn:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.tab-panel {
  display: none;
}

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

/* ========================================
   Timeline / Process
   ======================================== */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 24px;
}

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

.timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-primary);
}

.timeline-step {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-text {
  color: var(--color-mid);
  font-size: 0.95rem;
}

/* ========================================
   FAQ Accordion
   ======================================== */
.accordion {
  border: 1px solid var(--color-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--color-light);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--color-white);
  transition: background var(--transition);
}

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

.accordion-header h3 {
  font-size: 1rem;
  font-weight: 600;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition);
}

.accordion-item.open .accordion-body {
  padding: 0 24px 20px;
  max-height: 500px;
}

.accordion-body p {
  color: var(--color-mid);
  font-size: 0.95rem;
}

/* ========================================
   Team Grid
   ======================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  border: 1px solid var(--color-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  text-align: center;
}

.team-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-primary);
}

.team-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
}

.team-info {
  padding: 20px;
}

.team-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 500;
}

/* ========================================
   Contact Form
   ======================================== */
.contact-form {
  background: var(--color-white);
  border: 1px solid var(--color-light);
  border-radius: var(--radius);
  padding: 40px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark);
  background: var(--color-white);
  transition: border-color var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.1);
}

.form-control.error {
  border-color: #e74c3c;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  font-size: 0.8rem;
  color: #e74c3c;
  margin-top: 0.25rem;
  display: none;
}

.form-error.visible {
  display: block;
}

/* ========================================
   Map
   ======================================== */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-light);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 420px;
}

/* ========================================
   Sidebar Layout
   ======================================== */
.sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.sidebar-widget {
  border: 1px solid var(--color-light);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  background: var(--color-white);
}

.sidebar-widget h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-light);
}

.post-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-light);
  font-size: 0.9rem;
}

.post-list li:last-child {
  border-bottom: none;
}

.post-list a {
  font-weight: 500;
  color: var(--color-dark);
}

.post-list a:hover {
  color: var(--color-primary);
}

/* ========================================
   Blog Article
   ======================================== */
.article-hero {
  padding: 120px 0 60px;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.article-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.article-hero .hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 820px;
}

.article-hero h1 {
  color: var(--color-white);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  flex-wrap: wrap;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-dark);
  max-width: 800px;
}

.article-body h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-body h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

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

.article-body ul, .article-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body li {
  margin-bottom: 0.5rem;
  color: var(--color-mid);
}

.pull-quote {
  border-left: 4px solid var(--color-primary);
  padding: 20px 24px;
  margin: 2rem 0;
  background: var(--color-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-dark);
}

/* ========================================
   Share Buttons / Tags
   ======================================== */
.share-section {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--color-light);
  border-bottom: 1px solid var(--color-light);
}

.share-label {
  font-weight: 600;
  font-size: 0.9rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--color-light);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
  background: var(--color-white);
}

.share-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.tags-section {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-bg);
  border: 1px solid var(--color-light);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-mid);
  transition: all var(--transition);
}

.tag:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* ========================================
   Author Bio
   ======================================== */
.author-bio {
  display: flex;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--color-light);
  border-radius: var(--radius);
  margin-top: 3rem;
}

.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--color-mid);
}

/* ========================================
   Newsletter CTA
   ======================================== */
.newsletter-cta {
  background: var(--color-primary);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  color: var(--color-white);
}

.newsletter-cta h3 {
  font-size: 1.75rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.newsletter-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 0;
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.newsletter-form input:focus {
  border-color: var(--color-white);
}

/* ========================================
   CTA Banner
   ======================================== */
.cta-banner {
  background: var(--color-dark);
  padding: 80px 0;
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Event Calendar
   ======================================== */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--color-light);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.event-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-primary);
}

.event-date {
  flex-shrink: 0;
  width: 56px;
  text-align: center;
  background: var(--color-bg);
  border-radius: 8px;
  padding: 8px 4px;
}

.event-day {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.event-month {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-mid);
  font-weight: 600;
}

.event-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.event-info p {
  font-size: 0.875rem;
  color: var(--color-mid);
  margin: 0;
}

/* ========================================
   Data Visualization / Charts
   ======================================== */
.chart-container {
  background: var(--color-white);
  border: 1px solid var(--color-light);
  border-radius: var(--radius);
  padding: 32px;
}

.chart-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

/* ========================================
   Image Gallery Masonry
   ======================================== */
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-light);
  transition: all var(--transition);
}

.gallery-item:hover {
  transform: scale(1.01);
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  display: block;
}

/* ========================================
   Customer Journey Map
   ======================================== */
.journey-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin: 2rem 0;
}

.journey-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--color-light);
  z-index: 0;
}

.journey-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}

.journey-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary);
  margin: 0 auto 1rem;
}

.journey-step h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.journey-step p {
  font-size: 0.8rem;
  color: var(--color-mid);
}

/* ========================================
   Comments Section
   ======================================== */
.comment-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-light);
}

.comment-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-bg);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
}

.comment-author {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.comment-date {
  font-size: 0.8rem;
  color: var(--color-mid);
  margin-bottom: 0.5rem;
}

.comment-text {
  font-size: 0.9rem;
  color: var(--color-mid);
  margin: 0;
}

/* ========================================
   Download PDF button
   ======================================== */
.download-section {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  border: 1px solid var(--color-light);
}

.download-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-info span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--color-accent);
}

/* ========================================
   Cookie Banner
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 3px solid var(--color-primary);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  flex: 1;
}

.cookie-text a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 0;
}

.cookie-accept:hover {
  background: transparent;
  color: var(--color-primary);
}

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 2px solid rgba(255,255,255,0.3);
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 0;
}

.cookie-decline:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--color-white);
}

/* ========================================
   Legal pages (Terms, Privacy, Cookies)
   ======================================== */
.legal-hero {
  background: var(--color-dark);
  padding: 100px 0 60px;
  color: var(--color-white);
}

.legal-hero h1 {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-hero p {
  color: rgba(255,255,255,0.7);
}

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-light);
}

.legal-content h2:first-child {
  border-top: none;
  margin-top: 0;
}

.legal-content p, .legal-content li {
  font-size: 0.95rem;
  color: var(--color-mid);
  margin-bottom: 0.75rem;
}

.legal-content ul {
  margin-left: 1.5rem;
  list-style: disc;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 1.5rem 0;
}

.legal-content th {
  background: var(--color-bg);
  padding: 10px 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: left;
  border: 1px solid var(--color-light);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-content td {
  padding: 10px 14px;
  border: 1px solid var(--color-light);
  color: var(--color-mid);
  vertical-align: top;
}

/* ========================================
   Animated text
   ======================================== */
.animated-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Floating Action Buttons
   ======================================== */
.fab-group {
  position: fixed;
  right: 24px;
  bottom: 80px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.fab-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.fab-primary:hover {
  background: var(--color-dark);
}

.fab-secondary {
  background: var(--color-white);
  color: var(--color-dark);
  border: 1px solid var(--color-light);
}

.fab-secondary:hover {
  background: var(--color-bg);
}

/* ========================================
   Utilities
   ======================================== */
.text-primary { color: var(--color-primary); }
.text-mid { color: var(--color-mid); }
.text-white { color: var(--color-white); }
.text-center { text-align: center; }
.text-right { text-align: right; }

.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.divider {
  height: 1px;
  background: var(--color-light);
  margin: 3rem 0;
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary {
  background: rgba(0, 184, 148, 0.12);
  color: var(--color-primary);
}

.badge-dark {
  background: rgba(45, 52, 54, 0.1);
  color: var(--color-dark);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .journey-steps { grid-template-columns: repeat(3, 1fr); }
  .journey-steps::before { display: none; }
  .gallery-masonry { columns: 2; }
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .main-nav { display: none; }
  .burger-btn { display: flex; }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--color-light); }
  .stat-item:nth-child(2n) { border-right: none; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .journey-steps { grid-template-columns: 1fr; }
  .journey-steps::before { display: none; }

  .gallery-masonry { columns: 2; }

  .contact-form { padding: 24px; }

  .newsletter-form { flex-direction: column; }

  .hero-full .hero-content h1 { font-size: 2.25rem; }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }

  .author-bio { flex-direction: column; }

  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .partners-logos { gap: 16px 28px; }
}
