/* ============================================
   WORKING DIGITAL — Modern SEO Agency
   Design: Light / Premium (Stratfield-Inspired)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

/* ─── CSS VARIABLES ────────────────────────── */
:root {
  /* Backgrounds */
  --bg:           #FFFFFF;
  --surface:      #F7F5F2;
  --surface-warm: #F2EFE9;
  --card:         #FFFFFF;
  --card-alt:     #FAF9F7;

  /* Borders */
  --border:       #E8E3DA;
  --border-light: #F0EDE8;

  /* Gold Accent (Stratfield-inspired) */
  --accent:       #C9A96E;
  --accent-dark:  #A8863F;
  --accent-hover: #B8955A;
  --accent-soft:  rgba(201, 169, 110, 0.10);
  --accent-glow:  rgba(201, 169, 110, 0.25);

  /* Text */
  --text:         #1E252F;
  --text-secondary: #5A6370;
  --text-muted:   #9CA3AF;
  --white:        #FFFFFF;

  /* Footer */
  --footer-bg:    #1C2330;
  --footer-text:  #E8E3DA;
  --footer-muted: #8892A0;

  /* Misc */
  --nav-height:   80px;
  --radius:       6px;
  --radius-lg:    10px;
  --transition:   0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:       0 4px 24px rgba(30, 37, 47, 0.08);
  --shadow-lg:    0 16px 64px rgba(30, 37, 47, 0.14);
}

/* ─── RESET & BASE ─────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul { list-style: none; }

/* ─── TYPOGRAPHY ───────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
}

.display {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.subheadline {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ─── UTILITIES ────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
}

.section--sm {
  padding: 64px 0;
}

.text-accent {
  color: var(--accent);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 18px;
}

.badge::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

/* ─── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn--primary:hover {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn--outline:hover {
  background: var(--text);
  color: var(--white);
}

.btn--outline-gold {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn--outline-gold:hover {
  background: var(--accent);
  color: var(--white);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
  background: var(--white);
  color: var(--footer-bg);
  border-color: var(--white);
}

.btn--lg {
  padding: 17px 38px;
  font-size: 0.85rem;
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.75rem;
}

/* ─── NAVIGATION ───────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border-light);
  box-shadow: 0 1px 20px rgba(30, 37, 47, 0.06);
}

.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

.nav__logo-icon {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  padding: 10px 18px;
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav__link:hover {
  color: var(--accent);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
}

.lang-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 5px 8px;
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
  position: relative;
}

.lang-btn.active {
  color: var(--accent);
}

.lang-btn + .lang-btn::before {
  content: '|';
  position: absolute;
  left: -1px;
  color: var(--border);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all var(--transition);
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile .nav__link {
  font-size: 1.2rem;
  padding: 16px 32px;
}

/* ─── HERO ─────────────────────────────────── */
.hero {
  min-height: auto;
  display: flex;
  align-items: flex-start;
  padding: calc(var(--nav-height) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* Subtle warm texture overlay */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 80% at 90% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
}

/* Decorative line element */
.hero__deco-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  z-index: 0;
  background: var(--surface);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__pretitle {
  margin-bottom: 22px;
}

.hero__title {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero visual panel */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 40px;
}

.hero__stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero__stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.hero__stat-card:hover {
  transform: translateY(-3px);
}

.hero__stat-card--accent {
  background: var(--accent);
  border-color: var(--accent);
}

.hero__stat-card--accent .hero__stat-number,
.hero__stat-card--accent .hero__stat-label {
  color: var(--white);
}

.hero__stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--text);
  margin-bottom: 6px;
}

.hero__stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── TRUST BAR ────────────────────────────── */
.trust-bar {
  padding: 22px 0;
  background: var(--surface-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

/* Gradient fade an den Rändern */
.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.trust-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--surface-warm) 20%, transparent);
}
.trust-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--surface-warm) 20%, transparent);
}

.trust-bar__header {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.trust-bar__inner {
  overflow: hidden;
  position: relative;
}

.trust-bar__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-bar__label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* Ticker-Wrapper für Animation */
.trust-bar__track {
  display: flex;
  width: max-content;
  animation: trust-ticker 28s linear infinite;
}

.trust-bar__track:hover {
  animation-play-state: paused;
}

@keyframes trust-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

.trust-bar__countries {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  flex-shrink: 0;
  padding-right: 10px; /* gleicher Abstand zwischen den zwei Sets wie zwischen den Pills */
}

.trust-bar__country {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--white);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  cursor: default;
}

