@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700;800&family=Fira+Code:wght@400;500;600&family=Source+Code+Pro:wght@600;700&display=swap');

:root {
  --ivory-glow: #FFF8F0;
  --amber-mist: #FEF3C7;
  --sand-veil: #FDE68A;
  --gold-light: #FCD34D;
  --amber-dark: #FBBF24;
  --umber-core: #92400E;
  --sienna-mid: #A16207;
  --gold-edge: #D97706;
  --layer-amber: #F59E0B;
  --burnt-sienna: #D97706;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Fira Code', monospace;
  font-size: 17px;
  line-height: 1.72;
  color: var(--sienna-mid);
  background: linear-gradient(135deg, var(--ivory-glow) 0%, var(--amber-mist) 25%, var(--sand-veil) 50%, var(--gold-light) 75%, var(--amber-dark) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

strong, b, p {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: 0.02em;
  color: var(--umber-core);
}

h1 {
  font-size: clamp(4.2rem, 8.5vw, 7rem);
}

h2 {
  font-size: clamp(3rem, 5vw, 5.4rem);
  color: var(--layer-amber);
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.32s ease;
}

.floating-pill {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  max-width: 1200px;
  width: auto;
  z-index: 9999;
  background: linear-gradient(135deg, rgba(255, 251, 248, 0.96), rgba(255, 248, 243, 0.96));
  backdrop-filter: blur(56px);
  -webkit-backdrop-filter: blur(56px);
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: 32px;
  box-shadow: 0 20px 80px rgba(245, 158, 11, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 12px 24px;
  transition: all 0.38s ease-out;
}

.floating-pill.scrolled {
  transform: translateX(-50%) translateY(8px);
  opacity: 0.96;
  box-shadow: 0 24px 96px rgba(245, 158, 11, 0.25);
}

.pill-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill-logo svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold-edge);
  stroke-width: 2.5;
  fill: none;
}

.pill-logo-text {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: var(--umber-core);
}

.pill-nav {
  display: flex;
  gap: 24px;
  flex-shrink: 1;
}

.pill-nav a {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 13px;
  color: var(--sienna-mid);
  cursor: pointer;
  position: relative;
}

.pill-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--layer-amber);
  transition: all 0.28s ease;
  transform: translateX(-50%);
}

.pill-nav a:hover {
  color: var(--layer-amber);
}

.pill-nav a:hover::after {
  width: 100%;
}

.pill-cta {
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--layer-amber), var(--burnt-sienna));
  color: white;
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.015em;
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(245, 158, 11, 0.45);
  transition: all 0.38s ease;
  white-space: nowrap;
  display: none;
}

.pill-cta:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 18px 72px rgba(245, 158, 11, 0.55);
}

.mobile-menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.12);
  border: none;
  border-radius: 24px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--layer-amber);
  position: relative;
}

.mobile-menu-btn span::before,
.mobile-menu-btn span::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--layer-amber);
  left: 0;
  transition: all 0.3s ease;
}

.mobile-menu-btn span::before {
  top: -8px;
}

.mobile-menu-btn span::after {
  top: 8px;
}

.mobile-menu-btn.active span {
  background: transparent;
}

.mobile-menu-btn.active span::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-menu-btn.active span::after {
  transform: rotate(-45deg);
  top: 0;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 248, 243, 0.98);
  backdrop-filter: blur(56px);
  -webkit-backdrop-filter: blur(56px);
  z-index: 10000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 26px;
  color: var(--umber-core);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.mobile-nav.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav .mobile-cta {
  margin-top: 32px;
  padding: 20px 40px;
  background: linear-gradient(135deg, var(--layer-amber), var(--burnt-sienna));
  color: white;
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 14px;
  border-radius: 28px;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 2px solid var(--layer-amber);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-close::before,
.mobile-close::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--layer-amber);
}

.mobile-close::before {
  transform: rotate(45deg);
}

