@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --white:   #ffffff;
  --cyan:    #00b6f0;
  --peach:   #eac4b4;
  --black:   #000000;
  --muted:   rgba(0,0,0,0.5);
  --danger:  #e63946;
  --success: #2a9d8f;
  --yellow:  #ffd60a;
  --mint:    #a7f3d0;
  --purple:  #c4a7e7;
  --blue:    #8fb9ff;
  --border:  2px solid #000;
  --font:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:    'IBM Plex Mono', 'Courier New', monospace;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--black); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

::selection { background: var(--black); color: var(--cyan); }

/* ── Layout ── */
.lp-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ══════════════════════════════════════════════
   ANIMATION SYSTEM
══════════════════════════════════════════════ */
.anim {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim.anim-up    { transform: translateY(50px); }
.anim.anim-left  { transform: translateX(-60px); }
.anim.anim-right { transform: translateX(60px); }
.anim.anim-scale { transform: scale(0.92); }

.anim.visible {
  opacity: 1;
  transform: none;
}

/* Hero entrance — CSS-only, no JS needed */
.hero-anim {
  opacity: 0;
  transform: translateY(30px);
  animation: heroIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--i) * 0.15s + 0.2s);
}
.hero-anim-window {
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  animation: heroWindowIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.6s;
}
@keyframes heroIn {
  to { opacity: 1; transform: none; }
}
@keyframes heroWindowIn {
  to { opacity: 1; transform: none; }
}

/* ── Reusables ── */
.lp-label {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.lp-label--light { color: rgba(255,255,255,0.5); }

.lp-h2 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.lp-h2--light { color: var(--white); }

.lp-section-header { margin-bottom: 64px; }
.lp-section-sub {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 520px;
}

.lp-mono { font-family: var(--mono); font-size: 11px; font-weight: 600; }

/* ── Buttons ── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: var(--border);
  cursor: pointer;
  transition: all 0.15s;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}
.lp-btn-dark {
  background: var(--black);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--cyan);
}
.lp-btn-dark:hover {
  background: var(--cyan);
  color: var(--black);
  box-shadow: 4px 4px 0 var(--black);
}
.lp-btn-outline {
  background: transparent;
  color: var(--black);
}
.lp-btn-outline:hover {
  background: var(--black);
  color: var(--white);
}
.lp-btn-light {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  box-shadow: 4px 4px 0 rgba(255,255,255,0.3);
}
.lp-btn-light:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 4px 4px 0 var(--cyan);
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}
.lp-nav.scrolled { border-bottom-color: var(--black); }

.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.lp-logo {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.lp-logo-bracket { color: var(--cyan); font-weight: 900; }
.lp-logo-name { font-weight: 900; font-family: var(--font); font-size: 17px; }
.lp-logo--light .lp-logo-name { color: var(--white); }

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.lp-nav-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 2px solid transparent;
  transition: all 0.12s;
}
.lp-nav-link:hover,
.lp-nav-link.active {
  background: var(--black);
  color: var(--white);
}

.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lp-btn-nav {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 20px;
  background: var(--black);
  color: var(--white);
  border: var(--border);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.12s;
  white-space: nowrap;
}
.lp-btn-nav:hover {
  background: var(--cyan);
  color: var(--black);
}

.lp-hamburger {
  display: none;
  background: none;
  border: var(--border);
  font-size: 18px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-family: var(--mono);
  align-items: center;
  justify-content: center;
  transition: all 0.12s;
}
.lp-hamburger:hover { background: var(--black); color: var(--white); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.lp-hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  border-bottom: var(--border);
}

.lp-hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 0;
  min-height: calc(100vh - 72px - 110px);
}

.lp-hero-text {
  padding: 80px 60px 80px 0;
  border-right: var(--border);
}

.lp-hero-h1 {
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.lp-highlight {
  color: var(--cyan);
  position: relative;
  display: inline-block;
}
.lp-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--cyan);
  opacity: 0.25;
  z-index: -1;
}

.lp-hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
}

.lp-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.lp-hero-visual {
  padding: 60px 48px;
  background: var(--cyan);
  border-left: var(--border);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Preview Window */
.lp-window {
  border: var(--border);
  background: var(--white);
  width: 100%;
  max-width: 400px;
  box-shadow: 8px 8px 0 var(--black);
}
.lp-window-bar {
  background: var(--black);
  color: var(--white);
  padding: 12px 16px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.05em;
}
.lp-window-dots { display: flex; gap: 6px; }
.lp-window-dots span {
  width: 10px; height: 10px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
}
.lp-window-body { padding: 28px; }

/* Wireframe preview lines */
.lp-preview-lines { display: flex; flex-direction: column; gap: 14px; }
.lp-pline {
  border-radius: 3px;
  animation: shimmer 2.5s ease-in-out infinite alternate;
}
.lp-pline--title  { height: 22px; width: 70%; background: var(--black); }
.lp-pline--sub    { height: 10px; width: 50%; background: var(--peach); }
.lp-pline-row     { display: flex; gap: 12px; }
.lp-pline--block  { height: 80px; flex: 1; background: var(--cyan); border: 1px solid rgba(0,0,0,0.1); }
.lp-pline--text   { height: 8px; width: 90%; background: rgba(0,0,0,0.08); }
.lp-pline--text.short { width: 60%; }
.lp-pline--btn    { height: 32px; width: 40%; background: var(--black); }

@keyframes shimmer {
  0%   { opacity: 1; }
  100% { opacity: 0.7; }
}

.lp-window-footer {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: 12px;
  font-family: var(--mono);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}
.lp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--danger);
  border: 1px solid var(--black);
}
.lp-dot.online { background: var(--success); }

