/*
Theme Name: CopyLinker
Theme URI: https://copylinker.fr
Author: Fabien Peduzzi
Description: Theme custom CopyLinker - Agence Marketing LinkedIn-First
Version: 1.0
Text Domain: copylinker
*/

/* ===========================
   CopyLinker — Windmill-Style / LinkedIn Blue
   =========================== */

:root {
  --blue: #0A66C2;
  --blue-dark: #004182;
  --blue-light: #E8F4FD;
  --blue-glow: rgba(10, 102, 194, 0.25);
  --purple: #0A66C2;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-dark: #0B1120;
  --text: #1A1A2E;
  --text-sec: #6B7280;
  --text-muted: #9CA3AF;
  --border: #E5E7EB;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xl: 24px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Inter', system-ui, sans-serif; font-size: 16px; line-height: 1.6; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.blue-text { color: var(--blue); }

/* ===========================
   HEADER — Windmill pill style
   =========================== */

.header {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 1000; width: calc(100% - 24px); max-width: 1400px;
}

.header__pill {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 20px 20px 20px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: all var(--transition);
}

.header__logo {
  display: flex; align-items: center; gap: 12px;
  font-size: 24px; font-weight: 800; color: var(--text);
}

.logo-icon { flex-shrink: 0; }

.header__nav { display: flex; gap: 48px; flex: 1; justify-content: center; }

.nav__link {
  font-size: 17px; font-weight: 600; color: var(--text-sec);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--blue); }

.nav__dropdown { position: relative; }
.nav__dropdown-toggle {
  display: inline-flex; align-items: center;
  background: none; border: none; cursor: pointer;
  font-family: inherit;
}
.nav__dropdown-menu {
  display: none; position: absolute;
  top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  background: white; border: 1px solid var(--border);
  border-radius: 12px; padding: 8px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  min-width: 260px; z-index: 100;
}

.nav__dropdown-item {
  display: block; padding: 10px 20px;
  font-size: 15px; font-weight: 500; color: var(--text-sec);
  transition: background 0.15s, color 0.15s;
}
.nav__dropdown-item:hover { background: var(--bg-alt); color: var(--blue); }
.nav__dropdown:hover .nav__dropdown-menu { display: block; }

.header__cta {
  display: inline-flex; align-items: center;
  background: var(--blue); color: white;
  font-size: 14px; font-weight: 700; letter-spacing: 0.5px;
  padding: 14px 32px; border-radius: 100px;
  transition: all var(--transition);
}
.header__cta:hover { background: var(--blue-dark); box-shadow: 0 4px 20px var(--blue-glow); }

.header__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.header__burger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ===========================
   HERO — Mosaic background
   =========================== */

.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: linear-gradient(180deg, #e8ecff 0%, #dce2ff 40%, #eef0ff 100%);
}

/* Realistic LinkedIn posts masonry */
.hero__mosaic {
  position: absolute; inset: 0;
  display: flex; gap: 16px; padding: 16px;
}

.mosaic-col {
  flex: 1; display: flex; flex-direction: column; gap: 16px;
}

.mosaic-col:nth-child(1) { animation: scroll-up 40s linear infinite; }
.mosaic-col:nth-child(2) { animation: scroll-down 35s linear infinite; margin-top: -80px; }
.mosaic-col:nth-child(3) { animation: scroll-up 45s linear infinite; margin-top: -160px; }
.mosaic-col:nth-child(4) { animation: scroll-down 38s linear infinite; margin-top: -40px; }

@keyframes scroll-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@keyframes scroll-down {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

/* LinkedIn post card */
.li-post {
  background: white; border-radius: 10px; padding: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  border: 1px solid #E4E7EC;
  font-size: 13px; line-height: 1.5; color: #333;
}

.li-post__head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}

