*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #e89d40;
  --gold-light: #f5c882;
  --gold-pale: #fdf4e7;
  --blue: #024f94;
  --blue-deep: #01386a;
  --blue-light: #e8f0f8;
  --red: #f34d41;
  --black: #0a0a0a;
  --gray-900: #1a1a1a;
  --gray-800: #2d2d2d;
  --gray-700: #404040;
  --gray-600: #666;
  --gray-400: #999;
  --gray-300: #ccc;
  --gray-200: #e5e5e5;
  --gray-100: #f5f5f5;
  --gray-50: #fafafa;
  --white: #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --container: 1200px;
  --container-wide: 1400px;
  --header-h: 100px;
  --section-pad: clamp(60px, 7vw, 100px);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); color: var(--black); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* =========================================
   UTILITY
   ========================================= */
.mobile-only { display: none; }
@media (max-width: 768px) { .mobile-only { display: inline; } }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }

/* =========================================
   REVEAL ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================
   HEADER
   ========================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s var(--ease-out-expo);
}
.header.scrolled {
  height: 70px;
  box-shadow: 0 1px 30px rgba(0,0,0,0.08);
}
.header.scrolled .header__logo-img {
  height: 52px;
}
.header__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 0;
}
.header__logo-img {
  height: 80px;
  width: auto;
  transition: height 0.4s var(--ease-out-expo);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__nav a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 8px;
  transition: all 0.25s;
  position: relative;
}
.header__nav a:hover {
  color: var(--black);
  background: var(--gray-100);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.lang-switcher {
  position: relative;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
}
.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all 0.25s;
  cursor: pointer;
}
.lang-switcher__btn:hover { background: var(--gray-100); color: var(--black); }
.lang-switcher__btn svg { width: 12px; height: 12px; transition: transform 0.3s; }
.lang-switcher.open .lang-switcher__btn svg { transform: rotate(180deg); }
.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 8px;
  min-width: 180px;
  max-height: 320px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s var(--ease-out-expo);
  z-index: 100;
}
.lang-switcher.open .lang-switcher__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-switcher__dropdown a {
  display: block;
  padding: 8px 14px;
  font-size: 0.85rem;
  border-radius: 8px;
  transition: background 0.2s;
}
.lang-switcher__dropdown a:hover { background: var(--gold-pale); }
.lang-switcher__dropdown a.active { font-weight: 600; color: var(--gold); }

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: 0 2px 12px rgba(2,79,148,0.25);
}
.btn-login:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(2,79,148,0.35);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -300px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(232,157,64,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(2,79,148,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 24px;
  align-items: center;
}
.hero__content { position: relative; z-index: 2; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  background: var(--gold-pale);
  border: 1px solid rgba(232,157,64,0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s var(--ease-out-expo) forwards;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}
.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0.3;
  border-radius: 2px;
}
.hero__desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 36px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.35s var(--ease-out-expo);
  white-space: nowrap;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(2,79,148,0.3);
}
.btn--primary:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(2,79,148,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--gray-200);
}
.btn--outline:hover {
  border-color: var(--gray-400);
  background: var(--gray-50);
  transform: translateY(-2px);
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,157,64,0.3);
}
.btn--gold:hover {
  background: #d48e35;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,157,64,0.35);
}

.hero__visual {
  position: relative;
  margin-right: -80px;
}
.hero__mockup {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--gray-100) 0%, var(--gray-200) 100%);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
  position: relative;
}
.hero__mockup-bar {
  height: 36px;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 7px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.hero__mockup-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hero__mockup-bar span:nth-child(1) { background: var(--red); opacity: 0.7; }
.hero__mockup-bar span:nth-child(2) { background: var(--gold); opacity: 0.7; }
.hero__mockup-bar span:nth-child(3) { background: #4ade80; opacity: 0.7; }
.hero__mockup-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.9rem;
  font-weight: 500;
  gap: 10px;
  padding: 20px;
}
.hero__mockup-body svg { width: 28px; height: 28px; opacity: 0.4; }

/* Devices composition */
.hero__devices {
  position: relative;
}
.device-macbook-pro .device-screen {
  width: auto !important;
  height: auto !important;
}
.hero__laptop-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  zoom: 1;
}
@media (max-width: 1024px) {
  .hero__laptop-wrap { justify-content: flex-start !important; }
}
.hero__phone-wrap {
  position: absolute;
  bottom: -60px;
  right: 0px;
  width: 260px;
  z-index: 3;
}
.hero__phone-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

