/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #fff;
  background: #000;
}

/* ===== BANNER ===== */
.banner {
  width: 100%;
  background: linear-gradient(to right, #f5a623, #f7c96e, #f5e6b8);
  padding: 12px 16px;
  text-align: center;
}

.banner-text {
  font-size: 14px;
}

.banner-link {
  color: #000;
  text-decoration: none;
  font-weight: 700;
}

.banner-link:hover {
  text-decoration: underline;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: #000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  gap: 32px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s;
}

.nav-link:hover {
  color: rgb(255, 180, 51);
}

/* CTA Button */
.btn-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  border-radius: 12px;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.btn-apply span {
  display: block;
  background: linear-gradient(290deg, rgb(255, 217, 153) 0%, rgb(255, 180, 51) 30%, rgb(245, 212, 154) 67%, rgb(255, 180, 51) 100%);
  border-radius: 10px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #000;
  position: relative;
  z-index: 1;
}

.btn-apply:hover span {
  filter: brightness(1.08);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Etheral shadow: expanded wrapper so displacement edges stay hidden */
.etheral-wrap {
  position: absolute;
  inset: -100px;
  filter: url(#etheral-filter) blur(4px);
}

/* Colored blob masked by the etheral shadow shape */
.etheral-color {
  width: 100%;
  height: 100%;
  background-color: rgba(128, 128, 128, 1);
  -webkit-mask-image: url('https://framerusercontent.com/images/ceBGguIpUU8luwByxuQz79t7To.png');
  mask-image: url('https://framerusercontent.com/images/ceBGguIpUU8luwByxuQz79t7To.png');
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* Grain/noise overlay */
.etheral-noise {
  position: absolute;
  inset: 0;
  background-image: url('https://framerusercontent.com/images/g0QcWrxr87K0ufOxIUFBakwYA8.png');
  background-size: 240px;
  background-repeat: repeat;
  opacity: 0.5;
}

.hero-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to bottom, #000 0%, transparent 100%);
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, #000 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 32px;
  max-width: 860px;
  gap: 24px;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

.hero-title-gradient {
  background-image: linear-gradient(
    90deg,
    rgba(250, 250, 250, 0.45) 0%,
    rgb(250, 250, 250) 25%,
    rgb(250, 250, 250) 75%,
    rgba(250, 250, 250, 0.45) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  letter-spacing: -0.2px;
  line-height: 1.5;
  color: rgb(224, 224, 224);
  margin: 0;
  max-width: 80%;
}

.hero-btn {
  margin-top: 8px;
}

.hero-btn span {
  padding: 14px 36px;
  font-size: 16px;
  border-radius: 10px;
}

/* ===== MESSAGE FROM IMAN ===== */
.message-section {
  background: #000;
  padding: 100px 32px;
}

.message-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 60px;
  align-items: center;
}

.message-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 2 / 3;
}

.message-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.message-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

.gradient-text {
  background-image: linear-gradient(
    90deg,
    rgba(250, 250, 250, 0.45) 0%,
    rgb(250, 250, 250) 25%,
    rgb(250, 250, 250) 75%,
    rgba(250, 250, 250, 0.45) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.message-body {
  font-size: 16px;
  line-height: 1.7;
  color: rgb(255, 255, 255);
  width: 93%;
}


/* ===== WHAT WE DO ===== */
.what-section {
  background: #000;
  padding: 100px 32px;
}

.what-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.what-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.what-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: rgb(180, 180, 180);
  max-width: 60%;
}

/* Cards outer container */
.what-cards-wrap {
  position: relative;
  border: 1px solid #17191b;
  border-radius: 40px;
  overflow: hidden;
  background: radial-gradient(70% 100% at 50% 0%, rgb(20,20,21) 0%, rgb(0,0,0) 100%);
  padding: 20px;
}

/* Background dots canvas filling entire wrap */
.wrap-dots-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  border-radius: 40px;
}

/* Decorative top lights — 650×345px centered at top of wrap */
.cards-top-lights {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 345px;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

/* Abstract dots scattered across the area */
.cards-dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.55;
}

/* Light rays SVG behind the central line */
.cards-rays {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  opacity: 0.9;
}

/* Central golden line — centered, with glow radiating down */
.cards-top-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(271deg, rgb(255,180,51) 0%, rgb(255,199,102) 50%, rgb(255,162,1) 100%);
  border-radius: 1px;
}

.cards-top-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 280px;
  background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(255,180,51,0.28) 0%, rgba(255,162,1,0.08) 40%, transparent 70%);
  pointer-events: none;
}