.trust-bar__country:hover {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(201, 169, 110, 0.07);
}

/* ─── SECTION HEADER ───────────────────────── */
.section-header {
  max-width: 620px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-header__title {
  margin-bottom: 16px;
}

.section-header__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ─── SERVICES ─────────────────────────────── */
.services {
  background: var(--bg);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--card);
  padding: 44px 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  background: var(--surface);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card__icon {
  font-size: 1.6rem;
  margin-bottom: 22px;
  display: block;
}

.service-card__number {
  position: absolute;
  top: 36px;
  right: 36px;
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--border-light);
  line-height: 1;
  transition: color var(--transition);
}

.service-card:hover .service-card__number {
  color: var(--border);
}

.service-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--text);
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ─── STATS ────────────────────────────────── */
.stats {
  background: var(--footer-bg);
  padding: 80px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.stat-item {
  background: var(--footer-bg);
  padding: 44px 36px;
  text-align: center;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition);
}

.stat-item:hover {
  border-bottom-color: var(--accent);
}

.stat-item__number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.stat-item__label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--footer-muted);
  font-weight: 500;
}

/* ─── ABOUT ────────────────────────────────── */
.about {
  background: var(--surface);
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__image-wrap {
  aspect-ratio: 4/5;
  background: var(--surface-warm);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.about__image-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--surface-warm), var(--border-light));
}

.about__avatar-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.about__avatar-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.about__avatar-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--text);
  text-align: center;
}

.about__avatar-role {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about__card-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 22px 26px;
  box-shadow: var(--shadow);
  min-width: 220px;
}

.about__card-float-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.about__card-float-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 4px 0;
}

.about__card-float-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  flex-shrink: 0;
}

.about__content .badge { margin-bottom: 20px; }

.about__title {
  margin-bottom: 20px;
}

.about__text {
  font-size: 0.975rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 32px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.about__feature::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ─── PROCESS ──────────────────────────────── */
.process {
  background: var(--bg);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.process-step {
  padding: 44px 32px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}

.process-step:last-child {
  border-right: none;
}

.process-step:hover {
  background: var(--surface);
}

.process-step__number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 24px;
  transition: color var(--transition);
}

.process-step:hover .process-step__number {
  color: var(--accent);
}

.process-step__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--text);
}

.process-step__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── BLOG PREVIEW ─────────────────────────── */
.blog-preview {
  background: var(--surface);
}

.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.blog-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.blog-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform var(--transition);
}

.blog-card:hover .blog-card__img-placeholder {
  transform: scale(1.04);
}

.blog-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.blog-card__cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.blog-card__date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 12px;
  flex: 1;
  color: var(--text);
}

.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  transition: gap var(--transition);
}

.blog-card:hover .blog-card__link {
  gap: 12px;
}

.blog-preview__footer {
  text-align: center;
  margin-top: 48px;
}

/* ─── CTA SECTION ──────────────────────────── */
.cta-section {
  padding: 100px 0;
  background: var(--footer-bg);
  position: relative;
  overflow: hidden;
}

.cta-section__deco {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section__deco-2 {
  position: absolute;
  bottom: -80px;
  left: 80px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}

.cta-section__inner .badge {
  color: var(--accent);
}

.cta-section__inner .badge::before {
  background: var(--accent);
}

.cta-section__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}

.cta-section__text {
  font-size: 1rem;
  color: var(--footer-muted);
  margin-bottom: 36px;
  line-height: 1.8;
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── FOOTER ───────────────────────────────── */
footer {
  background: var(--footer-bg);
}

.footer__main {
  padding: 80px 0 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo .nav__logo-icon {
  filter: invert(1) brightness(1.03);
  mix-blend-mode: difference;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--footer-text);
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--footer-muted);
  line-height: 1.75;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--footer-muted);
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.footer__col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--footer-text);
  margin-bottom: 22px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.875rem;
  color: var(--footer-muted);
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--accent);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--footer-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer__contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--footer-muted);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal-link {
  font-size: 0.8rem;
  color: var(--footer-muted);
  transition: color var(--transition);
}

.footer__legal-link:hover {
  color: var(--accent);
}

