/* ============================================================
   PREYSE STUDIOS — SHARED STYLESHEET
   preyse.com — Hostinger Ready
   ============================================================ */

/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Instrument+Serif:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── VARIABLES ── */
:root {
  --blue:        #1B2F6E;
  --blue-mid:    #2A4499;
  --blue-light:  #EEF1FA;
  --black:       #0A0A0A;
  --white:       #F9F8F6;
  --grey:        #E8E6E1;
  --muted:       #888888;

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Instrument Serif', serif;
  --font-body:    'DM Sans', sans-serif;

  --nav-h: 80px;
  --ease:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── BASE ── */
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.lang-en .t-de { display: none !important; }
body.lang-de .t-en { display: none !important; }

/* ── CUSTOM CURSOR (disabled) ── */
.cursor, .cursor-ring { display: none; }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
}
nav.scrolled {
  background: rgba(249,248,246,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
  height: 68px;
}
.nav-logo {
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.55;
  transition: opacity 0.2s;
  position: relative;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--blue);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lang-toggle {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.4;
  padding: 6px 10px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 100px;
  transition: opacity 0.2s, border-color 0.2s;
  cursor: pointer;
}
.lang-toggle:hover { opacity: 0.9; border-color: var(--blue); color: var(--blue); }
.nav-cta {
  background: var(--blue);
  color: white !important;
  opacity: 1 !important;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--blue-mid) !important; transform: translateY(-1px); }
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 600;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 400;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 48px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.35s var(--ease), visibility 0.35s, transform 0.35s var(--ease);
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 60px);
  letter-spacing: 0.04em;
  color: var(--black);
  opacity: 0.15;
  transition: opacity 0.2s, color 0.2s;
  margin-bottom: 16px;
  display: block;
}
.mobile-menu a:hover { opacity: 1; color: var(--blue); }
.mobile-menu .mobile-cta {
  margin-top: 40px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--blue);
  color: white;
  opacity: 1 !important;
  padding: 14px 36px;
  border-radius: 100px;
}
.mobile-menu .mobile-lang {
  position: absolute;
  bottom: 40px; left: 48px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  cursor: pointer;
  opacity: 1 !important;
}

/* ── HERO (HOMEPAGE) ── */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 80px) 48px 80px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero-main {}
.hero-bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(160px, 26vw, 400px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(27,47,110,0.055);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.01em;
  animation: bgFloat 18s ease-in-out infinite alternate;
}
@keyframes bgFloat {
  from { transform: translate(-50%, -50%) scale(1); }
  to   { transform: translate(-50%, -52%) scale(1.04); }
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease) forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--blue);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(68px, 11.5vw, 172px);
  line-height: 0.91;
  letter-spacing: 0.01em;
  color: var(--black);
  opacity: 0;
  animation: fadeUp 0.9s 0.5s var(--ease) forwards;
}
.hero-title .accent   { color: var(--blue); }
.hero-title .italic   {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.82em;
  color: var(--black);
  letter-spacing: 0.01em;
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 56px;
  opacity: 0;
  animation: fadeUp 0.8s 0.75s var(--ease) forwards;
}
.hero-sub {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  font-weight: 300;
  max-width: 380px;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.scroll-hint {
  position: absolute;
  bottom: 48px; right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s 1.3s forwards;
}
.scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--blue));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.scroll-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(1); }
  50%      { opacity: 0.9;  transform: scaleY(1.15); }
}

/* ── PAGE HERO (subpages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 48px 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.page-hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--blue);
  flex-shrink: 0;
  display: block;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.91;
  letter-spacing: 0.01em;
}
.page-hero-title .italic {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--blue);
  font-size: 0.85em;
}
.page-hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  font-weight: 300;
  max-width: 480px;
  margin-top: 32px;
}

/* ── MARQUEE ── */
.marquee-section {
  padding: 28px 0;
  border-top: 1px solid var(--grey);
  border-bottom: 1px solid var(--grey);
  overflow: hidden;
  background: var(--white);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.marquee-dot {
  width: 4px; height: 4px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.6;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: white;
  padding: 15px 34px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--blue-mid); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--black);
  opacity: 0.5;
  transition: opacity 0.2s;
}
.btn-ghost:hover { opacity: 1; }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(4px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0,0,0,0.18);
  color: var(--black);
  padding: 13px 30px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--black);
  padding: 17px 46px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.btn-white:hover { background: var(--grey); transform: translateY(-3px); }

/* ── SECTION UTILITIES ── */
.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px;
}
.section-label::after {
  content: '';
  width: 36px; height: 1px;
  background: var(--blue);
  opacity: 0.35;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.92;
  letter-spacing: 0.01em;
}
.section-title .italic {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--blue);
  font-size: 0.88em;
}

