/* ============================================
   OnlineKonzultant.cz — E-commerce Konzultant
   Emerald & slate rebrand
   + breathtaking effects
   ============================================ */

/* Self-hosted fonts — eliminates DNS/TLS overhead for Google Fonts */

/* DM Sans — latin-ext (variable font) */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(../fonts/dm-sans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* DM Sans — latin (variable font) */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(../fonts/dm-sans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Montserrat — latin-ext (variable font) */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url(../fonts/montserrat-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Montserrat — latin (variable font) */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url(../fonts/montserrat-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* JetBrains Mono — latin-ext */
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/jetbrains-mono-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* JetBrains Mono — latin */
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/jetbrains-mono-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #f8fafc;
  --bg-card: #f1f5f9;
  --bg-elevated: #e2e8f0;
  --bg-dark: #0f172a;
  --bg-dark-card: #1e293b;
  --border: #e2e8f0;
  --border-light: #cbd5e1;

  --text: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-on-dark: #f1f5f9;
  --text-on-dark-muted: #94a3b8;

  --accent: #10b981;
  --accent-light: #34d399;
  --accent-dark: #059669;
  --accent-accessible: #047857;
  --accent-glow: rgba(16, 185, 129, 0.1);
  --accent-glow-strong: rgba(16, 185, 129, 0.2);

  --warm: #34d399;
  --warm-light: rgba(52, 211, 153, 0.12);

  --radius: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;

  --max-w: 1200px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; }

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 0.5rem 1rem;
  background: #000;
  color: #fff;
  z-index: 10001;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* Screen reader only */
.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;
}

/* Focus indicator */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* Honeypot field */
.honey-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SCROLL PROGRESS BAR ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--warm));
  z-index: 10000;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ---- CURSOR GLOW ---- */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.3s ease;
  will-change: transform;
}
.cursor-glow--active {
  background: radial-gradient(circle, rgba(16,185,129,0.07) 0%, transparent 70%);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font);
}

.btn--primary {
  background: var(--accent-accessible);
  color: white;
  box-shadow: 0 4px 16px rgba(16,185,129,0.25);
}
.btn--primary:hover {
  background: var(--accent-light);
  box-shadow: 0 8px 28px rgba(16,185,129,0.35);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}
.btn--ghost:hover {
  color: var(--text);
  border-color: var(--accent);
  background: var(--accent-glow);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav--scrolled {
  background: rgba(248, 250, 252, 0.95);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  flex-wrap: nowrap;
  min-width: 0;
  overflow: hidden;
}

.nav__logo-claim {
  display: none;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  font-family: var(--font);
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .nav__logo-claim {
    display: block;
    margin-left: -4px;
    opacity: 0.7;
    border-left: 1px solid var(--border-light);
    padding-left: 12px;
  }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--accent); }

.nav__links .nav__cta,
.mobile-menu .nav__cta {
  background: var(--accent-accessible);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 2px 10px rgba(16,185,129,0.2);
}
.nav__links .nav__cta:hover,
.mobile-menu .nav__cta:hover {
  background: var(--accent-light);
  box-shadow: 0 4px 16px rgba(16,185,129,0.3);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav__burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

/* Burger → X animation */
.nav__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- MOBILE MENU OVERLAY ---- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f8fafc;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding-top: 72px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-heading);
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-menu .nav__cta {
  margin-top: 16px;
  padding: 16px 40px;
  font-size: 1.1rem;
  border-radius: var(--radius);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16,185,129,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,185,129,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 100%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.hero__glow--1 {
  width: 600px;
  height: 600px;
  background: rgba(16, 185, 129, 0.06);
  top: -100px;
  right: -100px;
}
.hero__glow--2 {
  width: 400px;
  height: 400px;
  background: rgba(52, 211, 153, 0.06);
  bottom: -50px;
  left: -100px;
}

/* ANIMATED BLOBS */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  will-change: transform;
}
.hero__blob--1 {
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.08);
  top: 15%;
  right: 10%;
  animation: blob1 12s ease-in-out infinite;
}
.hero__blob--2 {
  width: 250px;
  height: 250px;
  background: rgba(52, 211, 153, 0.06);
  top: 50%;
  right: 25%;
  animation: blob2 15s ease-in-out infinite;
}
.hero__blob--3 {
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.05);
  bottom: 20%;
  right: 5%;
  animation: blob3 10s ease-in-out infinite;
}

