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

:root {
  /* ═══ ULTRA HD LUXURY ═══ */
  --bg: #0a0a0c;
  --bg2: #121215;
  --gold: #d4b483;
  --gold-grad: linear-gradient(135deg, #d4b483 0%, #e8cfa0 100%);
  --white: #ffffff;
  --gray: #b0b0b0;
  --gray2: #1e1e22;

  --cond: 'Barlow Condensed', sans-serif;
  --sans: 'Barlow', sans-serif;

  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

.cyber-grid {
  display: none;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ═══ NAV ═══ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, padding .3s, backdrop-filter .4s;
}

.nav.scrolled {
  background: rgba(13, 13, 16, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 16px 60px;
  border-bottom: 1px solid rgba(201, 169, 126, .1);
}

.nav-logo {
  height: 30px;
  font-family: var(--cond);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  transition: color .2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 12px 26px;
  transition: background .2s, transform .2s;
}

.nav-cta:hover {
  background: #e8cfa0;
  transform: translateY(-2px);
}

/* ═══ BUTTONS ═══ */
.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .2s, transform .25s, box-shadow .25s;
}

.btn-primary:hover {
  background: #e8cfa0;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 169, 126, .35);
}

.btn-outline {
  display: inline-block;
  padding: 16px 40px;
  border: 1px solid rgba(201, 169, 126, .25);
  color: var(--white);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: border-color .2s, color .2s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* INTRO WIPE REMOVED */

@keyframes wipeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes lineSweep {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(101vw);
  }
}

/* CURSOR REMOVED */

/* ═══ REVEAL ANIMATIONS ═══ */
.reveal {
  /* No opacity: 0 here to ensure visibility if JS fails */
  will-change: transform, opacity;
}

.text-reveal {
  overflow: hidden;
  will-change: transform, opacity;
}

/* ═══ GRID PATTERN ═══ */
.bg-grid {
  position: relative;
}

.bg-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/grid-bg.png');
  background-size: 400px;
  opacity: 0.05;
  pointer-events: none;
}

/* ═══ HERO UPDATE ═══ */
.hero-scan {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 16px 2px rgba(201, 169, 126, .3);
  animation: scanDown 1s cubic-bezier(.45, 0, .55, 1) 1.2s both;
  z-index: 3;
}

@keyframes scanDown {
  0% {
    opacity: 1;
    top: 0;
  }

  90% {
    opacity: 1;
    top: 98%;
  }

  100% {
    opacity: 0;
    top: 100%;
  }
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 100px;
  overflow: hidden;
  background: transparent;
}

.hero-bg-img,
.hero-bg-v3 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  filter: brightness(0.9) contrast(1.1);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg, rgba(10, 10, 12, 0.8) 0%, rgba(10, 10, 12, 0.4) 50%, rgba(10, 10, 12, 0) 100%);
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
}

.hero-tag {
  position: absolute;
  top: 120px;
  left: 60px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 4;
}

.hero-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
}

.hero-headline {
  font-family: var(--cond);
  font-size: clamp(64px, 9vw, 148px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: 0;
  color: var(--white);
}

.hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: .05em;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
}

.hero-bottom {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  margin-top: 52px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

/* ═══ SECTION COMMONS ═══ */
.sec {
  padding: 120px 60px;
}

.sec-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--cond);
  font-size: clamp(42px, 5vw, 80px);
  font-weight: 800;
  line-height: .95;
  text-transform: uppercase;
  color: var(--white);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 800;
  text-shadow: 0 0 15px rgba(201, 169, 126, 0.3);
  letter-spacing: -0.02em;
}

.lead {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 48px;
  color: var(--gray);
}

/* ═══ PROBLEM GRID ═══ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 72px;
  background: var(--bg2);
}

.problem-card {
  background: var(--bg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.problem-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.problem-card:hover {
  background: var(--bg2);
}

.problem-card:hover::after {
  transform: scaleX(1);
}

.problem-card .num {
  font-family: var(--cond);
  font-size: 88px;
  font-weight: 800;
  color: rgba(0, 0, 0, .03);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 32px;
}

.problem-card h3 {
  font-family: var(--cond);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.1;
  color: var(--white);
}

.problem-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 300;
}

/* ═══ SERVICES PANORAMA ═══ */
.services-panorama {
  background: var(--bg);
  padding-top: 120px;
  overflow: hidden;
}