/* =========================================
   PROOF BAR
   ========================================= */
.proof-bar {
  background: var(--gray-900);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.proof-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--blue-deep) 0%, var(--gray-900) 50%, var(--gray-800) 100%);
  opacity: 0.5;
}
.proof-bar__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.proof-bar__item {
  text-align: center;
  position: relative;
}
.proof-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}
.proof-bar__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}
.proof-bar__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  font-weight: 400;
}

/* =========================================
   SOCIAL PROOF
   ========================================= */
.social-proof {
  padding: clamp(40px, 6vw, 70px) 0 clamp(40px, 6vw, 70px);
  background: var(--white);
}
.social-proof__header {
  margin-bottom: 24px;
}
.social-proof__header--mobile {
  display: none;
}
.social-proof__header--desktop {
  display: block;
}
.social-proof__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 48px;
  align-items: start;
}
.social-proof__quotes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sp-quote {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px 32px;
  transition: all 0.3s;
}
.sp-quote:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(232,157,64,0.06);
}
.sp-quote__text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 16px;
}
.sp-quote__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sp-quote__author {
  font-size: 0.82rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 12px;
}
.sp-quote__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gray-200);
}
.sp-quote__author strong {
  color: var(--gray-900);
  font-weight: 700;
  display: block;
  font-size: 0.88rem;
}
.sp-quote__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
  transition: gap 0.3s var(--ease-out-expo);
}
.sp-quote:hover .sp-quote__link {
  gap: 12px;
}
.social-proof__video {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.social-proof__video-wrap {
  width: 400px;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}
.social-proof__video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.social-proof__video-caption {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
}
/* Marquee logo wall */
.marquee {
  margin-top: 56px;
  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);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 120s linear infinite;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.marquee__logos {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
}
.marquee__logos img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.2);
  opacity: 0.8;
  transition: all 0.3s;
}
.marquee__logos img.logo--on-dark {
  background: var(--gray-800);
  padding: 8px 14px;
  border-radius: 8px;
}
.marquee__logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}
.marquee__logos img.logo--dark {
  filter: grayscale(100%) contrast(2) brightness(0.5);
  opacity: 0.9;
}
.marquee__logos img.logo--dark:hover {
  filter: grayscale(0);
  opacity: 1;
}
@keyframes marquee-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 1024px) {
  .social-proof__grid { grid-template-columns: 1fr; }
  .social-proof__header--mobile { display: block; margin-bottom: 24px; }
  .social-proof__header--desktop { display: none; }
  .social-proof__video { order: -1; }
  .social-proof__video-wrap { width: 100%; max-width: 400px; }
}
@media (max-width: 768px) {
  .social-proof__video-wrap { max-width: 350px; }
  .marquee__track { animation-duration: 60s; }
  .marquee__logos img { height: 32px; }
  .marquee__logos img.logo--on-dark { padding: 5px 10px; }
  .marquee__logos { gap: 32px; padding-right: 32px; }
}

/* =========================================
   WORKFLOW PLACEHOLDER
   ========================================= */
.workflow {
  padding: var(--section-pad) 0;
  background: var(--gray-50);
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--black);
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.7;
}
/* Workflow steps */
.workflow__steps {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
/* Vertical connecting line */
.workflow__steps::before {
  content: '';
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 31px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--blue), var(--gold));
  opacity: 0.2;
}
.wf-step {
  position: relative;
  padding-left: 80px;
  padding-bottom: 16px;
}
.wf-step__number {
  position: absolute;
  left: 10px;
  top: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  z-index: 2;
  transition: all 0.4s var(--ease-out-expo);
}
.wf-step.open .wf-step__number {
  background: var(--gold);
  color: var(--white);
}
.wf-step__card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}
.wf-step__card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(232,157,64,0.08);
}
.wf-step.open .wf-step__card {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(232,157,64,0.1);
}
.wf-step__header {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.wf-step__header:hover { background: var(--gray-50); }
.wf-step__header-left { flex: 1; }
.wf-step__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.wf-step__subtitle {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.5;
}
.wf-step__toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s var(--ease-out-expo);
}
.wf-step__toggle svg {
  width: 16px;
  height: 16px;
  color: var(--gray-600);
  transition: transform 0.4s var(--ease-out-expo);
}
.wf-step.open .wf-step__toggle {
  background: var(--gold-pale);
}
.wf-step.open .wf-step__toggle svg {
  transform: rotate(180deg);
  color: var(--gold);
}
.wf-step__detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo);
}
.wf-step.open .wf-step__detail {
  max-height: 1200px;
}
.wf-step__detail-inner {
  padding: 0 28px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.wf-feature {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s;
}
.wf-feature:hover {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.wf-feature__title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--black);
}
.wf-feature__desc {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 8px;
}
.wf-feature__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.wf-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 100px;
  background: var(--gold-pale);
  color: var(--gold);
}
.wf-tag--blue {
  background: var(--blue-light);
  color: var(--blue);
}
.wf-tag--green {
  background: #e8f5e9;
  color: #2e7d32;
}

