:root {
  --gold: #D4AF37;
  --gold-light: #EBC054;
  --gold-pale: #F4D78A;
  --gold-dark: #996515;
  --black: #080808;
  --black-2: #111111;
  --black-3: #191919;
  --black-4: #242424;
  --white: #F5F2EC;
  --white-dim: rgba(245,242,236,0.6);
  --white-faint: rgba(245,242,236,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  position: relative;
}

/* ATMOSPHERIC BACKGROUND */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(17, 17, 17, 1) 0%, rgba(8, 8, 8, 1) 100%);
  z-index: -2;
  pointer-events: none;
}

.bg-glow {
  position: fixed;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
  animation: floatGlow 20s infinite alternate ease-in-out;
}

@keyframes floatGlow {
  0% { transform: translate(-10%, -10%) scale(1); }
  100% { transform: translate(20%, 20%) scale(1.2); }
}

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.3;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: all 0.4s ease;
  box-sizing: border-box;
}
nav.scrolled {
  padding: 12px 60px;
  background: rgba(8, 8, 8, 0.95);
  width: 100%;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 6px;
  color: var(--gold);
  text-decoration: none;
}
.nav-logo span { color: var(--white); }
.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 600;
}
.nav-cta:hover { 
  background: var(--white); 
  color: var(--black);
  transform: translateY(-2px);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 60px 80px;
  overflow: hidden;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0% { transform: translate(0,0); }
  100% { transform: translate(80px, 80px); }
}

.hero-orb {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
  50% { transform: translateY(-50%) scale(1.1); opacity: 0.7; }
}

.hero-visual {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45vw;
  height: 70vh;
  z-index: 1;
  opacity: 0;
  animation: fadeReveal 1.2s 0.5s forwards;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1) brightness(0.8);
  mask-image: linear-gradient(to left, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
}
@keyframes fadeReveal {
  to { opacity: 0.6; transform: translateY(-50%) translateX(-20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-tag::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: 2px;
  margin-bottom: 12px;
  overflow: hidden;
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.4s; }
.hero-title .line:nth-child(2) { animation-delay: 0.55s; color: var(--gold); }
.hero-title .line:nth-child(3) { animation-delay: 0.7s; }

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(20px); }
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--white-dim);
  margin: 32px 0 56px;
  max-width: 520px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--black);
  padding: 18px 40px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary:hover { color: var(--gold); border: 1px solid var(--gold); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary .arrow { transition: transform 0.3s; position: relative; z-index: 1; }
.btn-primary:hover .arrow { transform: translateX(6px); }

.btn-ghost {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost::after {
  content: '↓';
  font-size: 16px;
  transition: transform 0.3s;
}
.btn-ghost:hover::after { transform: translateY(4px); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 1s 1.5s forwards;
}
.hero-scroll-indicator::after {
  content: '';
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* HERO AMPERSAND */
.hero-amp {
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}

/* SECTION BASE */
section { position: relative; }
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 64px;
}
.section-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}
.section-label .num {
  color: rgba(212, 175, 55, 0.3);
  font-size: 10px;
}

/* SERVICES */
#servicos {
  padding: 140px 60px;
  background: transparent;
}
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 100px;
}
.services-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: 2px;
}
.services-title em {
  color: var(--gold);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05em;
  font-weight: 300;
}
.services-desc {
  font-size: 17px;
  line-height: 1.8;
  color: var(--white-dim);
  max-width: 440px;
  padding-bottom: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(212, 175, 55, 0.1);
}
.service-card {
  background: var(--black);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.5s;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--black-3); }

.service-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: rgba(212, 175, 55, 0.07);
  position: absolute;
  top: 24px; right: 32px;
  transition: color 0.5s;
}
.service-card:hover .service-number { color: rgba(212, 175, 55, 0.12); }

.service-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: border-color 0.3s, background 0.3s;
}
.service-card:hover .service-icon {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}
.service-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.service-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--white-dim);
  margin-bottom: 40px;
}
.service-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 0.3s, gap 0.3s;
}
.service-card:hover .service-link { color: var(--gold); gap: 14px; }