/* ─── CONTACT MODAL ────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 37, 47, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 52px 48px;
  max-width: 540px;
  width: 100%;
  position: relative;
  transform: translateY(16px);
  transition: transform var(--transition);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1rem;
  transition: color var(--transition);
  font-family: inherit;
  background: none;
  border: none;
}

.modal__close:hover {
  color: var(--text);
}

.modal__title {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}

.modal__subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-input:focus {
  border-color: var(--accent);
}

.form-input::placeholder {
  color: var(--text-muted);
}

textarea.form-input {
  resize: vertical;
  min-height: 110px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.form-success__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.form-success__text {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ─── BLOG PAGE ────────────────────────────── */
.blog-hero {
  padding: 140px 0 80px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.blog-hero__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--text);
}

.blog-hero__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
}

.blog-page {
  padding: 80px 0;
}

.blog-categories {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 52px;
  border: 1px solid var(--border);
  width: fit-content;
}

.cat-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 20px;
  background: var(--white);
  border: none;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.cat-btn:last-child {
  border-right: none;
}

.cat-btn.active,
.cat-btn:hover {
  background: var(--accent);
  color: var(--white);
}

.blog-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ─── NAV DROPDOWN ────────────────────────── */
.nav__item--has-dropdown {
  position: relative;
}

.nav__link--has-arrow {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav__link--has-arrow .nav__arrow {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
  flex-shrink: 0;
  opacity: 0.6;
}

.nav__item--has-dropdown:hover .nav__arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  min-width: 300px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 100;
}

/* Arrow pointer */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px;
  height: 9px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.nav__item--has-dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition);
  color: var(--text);
}

.nav__dropdown-item:last-child {
  border-bottom: none;
}

.nav__dropdown-item:hover {
  background: var(--surface);
}

.nav__dropdown-item:hover .nav__dropdown-title {
  color: var(--accent-dark);
}

.nav__dropdown-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
  width: 36px;
  height: 36px;
  background: var(--surface-warm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__dropdown-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
  transition: color var(--transition);
}

.nav__dropdown-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ─── LANDING PAGE COMPONENTS ──────────────── */

/* LP Hero */
.lp-hero {
  min-height: auto;
  display: flex;
  align-items: flex-start;
  padding: calc(var(--nav-height) + 60px) 0 80px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.lp-hero__deco {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background: var(--surface-warm);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}

.lp-hero__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.lp-hero__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 22px;
}

.lp-hero__title em {
  font-style: italic;
  color: var(--accent);
}

.lp-hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 100%;
}

.lp-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.lp-hero__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.lp-hero__trust-item {
  display: flex;
  flex-direction: column;
}

.lp-hero__trust-number {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
}

.lp-hero__trust-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}

/* LP sections */
.lp-section {
  padding: 88px 0;
}

.lp-section--alt {
  background: var(--surface);
}

.lp-section--dark {
  background: var(--footer-bg);
}

.lp-section-header {
  max-width: 620px;
  margin-bottom: 56px;
}

.lp-section-header--center {
  text-align: center;
  margin: 0 auto 56px;
}

.lp-section-header__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}

.lp-section--dark .lp-section-header__title {
  color: var(--white);
}

.lp-section-header__sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.lp-section--dark .lp-section-header__sub {
  color: var(--footer-muted);
}

/* Split intro */
.lp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lp-split__text p {
  font-size: 0.975rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 16px;
}

.lp-split__text p:last-child { margin-bottom: 0; }

.lp-split__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lp-split__stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: all var(--transition);
}

.lp-split__stat-card:first-child {
  grid-column: span 2;
  background: var(--accent);
  border-color: var(--accent);
}

.lp-split__stat-card:first-child .lp-split__stat-num,
.lp-split__stat-card:first-child .lp-split__stat-label {
  color: var(--white);
}

.lp-split__stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.lp-split__stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}

.lp-split__stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Feature grid */
.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.lp-feature {
  background: var(--card);
  padding: 36px 30px;
  position: relative;
  transition: background var(--transition);
}

.lp-feature::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.lp-feature:hover {
  background: var(--surface);
}

.lp-feature:hover::after {
  transform: scaleX(1);
}

.lp-feature__icon {
  font-size: 1.6rem;
  margin-bottom: 18px;
  display: block;
}