@media (max-width: 768px) {
  .workflow__steps::before { left: 21px; }
  .wf-step { padding-left: 56px; }
  .wf-step__number { left: 0; width: 40px; height: 40px; font-size: 0.9rem; }
  .wf-step__header { padding: 18px 20px; }
  .wf-step__detail-inner { padding: 0 20px 20px; grid-template-columns: 1fr; }
  .wf-step__title { font-size: 1.1rem; }
}

/* =========================================
   CTA BREAK
   ========================================= */
.cta-break {
  background: var(--gray-900);
  padding: clamp(48px, 6vw, 80px) 0;
  position: relative;
  overflow: hidden;
}
.cta-break::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--blue-deep) 0%, var(--gray-900) 50%, var(--gray-800) 100%);
  opacity: 0.5;
}
.cta-break__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.cta-break__content {
  flex: 1;
  text-align: left;
}
.cta-break__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}
.cta-break__desc {
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}
.cta-break__person {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-shrink: 0;
}
.cta-break__photo {
  width: auto;
  height: 340px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 16px;
}
.cta-break__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
}
.cta-break__name {
  font-weight: 700;
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.3;
}
.cta-break__role {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
}
.cta-break__email {
  font-size: 0.95rem;
  color: var(--white);
  transition: all 0.2s;
  margin-top: 2px;
  line-height: 1.3;
}
.cta-break__email:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.cta-break__logo {
  height: 64px;
  width: auto;
  opacity: 1;
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .cta-break__inner { flex-wrap: wrap; justify-content: center; }
  .cta-break__content { flex-basis: 100%; }
}
@media (max-width: 768px) {
  .cta-break__inner { flex-direction: column; }
  .cta-break__content { text-align: left; }
  .cta-break__person { flex-direction: column; }
  .cta-break__photo { height: 250px; }
  .cta-break__info { align-items: flex-start; }
  .cta-break__logo { display: none; }
}

/* =========================================
   INTEGRACE
   ========================================= */
.integrace {
  padding: var(--section-pad) 0;
  background: var(--gray-50);
}
.integrace__header {
  text-align: center;
  margin-bottom: 40px;
}
.integrace__header .section-desc { margin: 0 auto; }
.integrace__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  align-items: center;
}
.integrace__item {
  min-height: 70px;
  max-height: 85px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 7px 15px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  transition: all 0.3s;
}
.integrace__item:hover {
  box-shadow: 0 7px 20px rgba(0,0,0,0.15);
}
.integrace__more { display: none; }
.integrace__item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.integrace__item--blue {
  background: #1a3d85;
}
.integrace__item--dark {
  background: #1f2a30;
}
.integrace__item--brown {
  background: #5a240a;
}
@media (max-width: 768px) {
  .integrace__item { height: auto; min-height: 60px; max-height: none; padding: 10px 16px; min-width: 130px; }
  .integrace__grid { max-height: 260px; overflow: hidden; transition: max-height 0.5s ease; }
  .integrace__grid--expanded { max-height: 2000px; }
  .integrace__more { display: block; }
}

/* =========================================
   SEGMENTS / FEATURES
   ========================================= */