/* 2x2 grid */
.what-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
  padding-top: 20px;
}

/* Individual card */
.what-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #0f0f0f;
  border: 1px solid #4b4b4b;
  border-radius: 12px;
  overflow: hidden;
}

/* Scroll appear animation */
.appear-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  will-change: transform, opacity;
}

.appear-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Icon wrap with glow */
.card-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.card-icon-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,180,51,0.25) 0%, transparent 65%);
  filter: blur(8px);
  pointer-events: none;
}

.card-icon {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-icon-svg svg {
  width: 52px;
  height: 52px;
}

/* Light line — absolute, top-left of card, 24×2px */
.card-light-line-wrap {
  position: absolute;
  top: 0;
  left: 20px;
  width: 24px;
  height: 2px;
  z-index: 3;
  pointer-events: none;
}

.card-light-line {
  width: 24px;
  height: 2px;
  background: linear-gradient(271deg, rgb(255,180,51) 0%, rgb(255,199,102) 50%, rgb(255,162,1) 100%);
  border-radius: 0 0 1px 1px;
  position: relative;
}

.card-light-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 90px;
  background: radial-gradient(ellipse 60% 75% at 50% 0%, rgba(255,180,51,0.15) 0%, rgba(255,162,1,0.05) 50%, transparent 70%);
  pointer-events: none;
  filter: blur(3px);
}

/* Top-right corner light (139×142px absolute) */
.card-right-light {
  position: absolute;
  top: 0;
  right: 0;
  width: 139px;
  height: 142px;
  pointer-events: none;
  overflow: hidden;
}

/* Canvas particle wrap — rotated 41deg like original */
.card-canvas-wrap {
  position: absolute;
  inset: 0;
  transform: rotate(41deg);
  transform-origin: center;
  overflow: hidden;
}

.particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.card-rays-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.card-circle-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.3;
}

/* Full-width bottom light rays */
.card-bottom-rays {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 181px;
  pointer-events: none;
}

.card-bottom-rays img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center top;
  opacity: 0.7;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px 48px;
  gap: 14px;
  flex: 1;
}

.card-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-icon-svg svg {
  width: 52px;
  height: 52px;
}

.card-title {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  color: #fff;
  margin: 0;
}

.card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin: 0;
  max-width: 340px;
}

/* ===== RESULTS WALL ===== */
.results-section {
  background: #000;
  padding: 100px 32px;
}

.results-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.results-title-wrap {
  text-align: center;
}

/* 3-column bento grid */
.results-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 461px);
  gap: 16px;
}

/* Base card */
.rcard {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0a0a0a;
  position: relative;
}

/* --- TICKER CARD --- */
.rcard-ticker {
  grid-column: 1 / 3;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: #0a0a0a;
}