.lp-feature__num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  color: var(--border-light);
  line-height: 1;
  transition: color var(--transition);
}

.lp-feature:hover .lp-feature__num {
  color: var(--border);
}

.lp-feature__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}

.lp-feature__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* Process steps (horizontal) */
.lp-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.lp-step {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--transition);
}

.lp-step:last-child {
  border-right: none;
}

.lp-step:hover {
  background: var(--surface);
}

.lp-step__num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.6rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
  transition: color var(--transition);
}

.lp-step:hover .lp-step__num {
  color: var(--accent);
}

.lp-step__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}

.lp-step__text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Target groups */
.lp-targets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.lp-target {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: all var(--transition);
}

.lp-target:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.lp-target__icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}

.lp-target__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.lp-target__text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* FAQ accordion */
.lp-faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent-dark);
}

.faq-question__icon {
  width: 22px;
  height: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all var(--transition);
  color: var(--text-muted);
}

.faq-item.open .faq-question__icon {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 20px 0;
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  display: block;
}

/* USP comparison strip */
.lp-usp-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 48px;
}

.lp-usp {
  background: rgba(255,255,255,0.04);
  padding: 32px 28px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition);
}

.lp-usp:hover {
  border-bottom-color: var(--accent);
}

.lp-usp__icon {
  font-size: 1.4rem;
  margin-bottom: 12px;
  display: block;
}

.lp-usp__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}

.lp-usp__text {
  font-size: 0.82rem;
  color: var(--footer-muted);
  line-height: 1.65;
}

/* Definition box */
.lp-definition {
  background: var(--surface-warm);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 28px 32px;
  margin-bottom: 48px;
}

.lp-definition__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 10px;
  display: block;
}

.lp-definition__text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

/* LP CTA section */
.lp-cta {
  background: var(--footer-bg);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-cta__deco-1,
.lp-cta__deco-2 {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.1);
  pointer-events: none;
}

.lp-cta__deco-1 { width: 400px; height: 400px; top: -160px; right: -80px; }
.lp-cta__deco-2 { width: 250px; height: 250px; bottom: -80px; left: 60px; }

.lp-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

.lp-cta__badge { color: var(--accent); }
.lp-cta__badge::before { background: var(--accent); }

.lp-cta__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.lp-cta__text {
  font-size: 1rem;
  color: var(--footer-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.lp-cta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Responsive LP */
@media (max-width: 1024px) {
  .lp-split { grid-template-columns: 1fr; gap: 48px; }
  .lp-split__visual { max-width: 400px; }
  .lp-features { grid-template-columns: repeat(2, 1fr); }
  .lp-process { grid-template-columns: repeat(2, 1fr); }
  .lp-step:nth-child(2) { border-right: none; }
  .lp-step:nth-child(3), .lp-step:nth-child(4) { border-top: 1px solid var(--border); }
  .lp-targets { grid-template-columns: repeat(2, 1fr); }
  .lp-usp-strip { grid-template-columns: 1fr; }
  .lp-hero__deco { display: none; }
}

@media (max-width: 768px) {
  .lp-hero { min-height: auto; padding: calc(var(--nav-height) + 40px) 0 60px; }
  .lp-hero__trust { gap: 20px; }
  .lp-features { grid-template-columns: 1fr; }
  .lp-process { grid-template-columns: 1fr; border: 1px solid var(--border); }
  .lp-step { border-right: none; border-bottom: 1px solid var(--border); }
  .lp-step:last-child { border-bottom: none; }
  .lp-step:nth-child(3) { border-top: none; }
  .lp-targets { grid-template-columns: 1fr; }
  .lp-hero__actions { flex-direction: column; }
  .lp-hero__actions .btn { width: 100%; justify-content: center; }
  .lp-cta__actions { flex-direction: column; align-items: center; }
}

/* ─── HERO IMAGE PLACEHOLDER ───────────────── */
/* ─── HERO BACKGROUND IMAGE ─────────────────
   Position: absolute behind all hero content.
   Without real src → dashed placeholder visible.
   With real src    → image + dark overlay, text turns white automatically.
──────────────────────────────────────────── */
.hero-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark gradient overlay — only shown when real image is present */
.hero-img__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(12,18,30,0.62) 0%, rgba(12,18,30,0.38) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s;
}

/* Placeholder — fills the hero area when no real image is set */
.hero-img__placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #F0EBE3 0%, #F7F5F2 50%, #EDE8E1 100%);
  border: 2px dashed #D4C4A8;
  color: #B09878;
  pointer-events: none;
  user-select: none;
}