.li-av {
  width: 40px; height: 40px; border-radius: 50%;
  color: white; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.li-meta { flex: 1; }
.li-meta strong { display: block; font-size: 13px; color: #191919; }
.li-meta span { font-size: 11px; color: #666; }

.li-follow {
  font-size: 12px; font-weight: 700; color: var(--blue);
  white-space: nowrap;
}

.li-post__body {
  font-size: 13px; line-height: 1.55; color: #292929;
  margin-bottom: 12px;
}

.li-post__img {
  height: 140px; border-radius: 6px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

/* Fake photo overlay — simulates a real image */
.li-post__img::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%),
    linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.15) 100%);
}

.li-post__img--tall { height: 180px; }

.li-post__stats {
  display: flex; justify-content: space-between;
  font-size: 11px; color: #888;
  padding-top: 8px; border-top: 1px solid #ECECEC;
}

/* Overlay gradient — center fade only, posts visible on edges */
.hero__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(240,242,245,0.75) 0%, rgba(240,242,245,0.4) 40%, rgba(240,242,245,0.15) 70%, rgba(240,242,245,0) 100%);
  z-index: 1;
}

/* Hero content */
.hero__content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  max-width: 960px;
}

.hero__eyebrow {
  font-size: 14px; font-weight: 600; color: var(--blue);
  margin-bottom: 24px;
  background: linear-gradient(135deg, #dbeafe, #e0eeff, #dbeafe);
  display: inline-block;
  padding: 10px 24px; border-radius: 100px;
  border: none;
  box-shadow: none;
}

.hero__title {
  font-size: 88px; font-weight: 900; line-height: 1.02;
  letter-spacing: -4px; color: var(--text);
  margin-bottom: 48px;
}

.hero__cta-row {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap; margin-bottom: 28px;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: white;
  font-family: inherit; font-size: 15px; font-weight: 700;
  letter-spacing: 0.5px;
  padding: 18px 44px; border-radius: 100px;
  border: none; cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px var(--blue-glow);
}
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 8px 32px rgba(10,102,194,0.4); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--text);
  font-family: inherit; font-size: 14px; font-weight: 600;
  padding: 14px 32px; border-radius: 100px;
  border: 2px solid var(--border); cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.btn-white {
  display: inline-flex; align-items: center;
  background: white; color: var(--blue-dark);
  font-family: inherit; font-size: 14px; font-weight: 700;
  letter-spacing: 0.5px;
  padding: 16px 36px; border-radius: 100px;
  border: none; cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

.hero__trust {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-sec);
}

.hero__avatars { display: flex; }
.ha {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #2D8CFF);
  color: white; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
  margin-left: -8px;
}
.ha:first-child { margin-left: 0; }
.ha--img { background: none; padding: 0; overflow: hidden; border: none; }
.ha--img img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }

.hero__spots {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--text);
}

.spots-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #F59E0B;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(245,158,11,0); }
}

/* Hero anim */
.hero-anim {
  opacity: 0; transform: translateY(24px);
  animation: hero-in 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes hero-in { to { opacity: 1; transform: translateY(0); } }

/* ===========================
   LOGOS
   =========================== */

.logos {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logos__bar {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
}

.logos__label {
  font-size: 18px; font-weight: 800; color: var(--text);
  line-height: 1.3; white-space: nowrap; flex-shrink: 0;
  margin: 0; min-width: fit-content;
}

.logos__divider {
  width: 1px; align-self: stretch; min-height: 48px;
  background: #d0d5dd;
  margin: 0 40px; flex-shrink: 0;
}

.logos__marquee {
  flex: 1; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.logos__track {
  display: flex; align-items: center; gap: 48px;
  width: max-content;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logos__marquee:hover .logos__track {
  animation-play-state: paused;
}

.logo-item {
  font-size: 24px; font-weight: 800; color: #9DA4AE;
  letter-spacing: -0.5px; white-space: nowrap; flex-shrink: 0;
}

/* ===========================
   VALUE PROP — gradient bg + mockup
   =========================== */

.value-prop {
  position: relative; padding: 120px 0;
  overflow: hidden;
}

.vp__gradient-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--blue-light) 50%, var(--bg) 100%);
  opacity: 0.5;
}

.vp__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

.vp__title-center {
  font-size: 44px; font-weight: 900; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 48px;
  text-align: center;
}

.vp__subtitle {
  font-size: 28px; font-weight: 800; line-height: 1.2;
  letter-spacing: -0.5px; margin-bottom: 32px;
}

.vp__desc {
  font-size: 19px; color: var(--text-sec); line-height: 1.7;
  margin-bottom: 32px; max-width: 540px;
}

.vp__trust {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-sec);
  margin-top: 24px;
}