.ticker-cols-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 16px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.ticker-stat {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ticker-stat-value {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.ticker-stat-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.ticker-col {
  flex: 1;
  overflow: hidden;
  position: relative;
}

/* Fade top & bottom edges */
.ticker-mask {
  height: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
}

.ticker-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: ticker-up 9s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}

.ticker-track--reverse {
  animation-name: ticker-down;
}

@keyframes ticker-up {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

@keyframes ticker-down {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}

/* Glassmorphism metric card */
.metric-card {
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(228,230,235,0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.metric-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.metric-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 600;
  color: rgb(18, 182, 105);
  background: rgba(18, 182, 105, 0.1);
  border: 1px solid rgba(18, 182, 105, 0.35);
  border-radius: 20px;
  padding: 2px 8px;
}

.metric-arrow {
  font-size: 10px;
}

.metric-bottom {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.metric-value {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.03em;
}

.metric-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* --- IMAGE CARDS --- */
.rcard-img {
  grid-column: auto;
  position: relative;
}

/* Card 2: col 3, row 1 */
.rcard-img:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}

/* Card 3: col 1, row 2 */
.rcard-img:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

/* Card 4: col 2, row 2 */
.rcard-img:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

/* Card 5: col 3, row 2 */
.rcard-img:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

/* Card 6: col 1, row 3 */
.rcard-img:nth-child(6) {
  grid-column: 1;
  grid-row: 3;
}

/* Card 7: col 2, row 3 */
.rcard-img:nth-child(7) {
  grid-column: 2;
  grid-row: 3;
}

/* Card 8: col 3, row 3 */
.rcard-img:nth-child(8) {
  grid-column: 3;
  grid-row: 3;
}

.rcard-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: opacity;
}

.rcard-bg-img.img-loaded {
  opacity: 1;
}

.rcard-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgb(0,0,0) 0%, rgba(0,0,0,0.92) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rcard-title-text {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

.rcard-desc-text {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* CTA wrapper */
.results-cta-wrap {
  display: flex;
  justify-content: center;
}

.btn-apply--lg span {
  padding: 14px 40px;
  font-size: 16px;
  border-radius: 10px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: #000;
  padding: 100px 32px;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.testimonials-title-wrap {
  text-align: center;
}

.testimonials-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 560px));
  gap: 16px;
  justify-content: center;
}

.tcard {
  background: rgb(13, 13, 13);
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.4) 16px 24px 20px 8px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tcard-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tcard-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 10px 10px 0px;
}

.tcard-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tcard-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tcard-name {
  font-size: 17px;
  font-weight: 600;
  background-image: linear-gradient(
    90deg,
    rgb(255, 162, 1) 0%,
    rgb(255, 199, 102) 25%,
    rgb(255, 162, 1) 75%,
    rgb(255, 199, 102) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.tcard-role {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.tcard-quote {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.tcard-quote strong {
  color: #fff;
  font-weight: 600;
}

.testimonials-disclaimer {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  max-width: 860px;
}

/* ===== CONTACT US ===== */
.contact-section {
  background: #000;
  padding: 60px 32px 100px;
}

.contact-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background: rgb(13, 13, 13);
  border: 1px solid rgb(34, 34, 34);
  border-radius: 24px;
  overflow: hidden;
  padding: 100px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-shader-bg {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 760px;
  text-align: center;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.contact-title-gradient {
  background-image: linear-gradient(
    90deg,
    rgba(250, 250, 250, 0.5) 0%,
    rgb(250, 250, 250) 25%,
    rgb(250, 250, 250) 75%,
    rgba(250, 250, 250, 0.5) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.contact-subtitle {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.02px;
  color: rgb(224, 224, 224);
  margin: 0;
  max-width: 620px;
}

.contact-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  background: linear-gradient(
    290deg,
    rgb(255, 217, 153) 0%,
    rgb(255, 180, 51) 30%,
    rgb(245, 212, 154) 67%,
    rgb(255, 180, 51) 100%
  );
  overflow: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.contact-btn-glow-top {
  position: absolute;
  top: -4px;
  left: 10%;
  right: 10%;
  height: 8px;
  background-color: rgb(255, 217, 153);
  filter: blur(8px);
  border-radius: 999px;
  pointer-events: none;
}

.contact-btn-glow-bottom {
  position: absolute;
  bottom: -4px;
  left: 10%;
  right: 10%;
  height: 8px;
  background-color: rgb(255, 217, 153);
  filter: blur(8px);
  border-radius: 999px;
  pointer-events: none;
}

/* Lighting blobs layered over the shader (from demo overlay) */
.contact-shader-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.contact-shader-blob-1 {
  top: 25%;
  left: 33%;
  width: 128px;
  height: 128px;
  background: rgba(50, 50, 50, 0.14);
  filter: blur(48px);
  animation: cblob-pulse 3s ease-in-out infinite;
}
.contact-shader-blob-2 {
  bottom: 33%;
  right: 25%;
  width: 96px;
  height: 96px;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(32px);
  animation: cblob-pulse 2s ease-in-out infinite;
  animation-delay: 1s;
}
.contact-shader-blob-3 {
  top: 50%;
  right: 33%;
  width: 80px;
  height: 80px;
  background: rgba(20, 20, 20, 0.10);
  filter: blur(24px);
  animation: cblob-pulse 4s ease-in-out infinite;
  animation-delay: 0.5s;
}
@keyframes cblob-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.2); }
}

/* ===== FOOTER ===== */
.site-footer {
  background: #000;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-top {
  padding: 48px 0 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 660px;
}

.footer-logo {
  display: flex;
  align-items: center;
  height: 26px;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.footer-logo svg {
  height: 22px;
  width: auto;
  display: block;
}

.footer-disclaimer {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(212, 212, 212, 0.6);
  margin: 0;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  color: rgb(212, 212, 212);
  transition: color 0.2s ease;
}

.footer-instagram:hover {
  color: #fff;
}

.footer-instagram svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 28px;
  border-top: 1px solid rgb(61, 61, 61);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  letter-spacing: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgb(247, 247, 247);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-sep {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgb(226, 226, 226);
  line-height: 1;
}

@media (max-width: 640px) {
  .footer-top {
    flex-direction: column;
    padding: 36px 0 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 36px;
  }
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.modal-active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  position: relative;
  background: rgb(13, 13, 13);
  border: 1px solid rgb(40, 40, 40);
  border-radius: 20px;
  padding: 48px 40px 40px;
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(16px);
  transition: transform 0.25s ease;
}

.modal-overlay.modal-active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgb(30, 30, 30);
  border: 1px solid rgb(50, 50, 50);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.modal-close:hover {
  background: rgb(40, 40, 40);
  color: #fff;
}

.modal-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.modal-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: -12px 0 0;
  line-height: 1.5;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal-field label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.modal-field input {
  background: rgb(20, 20, 20);
  border: 1px solid rgb(45, 45, 45);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.modal-field input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.modal-field input:focus {
  border-color: rgb(255, 180, 51);
}

.modal-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 12px;
}

.modal-submit span {
  display: block;
  width: 100%;
  background: linear-gradient(290deg, rgb(255, 217, 153) 0%, rgb(255, 180, 51) 30%, rgb(245, 212, 154) 67%, rgb(255, 180, 51) 100%);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #000;
  font-family: 'Inter', sans-serif;
  transition: filter 0.2s;
}

.modal-submit:hover span {
  filter: brightness(1.08);
}

/* ===== HAMBURGER & MOBILE NAV ===== */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.navbar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar-toggle--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle--open span:nth-child(2) { opacity: 0; }
.navbar-toggle--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 64px;
  z-index: 90;
  background: #000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-nav--open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.mobile-nav-link {
  font-size: 22px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 10px 0;
  transition: color 0.2s;
}

.mobile-nav-link:hover { color: rgb(255,180,51); }

.mobile-nav-btn {
  margin-top: 16px;
}

.mobile-nav-btn span {
  padding: 14px 40px;
  font-size: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  /* Navbar */
  .navbar-links,
  .navbar-cta { display: none; }
  .navbar-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .navbar-wrapper { padding: 14px 20px; }

  /* Sections padding */
  .message-section,
  .what-section,
  .results-section,
  .testimonials-section { padding: 72px 20px; }
  .contact-section { padding: 40px 20px 72px; }

  /* Hero */
  .hero-content { padding: 60px 20px; gap: 20px; }
  .hero-subtitle { max-width: 100%; font-size: 15px; }

  /* Message section */
  .message-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .message-image {
    aspect-ratio: 3 / 4;
    max-width: 100%;
    width: 100%;
  }
  .message-content { align-items: center; text-align: center; }
  .message-body { width: 100%; }

  /* Pilares cards */
  .what-cards {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .what-subtitle { max-width: 100%; }
  .what-cards-wrap { border-radius: 24px; }

  /* Results bento grid */
  .results-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }
  .rcard-ticker { grid-column: 1; grid-row: auto; }
  .rcard-img:nth-child(2),
  .rcard-img:nth-child(3),
  .rcard-img:nth-child(4),
  .rcard-img:nth-child(5),
  .rcard-img:nth-child(6),
  .rcard-img:nth-child(7),
  .rcard-img:nth-child(8) {
    grid-column: 1;
    grid-row: auto;
    height: 280px;
  }
  .ticker-cols-row { padding: 12px; }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-inner { padding: 60px 24px; border-radius: 16px; }
  .contact-subtitle { font-size: 15px; }
  .contact-btn { font-size: 15px; padding: 13px 24px; text-align: center; }

  /* Modal */
  .modal-box { padding: 40px 24px 32px; }

  /* What section title */
  .what-inner { gap: 40px; }
}