.mobile-close::after {
  transform: rotate(-45deg);
}

.hero-section {
  min-height: 100vh;
  padding: 160px 88px 220px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  opacity: 0.75;
}

.hero-content {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.hero-text {
  z-index: 4;
}

.hero-text h1 {
  margin-bottom: 28px;
}

.hero-underline {
  width: 260px;
  height: 7px;
  background: linear-gradient(90deg, var(--layer-amber), var(--burnt-sienna));
  border-radius: 8px;
  margin-bottom: 32px;
}

.hero-subtitle {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.78;
  color: var(--sienna-mid);
  max-width: 640px;
  margin-bottom: 36px;
}

.hero-meta {
  font-family: 'Source Code Pro', monospace;
  font-size: 14px;
  color: rgba(161, 98, 7, 0.65);
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 20px 32px;
  background: linear-gradient(135deg, var(--layer-amber), var(--burnt-sienna));
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.015em;
  border-radius: 36px;
  box-shadow: 0 28px 112px rgba(245, 158, 11, 0.5);
  transition: all 0.38s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 0 56px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
  padding: 18px 28px;
  background: transparent;
  color: var(--umber-core);
  font-family: 'Fira Code', monospace;
  font-weight: 500;
  font-size: 14px;
  border: 2px solid var(--umber-core);
  border-radius: 32px;
  transition: all 0.38s ease;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--layer-amber), var(--burnt-sienna));
  color: white;
  border-color: transparent;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: -76px;
}

.hero-card {
  border-radius: 36px;
  border: 2px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 32px 128px rgba(245, 158, 11, 0.18);
  overflow: hidden;
  position: relative;
  transition: all 0.88s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-card:hover {
  z-index: 88;
  transform: scale(1.12) translateZ(24px);
  box-shadow: 0 0 56px rgba(245, 158, 11, 0.45);
}

.hero-card-main {
  grid-row: span 2;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.12);
  box-shadow: inset 0 0 48px rgba(245, 158, 11, 0.06);
}