/* LinkedIn mockup card */
.mockup-card {
  background: white; border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(10,102,194,0.12), 0 4px 16px rgba(0,0,0,0.04);
  overflow: hidden;
  border: 1px solid rgba(10,102,194,0.1);
}

.mockup__bar {
  display: flex; gap: 8px; padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.mc-dot { width: 28px; height: 28px; border-radius: 8px; background: var(--blue-light); }
.mc-dot:first-child { background: var(--blue); }

.mockup__content {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.mockup__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #2D8CFF);
  color: white; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mockup__input {
  flex: 1; padding: 10px 16px; border-radius: 100px;
  background: var(--bg-alt); font-size: 13px; color: var(--text-muted);
  border: 1px solid var(--border);
}

.mockup__feed { padding: 16px 20px; }
.mockup__post {
  display: flex; gap: 10px; padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mockup__post:last-child { border: none; }
.mkp__av { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #2D8CFF, var(--blue)); flex-shrink: 0; }
.mkp__lines { flex: 1; }
.mkp__l { height: 8px; background: #F3F4F6; border-radius: 4px; margin-bottom: 6px; }

/* ===========================
   STATS
   =========================== */

.stats-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f0f4ff 0%, #e8eeff 30%, #f0f4ff 70%, #f8f9ff 100%);
  position: relative; overflow: hidden;
}

.stats-section::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(10,102,194,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.stats__headline {
  text-align: center; font-size: 40px; font-weight: 900;
  letter-spacing: -1.5px; color: var(--text);
  margin-bottom: 12px; position: relative;
}

.stats__pre {
  text-align: center; font-size: 18px; color: var(--text-sec);
  margin-bottom: 56px; position: relative;
}

.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center; position: relative;
}

.stat-card {
  background: white;
  border-radius: 20px;
  padding: 40px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(10,102,194,0.12);
}

.stat-card__num, .stat-card__suffix {
  font-size: 52px; font-weight: 900; color: var(--blue);
  letter-spacing: -2px; line-height: 1;
}

.stat-card__label {
  display: block; font-size: 15px; color: var(--text-sec);
  margin-top: 12px; font-weight: 500;
}

/* ===========================
   PROCESS — Zigzag timeline (Windmill style)
   =========================== */

.process {
  padding: 120px 0 !important;
  background: linear-gradient(180deg, #f0f2ff 0%, #e4e8ff 25%, #d4dcff 50%, #c4ceff 75%, #b8c4f0 100%) !important;
  color: var(--text) !important;
  position: relative; overflow: hidden;
}

.process::before {
  content: ''; position: absolute;
  top: 20%; right: -100px; width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.process .section-title { color: var(--text) !important; }
.process .section-sub { color: var(--text-sec) !important; }

.process__timeline {
  position: relative; margin-top: 72px;
  max-width: 1100px; margin-left: auto; margin-right: auto;
}

.process__line {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 3px; transform: translateX(-50%);
  background: #d0d5e0;
  z-index: 0;
  border-radius: 3px;
}

.process__line-fill {
  position: absolute;
  left: 50%; top: 0;
  width: 3px; height: 0;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #5b6abf, var(--blue));
  border-radius: 3px;
  z-index: 0;
  transition: height 0.05s linear;
}

.process__line-fill::after {
  content: '';
  position: absolute; bottom: -5px;
  left: 50%; transform: translateX(-50%);
  width: 11px; height: 11px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(10,102,194,0.4);
}

.process__num::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  background: #d0d5e0;
  border-radius: 50%;
  z-index: -1;
}

/* Layout: card | num | spacer */
.process__row {
  display: grid;
  grid-template-columns: 2fr 120px 2fr;
  align-items: center;
  margin-bottom: 32px;
  position: relative;
}

.process__row--left .process__num { justify-self: end; margin-right: 24px; }
.process__row--right .process__num { justify-self: start; margin-left: 24px; }

.process__num {
  width: 72px; height: 72px;
  background: white;
  border: 1.5px solid #dde0ea;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 800; color: var(--text);
  position: relative; z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.process__spacer { min-height: 1px; }

.process__card {
  background: white !important;
  border: 1px solid #e8ebf0 !important;
  border-radius: 20px;
  padding: 36px 40px;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.process__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10,102,194,0.1);
  border-color: rgba(10,102,194,0.15) !important;
}

.process__icon { margin-bottom: 24px; }
.process__icon svg { width: 56px; height: 56px; }

.process__card h3 {
  font-size: 26px; font-weight: 900; color: var(--text) !important;
  margin-bottom: 16px; letter-spacing: -0.5px;
}

.process__card p {
  font-size: 16px; color: var(--text-sec) !important;
  line-height: 1.7; margin: 0;
}

@media (max-width: 768px) {
  .process__row,
  .process__row--right { grid-template-columns: 48px 1fr !important; gap: 16px; }
  .process__spacer { display: none; }
  .process__row--left .process__num,
  .process__row--right .process__num { justify-self: center; margin: 0; }
  .process__row--right .process__num { order: 0; }
  .process__row--right .process__card { order: 1; }
  .process__line, .process__line-fill { left: 24px; }
  .process__num { width: 40px; height: 40px; font-size: 18px; }
  .process__card { padding: 24px; }
}

/* ===========================
   SERVICES CARDS — Windmill style
   =========================== */

.services-section { padding: 120px 0; }

.section-title {
  font-size: 44px; font-weight: 900; letter-spacing: -1.5px;
  line-height: 1.1; margin-bottom: 16px;
}

.section-sub {
  font-size: 19px; color: var(--text-sec); max-width: 560px;
  margin-bottom: 56px; line-height: 1.7;
}

.services-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.svc-card {
  background: var(--bg-alt); border-radius: var(--radius-xl);
  padding: 40px 32px; border: 1px solid var(--border);
  transition: all var(--transition);
}

.svc-card:hover {
  border-color: rgba(10,102,194,0.2);
  box-shadow: 0 8px 32px rgba(10,102,194,0.08);
  transform: translateY(-4px);
}

.svc-card h3 {
  font-size: 22px; font-weight: 800; margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.svc-card p { font-size: 15px; color: var(--text-sec); line-height: 1.7; }

/* Illustration blocks */
.svc-card__illu {
  height: 180px; margin-bottom: 24px;
  background: linear-gradient(135deg, var(--blue), #2D8CFF);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.svc-card__illu--sm { height: 100px; }

.illu-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}

.illu-circle--sm { width: 52px; height: 52px; }

.illu-lines {
  position: absolute; right: 30px; top: 50%; transform: translateY(-50%);
}
.illu-lines div {
  height: 8px; margin-bottom: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.2);
}
.illu-lines div:nth-child(1) { width: 80px; }
.illu-lines div:nth-child(2) { width: 60px; }
.illu-lines div:nth-child(3) { width: 100px; }

.illu-network {
  position: absolute; inset: 0;
}
.in-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.3); position: absolute;
}
.in-dot:nth-child(1) { top: 25%; right: 20%; }
.in-dot:nth-child(2) { bottom: 30%; right: 35%; }
.in-dot:nth-child(3) { top: 40%; right: 15%; }
.in-line {
  position: absolute; height: 1px;
  background: rgba(255,255,255,0.15); width: 60px;
  top: 35%; right: 18%; transform: rotate(-30deg);
}
.in-line--2 { top: 45%; right: 25%; transform: rotate(20deg); width: 40px; }

/* ===========================
   TESTIMONIALS
   =========================== */

.resultats { padding: 120px 0; background: var(--bg-alt); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}

.testi-marquee {
  overflow: hidden;
  margin-top: 48px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.testi-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testi-scroll 40s linear infinite;
}

.testi-marquee:hover .testi-track {
  animation-play-state: paused;
}

@keyframes testi-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testi-card {
  background: white; border-radius: var(--radius-xl);
  padding: 32px; border: 1px solid var(--border);
  transition: all var(--transition);
  min-width: 360px; max-width: 360px;
  flex-shrink: 0;
}

.testi-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); transform: translateY(-4px); }

.testi-card__stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }

.testi-card p { font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 24px; font-style: italic; }

.testi-card__author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #2D8CFF);
  color: white; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.testi-av:has(img) {
  background: none; border: none; outline: none; box-shadow: none;
}
.testi-av img {
  width: 100%; height: 100%; object-fit: cover;
}
.testi-card__author strong { font-size: 14px; }
.testi-card__author span { font-size: 13px; color: var(--text-sec); }

/* ===========================
   PRICING
   =========================== */

.pricing { padding: 120px 0; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px; align-items: start;
}

.price-card {
  background: var(--bg-alt); border-radius: var(--radius-xl);
  padding: 40px 32px; border: 1px solid var(--border);
  transition: all var(--transition); position: relative;
}

.price-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); transform: translateY(-4px); }