/* ── SERVICES SECTION (homepage) ── */
.services {
  padding: 130px 48px;
  background: var(--white);
}
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 80px;
}
.services-intro {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  font-weight: 300;
  padding-bottom: 8px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--grey);
}
.service-card {
  background: var(--white);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.45s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blue);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
}
.service-card:hover::before { transform: translateY(0); }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover .service-num,
.service-card:hover .service-name,
.service-card:hover .service-desc { color: white; }
.service-card:hover .service-tag  { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.25); }
.service-card:hover .service-arrow { color: white; transform: translate(5px, -5px); }
.service-num {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 28px;
  transition: color 0.45s;
  display: block;
}
.service-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  transition: color 0.45s;
}
.service-desc {
  font-size: 13px;
  line-height: 1.75;
  color: #666;
  font-weight: 300;
  max-width: 300px;
  margin-bottom: 28px;
  transition: color 0.45s;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 40px;
}
.service-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(0,0,0,0.14);
  padding: 5px 12px;
  border-radius: 100px;
  color: #666;
  transition: color 0.45s, border-color 0.45s;
}
.service-arrow {
  font-size: 22px;
  color: var(--blue);
  transition: color 0.45s, transform 0.3s;
  display: inline-block;
}

/* ── STATS ── */
.stats {
  background: var(--blue);
  padding: 90px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.stat-item {
  padding: 44px 48px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(60px, 7.5vw, 96px);
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.stat-num sup {
  font-size: 0.45em;
  color: rgba(255,255,255,0.45);
  vertical-align: super;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── PROCESS ── */
.process {
  padding: 130px 48px;
  background: var(--white);
}
.process-list {
  margin-top: 72px;
}
.process-item {
  display: grid;
  grid-template-columns: 72px 1fr 1fr;
  gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid var(--grey);
  align-items: center;
  transition: padding-left 0.35s var(--ease);
}
.process-item:first-child { border-top: 1px solid var(--grey); }
.process-item:hover { padding-left: 20px; }
.process-step-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--grey);
  letter-spacing: -0.02em;
  transition: color 0.3s;
  line-height: 1;
}
.process-item:hover .process-step-num { color: var(--blue); }
.process-step-name {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 40px);
  letter-spacing: 0.03em;
  line-height: 1;
}
.process-step-desc {
  font-size: 13px;
  line-height: 1.75;
  color: #666;
  font-weight: 300;
}

/* ── CTA DARK SECTION ── */
.cta-dark {
  background: var(--black);
  padding: 150px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-dark-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(27,47,110,0.35) 0%, transparent 65%);
  pointer-events: none;
}
.cta-dark-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
}
.cta-dark-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 9.5vw, 136px);
  color: white;
  line-height: 0.91;
  letter-spacing: 0.01em;
  margin-bottom: 44px;
}
.cta-dark-title .italic {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,0.4);
  font-size: 0.85em;
}

/* ── SERVICES PAGE ── */
.service-section {
  padding: 110px 48px;
  border-bottom: 1px solid var(--grey);
}
.service-section:nth-child(even) { background: var(--blue-light); }
.service-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.service-section-inner.reverse { direction: rtl; }
.service-section-inner.reverse > * { direction: ltr; }
.service-big-num {
  font-family: var(--font-display);
  font-size: clamp(100px, 14vw, 180px);
  color: var(--grey);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: -20px;
}
.service-section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 80px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.service-section-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  font-weight: 300;
  margin-bottom: 40px;
}
.service-includes {
  margin-bottom: 48px;
}
.service-includes h4 {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 500;
}
.service-includes ul li {
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  padding: 10px 0;
  border-bottom: 1px solid var(--grey);
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-includes ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}
.pricing-cards {
  display: grid;
  gap: 16px;
}
.pricing-card {
  border: 1px solid var(--grey);
  border-radius: 12px;
  padding: 32px 36px;
  background: white;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(27,47,110,0.08);
}
.pricing-card.featured {
  background: var(--blue);
  border-color: var(--blue);
}
.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-desc { color: white; }
.pricing-card.featured .pricing-price sub { color: rgba(255,255,255,0.6); }
.pricing-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: -0.01em;
  color: var(--blue);
  margin-bottom: 10px;
  line-height: 1;
}
.pricing-price sub {
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0;
  vertical-align: baseline;
}
.pricing-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #666;
  font-weight: 300;
}
.tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.tool-badge {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--blue-light);
  color: var(--blue);
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 500;
}
.full-package {
  background: var(--blue);
  padding: 110px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.full-package-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.full-package-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}
.full-package-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 120px);
  color: white;
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.full-package-price {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

/* ── ABOUT PAGE ── */
.about-story {
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  border-bottom: 1px solid var(--grey);
}
.about-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.4;
  color: var(--black);
  letter-spacing: 0.01em;
}
.about-quote span { color: var(--blue); }
.about-text {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  font-weight: 300;
}
.about-text p + p { margin-top: 20px; }
.founder-section {
  padding: 100px 48px;
  background: var(--blue-light);
}
.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.founder-visual {
  aspect-ratio: 3/4;
  background: var(--grey);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-visual-placeholder {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--blue-light);
  letter-spacing: 0.05em;
}
.founder-name {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.founder-title {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 28px;
}
.founder-bio {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  font-weight: 300;
}
.founder-bio p + p { margin-top: 18px; }
.values-section {
  padding: 100px 48px;
  border-bottom: 1px solid var(--grey);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--grey);
  margin-top: 72px;
}
.value-card {
  background: var(--white);
  padding: 48px 40px;
  transition: background 0.3s;
}
.value-card:hover { background: var(--blue-light); }
.value-num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 24px;
  display: block;
}
.value-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  line-height: 1;
}
.value-desc {
  font-size: 13px;
  line-height: 1.75;
  color: #666;
  font-weight: 300;
}

