/* ============================================
   islandsuperfood.com — Global Styles
   Theme: Data Visualization & Analytical Reporting
   Colors: #263238, #37474F, #546E7A, #90A4AE, #ECEFF1
   ============================================ */

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

:root {
  --color-dark: #263238;
  --color-medium: #37474F;
  --color-slate: #546E7A;
  --color-light: #90A4AE;
  --color-pale: #ECEFF1;
  --color-white: #ffffff;
  --color-accent: #546E7A;
  --color-gradient-start: #263238;
  --color-gradient-end: #546E7A;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container-max: 1200px;
  --border-radius-card: 8px;
  --border-radius-btn: 50px;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(38,50,56,0.12);
  --shadow-hover: 0 8px 32px rgba(38,50,56,0.22);
}

*, *::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;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; font-weight: 300; }
a { color: var(--color-slate); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-dark); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--border-radius-btn);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-dark), var(--color-slate));
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(84,110,122,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-slate), var(--color-dark));
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  color: var(--color-white);
}
.btn-secondary {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
}
.btn-secondary:hover {
  background: var(--color-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
  border-color: var(--color-white);
}

/* ---- CARDS ---- */
.card {
  background: var(--color-white);
  border-radius: var(--border-radius-card);
  border-left: 4px solid var(--color-slate);
  background-color: #f8fafb;
  box-shadow: var(--shadow);
  padding: 28px 24px;
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

/* ---- SECTION SPACING ---- */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }
.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-slate);
  margin-bottom: 48px;
  max-width: 600px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-subtitle { margin: 12px auto 0; }

/* ---- BADGE ---- */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-primary {
  background: rgba(84,110,122,0.15);
  color: var(--color-slate);
}
.badge-light {
  background: rgba(255,255,255,0.2);
  color: var(--color-white);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(38,50,56,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(144,164,174,0.15);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--color-slate), var(--color-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  font-weight: 700;
  font-family: var(--font-heading);
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-white);
  line-height: 1.1;
}
.logo-text span { color: var(--color-light); font-weight: 400; font-size: 0.75rem; display: block; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--color-white);
  background: rgba(144,164,174,0.15);
}
.nav-cta {
  background: linear-gradient(135deg, var(--color-slate), var(--color-light)) !important;
  color: white !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--color-light), var(--color-slate)) !important;
  transform: translateY(-1px);
}

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

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(38,50,56,0.88) 0%, rgba(84,110,122,0.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 700px;
}
.hero-content .badge { margin-bottom: 20px; }
.hero-content h1 { color: var(--color-white); margin-bottom: 20px; }
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-compact {
  min-height: 380px;
  padding: 120px 0 60px;
}
.hero-compact .hero-content { max-width: 100%; }

/* Floating badge */
.floating-badge {
  position: absolute;
  right: 5%;
  top: 30%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 20px 24px;
  color: white;
  animation: floatBadge 4s ease-in-out infinite;
  z-index: 3;
}
.floating-badge .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  display: block;
}
.floating-badge .label { font-size: 0.8rem; opacity: 0.8; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Animated text entrance */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.8s ease forwards; }
.animate-in-delay-1 { animation: fadeInUp 0.8s ease 0.2s forwards; opacity: 0; }
.animate-in-delay-2 { animation: fadeInUp 0.8s ease 0.4s forwards; opacity: 0; }
.animate-in-delay-3 { animation: fadeInUp 0.8s ease 0.6s forwards; opacity: 0; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.75);
  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(144,164,174,0.15);
}
.footer-brand .logo-text { color: white; }
.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--color-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.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.82rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links a:hover { color: var(--color-light); }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-dark);
  color: rgba(255,255,255,0.9);
  padding: 20px 0;
  border-top: 3px solid var(--color-slate);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { font-size: 0.9rem; flex: 1; }