.price-card--pop {
  border: 2px solid var(--blue);
  background: white;
  box-shadow: 0 8px 40px var(--blue-glow);
}

.price-card__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: white;
  font-size: 12px; font-weight: 700;
  padding: 5px 18px; border-radius: 100px;
  white-space: nowrap;
}

.price-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.price-card__desc { font-size: 14px; color: var(--text-sec); margin-bottom: 24px; }

.price-card__price {
  font-size: 28px; font-weight: 900; letter-spacing: -0.5px; color: var(--text);
  margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.price-card__price small { font-size: 28px; font-weight: 900; color: var(--text); }
.price-card__from { font-size: 28px; font-weight: 900; color: var(--text); letter-spacing: -0.5px; }

.price-card ul { margin-bottom: 32px; }
.price-card li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; padding: 8px 0;
}

.price-card li.yes { color: var(--text); }
.price-card li.yes::before {
  content: ''; width: 18px; height: 18px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23E8F4FD'/%3E%3Cpath d='M8 12l3 3 5-5' stroke='%230A66C2' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}

.price-card li.no { color: var(--text-muted); }
.price-card li.no::before {
  content: ''; width: 18px; height: 18px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23F1F5F9'/%3E%3Cpath d='M15 9l-6 6M9 9l6 6' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
}

.price-card .btn-primary, .price-card .btn-outline { width: 100%; justify-content: center; }

/* ===========================
   COPY HOUSE BANNER
   =========================== */

.copyhouse { padding: 64px 0; }

.copyhouse__banner {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, #f0f4ff, #e8ecff);
  border: 1px solid #dde2f0;
  border-radius: 24px;
  padding: 48px 56px;
  gap: 40px;
}

.copyhouse__badge {
  display: inline-block;
  font-size: 13px; font-weight: 700; color: var(--blue);
  background: rgba(10,102,194,0.1);
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 16px; letter-spacing: 0.3px;
}

.copyhouse__text h3 {
  font-size: 24px; font-weight: 900; color: var(--text);
  margin-bottom: 8px; letter-spacing: -0.5px;
}

.copyhouse__text p {
  font-size: 15px; color: var(--text-sec); line-height: 1.6;
  max-width: 520px;
}

@media (max-width: 768px) {
  .copyhouse__banner { flex-direction: column; padding: 32px 24px; text-align: center; }
  .copyhouse__text p { max-width: 100%; }
}

/* ===========================
   CONSULTING TEASER
   =========================== */

.consulting-teaser { padding: 0 0 64px; }

.consulting-teaser__banner {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, #f0f4ff, #e8ecff);
  border: 1px solid #dde2f0;
  border-radius: 24px;
  padding: 48px 56px;
  gap: 40px;
}

.consulting-teaser__badge {
  display: inline-block;
  font-size: 13px; font-weight: 700; color: var(--blue);
  background: rgba(10,102,194,0.1);
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 16px; letter-spacing: 0.3px;
}

.consulting-teaser__text h3 {
  font-size: 24px; font-weight: 900; color: var(--text);
  margin-bottom: 8px; letter-spacing: -0.5px;
}

.consulting-teaser__text p {
  font-size: 15px; color: var(--text-sec); line-height: 1.6;
  max-width: 520px;
}

.consulting-teaser .btn-outline {
  color: var(--text); border-color: var(--border);
  flex-shrink: 0;
}
.consulting-teaser .btn-outline:hover {
  background: var(--blue); color: white; border-color: var(--blue);
}

@media (max-width: 768px) {
  .consulting-teaser__banner { flex-direction: column; padding: 32px 24px; text-align: center; }
  .consulting-teaser__text p { max-width: 100%; }
}

/* ===========================
   FAQ
   =========================== */

.faq { padding: 120px 0; background: var(--bg-alt); }

.faq__list { max-width: 720px; margin: 48px auto 0; }

.faq__item {
  background: white; border-radius: var(--radius);
  margin-bottom: 8px; border: 1px solid var(--border);
  overflow: hidden; transition: all 0.3s;
}

.faq__item:hover { border-color: rgba(10,102,194,0.2); }
.faq__item.active { border-color: var(--blue); box-shadow: 0 4px 20px var(--blue-glow); }

.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: none; border: none;
  font-family: inherit; font-size: 15px; font-weight: 600; color: var(--text);
  cursor: pointer; text-align: left;
}