@keyframes blob1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.9); }
  75% { transform: translate(30px, 40px) scale(1.05); }
}
@keyframes blob2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, 30px) scale(1.15); }
  66% { transform: translate(30px, -40px) scale(0.85); }
}
@keyframes blob3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(60px, -20px) rotate(180deg) scale(1.2); }
}

/* HERO BADGE DOT */
.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 4px;
  position: relative;
}

.hero__badge-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0; transform: scale(3); }
}

.hero__content {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-accessible);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text);
}

.hero__highlight {
  background: linear-gradient(135deg, var(--accent), var(--warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  min-width: 180px;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header--left {
  text-align: left;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-accessible);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
}

.section-desc--left {
  margin: 0;
}

/* ---- SERVICES ---- */
.services {
  padding: 80px 0 120px;
}

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

.service-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
  overflow: visible;
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(16,185,129,0.08);
}

/* Card shine overlay */
.card-shine {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  pointer-events: none;
  transition: background 0.3s ease;
  z-index: 1;
}

.service-card--featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg), rgba(16,185,129,0.03));
}
.service-card--featured:hover {
  border-color: var(--accent-light);
  box-shadow: 0 20px 40px rgba(16,185,129,0.12);
}

.service-card__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent-accessible);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(-5deg);
  background: var(--accent-glow-strong);
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.service-card__list {
  position: relative;
  z-index: 2;
}

.service-card__list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ---- EXPERIENCE / TIMELINE ---- */
.experience {
  padding: 120px 0;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.experience .section-tag {
  color: var(--accent-light);
}
.experience .section-title {
  color: var(--text-on-dark);
}
.experience .section-desc {
  color: var(--text-on-dark-muted);
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(255,255,255,0.1));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline.timeline--visible::before {
  transform: scaleY(1);
}

.timeline__item {
  position: relative;
  margin-bottom: 40px;
}

.timeline__dot {
  position: absolute;
  left: -40px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 3px solid var(--text-on-dark-muted);
  z-index: 1;
  transition: all 0.5s ease;
}

.timeline__item:first-child .timeline__dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow-strong);
}

.timeline__card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s ease;
}
.timeline__card:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

.timeline__date {
  font-size: 0.78rem;
  font-family: var(--mono);
  color: var(--accent-light);
  font-weight: 500;
}

.timeline__title {
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin: 8px 0 2px;
  color: var(--text-on-dark);
}

.timeline__company {
  font-size: 0.88rem;
  color: var(--text-on-dark-muted);
  margin-bottom: 10px;
}

.timeline__desc {
  font-size: 0.88rem;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
}

/* ---- WHY ME ---- */
.why {
  padding: 120px 0;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.3s ease;
}
.why__card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16,185,129,0.06);
}

.why__num {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--accent), var(--warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why__card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 10px;
}

.why__card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---- TECH ---- */
.tech {
  padding: 120px 0;
  background: var(--bg-card);
}

.tech__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tech__item {
  padding: 12px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}
.tech__item:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.tech__item--more {
  border-style: dashed;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 400;
}
.tech__item--more:hover {
  color: var(--text-muted);
  border-color: var(--border);
  background: transparent;
  cursor: default;
  transform: none;
}

/* ---- CONTACT SECTION ---- */
.contact {
  padding: 120px 0;
  background: var(--bg-dark);
}

.contact .section-tag {
  color: var(--accent-light);
}
.contact .section-title {
  color: var(--text-on-dark);
}
.contact .section-desc {
  color: var(--text-on-dark-muted);
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.contact__detail:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--accent-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.contact__detail-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-on-dark-muted);
  margin-bottom: 2px;
}

