:root {
  --bg: #212a33;
  --bg-deep: #151c23;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: #18212a;
  --panel-soft: #202a33;
  --border: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --muted: #a1a1aa;
  --accent: #8f7653;
  --accent-soft: #dbc8ac;
  --shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
  --radius: 26px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: 0.5; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: linear-gradient(180deg, #28333d 0%, #212a33 36%, #1a222b 100%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 2px, transparent 2px 18px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 18px),
    radial-gradient(rgba(255,255,255,0.14) 0.8px, transparent 0.8px);
  background-size: 30px 30px, 30px 30px, 11px 11px;
}
.brand-mark-image{
  width:48px;
  height:48px;
  object-fit:contain;
  display:inline-block;
  padding:6px;
  border-radius:18px;
  border:1px solid rgba(143,118,83,0.25);
  background:rgba(143,118,83,0.10);
}

.bg-orb {
  position: absolute;
  filter: blur(70px);
  border-radius: 999px;
}
.orb-1 {
  width: 520px;
  height: 300px;
  left: -8%;
  top: 5%;
  background: rgba(143, 118, 83, 0.18);
  transform: rotate(-12deg);
}
.orb-2 {
  width: 420px;
  height: 260px;
  right: -8%;
  top: 24%;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(6deg);
}
.orb-3 {
  width: 520px;
  height: 280px;
  right: -6%;
  bottom: 6%;
  background: rgba(143, 118, 83, 0.12);
  transform: rotate(8deg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(17,22,27,0.82);
  backdrop-filter: blur(22px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.brand, .footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 18px;
  border: 1px solid rgba(143,118,83,0.2);
  background: rgba(143,118,83,0.1);
  color: var(--accent-soft);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  box-shadow: 0 0 40px rgba(143,118,83,0.14);
}
.brand-kicker {
  display: block;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #71717a;
}
.brand-name {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  color: #d4d4d8;
  font-size: 14px;
  transition: color 0.2s ease;
}
.site-nav a:hover { color: #fff; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.button:hover { transform: translateY(-1px); }
.button.small { min-height: 42px; padding: 0 18px; }
.button-primary {
  border-color: rgba(143,118,83,0.3);
  background: rgba(143,118,83,0.12);
  color: var(--accent-soft);
}
.button-primary:hover { background: rgba(143,118,83,0.18); }
.button-secondary {
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #fff;
}
.button-secondary:hover { background: rgba(255,255,255,0.1); }

.section { padding: 88px 0; }
.section-last { padding-bottom: 104px; }
.hero { padding-top: 96px; }

.hero-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 56px;
  align-items: center;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: #d4d4d8;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.hero h1 {
  margin: 22px 0 0;
  font-size: clamp(48px, 7vw, 78px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}
.hero-text {
  max-width: 760px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}
.hero-stats,
.hero-info-grid,
.service-grid,
.process-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}
.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-info-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.4fr);
}
.hero-stats { margin-top: 42px; }

.stat-card,
.hero-info-card,
.info-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
}
.stat-card,
.info-card {
  border-radius: 24px;
  padding: 22px;
}
.hero-info-card {
  border-radius: 20px;
  padding: 18px 16px;
}
.stat-card strong,
.hero-info-card strong,
.info-card h3 { color: #fff; }
.stat-card strong { font-size: 30px; }
.stat-card span,
.hero-info-card span,
.info-card p,
.section-head p,
.webapp-wrap p,
.footer-brand p { color: var(--muted); }
.hero-info-card span {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.hero-info-card strong {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
}
.wrap-anywhere {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-panel,
.form-wrap,
.webapp-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--border);
  background: #202a33;
  box-shadow: var(--shadow);
}
.hero-panel { padding: 22px; }
.hero-panel::before,
.form-wrap::before,
.webapp-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(143,118,83,0.14), transparent 30%, transparent 70%, rgba(255,255,255,0.03)),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  pointer-events: none;
}

.glass-card,
.glass-card-dark,
.glass-card-warm {
  position: relative;
  border-radius: 24px;
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
}
.glass-card { background: rgba(255,255,255,0.05); }
.glass-card-dark { background: rgba(24,33,42,0.86); }
.glass-card-warm {
  background: rgba(143,118,83,0.1);
  border-color: rgba(143,118,83,0.24);
}