/* ── WORK PAGE ── */
.work-grid {
  padding: 80px 48px 130px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--grey);
}
.work-card {
  background: var(--white);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  transition: transform 0.4s var(--ease);
}
.work-card:hover { transform: scale(0.98); }
.work-card-bg {
  position: absolute;
  inset: 0;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-card-placeholder {
  font-family: var(--font-display);
  font-size: 100px;
  color: rgba(27,47,110,0.08);
  letter-spacing: 0.05em;
  user-select: none;
}
.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.5) 0%, transparent 60%);
}
.work-card-info {
  position: relative;
  z-index: 1;
}
.work-card-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.work-card-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 36px);
  color: white;
  letter-spacing: 0.04em;
}
.work-coming-soon {
  padding: 100px 48px;
  text-align: center;
}
.work-coming-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 100px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.work-coming-title .italic {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--blue);
  font-size: 0.85em;
}
.work-coming-sub {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  font-weight: 300;
  max-width: 440px;
  margin: 0 auto 40px;
}

/* ── CONTACT PAGE ── */
.contact-layout {
  padding: 80px 48px 130px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  line-height: 1;
}
.contact-info-sub {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  font-weight: 300;
  margin-bottom: 56px;
}
.contact-detail {
  margin-bottom: 32px;
}
.contact-detail-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-detail-value {
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  transition: color 0.2s;
}
.contact-detail-value:hover { color: var(--blue); }
.contact-socials {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}
.social-link {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 10px 20px;
  border-radius: 100px;
  color: var(--black);
  font-weight: 400;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.social-link:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

/* CONTACT FORM */
.contact-form {
  background: white;
  border: 1px solid var(--grey);
  border-radius: 16px;
  padding: 52px 48px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group:last-of-type { margin-bottom: 32px; }
.form-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,47,110,0.08);
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-submit {
  width: 100%;
  background: var(--blue);
  color: white;
  padding: 17px 36px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover:not(:disabled) { background: var(--blue-mid); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.form-success-icon {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.form-success p {
  font-size: 14px;
  color: #666;
  font-weight: 300;
}
.form-error-msg {
  display: none;
  font-size: 13px;
  color: #c0392b;
  margin-top: 12px;
  text-align: center;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 48px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 28px;
  color: white;
  letter-spacing: 0.1em;
}
.footer-logo-text span { color: var(--blue-mid); }
.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  max-width: 240px;
}
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible {
  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; }

/* PAGE FADE-IN — only on fresh load, bfcache restores skip this */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}
body.page-entering {
  animation: pageFadeIn 0.4s ease both;
}


/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid   { grid-template-columns: 1fr 1fr; }
  .values-grid     { grid-template-columns: 1fr 1fr; }
  .about-story     { grid-template-columns: 1fr; gap: 48px; }
  .founder-inner   { grid-template-columns: 1fr; }
  .founder-visual  { aspect-ratio: 3/2; max-width: 400px; }
  .contact-layout  { grid-template-columns: 1fr; gap: 60px; }
  .footer-top      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  nav { padding: 0 24px; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }

  .hero { padding: calc(var(--nav-h) + 20px) 24px 60px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 28px; }
  .scroll-hint { display: none; }

  .page-hero { padding: calc(var(--nav-h) + 48px) 24px 56px; }

  .services,
  .process,
  .cta-dark,
  .service-section,
  .about-story,
  .founder-section,
  .values-section,
  .work-coming-soon,
  .contact-layout,
  .full-package { padding-left: 24px; padding-right: 24px; }

  .services-header { grid-template-columns: 1fr; gap: 24px; }
  .services-grid   { grid-template-columns: 1fr; }
  .stats           { grid-template-columns: 1fr; padding: 56px 24px; }
  .stat-item       { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-bottom: none; }
  .process-item    { grid-template-columns: 48px 1fr; }
  .process-step-desc { display: none; }
  .service-section-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-section-inner.reverse { direction: ltr; }
  .values-grid     { grid-template-columns: 1fr; }
  .work-grid       { grid-template-columns: 1fr; }
  .form-row        { grid-template-columns: 1fr; }
  .contact-form    { padding: 36px 28px; }
  .footer-top      { grid-template-columns: 1fr; }
  footer           { padding: 56px 24px 36px; }
  .footer-bottom   { flex-direction: column; align-items: flex-start; }
}