.panorama-header {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 60px;
}

.panorama-grid {
  display: flex;
  height: 80vh;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.panorama-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: flex 1s cubic-bezier(0.16, 1, 0.3, 1);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: flex-end;
  padding: 60px 40px;
  cursor: pointer;
}

.panorama-item:last-child {
  border-right: none;
}

.panorama-item:hover {
  flex: 2.5;
}

.panorama-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.5);
  transition: all .8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.panorama-item:hover .panorama-img {
  filter: grayscale(0) brightness(0.9) contrast(1.1);
  transform: scale(1.1);
}

.panorama-content {
  position: relative;
  z-index: 10;
  width: 100%;
  transform: translateY(40px);
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}

.panorama-item:hover .panorama-content {
  transform: translateY(0);
}

.panorama-item h3 {
  font-family: var(--cond);
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: .85;
  margin-bottom: 24px;
}

.panorama-item p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 440px;
  opacity: 0;
  transition: opacity .6s;
  font-weight: 300;
}

.panorama-item:hover p {
  opacity: 1;
}

.panorama-plus {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 32px;
  color: var(--vivid-color);
  font-weight: 300;
  opacity: 0.5;
  transition: all .6s;
}

.panorama-item:hover .panorama-plus {
  transform: rotate(45deg) scale(1.5);
  opacity: 1;
  text-shadow: 0 0 20px var(--vivid-color);
}

.panorama-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--vivid-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}

.panorama-item:hover::after {
  transform: scaleX(1);
}

/* ═══ PRICING ═══ */
.pricing {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 2px;
  background: var(--bg2);
}

.pricing-card {
  position: relative;
  background: var(--bg2);
  padding: 52px 44px 48px;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card.featured {
  background: var(--bg);
  box-shadow: 0 20px 40px rgba(201, 169, 126, .1);
  border-color: var(--gold);
}

.plan-tier {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.pricing-card {
  background: var(--bg2);
  padding: 48px;
  border: 1px solid rgba(201, 169, 126, 0.1);
  transition: transform .4s, border-color .4s, box-shadow .4s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: -1;
  transition: opacity .4s, transform .8s;
  filter: brightness(0.5) contrast(1.2);
}

.pricing-card:hover::before {
  opacity: 0.6;
  transform: scale(1.05);
}

.pricing-card:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(201, 169, 126, 0.05);
  transform: translateY(-8px);
}

.plan-price-wrap {
  border-top: 1px solid rgba(201, 169, 126, .1);
  border-bottom: 1px solid rgba(201, 169, 126, .1);
  padding: 28px 0;
  margin-bottom: 36px;
}

.plan-price {
  font-family: var(--cond);
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}

.featured .plan-price {
  color: var(--gold);
}

.plan-period {
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--gray);
  margin-top: 4px;
  display: block;
}

.pricing-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.pricing-features li {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li::before {
  content: none;
}

.pricing-features li i {
  color: var(--gold);
  margin-top: 4px;
}

.plan-transform {
  background: var(--bg2);
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  border: 1px solid rgba(201, 169, 126, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.plan-transform::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/miami-vibrant.png');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: -1;
}

.transform-content h3 {
  font-family: var(--font-h);
  font-size: 52px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: .95;
  margin-bottom: 16px;
}

.transform-content p {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 36px;
}

.transform-price .price {
  font-family: var(--font-h);
  font-size: 88px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
}

/* ═══ AUDIT FORM ═══ */
/* ═══ AUDIT FORM ═══ */
.audit-section {
  padding: 160px 60px;
  background: var(--bg);
  text-align: center;
}

.audit-container {
  max-width: 900px;
  margin: 0 auto;
}

.audit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 126, 0.1);
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: border-color .3s;
}

.form-input:focus {
  border-color: var(--gold);
}

.audit-btn {
  grid-column: span 2;
  width: 100%;
  padding: 24px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--cond);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  transition: background .2s;
}

.audit-btn:hover {
  background: #e8cfa0;
}

.audit-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: left;
  gap: 12px 40px;
  max-width: 600px;
  margin: 40px auto 0;
}

.audit-feat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 10px;
}