/* IMAGE BREAK */
.image-break {
  padding: 0 60px;
  margin-bottom: 120px;
}
.break-content {
  position: relative;
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
}
.break-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.5);
  transition: transform 1s ease;
}
.break-content:hover img {
  transform: scale(1.05);
}
.break-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}
.break-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 3px;
  text-align: center;
  max-width: 900px;
  color: var(--white);
  line-height: 1.1;
}

/* PROCESS */
#processo {
  padding: 140px 60px;
  background: transparent;
}
.process-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.process-sticky {
  position: sticky;
  top: 140px;
  height: fit-content;
}
.process-visual-mini {
  margin-top: 40px;
  width: 100%;
  height: 250px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.process-visual-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
  transition: filter 0.5s ease;
}
.process-visual-mini:hover img {
  filter: grayscale(0.5) contrast(1.1);
}
.process-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 68px;
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 28px;
}
.process-sub {
  font-size: 15px;
  line-height: 1.8;
  color: var(--white-dim);
  margin-bottom: 48px;
}
.process-steps { }
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  position: relative;
  transition: padding-left 0.4s;
}
.step:first-child { border-top: 1px solid rgba(212, 175, 55, 0.08); }
.step:hover { padding-left: 16px; }
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
  transition: color 0.4s;
}
.step:hover .step-num { color: var(--gold); }
.step-content {}
.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.step-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--white-dim);
}

/* STRAPI SECTION */
#strapi {
  padding: 140px 60px;
  background: transparent;
  overflow: hidden;
}
.strapi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.strapi-visual {
  position: relative;
  height: 580px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(212, 175, 55, 0.1);
}
.strapi-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) brightness(0.9);
}
.strapi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.floating-badge {
  position: absolute;
  padding: 14px 20px;
  background: var(--black-4);
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 6s ease-in-out infinite;
}
.floating-badge:nth-child(2) {
  bottom: 40px; left: -40px;
  animation-delay: 0s;
}
.floating-badge:nth-child(3) {
  top: 40px; right: -40px;
  animation-delay: 3s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.badge-dot.green { background: #6de08a; }

.strapi-text {}
.strapi-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 68px;
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 32px;
}
.strapi-title span { color: var(--gold); }
.strapi-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--white-dim);
  margin-bottom: 40px;
}
.strapi-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.strapi-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}
.strapi-feature-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.strapi-feature-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.strapi-feature-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.strapi-feature-text { font-size: 13px; color: var(--white-dim); line-height: 1.7; }

/* PRICING */
#precos {
  padding: 140px 60px;
  background: transparent;
}
.pricing-header { text-align: center; margin-bottom: 80px; }
.pricing-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  letter-spacing: 3px;
  margin: 20px 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(212, 175, 55, 0.1);
}
.price-card {
  background: var(--black);
  padding: 60px 48px;
  position: relative;
  transition: background 0.4s;
  display: flex;
  flex-direction: column;
}
.price-card:hover { background: var(--black-2); }
.price-card.featured {
  background: var(--black-3);
  border-top: 2px solid var(--gold);
}
.price-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 6px 14px;
  margin-bottom: 32px;
}
.price-tier {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 16px;
}
.price-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 1;
  margin-bottom: 8px;
}
.price-amount sup {
  font-size: 30px;
  vertical-align: top;
  margin-top: 16px;
  display: inline-block;
  color: var(--gold);
}
.price-period {
  font-size: 12px;
  color: var(--white-dim);
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.price-divider {
  height: 1px;
  background: rgba(212, 175, 55, 0.1);
  margin: 32px 0;
}
.price-features { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; flex-grow: 1; }
.price-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--white-dim);
}
.price-features li::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.price-features li.muted { opacity: 0.35; }
.price-features li.muted::before { background: rgba(255,255,255,0.2); }
.price-btn {
  display: block;
  text-align: center;
  padding: 16px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--white-dim);
  transition: all 0.3s;
}
.price-btn:hover { border-color: var(--gold); color: var(--gold); }
.price-card.featured .price-btn {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.price-card.featured .price-btn:hover { background: var(--gold-light); }

/* CTA */
#contacto {
  padding: 160px 60px;
  background: transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-lines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(212, 175, 55, 0.015) 60px,
      rgba(212, 175, 55, 0.015) 61px
    );
}
.cta-inner { position: relative; z-index: 2; }
.cta-pre {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 32px;
  display: block;
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 9vw, 130px);
  line-height: 0.9;
  letter-spacing: 4px;
  margin-bottom: 48px;
}
.cta-title span { color: var(--gold); }
.cta-body {
  font-size: 17px;
  color: var(--white-dim);
  max-width: 480px;
  margin: 0 auto 64px;
  line-height: 1.8;
}
.cta-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 8px;
  transition: border-color 0.3s;
  margin-bottom: 40px;
}
.cta-email:hover { border-color: var(--gold); }
.cta-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.3), transparent);
  margin: 0 auto 40px;
}