/* Stats bar */
.lp-hero-stats {
  border-top: var(--border);
  background: var(--black);
}
.lp-stats-inner { display: flex; }
.lp-stat {
  flex: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  padding: 32px 16px;
  border-right: 2px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.lp-stat:last-child { border-right: none; }
.lp-stat-n {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  color: var(--cyan);
  letter-spacing: -0.03em;
}
.lp-stat-plus {
  font-size: 28px;
  font-weight: 900;
  color: var(--cyan);
  margin-left: 2px;
}
.lp-stat-l {
  width: 100%;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

/* ══════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════ */
.lp-marquee {
  overflow: hidden;
  border-bottom: var(--border);
  background: var(--peach);
}
.lp-marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.lp-marquee-track span {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lp-sep { color: rgba(0,0,0,0.25); font-weight: 400; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.lp-services {
  padding: 120px 0;
  border-bottom: var(--border);
}

.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: var(--border);
}

.lp-service-card {
  padding: 44px 32px;
  border-right: var(--border);
  transition: background 0.2s;
  position: relative;
}
.lp-service-card:last-child { border-right: none; }
.lp-service-card:hover { background: var(--peach); }

.lp-service-card--highlight { background: var(--cyan); }
.lp-service-card--highlight:hover { background: #00a8e0; }

.lp-service-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
}

.lp-service-icon {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1;
}

.lp-service-title {
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.05;
}

.lp-service-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 28px;
}
.lp-service-card--highlight .lp-service-desc { color: rgba(0,0,0,0.6); }

.lp-service-list li {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.lp-service-list li:last-child { border-bottom: none; }
.lp-service-list li::before {
  content: '→ ';
  color: var(--cyan);
  font-weight: 800;
}
.lp-service-card--highlight .lp-service-list li::before { color: var(--black); }

/* ══════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════ */
.lp-why {
  padding: 120px 0;
  background: var(--black);
  border-bottom: var(--border);
}

.lp-why .lp-label { color: rgba(255,255,255,0.4); }
.lp-why .lp-h2   { color: var(--white); }

.lp-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid rgba(255,255,255,0.12);
}

.lp-why-card {
  padding: 52px 44px;
  border-bottom: 2px solid rgba(255,255,255,0.12);
  transition: background 0.2s;
}
.lp-why-card:nth-child(odd)  { border-right: 2px solid rgba(255,255,255,0.12); }
.lp-why-card:nth-child(n+3)  { border-bottom: none; }
.lp-why-card:hover { background: rgba(0,182,240,0.06); }

.lp-why-num {
  font-family: var(--mono);
  font-size: 56px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.35;
}

.lp-why-title {
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.lp-why-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* ══════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════ */
.lp-process {
  padding: 120px 0;
  background: var(--peach);
  border-bottom: var(--border);
}
.lp-process .lp-label { color: rgba(0,0,0,0.4); }
.lp-process .lp-h2    { color: var(--black); }

.lp-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: var(--border);
  background: var(--white);
}

.lp-step {
  padding: 48px 36px;
  border-right: var(--border);
  transition: background 0.2s;
}
.lp-step:last-child { border-right: none; }
.lp-step:hover { background: var(--peach); }

.lp-step-num {
  font-family: var(--mono);
  font-size: 60px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.lp-step-title {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.lp-step-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.lp-step-arrow { display: none; }

/* ══════════════════════════════════════════════
   WORK / PROJECTS
══════════════════════════════════════════════ */
.lp-work {
  padding: 120px 0;
  background: var(--white);
  border-bottom: var(--border);
}

.lp-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: var(--border);
}

.lp-project-card {
  padding: 44px 36px;
  border-right: var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 360px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
}
.lp-project-card:last-child { border-right: none; }
.lp-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.lp-project-card--cyan   { background: var(--cyan); }
.lp-project-card--dark   { background: var(--black); color: var(--white); }
.lp-project-card--peach  { background: var(--peach); }
.lp-project-card--yellow { background: var(--yellow); }
.lp-project-card--mint   { background: var(--mint); }
.lp-project-card--purple { background: var(--purple); }
.lp-project-card--blue   { background: var(--blue); }

/* Thumbnail */
.lp-project-thumb {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  border: var(--border);
  margin-bottom: 8px;
}
.lp-project-card--dark .lp-project-thumb { border-color: rgba(255,255,255,0.2); }

.lp-project-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  border: 1px solid currentColor;
  padding: 5px 12px;
  width: fit-content;
}

.lp-project-title {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.lp-project-desc {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.6;
  flex: 1;
}

.lp-project-stack { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.lp-project-stack span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border: 1px solid currentColor;
  opacity: 0.6;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Arrow indicator */
.lp-project-arrow {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-size: 28px;
  font-weight: 800;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.2s, transform 0.2s;
}
.lp-project-card:hover .lp-project-arrow {
  opacity: 0.5;
  transform: translateX(0);
}

/* View all button */
.lp-work-footer {
  margin-top: 40px;
  text-align: center;
}

/* Empty state */
.lp-work-empty {
  grid-column: 1 / -1;
  padding: 80px 40px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--muted);
  font-family: var(--mono);
}

/* Skeleton loading */
.lp-project-skeleton {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 44px 36px;
  min-height: 360px;
  border-right: var(--border);
  background: var(--white);
}
.lp-project-skeleton:last-child { border-right: none; }

.lp-skel {
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(0,0,0,0.06) 25%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.06) 75%);
  background-size: 200% 100%;
  animation: skelShimmer 1.5s ease infinite;
}
.lp-skel-tag   { width: 80px;  height: 24px; }
.lp-skel-title { width: 75%;   height: 28px; }
.lp-skel-desc  { width: 100%;  height: 14px; }
.lp-skel-desc.short { width: 60%; }
.lp-skel-stack-row { display: flex; gap: 8px; margin-top: auto; }
.lp-skel-chip { width: 72px; height: 26px; }

@keyframes skelShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ══════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════ */
.lp-pricing {
  padding: 120px 0;
  border-bottom: var(--border);
}

.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: var(--border);
}

