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

:root {
  --primary: #FF7A1A;
  --primary-dark: #E56600;
  --accent: #8B3DFF;
  --accent-light: #C95CFF;
  --dark-900: #0B0B12;
  --dark-800: #171722;
  --dark-700: #1F1F2E;
  --dark-600: #2A2A3C;
  --white: #FFFFFF;
  --white-70: rgba(255,255,255,0.7);
  --white-50: rgba(255,255,255,0.5);
  --white-30: rgba(255,255,255,0.3);
  --white-10: rgba(255,255,255,0.1);
  --muted: #9A9AB0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--dark-900);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.section {
  padding: 120px 0;
}

body.home .section:first-of-type {
  padding-top: 180px;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-10);
  transition: all 0.3s;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  font-size: 20px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  color: var(--white-70);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

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

.lang-toggle {
  font-size: 14px;
  color: var(--white-50);
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s;
}

.lang-toggle:hover {
  color: var(--white);
  background: var(--white-5);
}

.btn-primary {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 122, 26, 0.3);
}

.btn-secondary {
  padding: 12px 24px;
  background: var(--white-10);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--white-15);
  transform: translateY(-2px);
}

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

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--dark-800);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid var(--white-10);
  z-index: 999;
}

.mobile-menu a {
  padding: 12px;
  color: var(--white-70);
  border-bottom: 1px solid var(--white-10);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(139, 61, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255, 122, 26, 0.06) 0%, transparent 50%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(139, 61, 255, 0.15);
  top: 20%;
  left: 10%;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 122, 26, 0.1);
  bottom: 20%;
  right: 10%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white-10);
  border: 1px solid var(--white-10);
  border-radius: 50px;
  font-size: 14px;
  color: var(--white-70);
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: clamp(40px, 8vw, 72px);
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  color: var(--white-60);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.trusted-by {
  margin-top: 40px;
}

.trusted-by span {
  font-size: 12px;
  color: var(--white-30);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 20px;
}

.logos {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.4;
}

.logos span {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 600;
}

/* === SECTION HEADER === */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(139, 61, 255, 0.15);
  border: 1px solid rgba(139, 61, 255, 0.3);
  border-radius: 50px;
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 20px;
}

.tag.accent {
  background: rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.3);
  color: var(--accent);
}

.tag.green {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.tag.pink {
  background: rgba(236, 72, 153, 0.15);
  border-color: rgba(236, 72, 153, 0.3);
  color: #ec4899;
}

.section-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--white-50);
  font-size: 18px;
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 32px;
  background: var(--dark-800);
  border: 1px solid var(--white-10);
  border-radius: 20px;
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--white-20);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-card[data-color="0"]:hover { border-color: rgba(255, 122, 26, 0.5); }
.service-card[data-color="1"]:hover { border-color: rgba(249, 115, 22, 0.5); }
.service-card[data-color="2"]:hover { border-color: rgba(34, 197, 94, 0.5); }
.service-card[data-color="3"]:hover { border-color: rgba(236, 72, 153, 0.5); }
.service-card[data-color="4"]:hover { border-color: rgba(6, 182, 212, 0.5); }
.service-card[data-color="5"]:hover { border-color: rgba(139, 92, 246, 0.5); }

.service-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--white-50);
  font-size: 15px;
}