.faq__plus {
  width: 20px; height: 20px; position: relative; flex-shrink: 0;
}
.faq__plus::before, .faq__plus::after {
  content: ''; position: absolute; background: var(--text-sec);
  border-radius: 2px; transition: all 0.3s;
}
.faq__plus::before { width: 14px; height: 2px; top: 9px; left: 3px; }
.faq__plus::after { width: 2px; height: 14px; top: 3px; left: 9px; }
.faq__item.active .faq__plus::after { transform: rotate(90deg); opacity: 0; }

.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq__item.active .faq__a { max-height: 800px; }
.faq__a p { padding: 0 24px 20px; font-size: 14px; color: var(--text-sec); line-height: 1.8; }

/* ===========================
   CTA FINAL
   =========================== */

.cta-final {
  background: var(--bg-dark); padding: 120px 0;
  text-align: center; position: relative; overflow: hidden;
}

.cta-final::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, var(--blue-glow), transparent 70%);
  top: -200px; right: -200px;
  filter: blur(60px);
}

.cta-final::after {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,140,255,0.15), transparent 70%);
  bottom: -150px; left: -100px;
  filter: blur(60px);
}

.cta-final__inner { position: relative; z-index: 1; }

.cta-final h2 {
  font-size: 44px; font-weight: 900; color: white;
  max-width: 700px; margin: 0 auto 12px;
  line-height: 1.1; letter-spacing: -1px;
}