.hero-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
}
.spark-badge,
.icon-chip,
.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.spark-badge {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  border: 1px solid rgba(143,118,83,0.3);
  background: rgba(143,118,83,0.15);
  color: #b3966d;
  flex-shrink: 0;
}
.hero-panel-title {
  margin-top: 6px;
  font-size: 14px;
  color: #fff;
}

.micro-kicker,
.section-kicker,
.pricing-name,
.process-number {
  text-transform: uppercase;
  letter-spacing: 0.28em;
}
.micro-kicker {
  font-size: 10px;
  color: #b3966d;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #a1a1aa;
  font-size: 11px;
}
.section-kicker::before {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--accent);
}
.section-head.center .section-kicker { justify-content: center; }

.hero-panel-main,
.project-panel-grid,
.form-layout,
.webapp-wrap {
  display: grid;
}
.hero-panel-main {
  grid-template-columns: 1.12fr 0.88fr;
  gap: 16px;
  margin-top: 16px;
}
.hero-panel-side,
.project-side {
  display: grid;
  gap: 16px;
}

.project-side {
  grid-area: side;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.side-card { padding: 18px; min-height: 100%; }
.hero-panel-copy { padding: 20px; }
.hero-panel-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.mini-card {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  padding: 14px;
}
.mini-card span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #71717a;
}
.mini-card strong {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #e4e4e7;
}

.skeleton-lines span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
}
.skeleton-lines span + span { margin-top: 10px; }
.skeleton-lines .big {
  height: 64px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(34,42,51,0.8);
}
.bar {
  width: 48px;
  height: 6px;
  margin-bottom: 14px;
  background: rgba(179,150,109,0.7);
}
.feature-stack { padding: 18px; }
.feature-stack-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.feature-tags,
.tag-list,
.chip-row,
.footer-project-links,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.feature-tags { margin-top: 14px; }
.feature-tags span,
.tag-list span,
.chip-row span {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
}

.section-head { max-width: 860px; }
.section-head h2,
.webapp-wrap h2,
.form-sidebar h2 {
  margin: 18px 0 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.section-head p,
.webapp-wrap p,
.form-sidebar p {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.8;
}
.section-head.center {
  text-align: center;
  margin: 0 auto;
}

.project-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 44px;
}
.project-tab,
.pill-toggle {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 14px;
  transition: all 0.2s ease;
}
.project-tab:hover,
.pill-toggle:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
}
.project-tab.is-active,
.pill-toggle.is-active,
.choice-card.is-selected {
  border-color: var(--accent);
  background: rgba(143,118,83,0.15);
  color: var(--accent-soft);
}