.hero-img__placeholder svg { opacity: 0.5; }

.hero-img__placeholder-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-img__placeholder-hint {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  opacity: 0.65;
}

/* ── When a REAL image src is set (:has support = all modern browsers) ── */

/* Show overlay */
.hero:has(.hero-img img[src]:not([src=""])) .hero-img__overlay,
.lp-hero:has(.hero-img img[src]:not([src=""])) .hero-img__overlay {
  opacity: 1;
}

/* Hide placeholder */
.hero:has(.hero-img img[src]:not([src=""])) .hero-img__placeholder,
.lp-hero:has(.hero-img img[src]:not([src=""])) .hero-img__placeholder {
  display: none;
}

/* Hide existing decorative bg layers (they'd show through without the placeholder) */
.hero:has(.hero-img img[src]:not([src=""])) .hero__bg,
.hero:has(.hero-img img[src]:not([src=""])) .hero__deco-line,
.lp-hero:has(.hero-img img[src]:not([src=""])) .lp-hero__deco {
  display: none;
}

/* Switch text to white for legibility on the dark overlay */
.hero:has(.hero-img img[src]:not([src=""])) .hero__title,
.hero:has(.hero-img img[src]:not([src=""])) .hero__title em,
.hero:has(.hero-img img[src]:not([src=""])) .hero__subtitle {
  color: var(--white);
}
.hero:has(.hero-img img[src]:not([src=""])) .hero__stat-card {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}
.hero:has(.hero-img img[src]:not([src=""])) .hero__stat-number,
.hero:has(.hero-img img[src]:not([src=""])) .hero__stat-label {
  color: var(--white);
}
.lp-hero:has(.hero-img img[src]:not([src=""])) .lp-hero__title,
.lp-hero:has(.hero-img img[src]:not([src=""])) .lp-hero__title em,
.lp-hero:has(.hero-img img[src]:not([src=""])) .lp-hero__subtitle {
  color: var(--white);
}
.lp-hero:has(.hero-img img[src]:not([src=""])) .hero__stat-card {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}
.lp-hero:has(.hero-img img[src]:not([src=""])) .hero__stat-number,
.lp-hero:has(.hero-img img[src]:not([src=""])) .hero__stat-label {
  color: rgba(255,255,255,0.9);
}
.lp-hero:has(.hero-img img[src]:not([src=""])) .badge {
  background: rgba(201,169,110,0.25);
  border-color: rgba(201,169,110,0.5);
  color: #E8C97A;
}
.lp-hero:has(.hero-img img[src]:not([src=""])) .btn--outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.lp-hero:has(.hero-img img[src]:not([src=""])) .btn--outline:hover {
  background: rgba(255,255,255,0.12);
}

/* ─── LP EXTENDED COMPONENTS ───────────────── */

/* section-padding helper */
.section-padding { padding: 88px 0; }