.lp-plan {
  padding: 52px 40px;
  border-right: var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
}
.lp-plan:last-child { border-right: none; }

.lp-plan--highlight {
  background: var(--black);
  color: var(--white);
  transform: scaleY(1.02);
  z-index: 2;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

.lp-plan-badge {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--cyan);
  color: var(--black);
  padding: 6px 14px;
  display: inline-block;
  margin-bottom: 28px;
  width: fit-content;
}

.lp-plan-name {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 14px;
}
.lp-plan--highlight .lp-plan-name { color: rgba(255,255,255,0.4); }

.lp-plan-price {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.lp-plan-unit {
  font-size: 28px;
  font-weight: 800;
}

.lp-plan-period {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 40px;
}
.lp-plan--highlight .lp-plan-period { color: rgba(255,255,255,0.35); }

.lp-plan-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.lp-plan-features li {
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.lp-plan--highlight .lp-plan-features li { border-bottom-color: rgba(255,255,255,0.08); }
.lp-plan-features li.off { opacity: 0.25; text-decoration: line-through; }

.lp-plan-btn { width: 100%; justify-content: center; margin-top: auto; }

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.lp-faq {
  padding: 120px 0;
  border-bottom: var(--border);
}

.lp-faq-list {
  display: flex;
  flex-direction: column;
  border: var(--border);
}

.lp-faq-item { border-bottom: var(--border); }
.lp-faq-item:last-child { border-bottom: none; }

.lp-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 36px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: -0.01em;
  list-style: none;
  user-select: none;
  transition: background 0.12s;
}
.lp-faq-q:hover { background: var(--peach); }
.lp-faq-q::after {
  content: '+';
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border);
  margin-left: 16px;
  transition: all 0.2s;
}
.lp-faq-item[open] .lp-faq-q::after {
  content: '−';
  background: var(--black);
  color: var(--cyan);
}
.lp-faq-item[open] .lp-faq-q { background: var(--peach); }
.lp-faq-q::-webkit-details-marker { display: none; }