.cta-final p { font-size: 17px; color: rgba(255,255,255,0.5); margin-bottom: 36px; }

/* ===========================
   FOOTER
   =========================== */

.footer { background: var(--bg-dark); color: rgba(255,255,255,0.4); border-top: 1px solid rgba(255,255,255,0.05); }

.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 40px 24px; gap: 24px;
}

.footer .header__logo { color: white; font-size: 16px; }
.footer__brand p { font-size: 13px; color: rgba(255,255,255,0.3); margin-top: 4px; }

.footer__links { display: flex; gap: 24px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer__links a:hover { color: white; }

.footer__social a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer__social a:hover { color: white; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 0; text-align: center; font-size: 13px; }

/* ===========================
   CONSULTING PAGE
   =========================== */

.consulting-hero {
  padding: 160px 0 100px;
  text-align: center;
  background: linear-gradient(180deg, #f0f2ff, #e8ecff);
}

.consulting-hero__badge {
  display: inline-block;
  font-size: 13px; font-weight: 700; color: var(--blue);
  background: white;
  padding: 8px 20px; border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.consulting-hero__title {
  font-size: 56px; font-weight: 900; line-height: 1.05;
  letter-spacing: -2px; color: var(--text);
  margin-bottom: 24px;
}

.consulting-hero__sub {
  font-size: 18px; color: var(--text-sec); line-height: 1.6;
  margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto;
}

.consulting-offers { padding: 100px 0; }

.consulting-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px; margin-top: 48px;
}

.consulting-card {
  background: white; border: 1px solid var(--border);
  border-radius: 24px; padding: 48px;
  transition: all var(--transition);
}

.consulting-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10,102,194,0.08);
}