.contact__detail-value {
  display: block;
  font-size: 0.95rem;
  color: var(--text-on-dark);
  font-weight: 500;
}

/* Contact Form */
.contact__form-wrapper {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-on-dark-muted);
}

.form__input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-dark-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--text-on-dark);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: all 0.25s ease;
  outline: none;
}

.form__input::placeholder {
  color: var(--text-on-dark-muted);
  opacity: 0.5;
}

.form__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form__select option {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__form .btn--primary {
  margin-top: 8px;
  padding: 16px 28px;
}

.contact__form .btn--primary:hover {
  transform: translateY(-2px);
}

/* Form success message */
.form__success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
  color: var(--accent-light);
}

.form__success svg {
  color: #4ade80;
}

.form__success p {
  color: var(--text-on-dark);
  font-size: 1.05rem;
  font-weight: 500;
}

.form__success.show {
  display: flex;
}

/* ---- FOOTER ---- */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__right {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---- COOKIE CONSENT BAR ---- */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-bar.cookie-bar--visible {
  transform: translateY(0);
}

.cookie-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-bar__content {
  flex: 1;
  min-width: 280px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cookie-bar__icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.cookie-bar__title {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-on-dark);
  margin-bottom: 6px;
}

.cookie-bar__desc {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
}

.cookie-bar__link {
  color: var(--accent-light);
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
}

.cookie-bar__details {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cookie-bar__details.cookie-bar__details--open {
  display: block;
}

.cookie-bar__category {
  margin-bottom: 10px;
}

.cookie-bar__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  cursor: pointer;
}

.cookie-bar__checkbox input[type="checkbox"] {
  display: none;
}

.cookie-bar__checkmark {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  position: relative;
}

.cookie-bar__checkbox input[type="checkbox"]:checked + .cookie-bar__checkmark {
  background: var(--accent);
  border-color: var(--accent);
}

.cookie-bar__checkbox input[type="checkbox"]:checked + .cookie-bar__checkmark::after {
  content: '';
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}

.cookie-bar__checkbox input[type="checkbox"]:disabled + .cookie-bar__checkmark {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-bar__checkbox strong {
  color: var(--text-on-dark);
  font-weight: 600;
}

.cookie-bar__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  align-items: stretch;
}

.cookie-bar__btn {
  white-space: nowrap;
  font-size: 0.85rem;
  padding: 10px 20px;
}

.cookie-bar .btn--ghost {
  color: var(--text-on-dark);
  border-color: rgba(255,255,255,0.2);
}

.cookie-bar .btn--ghost:hover {
  color: white;
  border-color: var(--accent);
}

.cookie-bar__reject {
  background: none;
  border: none;
  color: var(--text-on-dark-muted);
  font-size: 0.78rem;
  cursor: pointer;
  padding: 6px 0;
  text-align: center;
  transition: color 0.2s ease;
  font-family: var(--font);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-bar__reject:hover {
  color: var(--text-on-dark);
}

@media (max-width: 768px) {
  .cookie-bar__inner {
    flex-direction: column;
    padding: 20px;
  }
  .cookie-bar__content {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-bar__actions {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .cookie-bar__btn {
    flex: 1;
    min-width: 120px;
  }
  .cookie-bar__reject {
    width: 100%;
  }
}

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .nav__logo {
    gap: 8px;
  }

  .nav__logo-svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .nav__logo-text {
    font-size: 0.95rem;
  }

  /* Hide desktop nav links on mobile */
  .nav__links.nav__links--desktop {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .nav {
    backdrop-filter: none;
    background: rgba(248, 250, 252, 0.97);
  }

  /* Solid nav bg when menu is open */
  .nav.nav--menu-open {
    background: #f8fafc;
  }

  .hero {
    padding: 120px 24px 60px;
    min-height: auto;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .why__grid {
    grid-template-columns: 1fr;
  }

  .contact__form-wrapper {
    padding: 24px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cursor-glow {
    display: none;
  }

  .hero__blob,
  .hero__glow {
    display: none;
  }

  .hero__grid {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.2rem;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero__highlight {
    min-width: 120px;
  }
}