.project-panels { margin-top: 24px; }
.project-panel { display: none; }
.project-panel.is-active { display: block; }
.project-panel-grid {
  grid-template-columns: 0.72fr 1.28fr;
  grid-template-areas:
    "copy showcase"
    "copy side";
  gap: 16px;
  align-items: stretch;
}
.project-copy {
  grid-area: copy;
  padding: 20px;
}
.project-copy h3 {
  margin: 12px 0 0;
  font-size: 42px;
  letter-spacing: -0.05em;
}
.project-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.85;
}
.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.price-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 12px 16px;
  border: 1px solid rgba(143,118,83,0.25);
  background: rgba(143,118,83,0.1);
  color: var(--accent-soft);
  font-size: 14px;
}
.project-showcase {
  grid-area: showcase;
  min-height: 320px;
  border-radius: 24px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.showcase-renegade {
  color: #fff;
  border: 1px solid var(--border);
  background: radial-gradient(circle at top, rgba(255,120,40,0.38), transparent 26%), linear-gradient(180deg, #3f0d04 0%, #160d0b 100%);
}
.showcase-movesmart {
  color: #f5efe3;
  border: 1px solid var(--border);
  background: radial-gradient(circle at top right, rgba(212,175,90,0.16), transparent 24%), linear-gradient(180deg, #06251d 0%, #031711 100%);
}
.showcase-realestate {
  color: #111827;
  border: 1px solid rgba(24,24,27,0.1);
  background: radial-gradient(circle at top left, rgba(210,190,150,0.34), transparent 28%), radial-gradient(circle at bottom right, rgba(166,190,230,0.34), transparent 30%), linear-gradient(180deg,#f8f7f3 0%,#eef1f6 100%);
}
.showcase-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.showcase-top span,
.email-badge {
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.showcase-top span {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
}
.showcase-top.light span {
  border-color: rgba(24,24,27,0.12);
  background: rgba(255,255,255,0.78);
  color: #52525b;
}
.showcase-title {
  margin-top: 28px;
  max-width: 420px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 700;
}
.small-title {
  max-width: 360px;
  font-size: 40px;
}
.light-title {
  color: #111827;
  max-width: 370px;
  font-size: 42px;
}
.showcase-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.showcase-actions div {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
  padding: 16px;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 16px;
  margin-top: 22px;
}
.showcase-grid p {
  color: inherit;
  opacity: 0.8;
  line-height: 1.8;
}
.form-shell-card strong {
  display: block;
  margin-bottom: 16px;
}
.form-shell-card span {
  display: block;
  height: 40px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
}
.form-shell-card span + span { margin-top: 8px; }
.realestate-grid { align-items: start; }
.listing-card {
  border-radius: 24px;
  border: 1px solid rgba(24,24,27,0.1);
  background: rgba(255,255,255,0.72);
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.listing-image {
  height: 150px;
  border-radius: 20px;
  background: radial-gradient(circle at top left, rgba(210,190,150,0.5), transparent 30%), radial-gradient(circle at bottom right, rgba(166,190,230,0.45), transparent 30%), linear-gradient(180deg,#efe7d5 0%,#dfe8f8 100%);
}
.listing-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  align-items: center;
}
.listing-meta strong,
.listing-meta em { color: #111827; }
.listing-meta span {
  display: block;
  margin-top: 6px;
  color: #52525b;
  font-size: 14px;
}
.listing-meta em {
  font-style: normal;
  border-radius: 999px;
  border: 1px solid rgba(24,24,27,0.14);
  background: rgba(255,255,255,0.78);
  padding: 8px 12px;
}
.stack-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.stack-list span {
  display: block;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: #e4e4e7;
  font-size: 14px;
}

.webapp-wrap {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 32px;
  padding: 40px;
}
.webapp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.info-card.compact,
.process-grid .info-card {
  min-height: 100%;
}
.info-card h3,
.process-grid h3 {
  margin: 20px 0 0;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.info-card p,
.process-grid p {
  margin: 14px 0 0;
  line-height: 1.8;
}
.icon-chip,
.success-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  border: 1px solid rgba(143,118,83,0.25);
  background: rgba(143,118,83,0.1);
  color: #b3966d;
  font-size: 20px;
}
.service-grid,
.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 44px;
}
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
}
.pricing-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
  padding: 24px;
}
.pricing-card.featured {
  border-color: rgba(143,118,83,0.3);
  background: rgba(143,118,83,0.1);
  box-shadow: 0 0 80px rgba(143,118,83,0.1);
}
.pricing-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(179,150,109,0.25);
  background: rgba(179,150,109,0.1);
  color: #b3966d;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.pricing-name {
  margin-top: 6px;
  font-size: 11px;
  color: #71717a;
}
.pricing-price {
  margin-top: 14px;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.06em;
}
.pricing-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.pricing-card ul {
  margin: 22px 0 0;
  padding: 22px 0 0;
  list-style: none;
  border-top: 1px solid var(--border);
}
.pricing-card li {
  position: relative;
  padding-left: 28px;
  color: #e4e4e7;
  line-height: 1.8;
}
.pricing-card li + li { margin-top: 8px; }
.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #b3966d;
}
.process-number {
  font-size: 11px;
  color: #b3966d;
}

.form-wrap { padding: 0; }
.form-layout { grid-template-columns: 0.8fr 1.2fr; }
.form-sidebar,
.form-main { padding: 40px; }
.form-sidebar { border-right: 1px solid var(--border); }
.form-steps-nav {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.step-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  padding: 14px;
}
.step-nav-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(27,37,48,0.8);
  color: #71717a;
  font-size: 14px;
}
.step-nav-item strong {
  font-size: 14px;
  color: #fff;
}
.step-nav-item.is-active {
  border-color: rgba(143,118,83,0.35);
  background: rgba(143,118,83,0.1);
}
.step-nav-item.is-active span {
  border-color: rgba(143,118,83,0.35);
  background: rgba(143,118,83,0.1);
  color: var(--accent-soft);
}

.form-topbar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.form-topbar h3 {
  margin: 12px 0 0;
  font-size: 42px;
  letter-spacing: -0.05em;
}
.email-badge {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: #d4d4d8;
}
.progress-track {
  margin-top: 22px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  overflow: hidden;
}
.progress-track span {
  display: block;
  height: 100%;
  width: 20%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(179,150,109,0.55), rgba(143,118,83,0.95));
  transition: width 0.3s ease;
}