.consulting-card--pop {
  border-color: var(--blue);
  box-shadow: 0 4px 24px rgba(10,102,194,0.1);
}

.consulting-card__icon { margin-bottom: 24px; }

.consulting-card h3 {
  font-size: 24px; font-weight: 900; color: var(--text);
  margin-bottom: 8px; letter-spacing: -0.5px;
}

.consulting-card__format {
  font-size: 14px; font-weight: 600; color: var(--blue);
  margin-bottom: 16px;
}

.consulting-card p {
  font-size: 15px; color: var(--text-sec); line-height: 1.7;
  margin-bottom: 20px;
}

.consulting-card ul {
  list-style: none; padding: 0; margin-bottom: 24px;
}

.consulting-card li {
  font-size: 14px; color: var(--text-sec); padding: 6px 0;
  padding-left: 28px; position: relative;
}

.consulting-card li::before {
  content: ''; width: 18px; height: 18px;
  position: absolute; left: 0; top: 6px;
  background: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23E8F4FD'/%3E%3Cpath d='M8 12l2.5 2.5L16 9' stroke='%230A66C2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}

.consulting-card__price {
  font-size: 28px; font-weight: 900; color: var(--text);
  margin-bottom: 24px;
}

.consulting-card .btn-primary { width: 100%; justify-content: center; }

.consulting-topics {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9ff, #f0f2ff);
}

.topics-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; margin-top: 48px;
}

.topic-card {
  background: white; border: 1px solid var(--border);
  border-radius: 20px; padding: 40px;
}

.topic-card__num {
  font-size: 14px; font-weight: 800; color: var(--blue);
  background: rgba(10,102,194,0.08);
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.topic-card h3 {
  font-size: 20px; font-weight: 800; color: var(--text);
  margin-bottom: 12px;
}

.topic-card p {
  font-size: 15px; color: var(--text-sec); line-height: 1.7;
}

@media (max-width: 768px) {
  .consulting-hero__title { font-size: 36px; }
  .consulting-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr; }
}

/* ===========================
   REVEALS
   =========================== */

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
  .hero__title { font-size: 48px; }
  .vp__inner { grid-template-columns: 1fr; }
  .vp__mockup { max-width: 480px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .testi-card { min-width: 300px; max-width: 300px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .section-title { font-size: 36px; }
  .vp__title { font-size: 36px; }
}

@media (max-width: 768px) {
  .header { top: 8px; width: calc(100% - 16px); }
  .header__nav {
    display: none; position: absolute;
    top: calc(100% + 8px); left: 0; right: 0;
    background: white; flex-direction: column;
    padding: 16px 24px; border-radius: 20px;
    border: 1px solid var(--border); box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }
  .header__nav.open { display: flex; }
  .nav__link { padding: 10px 0; font-size: 15px; }

  .nav__dropdown { width: 100%; }
  .nav__dropdown-toggle { width: 100%; justify-content: space-between; padding: 10px 0; font-size: 15px; }
  .nav__dropdown-menu {
    display: none; position: static; transform: none;
    border: none; box-shadow: none; padding: 0 0 0 16px; min-width: auto;
  }
  .nav__dropdown:hover .nav__dropdown-menu { display: none; }
  .nav__dropdown.open .nav__dropdown-menu { display: block; }
  .nav__dropdown-item { padding: 8px 0; font-size: 14px; }
  .nav__dropdown-toggle svg { transition: transform 0.2s; }
  .nav__dropdown.open .nav__dropdown-toggle svg { transform: rotate(180deg); }
  .header__cta { display: none; }
  .header__burger { display: flex; }
  .header__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .header__burger.open span:nth-child(2) { opacity: 0; }
  .header__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

  .hero__title { font-size: 36px; letter-spacing: -1px; }
  .hero__mosaic { display: none; }
  .hero__overlay { background: var(--bg-alt); }
  .hero__cta-row { flex-direction: column; }

  .logos__bar { flex-direction: column; gap: 16px; align-items: flex-start; }
  .logos__divider { width: 100%; height: 1px; margin: 0; }
  .logos__track { gap: 32px; animation-duration: 15s; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-card__num, .stat-card__suffix { font-size: 36px; }
  .stat-card { padding: 28px 16px; }

  .cta-final h2 { font-size: 32px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: 30px; }
  .section-title { font-size: 30px; }
  .price-card__price { font-size: 36px; }
}

/* ===========================
   BLOG — Archive & Single Post
   =========================== */

/* Blog archive grid */
.blog-section {
  padding: 160px 0 120px;
}

.blog-section .section-title {
  margin-bottom: 48px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  border-color: rgba(10,102,194,0.2);
  box-shadow: 0 8px 32px rgba(10,102,194,0.08);
  transform: translateY(-4px);
}

.blog-card__thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-card__thumb--placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--blue), #2D8CFF);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card__body {
  padding: 24px;
}