.cookie-text a { color: var(--color-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-cookie-accept {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--color-slate), var(--color-light));
  color: white;
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-accept:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-cookie-decline {
  padding: 10px 20px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-decline:hover { color: white; border-color: white; }

/* ============================================
   STATS COUNTER
   ============================================ */
.stats-section { background: var(--color-dark); color: white; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item { padding: 32px 16px; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-light);
  display: block;
  line-height: 1;
}
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-top: 8px; }

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.comparison-table th {
  background: var(--color-dark);
  color: white;
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: left;
  font-size: 0.9rem;
}
.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-pale);
  font-size: 0.92rem;
}
.comparison-table tr:nth-child(even) td { background: #f8fafb; }
.comparison-table tr:hover td { background: rgba(84,110,122,0.06); }
.check { color: #4CAF50; font-size: 1.1rem; }
.cross { color: #F44336; font-size: 1.1rem; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item {
  border: 1px solid var(--color-pale);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--color-slate); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { background: var(--color-pale); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 1.1rem;
  color: var(--color-slate);
}
.faq-item.open .faq-icon { background: var(--color-slate); color: white; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--color-medium);
  line-height: 1.8;
}

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

/* ============================================
   FEATURE LIST
   ============================================ */
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid var(--color-slate);
  background: #f8fafb;
  transition: var(--transition);
}
.feature-item:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-slate), var(--color-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.feature-text h4 { margin-bottom: 6px; }
.feature-text p { margin: 0; font-size: 0.9rem; color: var(--color-slate); }

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-slate);
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card-body { padding: 24px; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--color-slate);
}
.blog-card-meta .category {
  background: rgba(84,110,122,0.12);
  color: var(--color-slate);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card p { font-size: 0.88rem; color: var(--color-medium); margin-bottom: 16px; }
.blog-card .read-more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-slate);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card .read-more:hover { color: var(--color-dark); gap: 10px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: white;
  border-radius: 8px;
  border-left: 4px solid var(--color-slate);
  padding: 32px;
  box-shadow: var(--shadow);
  background: #f8fafb;
}
.testimonial-stars { color: #FFC107; margin-bottom: 16px; font-size: 1.1rem; }
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-medium);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-name { font-family: var(--font-heading); font-weight: 600; font-size: 0.92rem; }
.testimonial-role { font-size: 0.8rem; color: var(--color-slate); }

/* ============================================
   TEAM CARDS
   ============================================ */
.team-card {
  text-align: center;
  background: white;
  border-radius: 8px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-slate);
  background: #f8fafb;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--color-pale);
}
.team-name { font-family: var(--font-heading); font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--color-slate); margin-bottom: 12px; }
.team-bio { font-size: 0.85rem; color: var(--color-medium); }

/* ============================================
   BEFORE/AFTER SHOWCASE
   ============================================ */
.before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-hover); }
.before-panel, .after-panel { padding: 48px 40px; }
.before-panel { background: var(--color-pale); }
.after-panel { background: var(--color-dark); color: white; }
.before-panel h3, .after-panel h3 { margin-bottom: 20px; }
.after-panel h3 { color: white; }
.before-panel ul li, .after-panel ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.after-panel ul li { border-bottom-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-slate), var(--color-light));
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-slate), var(--color-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 0 0 4px rgba(84,110,122,0.15);
}
.timeline-content { background: #f8fafb; border-radius: 8px; border-left: 4px solid var(--color-slate); padding: 24px; }
.timeline-content h4 { margin-bottom: 8px; }
.timeline-content p { margin: 0; font-size: 0.9rem; color: var(--color-slate); }

/* ============================================
   CONTACT FORM
   ============================================ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-dark);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--color-pale);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark);
  background: white;
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--color-slate); box-shadow: 0 0 0 3px rgba(84,110,122,0.15); }
.form-control.error { border-color: #F44336; }
.form-error { font-size: 0.8rem; color: #F44336; margin-top: 4px; display: none; }
.form-error.show { display: block; }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { cursor: pointer; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-dark), var(--color-slate));
  color: white;
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { color: white; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 36px; font-size: 1.05rem; }

/* ============================================
   TABS
   ============================================ */
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--color-pale);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 12px 24px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-slate);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}
.tab-btn:hover { color: var(--color-dark); }
.tab-btn.active { color: var(--color-dark); border-bottom-color: var(--color-slate); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================
   CALENDAR
   ============================================ */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}