/* Reset grid/box styles when lp-classes are used as section wrappers on landing pages */
section.lp-features,
section.lp-process,
section.lp-targets,
section.lp-faq {
  display: block;
  background: none;
  border: none;
  gap: unset;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

/* section-header with direct h2/p children */
.section-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* LP Hero two-column layout – matches homepage hero */
.lp-hero__inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lp-hero .hero__visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* LP Hero visual side */
.lp-hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-hero__img-wrap {
  position: relative;
  border-radius: 2px;
  overflow: visible;
}
.lp-hero__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1px solid var(--border);
}
.lp-hero__badge-float {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 120px;
}
.lp-hero__badge-float span {
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem;
  color: var(--text);
}
.lp-hero__badge-float small {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.lp-hero__badge-float--1 { top: -16px; right: -16px; }
.lp-hero__badge-float--2 { bottom: 32px; left: -20px; border-left: 3px solid var(--accent); }
.lp-hero__badge-float--3 { bottom: -16px; right: 24px; }

/* LP features grid wrapper */
.lp-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.lp-features__grid .lp-feature {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lp-features__grid .lp-feature:nth-child(3n) { border-right: none; }
.lp-features__grid .lp-feature:nth-last-child(-n+3) { border-bottom: none; }

/* LP process steps wrapper */
.lp-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.lp-process__steps .lp-step { border-right: 1px solid var(--border); }
.lp-process__steps .lp-step:last-child { border-right: none; }

/* Step number alias */
.lp-step__number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.6rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
  transition: color var(--transition);
}
.lp-step:hover .lp-step__number { color: var(--accent); }

/* Step content wrapper */
.lp-step__content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
.lp-step__content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* LP targets grid + cards */
.lp-targets__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lp-targets__card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: all var(--transition);
}
.lp-targets__card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.lp-targets__card-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}
.lp-targets__card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}
.lp-targets__card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* LP definition section 2-col */
.lp-definition {
  background: var(--surface);
  border: none;
  border-left: none;
  padding: 88px 0;
  margin-bottom: 0;
}
.lp-definition__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.lp-definition__text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 400;
  color: var(--text);
  margin: 14px 0 20px;
  line-height: 1.2;
}
.lp-definition__text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 16px;
}
.lp-definition__aside { position: sticky; top: 100px; }
.lp-definition__card {
  background: linear-gradient(150deg, #1C2330 0%, #232c3d 100%);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
}
.lp-definition__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
.lp-def-card__eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.lp-def-card__icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.lp-definition__card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #F5F0E8;
  margin-bottom: 20px;
  line-height: 1.3;
}
.lp-definition__card ul {
  padding: 0;
  list-style: none;
  margin-bottom: 28px;
}
.lp-definition__card ul li {
  font-size: 0.875rem;
  color: rgba(232,227,218,0.78);
  line-height: 1.6;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.lp-definition__card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}
.lp-definition__card ul li:last-child { border-bottom: none; }
.lp-def-card__stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.lp-def-card__stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
}
.lp-def-card__stat-label {
  font-size: 0.8rem;
  color: rgba(232,227,218,0.65);
  line-height: 1.4;
}

/* LP FAQ list wrapper */
.lp-faq__list {
  max-width: 760px;
  margin: 0 auto;
}

/* LP USP strip (light version) */
.lp-usp-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.lp-usp-strip__inner {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-usp-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.lp-usp-strip__item svg { color: var(--accent); flex-shrink: 0; }

/* LP CTA background */
.lp-cta__bg { display: none; }
.lp-cta h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.lp-cta p {
  font-size: 1rem;
  color: var(--footer-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* Responsive LP extended */
@media (max-width: 1024px) {
  .lp-hero__inner { grid-template-columns: 1fr; gap: 0; }
  .lp-hero__content { max-width: 100%; }
  .lp-hero__visual { display: none; }
  .lp-hero .hero__visual { display: none; }
  .lp-features__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-features__grid .lp-feature { border-right: 1px solid var(--border); }
  .lp-features__grid .lp-feature:nth-child(2n) { border-right: none; }
  .lp-features__grid .lp-feature:nth-child(3n) { border-right: 1px solid var(--border); }
  .lp-process__steps { grid-template-columns: repeat(2, 1fr); }
  .lp-process__steps .lp-step:nth-child(2) { border-right: none; }
  .lp-process__steps .lp-step { border-bottom: 1px solid var(--border); }
  .lp-targets__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-definition__inner { grid-template-columns: 1fr; gap: 36px; }
  .lp-definition__aside { position: static; }
}
@media (max-width: 768px) {
  .section-padding { padding: 60px 0; }
  .lp-features__grid { grid-template-columns: 1fr; }
  .lp-features__grid .lp-feature { border-right: none; }
  .lp-process__steps { grid-template-columns: 1fr; }
  .lp-process__steps .lp-step { border-right: none; }
  .lp-targets__grid { grid-template-columns: 1fr; }
  .lp-usp-strip__inner { flex-direction: column; gap: 4px; }
  .lp-usp-strip__item { padding: 8px 12px; }
  .lp-hero__stats { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ─── BLOG POST PAGE ───────────────────────── */
.post-hero {
  padding: 120px 0 64px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.post-breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.post-breadcrumb a:hover {
  color: var(--accent-dark);
}

.post-breadcrumb__sep {
  color: var(--border);
}

.post-hero__cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
  display: block;
}

.post-hero__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 780px;
}

.post-hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.post-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.post-hero__meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
}

.post-hero__image {
  margin-top: 48px;
  aspect-ratio: 21/9;
  overflow: hidden;
  border: 1px solid var(--border);
}

.post-hero__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* Post layout */
.post-body {
  padding: 80px 0 100px;
  background: var(--bg);
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: flex-start;
}

/* Article content */
.post-content {
  min-width: 0;
}

.post-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--text);
  margin: 48px 0 16px;
  padding-top: 8px;
}

.post-content h2:first-child {
  margin-top: 0;
}

.post-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin: 32px 0 12px;
}