.lp-faq-a {
  padding: 0 36px 28px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  background: var(--peach);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 24px;
}

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.lp-contact {
  padding: 120px 0;
  background: var(--cyan);
  border-bottom: var(--border);
}

.lp-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.lp-contact-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(0,0,0,0.55);
  margin-top: 24px;
  margin-bottom: 40px;
}

.lp-contact-info { display: flex; flex-direction: column; gap: 14px; }
.lp-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 20px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.1);
  transition: background 0.15s;
}
.lp-contact-item:hover { background: rgba(0,0,0,0.1); }
.lp-contact-item .lp-mono {
  font-size: 10px;
  padding: 4px 10px;
  background: var(--black);
  color: var(--white);
  letter-spacing: 0.06em;
}

/* Form */
.lp-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--white);
  border: var(--border);
  padding: 44px;
  box-shadow: 8px 8px 0 var(--black);
}

.lp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.lp-form-group { display: flex; flex-direction: column; gap: 10px; }

.lp-form-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lp-form-input {
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font);
  border: var(--border);
  background: var(--white);
  outline: none;
  transition: border-color 0.12s, box-shadow 0.12s;
  width: 100%;
  border-radius: 0;
  appearance: none;
}
.lp-form-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,182,240,0.15);
}

.lp-textarea { resize: vertical; min-height: 130px; }
.lp-form-submit { width: 100%; justify-content: center; }

.lp-form-status {
  font-size: 13px;
  font-weight: 700;
  font-family: var(--mono);
  display: none;
}
.lp-form-status.success { display: block; color: var(--success); }
.lp-form-status.error   { display: block; color: var(--danger); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.lp-footer {
  background: var(--black);
  color: var(--white);
}

.lp-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding: 72px 0;
  align-items: start;
  border-bottom: 2px solid rgba(255,255,255,0.08);
}

.lp-footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  font-family: var(--mono);
}

.lp-footer-links { display: flex; gap: 64px; }

.lp-footer-col { display: flex; flex-direction: column; gap: 12px; }
.lp-footer-col-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 6px;
  font-family: var(--mono);
}
.lp-footer-col a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: color 0.12s;
}
.lp-footer-col a:hover { color: var(--cyan); }