/* FOOTER */
footer {
  padding: 60px 60px 40px;
  background: var(--black);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}
.footer-brand { }
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 6px;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
  text-decoration: none;
}
.footer-logo span { color: var(--white); }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--white-dim);
  max-width: 240px;
  line-height: 1.6;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.footer-links a {
  font-size: 13px;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(245,242,236,0.2);
  text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { padding: 120px 40px 60px; }
  .services-grid, .social-cards, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .strapi-inner, .process-inner, .footer-inner { grid-template-columns: 1fr; gap: 60px; }
  .process-sticky { position: relative; top: 0; }
}
@media (max-width: 768px) {
  nav { padding: 20px 30px; }
  .nav-links { display: none; }
  .hero-title { font-size: 64px; }
  .services-grid, .social-cards, .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .simulator-container { padding: 40px 30px; }
}

/* SIMULATOR PAGE ENHANCEMENTS */
.simulator-hero {
  padding: 180px 60px 80px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.simulator-hero .simulator-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 84px;
  line-height: 0.9;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.simulator-hero .simulator-title span {
  color: var(--gold);
}
.simulator-hero .simulator-desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--white-dim);
}

.simulator-info {
  padding: 80px 60px;
  background: rgba(255, 255, 255, 0.02);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.info-item {
  text-align: center;
}
.info-icon {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--white);
  font-size: 56px;
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.8;
  transition: all 0.4s ease;
}
.info-item:hover .info-icon {
  color: var(--gold);
  opacity: 1;
  transform: scale(1.1);
}
.info-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--white);
  position: relative;
  display: inline-block;
}
.info-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.info-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--white-dim);
}

.simulator-section {
  padding: 120px 60px;
}
.simulator-container {
  max-width: 850px;
  margin: 0 auto;
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 80px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}
.simulator-container::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.form-header {
  text-align: center;
  margin-bottom: 60px;
}
.form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.form-subtitle {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-group label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white-dim);
  font-weight: 600;
}
.form-group input, .simulator-form textarea {
  background: rgba(255, 255, 255, 0.03);
  border: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 15px 0;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.4s ease;
}
.form-group input:focus, .simulator-form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
  padding-left: 10px;
}

.simulator-form textarea {
  height: 100px;
  resize: none;
  margin-top: 10px;
}

.btn-simulate {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 22px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 20px;
}
.btn-simulate:hover {
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.form-note {
  font-size: 10px;
  color: var(--white-faint);
  text-align: center;
  margin-top: 24px;
  line-height: 1.6;
}

.simulator-benefits {
  padding: 100px 60px;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.05));
}
.benefits-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.benefits-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  margin-bottom: 48px;
}
.benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}
.benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 4px;
}
.benefit-check {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  stroke-width: 3;
  fill: none;
}
.benefit span {
  font-size: 14px;
  color: var(--white);
}

@media (max-width: 768px) {
  .simulator-hero .simulator-title {
    font-size: 54px;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .benefits-list {
    grid-template-columns: 1fr;
  }
  .simulator-container {
    padding: 40px 20px;
  }
}