.blog-card__date {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}

.blog-card__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.blog-card__title a {
  color: inherit;
  transition: color 0.2s;
}

.blog-card__title a:hover {
  color: var(--blue);
}

.blog-card__excerpt {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.blog-card__link:hover {
  gap: 10px;
}

.blog-card__link::after {
  content: '\2192';
}

/* Blog pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.blog-pagination a {
  color: var(--text-sec);
  background: white;
}

.blog-pagination a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.blog-pagination span.current {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

/* Single post */
.single-post {
  padding: 160px 0 120px;
}

.single-post__inner {
  max-width: 800px;
  margin: 0 auto;
}

.single-post__featured {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 40px;
}

.single-post__featured img {
  width: 100%;
  height: auto;
  display: block;
}

.single-post__meta {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.single-post__title {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 40px;
}

.single-post__content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.single-post__content h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 48px 0 16px;
  color: var(--text);
}

.single-post__content h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--text);
}

.single-post__content p {
  margin-bottom: 24px;
  color: var(--text-sec);
}

.single-post__content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.single-post__content a:hover {
  color: var(--blue-dark);
}

.single-post__content ul,
.single-post__content ol {
  margin: 0 0 24px 24px;
  list-style: disc;
}

.single-post__content ol {
  list-style: decimal;
}

.single-post__content li {
  margin-bottom: 8px;
  color: var(--text-sec);
}

.single-post__content blockquote {
  border-left: 4px solid var(--blue);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--blue-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text);
}

.single-post__content img {
  border-radius: var(--radius);
  margin: 32px 0;
}

.single-post__content pre {
  background: var(--bg-dark);
  color: #e2e8f0;
  padding: 24px;
  border-radius: var(--radius);
  overflow-x: auto;
  margin: 32px 0;
  font-size: 14px;
  line-height: 1.6;
}

.single-post__content code {
  background: var(--bg-alt);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}

.single-post__content pre code {
  background: none;
  padding: 0;
}

/* Post navigation */
.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.post-navigation a {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: color 0.2s;
}

.post-navigation a:hover {
  color: var(--blue-dark);
}

/* Blog sidebar */
.blog-sidebar {
  padding: 24px;
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.blog-sidebar h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}

.blog-sidebar ul {
  list-style: none;
  padding: 0;
}

.blog-sidebar li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.blog-sidebar li:last-child {
  border-bottom: none;
}

.blog-sidebar a {
  font-size: 14px;
  color: var(--text-sec);
  transition: color 0.2s;
}

.blog-sidebar a:hover {
  color: var(--blue);
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .single-post__title {
    font-size: 32px;
  }

  .post-navigation {
    flex-direction: column;
  }
}