.segments {
  padding: 64px 0;
  background: var(--gray-50);
}
.segments__header {
  margin-bottom: 32px;
}
.segments__header .section-title {
  font-size: 2rem;
}
.segments__row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .segments__row { justify-content: flex-start; gap: 24px; }
  .segments__header { text-align: left; }
}
.segment-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.segment-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.segment-item__icon--gold,
.segment-item__icon--blue,
.segment-item__icon--red,
.segment-item__icon--green {
  background: var(--gray-100);
  color: var(--gray-600);
}
.segment-item__text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.segment-item__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-900);
}
.segment-item__desc {
  font-size: 0.85rem;
  color: var(--gray-400);
}
.segment-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 24px 22px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.segment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}
.segment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: transparent;
}
.segment-card:hover::before {
  transform: scaleX(1);
}
.segment-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.segment-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.segment-card__icon svg { width: 20px; height: 20px; }
.segment-card:nth-child(1) .segment-card__icon { background: var(--gold-pale); }
.segment-card:nth-child(2) .segment-card__icon { background: var(--blue-light); }
.segment-card:nth-child(3) .segment-card__icon { background: #fde8e8; }
.segment-card:nth-child(4) .segment-card__icon { background: #e8f5e9; }
.segment-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}
.segment-card__desc {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 10px;
}
.segment-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.3s;
}
.segment-card:hover .segment-card__link { gap: 12px; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--blue);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,157,64,0.1) 0%, transparent 70%);
}
.testimonials .section-label { color: var(--gold-light); }
.testimonials .section-label::before { background: var(--gold-light); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-desc { color: rgba(255,255,255,0.6); }
.testimonials__header { margin-bottom: 60px; }
.testimonials__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.testimonials__track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testimonial-card__quote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-display);
}
.testimonial-card__name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}
.testimonial-card__role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* =========================================
   LOGO CLOUD
   ========================================= */
.logos {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-200);
}
.logos__header {
  text-align: center;
  margin-bottom: 48px;
}
.logos__header h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.logos__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  align-items: center;
}
.logo-item {
  width: 150px;
  height: 56px;
  background: var(--gray-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.logo-item:hover {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

/* =========================================
   BLOG
   ========================================= */
.blog {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.blog__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
.blog__grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.blog__grid .blog-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.blog-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease-out-expo);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: transparent;
}
.blog-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 2rem;
  position: relative;
  overflow: hidden;
}
.blog-card__image img {
  transition: transform 0.5s var(--ease-out-expo);
}
.blog-card:hover .blog-card__image img { transform: scale(1.05); }
.blog-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.03));
}
.blog-card__body { padding: 28px; }
.blog-card__date {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 18px;
}
.blog-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease-out-expo);
}
.blog-card:hover .blog-card__link { gap: 12px; }

/* Blog listing cards (shared) */
.bl-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease-out-expo);
  text-decoration: none;
  color: inherit;
  display: block;
}
.bl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: transparent;
}
.bl-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.bl-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}
.bl-card:hover .bl-card__img img { transform: scale(1.05); }
.bl-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}
.bl-card__body { padding: 28px; }
.bl-card__date {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.bl-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}
.bl-card__excerpt {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 18px;
}
.bl-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease-out-expo);
}
.bl-card:hover .bl-card__link { gap: 12px; }

/* =========================================
   CONTACT
   ========================================= */