.lp-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}
.lp-footer-bottom-inner span {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-family: var(--mono);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .lp-services-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-service-card:nth-child(2n) { border-right: none; }
  .lp-service-card:nth-child(1),
  .lp-service-card:nth-child(2) { border-bottom: var(--border); }

  .lp-work-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-project-card { min-height: auto; }
  .lp-project-card:nth-child(2n) { border-right: none; }
  .lp-project-card { border-bottom: var(--border); }
  .lp-project-card:nth-last-child(1),
  .lp-project-card:nth-last-child(2) { border-bottom: none; }

  .lp-pricing-grid { grid-template-columns: 1fr; }
  .lp-plan { border-right: none; border-bottom: var(--border); }
  .lp-plan:last-child { border-bottom: none; }
  .lp-plan--highlight { transform: none; box-shadow: none; }

  .lp-process-steps { grid-template-columns: repeat(2, 1fr); }
  .lp-step:nth-child(2n) { border-right: none; }
  .lp-step:nth-child(1),
  .lp-step:nth-child(2) { border-bottom: var(--border); }

  .lp-why-grid { grid-template-columns: 1fr; }
  .lp-why-card { border-right: none !important; border-bottom: 2px solid rgba(255,255,255,0.12); }
  .lp-why-card:last-child { border-bottom: none; }

  .lp-footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-footer-links { flex-wrap: wrap; gap: 40px; }
}

@media (max-width: 768px) {
  .lp-nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-bottom: var(--border);
    flex-direction: column;
    padding: 8px 0;
    z-index: 999;
  }
  .lp-nav-links.open { display: flex; }
  .lp-nav-link {
    padding: 16px 24px;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 15px;
  }
  .lp-hamburger { display: flex; }

  .lp-hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .lp-hero-text {
    padding: 56px 0 40px;
    border-right: none;
    border-bottom: var(--border);
  }
  .lp-hero-visual { padding: 48px 24px; border-left: none; }

  .lp-stats-inner { flex-wrap: wrap; }
  .lp-stat {
    flex: 1 1 50%;
    border-right: 2px solid rgba(255,255,255,0.12);
    border-bottom: 2px solid rgba(255,255,255,0.12);
  }
  .lp-stat:nth-child(2n) { border-right: none; }
  .lp-stat:nth-child(3),
  .lp-stat:nth-child(4) { border-bottom: none; }
  .lp-stat-n { font-size: 40px; }

  .lp-hero-h1 { font-size: clamp(40px, 11vw, 64px); }
  .lp-h2 { font-size: clamp(32px, 9vw, 52px); }

  .lp-services-grid { grid-template-columns: 1fr; }
  .lp-service-card { border-right: none; border-bottom: var(--border); }
  .lp-service-card:last-child { border-bottom: none; }

  .lp-work-grid { grid-template-columns: 1fr; }
  .lp-project-card { border-right: none !important; border-bottom: var(--border); }
  .lp-project-card:last-child { border-bottom: none; }

  .lp-process-steps { grid-template-columns: 1fr; }
  .lp-step { border-right: none; border-bottom: var(--border); }
  .lp-step:last-child { border-bottom: none; }

  .lp-contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-form { padding: 28px 20px; box-shadow: 4px 4px 0 var(--black); }
  .lp-form-row { grid-template-columns: 1fr; }

  .lp-footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }

  .lp-services, .lp-work, .lp-pricing, .lp-faq, .lp-contact, .lp-why, .lp-process { padding: 80px 0; }

  .lp-faq-q { padding: 22px 20px; font-size: 15px; }
  .lp-faq-a { padding: 18px 20px 22px; }

  .lp-why-num { font-size: 40px; }
  .lp-why-card { padding: 36px 28px; }
}

@media (max-width: 480px) {
  .lp-hero-text { padding: 44px 0 32px; }
  .lp-hero-btns { flex-direction: column; }
  .lp-hero-btns .lp-btn { width: 100%; justify-content: center; }
  .lp-step-num { font-size: 40px; }
  .lp-plan-price { font-size: 44px; }
  .lp-faq-q::after { width: 30px; height: 30px; font-size: 16px; }
}