.audit-feat i {
  color: var(--gold);
}

/* ═══ HONEYCOMB TEAM (NEW REFERENCE STYLE) ═══ */
.honeycomb-grid {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.honeycomb-item {
  position: absolute;
  width: 280px;
  height: 320px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  top: 50%;
  left: 50%;
  z-index: 10;
}

.h-top {
  top: 160px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.h-left {
  top: 400px;
  left: calc(50% - 140px);
  transform: translate(-50%, -50%);
  z-index: 15;
}

.h-right {
  top: 400px;
  left: calc(50% + 140px);
  transform: translate(-50%, -50%);
  z-index: 15;
}

.h-bottom {
  top: 640px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.hex-container {
  position: relative;
  width: 280px;
  height: 320px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: #0a111a;
  border: 4px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.6s ease;
}

.honeycomb-item:hover .hex-container {
  transform: scale(1.05);
  border-color: var(--accent);
}

.hex-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: all 0.6s ease;
}

.pedro-hex {
  object-position: center 20%;
}

.fab-hex {
  object-position: 80% center;
  transform: scale(1.2);
}

.hex-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0.3;
  z-index: -1;
}

.hex-label {
  position: absolute;
  width: 260px;
  opacity: 1;
  /* Always visible */
  transition: all 0.5s var(--ease-expo);
  z-index: 20;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

.honeycomb-item:hover .hex-label {
  color: var(--accent);
}

.l-left {
  right: 105%;
  top: 20%;
  text-align: right;
}

.l-right {
  left: 105%;
  top: 20%;
  text-align: left;
}

.hex-tag {
  font-family: 'Barlow Condensed';
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 14px;
}

.hex-name {
  font-size: 32px;
  line-height: 1;
  margin: 10px 0;
  font-weight: 800;
  color: #fff;
}

.hex-bio {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
}

.hex-socials {
  display: flex;
  gap: 15px;
}

.l-left .hex-socials {
  justify-content: flex-end;
}

.hex-socials a {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.hex-socials a:hover {
  color: var(--accent);
}

/* RESPONSIVE HONEYCOMB */
@media (max-width: 1024px) {
  .honeycomb-grid {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .honeycomb-item {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    flex-direction: column;
    text-align: center;
  }

  .hex-label {
    text-align: center !important;
    max-width: 100%;
  }

  .hex-socials {
    justify-content: center !important;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 38px;
  }
}

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

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 100px;
  }
}

/* ═══ MIAMI VIVID GALLERY ═══ */
.miami-gallery {
  display: flex;
  height: 70vh;
  width: 100%;
  overflow: hidden;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-col {
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: flex 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-col:last-child {
  border-right: none;
}

.gallery-col:hover {
  flex: 2;
}

.gallery-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), filter .5s;
  filter: contrast(1.1) saturate(1.2);
}

.gallery-col:hover img {
  transform: scale(1.1);
  filter: contrast(1.2) saturate(1.4);
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 40px 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  font-family: var(--cond);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  z-index: 10;
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-col:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}

.gallery-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: opacity .5s;
}

.gallery-col:hover::after {
  opacity: 0;
}

/* ═══ CTA ═══ */
.final-cta {
  padding: 140px 60px;
  text-align: center;
  background: var(--bg);
  position: relative;
}

.cta-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-h);
  font-size: clamp(80px, 18vw, 260px);
  font-weight: 900;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, .04);
  white-space: nowrap;
  pointer-events: none;
}

.final-cta h2 {
  position: relative;
  z-index: 1;
  font-family: var(--font-h);
  font-size: clamp(48px, 6.5vw, 100px);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.final-cta h2 em {
  font-style: italic;
  color: var(--accent);
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--bg2);
  padding: 80px 60px 36px;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(0, 0, 0, .04);
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 12px;
}

@media (max-width: 1100px) {
  .nav {
    padding: 20px 32px;
  }

  .sec,
  .audit {
    padding: 80px 32px;
  }

  .hero-content,
  .hero-bottom {
    padding: 0 32px;
  }

  .problem-grid,
  .pricing-grid,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plan-transform {
    flex-direction: column;
    text-align: left;
  }
}

@media (max-width: 640px) {

  .problem-grid,
  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-headline {
    font-size: 48px;
  }
}