.contact {
  padding: var(--section-pad) 0;
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--blue-deep) 0%, var(--gray-900) 50%, var(--gray-800) 100%);
  opacity: 0.5;
}
.contact .container--wide { position: relative; z-index: 1; }
.contact .section-label { color: var(--gold-light); }
.contact .section-label::before { background: var(--gold-light); }
.contact .section-title { color: var(--white); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact__desc {
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.7;
  margin-top: 12px;
  margin-bottom: 28px;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact__detail-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  transition: color 0.2s;
}
.contact__detail-link:hover { color: var(--gold-light); }
.contact__detail-link svg { opacity: 0.6; }
.contact__form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  outline: none;
  transition: all 0.3s;
  background: var(--gray-50);
  color: var(--black);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(2,79,148,0.08);
}
.form-group textarea {
  height: 120px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact__gdpr {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.contact__gdpr a { color: var(--gray-600); text-decoration: underline; text-underline-offset: 2px; }
.contact__gdpr a:hover { color: var(--black); }
.contact__register {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-top: 16px;
}
.contact__register a { color: var(--gold); font-weight: 600; }
.contact__register a:hover { color: var(--gold-light); }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--white);
  color: var(--gray-700);
  position: relative;
  padding-top: 20px;
}
.footer__wave {
  position: absolute;
  top: -29px;
  left: 0; right: 0;
  height: 30px;
  overflow: hidden;
}
.footer__wave svg {
  width: 100%;
  height: 100%;
  display: block;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 20px 0 48px;
}
.footer__brand-col {}
.footer__brand {
  display: inline-block;
  margin-bottom: 12px;
}
.footer__logo-img {
  height: 80px;
  width: auto;
}
.footer__tagline {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.5;
}
.footer__apps {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  background: var(--gray-900);
  border-radius: 8px;
  color: var(--white);
  transition: background 0.2s;
}
.app-badge:hover {
  background: var(--gray-800);
}
.app-badge__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.app-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.app-badge__label {
  font-size: 0.58rem;
  font-weight: 400;
  opacity: 0.85;
  letter-spacing: 0.02em;
}
.app-badge__store {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.footer__contact-col {}
.footer__contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--gray-800);
  font-weight: 600;
  transition: color 0.2s;
}
.footer__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue);
  flex-shrink: 0;
  transition: all 0.2s;
}
.footer__contact-item:hover {
  color: var(--gold);
}
.footer__contact-item:hover .footer__contact-icon {
  background: var(--gold-pale);
  color: var(--gold);
}
.footer__social {
  display: flex;
  gap: 8px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: all 0.3s;
}
.footer__social a:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}
.footer__heading {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 16px;
}
.footer__links a {
  display: block;
  font-size: 0.88rem;
  padding: 5px 0;
  color: var(--gray-600);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 2px solid var(--gold-pale);
  font-size: 0.8rem;
  color: var(--gray-400);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 600px; margin-right: 0 !important; margin-left: 0; }
  .hero__laptop-wrap { zoom: 0.7; justify-content: flex-start; }
  .segments__grid { grid-template-columns: repeat(2, 1fr); }
  .blog__grid .blog-card { flex: 0 0 calc(50% - 10px); }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer__brand-col { grid-column: 1 / -1; }
  .proof-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .proof-bar__item:nth-child(2)::after { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; }
  .header__logo-img { height: 52px; }
  .header__nav { display: none; }
  .menu-toggle { display: flex; }
  .btn-login { padding: 6px 14px; font-size: 0.78rem; }
  .hero { padding-top: calc(var(--header-h) + 30px); padding-bottom: 40px; }
  .hero__title { font-size: 2.2rem; }
  .hero__desc { font-size: 0.9rem; }
  .hero__actions .btn { padding: 11px 24px; font-size: 0.82rem; }
  .hero__visual { margin-right: 0 !important; }
  .hero__visual { margin-right: 0 !important; }
  .hero__laptop-wrap {
    zoom: 1 !important;
    justify-content: flex-start !important;
  }
  .hero__laptop-wrap .device-macbook-pro {
    width: 100% !important;
    height: auto !important;
  }
  .hero__laptop-wrap .device-frame {
    width: 100% !important;
    height: auto !important;
  }
  .hero__laptop-wrap .device-power {
    width: 100% !important;
  }
  .hero__laptop-wrap .device-frame::after {
    width: auto !important;
    left: 2px !important;
    right: 2px !important;
  }
  .hero__phone-wrap {
    width: 42% !important;
    bottom: auto !important;
    top: -10% !important;
  }
  .segments__grid { grid-template-columns: 1fr; }
  .blog__grid { gap: 16px; }
  .blog__grid .blog-card { flex: 0 0 85%; min-width: 0; }
  .blog__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .testimonial-card { flex: 0 0 300px; }
  .footer__inner { grid-template-columns: auto 1fr; gap: 16px 3rem; }
  .footer__brand-col { grid-column: 1 / -1; }
  .footer__contact-col { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; gap: 4px; text-align: center; }
  .proof-bar__inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .btn-login { padding: 8px 20px; font-size: 0.82rem; }
  .lang-switcher__btn span.lang-full { display: none; }
}
@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .hero__actions .btn { padding: 10px 20px; font-size: 0.78rem; }
  .proof-bar__inner { grid-template-columns: 1fr; }
  .proof-bar__item::after { display: none !important; }
  .contact__form-wrap { padding: 28px 20px; }
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out-expo);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-size: 1.3rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 12px;
  transition: background 0.2s;
}
.mobile-nav a:hover { background: var(--gray-100); }
.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 1.5rem;
  padding: 8px;
  cursor: pointer;
  color: var(--black);
}

/* Blog button mobile/desktop */
.blog__btn-mobile { display: none; }
@media (max-width: 768px) {
  .blog__btn-desktop { display: none !important; }
  .blog__btn-mobile { display: block; }
}

/* Mobile-only blog cards */
.mobile-only-card { display: none !important; }
@media (max-width: 768px) { .mobile-only-card { display: flex !important; } }