.hero-card-3d {
  background: linear-gradient(135deg, var(--layer-amber), var(--burnt-sienna));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.hero-card-pattern {
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(245, 158, 11, 0.08) 10px,
    rgba(245, 158, 11, 0.08) 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.hero-card-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 28px;
  background: rgba(245, 158, 11, 0.08);
  min-height: 280px;
}

.hero-card-icons svg {
  width: 56px;
  height: 56px;
  stroke: var(--gold-edge);
  stroke-width: 3;
  fill: none;
}

.page-hero {
  height: 400px;
  min-height: auto;
  padding: 200px 88px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.breadcrumbs {
  font-family: 'Source Code Pro', monospace;
  font-size: 15px;
  color: var(--gold-edge);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.breadcrumbs a {
  border-bottom: 1px dashed var(--gold-edge);
}

.page-hero h1 {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-decor {
  width: 30px;
  height: 30px;
  stroke: var(--layer-amber);
  stroke-width: 2.8;
  fill: none;
}

.section {
  padding: 104px 88px;
  position: relative;
}

.section-alt {
  background: var(--amber-mist);
}

.section-dark {
  background: var(--sand-veil);
}

.section-title {
  text-align: center;
  margin-bottom: 64px;
}

.section-title h2 {
  margin-bottom: 24px;
}

.section-title p {
  max-width: 640px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255, 251, 248, 0.96);
  backdrop-filter: blur(56px);
  -webkit-backdrop-filter: blur(56px);
  border: 2px solid rgba(245, 158, 11, 0.24);
  border-radius: 36px;
  padding: 40px;
  box-shadow: 0 48px 192px rgba(245, 158, 11, 0.28);
  margin-bottom: -76px;
  transition: all 0.88s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}

.service-card:hover {
  z-index: 88;
  transform: scale(1.14);
  box-shadow: 0 64px 256px rgba(245, 158, 11, 0.4);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--layer-amber);
  stroke-width: 2;
  fill: none;
}

.service-card h3 {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  font-size: 20px;
  color: var(--umber-core);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.78;
  margin-bottom: 20px;
}

.service-price {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 18px;
  color: var(--layer-amber);
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fira Code', monospace;
  font-weight: 500;
  font-size: 14px;
  color: var(--sienna-mid);
}

.service-link svg {
  width: 20px;
  height: 20px;
  stroke: var(--layer-amber);
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.service-link:hover svg {
  transform: translateX(6px);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 251, 248, 0.96);
  backdrop-filter: blur(56px);
  -webkit-backdrop-filter: blur(56px);
  border: 2px solid rgba(245, 158, 11, 0.28);
  border-radius: 44px;
  padding: 44px;
  box-shadow: 0 56px 224px rgba(245, 158, 11, 0.35);
  margin-bottom: -76px;
  transition: all 0.88s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover {
  z-index: 90;
  transform: scale(1.16);
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--layer-amber);
  stroke-width: 2;
  fill: none;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.82;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  padding: 32px;
  background: rgba(255, 251, 248, 0.96);
  border-radius: 44px;
  border: 2px solid rgba(245, 158, 11, 0.2);
}

.stat-number {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  font-size: 48px;
  color: var(--layer-amber);
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Fira Code', monospace;
  font-size: 14px;
  color: var(--sienna-mid);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.team-card {
  background: rgba(255, 251, 248, 0.96);
  border-radius: 52px;
  border: 2px solid rgba(245, 158, 11, 0.32);
  overflow: hidden;
  box-shadow: 0 64px 256px rgba(245, 158, 11, 0.45);
  transition: all 0.88s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-card:hover {
  transform: scale(1.08);
}

.team-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.team-info {
  padding: 32px;
  text-align: center;
}

.team-info h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.team-info p {
  font-size: 16px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px;
  max-width: 1400px;
  margin: 0 auto;
}

.review-card {
  background: rgba(255, 251, 248, 0.96);
  border-radius: 52px;
  padding: 40px;
  border: 2px solid rgba(245, 158, 11, 0.35);
  transition: all 0.45s ease;
}

.review-card:hover {
  flex-grow: 3.6;
  background: white;
  border-color: rgba(245, 158, 11, 0.55);
  transform: scale(1.18);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 16px;
  color: var(--umber-core);
}

.review-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.review-rating {
  color: var(--layer-amber);
  font-size: 18px;
}

.faq-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-intro {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.faq-intro h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 32px;
}

.faq-intro p {
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: rgba(255, 251, 248, 0.96);
  border: 2px solid rgba(245, 158, 11, 0.28);
  border-radius: 36px;
  padding: 28px 36px;
  cursor: pointer;
  transition: all 0.38s ease;
}

.faq-item:hover {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 24px 96px rgba(245, 158, 11, 0.25);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 16px;
  color: var(--umber-core);
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--layer-amber);
  transition: all 0.3s ease;
}

.faq-icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 16px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
}

.contact-section {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background: rgba(255, 251, 248, 0.96);
  border: 2px solid rgba(245, 158, 11, 0.24);
  border-radius: 44px;
  padding: 48px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: 'Fira Code', monospace;
  font-weight: 500;
  font-size: 14px;
  color: var(--sienna-mid);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  font-family: 'Fira Code', monospace;
  font-size: 15px;
  color: var(--umber-core);
  background: white;
  border: 2px solid rgba(245, 158, 11, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--layer-amber);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.contact-item {
  text-align: center;
  padding: 24px;
}

.contact-item svg {
  width: 40px;
  height: 40px;
  stroke: var(--layer-amber);
  stroke-width: 2;
  margin-bottom: 12px;
}

.contact-item h4 {
  font-size: 14px;
  margin-bottom: 8px;
}

.contact-item p {
  font-size: 15px;
}

.btn-submit {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, var(--layer-amber), var(--burnt-sienna));
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  transition: all 0.38s ease;
}

.btn-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 64px rgba(245, 158, 11, 0.5);
}

.thank-you-section {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px;
}

.thank-you-section h1 {
  margin-bottom: 24px;
}

.thank-you-section p {
  font-size: 18px;
  max-width: 500px;
  margin-bottom: 40px;
}

.legal-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
}