.post-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
  margin: 0 0 24px 0;
  padding-left: 0;
}

.post-content ul li,
.post-content ol li {
  font-size: 0.975rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.post-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.post-content ol {
  counter-reset: ol-counter;
}

.post-content ol li {
  counter-increment: ol-counter;
}

.post-content ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--accent-dark);
}

.post-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--surface);
}

.post-content blockquote p {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  margin: 0;
}

.post-content .post-tip {
  background: var(--surface-warm);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.post-content .post-tip strong {
  color: var(--text);
  font-weight: 600;
}

.post-divider {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

.post-tags {
  display: none;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.post-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 6px 14px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.post-tag:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

/* Post sidebar */
.post-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
}

.sidebar-card__header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.sidebar-card__title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sidebar-card__body {
  padding: 22px;
}

/* Author card */
.sidebar-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.sidebar-author__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.sidebar-author__name {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
}

.sidebar-author__role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.sidebar-author__bio {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* TOC */
.toc-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 7px 0;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: color var(--transition);
}

.toc-item:last-child {
  border-bottom: none;
}

.toc-item:hover {
  color: var(--accent-dark);
}

.toc-item__num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Related articles in sidebar */
.related-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.related-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition);
}

.related-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.related-item:hover .related-item__title {
  color: var(--accent-dark);
}

.related-item__thumb {
  width: 54px;
  height: 54px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.related-item__title {
  font-family: 'DM Serif Display', serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
  transition: color var(--transition);
}

.related-item__date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Sidebar CTA */
.sidebar-cta {
  background: var(--footer-bg);
  border: none;
  padding: 28px;
  text-align: center;
}

.sidebar-cta__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}

.sidebar-cta__text {
  font-size: 0.82rem;
  color: var(--footer-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Post navigation */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px;
}

.post-nav__item {
  background: var(--card);
  padding: 28px 32px;
  transition: background var(--transition);
}

.post-nav__item:hover {
  background: var(--surface);
}

.post-nav__item--next {
  text-align: right;
}

.post-nav__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-nav__item--next .post-nav__label {
  justify-content: flex-end;
}

.post-nav__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
  transition: color var(--transition);
}

.post-nav__item:hover .post-nav__title {
  color: var(--accent-dark);
}

@media (max-width: 1024px) {
  .post-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .post-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .sidebar-cta {
    grid-column: span 2;
  }

  .post-hero__image {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .post-hero {
    padding: 100px 0 48px;
  }

  .post-sidebar {
    grid-template-columns: 1fr;
  }

  .sidebar-cta {
    grid-column: span 1;
  }

  .post-nav {
    grid-template-columns: 1fr;
  }

  .post-nav__item--next {
    text-align: left;
  }

  .post-nav__item--next .post-nav__label {
    justify-content: flex-start;
  }
}

/* ─── SCROLL ANIMATIONS ────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }

/* ─── RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__visual {
    max-width: 440px;
    margin: 0 auto;
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(2) {
    border-right: none;
  }

  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-preview__grid,
  .blog-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__grid-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero__deco-line {
    display: none;
  }

  .hero__visual {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .container {
    padding: 0 20px;
  }

  .section {
    padding: 72px 0;
  }

  .nav__links,
  .nav__right .btn {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__features {
    grid-template-columns: 1fr;
  }

  .process__steps {
    grid-template-columns: 1fr;
    border: 1px solid var(--border);
  }

  .process-step {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .process-step:last-child {
    border-bottom: none;
  }

  .blog-preview__grid,
  .blog-page__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .modal {
    padding: 36px 24px;
  }

  .about__card-float {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 16px;
  }

  .hero__scroll {
    display: none;
  }

  .blog-categories {
    width: 100%;
  }

  .cat-btn {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-section__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__stat-cards {
    grid-template-columns: 1fr 1fr;
  }
}