.form-step {
  display: none;
  margin-top: 28px;
}
.form-step.is-active { display: block; }
.choice-grid,
.field-grid.two-col {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.choice-card {
  min-height: 120px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  padding: 22px;
  transition: 0.2s ease;
}
.choice-card:hover { background: rgba(255,255,255,0.1); }
.field.two-span { grid-column: span 2; }
.field span,
.field-group-title {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #d4d4d8;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(27,37,48,0.8);
  color: #fff;
  padding: 14px 16px;
  outline: none;
}
.field textarea {
  resize: vertical;
  min-height: 140px;
}
.field input::placeholder,
.field textarea::placeholder { color: #71717a; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: rgba(143,118,83,0.35); }
.field-group + .field-group { margin-top: 28px; }
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.form-actions-left {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.form-note {
  color: #71717a;
  font-size: 14px;
}

.form-success {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.form-success h3 {
  margin: 24px 0 0;
  font-size: 42px;
  letter-spacing: -0.05em;
}
.form-success p {
  margin: 16px 0 0;
  max-width: 640px;
  color: var(--muted);
  line-height: 1.8;
}
.hidden { display: none !important; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 30px 0 36px;
}
.footer-top,
.footer-bottom {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.footer-top {
  justify-content: flex-start;
}
.footer-bottom {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-links,
.footer-project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links a,
.footer-project-links a,
.footer-socials a {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
}
.footer-links a,
.footer-project-links a {
  padding: 12px 16px;
  font-size: 14px;
  color: #d4d4d8;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #d4d4d8;
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }

.float-y { animation: floatY 7s ease-in-out infinite; }
.float-x { animation: floatX 8s ease-in-out infinite; }
.float-x-reverse { animation: floatXReverse 9s ease-in-out infinite; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes floatX {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}
@keyframes floatXReverse {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-8px); }
}

@media (max-width: 1100px) {
  .hero-grid,
  .project-panel-grid,
  .webapp-wrap,
  .form-layout,
  .hero-panel-main {
    grid-template-columns: 1fr;
  }

  .project-panel-grid {
    grid-template-areas:
      "copy"
      "showcase"
      "side";
  }

  .project-side {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(17,22,27,0.96);
    overflow: hidden;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .site-nav a:last-child { border-bottom: 0; }
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }

  .hero-stats,
  .hero-info-grid,
  .pricing-grid,
  .service-grid,
  .process-grid,
  .showcase-grid,
  .choice-grid,
  .field-grid.two-col,
  .webapp-grid {
    grid-template-columns: 1fr;
  }

  .field.two-span { grid-column: auto; }

  .footer-top,
  .footer-bottom,
  .listing-meta,
  .form-topbar,
  .form-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .form-sidebar,
  .form-main,
  .webapp-wrap {
    padding: 28px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .header-inner { min-height: 74px; }

  .hero h1,
  .section-head h2,
  .webapp-wrap h2,
  .form-sidebar h2,
  .project-copy h3,
  .form-topbar h3,
  .form-success h3 {
    font-size: 34px;
  }

  .showcase-title,
  .small-title,
  .light-title {
    font-size: 30px;
  }

  .pricing-price { font-size: 34px; }

  .hero-panel,
  .form-wrap,
  .webapp-wrap {
    border-radius: 26px;
  }

  .button {
    width: 100%;
  }
}


.form-note.is-error {
  color: #fca5a5;
}

.form-note.is-success {
  color: #86efac;
}

.button.is-loading {
  opacity: 0.8;
  pointer-events: none;
}


.pricing-note {
  margin: 28px auto 0;
  max-width: 760px;
  padding: 14px 18px;
  border: 1px solid rgba(143,118,83,0.24);
  border-radius: 999px;
  background: rgba(143,118,83,0.10);
  color: #dbc8ac;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom-social-only {
  justify-content: flex-end;
}

@media (max-width: 860px) {
  .footer-bottom-social-only {
    justify-content: flex-start;
  }

  .pricing-note {
    border-radius: 20px;
    text-align: left;
  }
}


.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.tech-card .tech-tags {
  margin-top: 18px;
}

.tech-card .tech-tags span {
  background: rgba(27,37,48,0.8);
}

@media (max-width: 1100px) {
  .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
}