.legal-section h1 {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-size: 1.5rem;
  margin: 32px 0 16px;
  color: var(--umber-core);
}

.legal-section p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-section ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-section li {
  margin-bottom: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.footer {
  background: rgba(255, 251, 248, 0.96);
  border-top: 2px solid rgba(245, 158, 11, 0.2);
  padding: 64px 88px 32px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold-edge);
  stroke-width: 2.5;
}

.footer-logo span {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 18px;
  color: var(--umber-core);
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--umber-core);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--sienna-mid);
}

.footer-links a:hover {
  color: var(--layer-amber);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  font-size: 13px;
  color: var(--sienna-mid);
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 12px;
}

.footer-legal a {
  border-bottom: 1px solid var(--sienna-mid);
}

.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px;
  background: rgba(255, 251, 248, 0.98);
  backdrop-filter: blur(56px);
  -webkit-backdrop-filter: blur(56px);
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 24px 96px rgba(245, 158, 11, 0.3);
  z-index: 9998;
}

.cookie-consent-banner h4 {
  font-size: 16px;
  margin-bottom: 12px;
}

.cookie-consent-banner p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  flex: 1;
  padding: 12px 20px;
  font-family: 'Fira Code', monospace;
  font-size: 13px;
  font-weight: 600;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--layer-amber), var(--burnt-sienna));
  color: white;
  border: none;
}

.cookie-btn-decline {
  background: transparent;
  color: var(--sienna-mid);
  border: 2px solid var(--sienna-mid);
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--layer-amber), var(--burnt-sienna));
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
}

.process-step:nth-child(odd) {
  flex-direction: row;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step-content {
  width: calc(50% - 40px);
  background: rgba(255, 251, 248, 0.96);
  border: 2px solid rgba(245, 158, 11, 0.26);
  border-radius: 36px;
  padding: 28px;
}

.process-step:nth-child(odd) .process-step-content {
  margin-right: auto;
  text-align: right;
}

.process-step:nth-child(even) .process-step-content {
  margin-left: auto;
  text-align: left;
}

.process-step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--layer-amber), var(--burnt-sienna));
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  line-height: 1.6;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.pulse {
  animation: pulse 3s infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-fade {
  opacity: 0;
  animation: fadeIn 0.78s ease-out forwards;
}

.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.3s; }
.reveal-delay-4 { animation-delay: 0.4s; }
.reveal-delay-5 { animation-delay: 0.5s; }

.lens-reveal {
  position: relative;
  overflow: hidden;
}

.lens-reveal img {
  transition: filter 0.3s ease;
}

.lens-reveal:hover img {
  filter: contrast(1.15) saturate(1.1);
}

@media (max-width: 1024px) {
  .pill-nav {
    display: none;
  }

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

  .mobile-nav {
    display: flex;
  }

  .hero-section {
    padding: 140px 24px 120px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-grid {
    display: none;
  }

  .section {
    padding: 80px 24px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-intro {
    position: static;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .process-timeline::before {
    left: 24px;
  }

  .process-step {
    flex-direction: row !important;
  }

  .process-step-content {
    width: calc(100% - 80px);
    margin-left: 64px !important;
    text-align: left !important;
  }

  .process-step-number {
    left: 24px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 120px 16px 80px;
  }

  h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
  }

  h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
  }

  .section {
    padding: 60px 16px;
  }

  .services-grid,
  .features-grid,
  .team-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }

  .footer {
    padding: 48px 16px 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .cookie-consent-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}