/* === STATS === */
.stats-section {
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 48px;
  background: var(--dark-800);
  border: 1px solid var(--white-10);
  border-radius: 24px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: 56px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  font-family: 'Archivo Black', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* === PORTFOLIO === */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.project-card {
  background: var(--dark-800);
  border: 1px solid var(--white-10);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: var(--white-20);
}

.project-visual {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-visual[data-gradient="0"] { background: linear-gradient(135deg, #FF7A1A, #8B3DFF); }
.project-visual[data-gradient="1"] { background: linear-gradient(135deg, #8B3DFF, #C95CFF); }
.project-visual[data-gradient="2"] { background: linear-gradient(135deg, #22c55e, #14b8a6); }
.project-visual[data-gradient="3"] { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.project-visual[data-gradient="4"] { background: linear-gradient(135deg, #ec4899, #a855f7); }
.project-visual[data-gradient="5"] { background: linear-gradient(135deg, #f59e0b, #ef4444); }

.project-cat {
  padding: 8px 16px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-info {
  padding: 24px;
}

.project-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.project-info p {
  color: var(--white-50);
  font-size: 14px;
  margin-bottom: 16px;
}

.project-results {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

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

.client-logo {
  padding: 32px 24px;
  background: var(--dark-800);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--white-50);
  transition: all 0.3s;
}

.client-logo:hover {
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === TESTIMONIALS === */
.testimonials {
  background: linear-gradient(180deg, transparent, rgba(139, 61, 255, 0.05), transparent);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 48px;
  background: var(--dark-800);
  border: 1px solid var(--white-10);
  border-radius: 24px;
  text-align: center;
}

.quote-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 24px;
}

.quote {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 32px;
  color: var(--white-90);
}

.author strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.author span {
  color: var(--white-50);
  font-size: 14px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testimonial-dots span {
  width: 8px;
  height: 8px;
  background: var(--white-20);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-dots span.active {
  width: 24px;
  background: var(--primary);
  border-radius: 4px;
}

/* === BLOG === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--dark-800);
  border: 1px solid var(--white-10);
  border-radius: 20px;
  overflow: visible;
  transition: all 0.3s;
  min-height: 400px;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--white-20);
}

.blog-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-card-link:hover {
  color: inherit;
}

.blog-visual {
  height: 160px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

/* Category-based gradient backgrounds */
.blog-visual[data-cat="Strategy"], .blog-visual[data-cat="Stratégie"] {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}
.blog-visual[data-cat="Analytics"] {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}
.blog-visual[data-cat="Performance"] {
  background: linear-gradient(135deg, #FF7A1A, #ef4444);
}
.blog-visual[data-cat="IA"], .blog-visual[data-cat="AI"] {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}
.blog-visual[data-cat="SEO"] {
  background: linear-gradient(135deg, #22c55e, #14b8a6);
}
.blog-visual[data-cat="Social Media"] {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
}
.blog-visual[data-cat="Email"] {
  background: linear-gradient(135deg, #f59e0b, #eab308);
}

.blog-cat {
  padding: 6px 12px;
  background: rgba(139, 61, 255, 0.2);
  color: var(--accent);
  border-radius: 50px;
  font-size: 12px;
}

.blog-content {
  padding: 24px;
}

.blog-date {
  font-size: 12px;
  color: var(--white-30);
  display: block;
  margin-bottom: 8px;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-content p {
  color: var(--white-50);
  font-size: 14px;
  margin-bottom: 16px;
}

.blog-link {
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
}

/* === CTA === */
.cta-section {
  padding: 100px 0;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 64px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.1), rgba(255, 122, 26, 0.05));
  border: 1px solid rgba(255, 122, 26, 0.3);
  border-radius: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.1) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-box .tag {
  position: relative;
}

.cta-box h2 {
  position: relative;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.cta-box p {
  position: relative;
  color: var(--white-60);
  margin-bottom: 32px;
}

.cta-box .btn-primary {
  position: relative;
  padding: 16px 32px;
  font-size: 16px;
}

.cta-email {
  display: block;
  margin-top: 24px;
  color: var(--white-40);
  font-size: 14px;
}

.cta-email:hover {
  color: var(--white-70);
}

/* === FOOTER === */
.footer {
  background: var(--dark-800);
  border-top: 1px solid var(--white-10);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--white-40);
  font-size: 14px;
  margin: 16px 0 24px;
  max-width: 280px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 40px;
  height: 40px;
  background: var(--white-10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s;
}

.socials a:hover {
  background: var(--white-20);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white-60);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  color: var(--white-40);
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--white-10);
  text-align: center;
  font-size: 12px;
  color: var(--white-30);
}

/* === PAGE HEADER === */
.page-header {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 220px;
  padding-bottom: 80px;
  text-align: center;
}

.page-header .hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(139, 61, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255, 122, 26, 0.06) 0%, transparent 50%);
}

.page-header .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.page-header .orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(139, 61, 255, 0.15);
  top: 20%;
  left: 10%;
}

.page-header .orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 122, 26, 0.1);
  bottom: 20%;
  right: 10%;
  animation-delay: -4s;
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 24px;
}

.page-header h1 {
  font-size: clamp(36px, 6vw, 56px);
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  color: var(--white-60);
}

/* === SERVICE LINK === */
.service-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
}

/* === WHY US === */
.why-us {
  background: linear-gradient(180deg, transparent, rgba(139, 61, 255, 0.05), transparent);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  padding: 32px;
  background: var(--dark-800);
  border: 1px solid var(--white-10);
  border-radius: 20px;
  transition: all 0.3s;
}

.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.why-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.3;
  display: block;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--white-50);
  font-size: 15px;
}

/* === ABOUT === */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--white-60);
  font-size: 16px;
  margin-bottom: 20px;
}

.about-image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--dark-700), var(--dark-600));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-30);
  font-size: 18px;
}

/* === VALUES === */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  padding: 32px;
  background: var(--dark-800);
  border: 1px solid var(--white-10);
  border-radius: 20px;
  text-align: center;
}

.value-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.value-card p {
  color: var(--white-50);
  font-size: 15px;
}

/* === FEATURED POST === */
.featured-post {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
  padding: 40px;
  background: var(--dark-800);
  border: 1px solid var(--white-10);
  border-radius: 24px;
  overflow: visible;
  min-height: 350px;
}

.featured-visual {
  height: 300px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px;
  overflow: hidden;
}

/* Featured visual categories */
.featured-visual[data-cat="Strategy"], .featured-visual[data-cat="Stratégie"] {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}
.featured-visual[data-cat="Analytics"] {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}
.featured-visual[data-cat="Performance"] {
  background: linear-gradient(135deg, #FF7A1A, #ef4444);
}
.featured-visual[data-cat="IA"], .featured-visual[data-cat="AI"] {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.featured-content h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.featured-content p {
  color: var(--white-60);
  margin-bottom: 24px;
}

.featured-content .btn-primary {
  display: inline-block;
  margin-top: 8px;
}

/* === SINGLE POST === */
.single-post {
  padding: 250px 0 60px;
  min-height: 100vh;
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  color: var(--white-50);
  font-size: 14px;
  margin-bottom: 32px;
}

.back-link:hover {
  color: var(--white);
}

.post-category {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(139, 61, 255, 0.2);
  color: var(--accent);
  border-radius: 50px;
  font-size: 12px;
  margin-right: 12px;
}

.post-date {
  color: var(--white-40);
  font-size: 14px;
}

.post-content h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 16px 0 24px;
}

.post-excerpt {
  font-size: 18px;
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--white-10);
}

.post-body h2 {
  font-size: 24px;
  margin: 40px 0 20px;
}

.post-body p {
  color: var(--white-70);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  overflow-wrap: break-word;
}

.post-share {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--white-10);
}

.post-share > span {
  display: block;
  color: var(--white-40);
  font-size: 14px;
  margin-bottom: 16px;
}

.share-buttons {
  display: flex;
  gap: 12px;
}

.share-buttons a {
  padding: 8px 16px;
  background: var(--white-10);
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s;
}

.share-buttons a:hover {
  background: var(--primary);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .mobile-menu.active {
    display: flex;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 24px;
  }
  
  .stat-number, .stat-suffix {
    font-size: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cta-box {
    padding: 40px 24px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .logos {
    gap: 20px;
  }

  /* New page responsive */
  .why-grid, .values-grid {
    grid-template-columns: 1fr;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-placeholder {
    height: 250px;
  }

  .featured-post {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .featured-visual {
    height: 200px;
  }
}

/* === COOKIE CONSENT === */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0B0B12;
  color: #ccc;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  z-index: 9999;
  font-size: 0.875rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar p { margin: 0; max-width: 700px; line-height: 1.5; }
.cookie-bar a { color: #FF7A1A; text-decoration: underline; }
.cookie-btn {
  background: #FF7A1A;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
}
.cookie-btn:hover { background: #E56600; }
@media (max-width: 640px) {
  .cookie-bar { flex-direction: column; text-align: center; }
}

.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-privacy { color: #FF7A1A; text-decoration: none; font-size: 0.85rem; }
.footer-privacy:hover { text-decoration: underline; }