.calendar-header { background: var(--color-dark); color: white; padding: 8px; font-size: 0.78rem; font-weight: 600; border-radius: 4px; }
.calendar-day {
  padding: 8px 4px;
  font-size: 0.85rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}
.calendar-day:hover { background: var(--color-pale); }
.calendar-day.today { background: var(--color-slate); color: white; font-weight: 700; }
.calendar-day.event { background: rgba(84,110,122,0.15); color: var(--color-slate); font-weight: 600; }
.calendar-day.empty { opacity: 0; pointer-events: none; }
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.calendar-nav button {
  background: none;
  border: 1px solid var(--color-pale);
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}
.calendar-nav button:hover { background: var(--color-pale); }
.calendar-nav h4 { font-family: var(--font-heading); font-size: 1rem; }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { opacity: 0.5; }

/* ============================================
   SIDEBAR LAYOUT
   ============================================ */
.sidebar-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.sidebar-widget {
  background: #f8fafb;
  border-radius: 8px;
  border-left: 4px solid var(--color-slate);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget h4 { margin-bottom: 16px; font-size: 1rem; }
.sidebar-post {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-pale);
}
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post img { width: 64px; height: 64px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.sidebar-post-title { font-size: 0.85rem; font-weight: 600; line-height: 1.4; color: var(--color-dark); }
.sidebar-post-date { font-size: 0.78rem; color: var(--color-slate); margin-top: 4px; }

/* ============================================
   ACHIEVEMENT BADGES
   ============================================ */
.achievement-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.achievement-badge {
  text-align: center;
  padding: 32px 20px;
  background: #f8fafb;
  border-radius: 8px;
  border-left: 4px solid var(--color-slate);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.achievement-badge:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.achievement-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-slate), var(--color-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
  font-size: 1.5rem;
}
.achievement-title { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.achievement-desc { font-size: 0.82rem; color: var(--color-slate); }

/* ============================================
   LIVE CHAT WIDGET
   ============================================ */
.chat-widget {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 998;
}
.chat-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-slate), var(--color-dark));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(84,110,122,0.4);
  transition: var(--transition);
}
.chat-toggle:hover { transform: scale(1.1); }
.chat-box {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 300px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(38,50,56,0.2);
  overflow: hidden;
  display: none;
  border: 1px solid var(--color-pale);
}
.chat-box.open { display: block; }
.chat-header {
  background: var(--color-dark);
  color: white;
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
}
.chat-messages {
  padding: 16px;
  height: 200px;
  overflow-y: auto;
  font-size: 0.88rem;
}
.chat-msg {
  background: var(--color-pale);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.chat-input-area {
  padding: 12px 16px;
  border-top: 1px solid var(--color-pale);
  display: flex;
  gap: 8px;
}
.chat-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--color-pale);
  border-radius: 50px;
  font-size: 0.85rem;
  outline: none;
}
.chat-send {
  padding: 8px 16px;
  background: var(--color-slate);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
}

/* ============================================
   LOGO STRIP
   ============================================ */
.logo-strip { background: var(--color-pale); padding: 40px 0; }
.logo-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.logo-strip-item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-slate);
  opacity: 0.7;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.logo-strip-item:hover { opacity: 1; color: var(--color-dark); }

/* ============================================
   ARTICLE STYLES
   ============================================ */
.article-hero { min-height: 500px; }
.article-body { font-size: 1rem; line-height: 1.9; color: var(--color-medium); }
.article-body h2 { margin: 40px 0 16px; color: var(--color-dark); }
.article-body h3 { margin: 32px 0 12px; color: var(--color-dark); }
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 8px; font-size: 0.97rem; }
.article-body blockquote {
  border-left: 4px solid var(--color-slate);
  padding: 16px 24px;
  background: #f8fafb;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--color-slate);
}
.author-card {
  display: flex;
  gap: 24px;
  background: #f8fafb;
  border-radius: 8px;
  border-left: 4px solid var(--color-slate);
  padding: 32px;
  align-items: flex-start;
}
.author-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-info h4 { margin-bottom: 4px; }
.author-role { font-size: 0.85rem; color: var(--color-slate); margin-bottom: 10px; }
.author-bio { font-size: 0.9rem; color: var(--color-medium); margin: 0; }

/* ============================================
   SHARE BUTTONS
   ============================================ */
.share-buttons { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.share-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.share-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.share-vk { background: #4680C2; color: white; }
.share-tg { background: #2CA5E0; color: white; }
.share-wa { background: #25D366; color: white; }
.share-copy { background: var(--color-pale); color: var(--color-dark); }

/* ============================================
   TAGS
   ============================================ */
.tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  padding: 5px 14px;
  background: var(--color-pale);
  color: var(--color-slate);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}
.tag:hover { background: var(--color-slate); color: white; }

/* ============================================
   NEWSLETTER CTA
   ============================================ */
.newsletter-cta {
  background: linear-gradient(135deg, var(--color-dark), var(--color-slate));
  border-radius: 12px;
  padding: 48px;
  text-align: center;
  color: white;
}
.newsletter-cta h3 { color: white; margin-bottom: 12px; }
.newsletter-cta p { color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  outline: none;
}

/* ============================================
   CUSTOMER JOURNEY MAP
   ============================================ */
.journey-steps {
  display: flex;
  gap: 0;
  position: relative;
}
.journey-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(to right, var(--color-slate), var(--color-light));
  z-index: 0;
}
.journey-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}
.journey-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-slate), var(--color-light));
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(84,110,122,0.3);
}
.journey-step h4 { font-size: 0.92rem; margin-bottom: 6px; }
.journey-step p { font-size: 0.82rem; color: var(--color-slate); margin: 0; }

/* ============================================
   BUSINESS HOURS
   ============================================ */
.hours-table { width: 100%; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-pale);
  font-size: 0.92rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 600; color: var(--color-dark); }
.hours-time { color: var(--color-slate); }
.hours-closed { color: #F44336; }

/* ============================================
   MAP PLACEHOLDER
   ============================================ */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--color-pale);
  position: relative;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   PORTFOLIO GRID
   ============================================ */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38,50,56,0.85), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { color: white; font-size: 0.95rem; }

/* ============================================
   COMMENTS SECTION
   ============================================ */
.comment {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-pale);
}
.comment:last-child { border-bottom: none; }
.comment-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.comment-body { flex: 1; }
.comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.comment-name { font-family: var(--font-heading); font-weight: 600; font-size: 0.92rem; }
.comment-date { font-size: 0.8rem; color: var(--color-slate); }
.comment-text { font-size: 0.9rem; color: var(--color-medium); line-height: 1.7; margin: 0; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-section { margin-bottom: 40px; }
.legal-section h2 { font-size: 1.3rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--color-pale); }
.legal-section p { font-size: 0.95rem; line-height: 1.85; }
.legal-section ul { margin: 12px 0 12px 24px; list-style: disc; }
.legal-section ul li { margin-bottom: 6px; font-size: 0.95rem; }

/* Cookie table */
.cookie-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.88rem; }
.cookie-table th { background: var(--color-dark); color: white; padding: 12px 16px; text-align: left; }
.cookie-table td { padding: 12px 16px; border-bottom: 1px solid var(--color-pale); }
.cookie-table tr:nth-child(even) td { background: #f8fafb; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .achievement-grid { grid-template-columns: repeat(2, 1fr); }
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar-layout .sidebar { order: -1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .floating-badge { display: none; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--color-dark); padding: 20px; gap: 4px; }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 16px; border-radius: 6px; }
  .hamburger { display: flex; }
  .hero-compact { min-height: 280px; padding: 100px 0 48px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .before-after-grid { grid-template-columns: 1fr; }
  .journey-steps { flex-direction: column; gap: 24px; }
  .journey-steps::before { display: none; }
  .achievement-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .author-card { flex-direction: column; }
  .section { padding: 56px 0; }
  .hero { min-height: 80vh; }
  .tabs-nav { overflow-x: auto; flex-wrap: nowrap; }
  .tab-btn { white-space: nowrap; }
}

@media (max-width: 480px) {
  .achievement-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .cookie-inner { flex-direction: column; }
  .share-buttons { justify-content: center; }
  .chat-widget { bottom: 16px; right: 16px; }
}
