/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.hero-content { z-index: 2; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  font-size: 0.8rem;
  color: var(--tropical-teal);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease both;
}
.hero-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--tropical-teal);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.15s ease both;
}
.hero h1 .highlight {
  font-weight: 600;
  background: linear-gradient(135deg, var(--vivid-pink), var(--hot-orange), #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(240, 230, 255, 0.65);
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  animation: fadeInUp 0.8s 0.45s ease both;
}

/* Hero Visual — Palm Tree + Hummingbird */
.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 1s 0.3s ease both;
}
.palm-tree {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 280px;
  height: 480px;
}
.palm-trunk {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 300px;
  background: linear-gradient(180deg, rgba(0, 245, 212, 0.3) 0%, rgba(0, 245, 212, 0.08) 100%);
  border-radius: 20px 20px 8px 8px;
}
.palm-trunk::before {
  content: '';
  position: absolute;
  top: 0; left: -3px; right: -3px; bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 18px,
    rgba(0, 245, 212, 0.15) 18px,
    rgba(0, 245, 212, 0.15) 20px
  );
  border-radius: inherit;
}
.frond {
  position: absolute;
  width: 140px;
  height: 4px;
  border-radius: 0 50px 50px 0;
  top: 130px;
  left: 50%;
  transform-origin: left center;
}
.frond::before {
  content: '';
  position: absolute;
  top: -12px; left: 20px; right: 0; bottom: -12px;
  border-radius: 0 40px 40px 0;
  background: inherit;
  opacity: 0.4;
}
.frond:nth-child(2) { background: linear-gradient(90deg, rgba(0,245,212,0.5), transparent); transform: rotate(-25deg); }
.frond:nth-child(3) { background: linear-gradient(90deg, rgba(0,245,212,0.4), transparent); transform: rotate(-50deg); }
.frond:nth-child(4) { background: linear-gradient(90deg, rgba(0,245,212,0.5), transparent); transform: rotate(10deg); }
.frond:nth-child(5) { background: linear-gradient(90deg, rgba(0,245,212,0.35), transparent); transform: rotate(40deg); width: 120px; }
.frond:nth-child(6) { background: linear-gradient(90deg, rgba(0,245,212,0.45), transparent); transform: rotate(-75deg); width: 110px; }
.frond:nth-child(7) { background: linear-gradient(90deg, rgba(0,245,212,0.3), transparent); transform: scaleX(-1) rotate(-30deg); left: auto; right: 50%; transform-origin: right center; }
.frond:nth-child(8) { background: linear-gradient(90deg, rgba(0,245,212,0.4), transparent); transform: scaleX(-1) rotate(-55deg); left: auto; right: 50%; transform-origin: right center; width: 120px; }
.frond:nth-child(9) { background: linear-gradient(90deg, rgba(0,245,212,0.35), transparent); transform: scaleX(-1) rotate(5deg); left: auto; right: 50%; transform-origin: right center; }
.hero-bird {
  position: absolute;
  top: 80px;
  right: 0%;
  width: 120px;
  animation: hoverFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255, 59, 142, 0.4)) drop-shadow(0 0 40px rgba(180, 70, 255, 0.3));
  z-index: 3;
}
.light-trail {
  position: absolute;
  top: 120px;
  right: 8%;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 59, 142, 0.4), rgba(255, 159, 28, 0.3), transparent);
  border-radius: 2px;
  animation: hoverFloat 3s ease-in-out infinite;
  filter: blur(2px);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.orb-1 {
  width: 300px; height: 300px;
  background: rgba(255, 59, 142, 0.12);
  top: 10%; right: -5%;
}
.orb-2 {
  width: 200px; height: 200px;
  background: rgba(0, 245, 212, 0.08);
  bottom: 20%; right: 15%;
}

/* ===== SOCIAL PROOF BAR ===== */
.proof-bar {
  padding: 2rem 2.5rem;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(26, 11, 46, 0.5);
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(240, 230, 255, 0.45);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.proof-icon {
  font-size: 1.1rem;
}

/* ===== ALTITUDE SECTION (homepage) ===== */
.altitude {
  padding: 7rem 2.5rem;
  position: relative;
}
.altitude-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tier-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.tier-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.tier-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
}
.tier-card:nth-child(1)::before { background: linear-gradient(90deg, var(--tropical-teal), rgba(0, 245, 212, 0.3)); }
.tier-card:nth-child(2)::before { background: linear-gradient(90deg, var(--vivid-pink), rgba(255, 59, 142, 0.3)); }
.tier-card:nth-child(3)::before { background: linear-gradient(90deg, var(--hot-orange), rgba(255, 159, 28, 0.3)); }
.tier-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.tier-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tier-card:nth-child(1) .tier-icon { background: rgba(0, 245, 212, 0.12); }
.tier-card:nth-child(2) .tier-icon { background: rgba(255, 59, 142, 0.12); }
.tier-card:nth-child(3) .tier-icon { background: rgba(255, 159, 28, 0.12); }
.tier-name {
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
}
.tier-card:nth-child(1) .tier-name { color: var(--tropical-teal); }
.tier-card:nth-child(2) .tier-name { color: var(--vivid-pink); }
.tier-card:nth-child(3) .tier-name { color: var(--hot-orange); }
.tier-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #fff;
}
.tier-vibe {
  font-style: italic;
  color: rgba(240, 230, 255, 0.45);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}
.tier-desc {
  font-size: 0.95rem;
  color: rgba(240, 230, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.tier-features {
  list-style: none;
  padding: 0;
}
.tier-features li {
  font-size: 0.85rem;
  color: rgba(240, 230, 255, 0.55);
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.tier-features li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  opacity: 0.4;
}

/* ===== WHY SECTION ===== */
.why-section {
  padding: 7rem 2.5rem;
  position: relative;
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  gap: 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}
.why-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.why-card:nth-child(1) .why-card-icon { background: rgba(255, 59, 142, 0.1); }
.why-card:nth-child(2) .why-card-icon { background: rgba(0, 245, 212, 0.1); }
.why-card:nth-child(3) .why-card-icon { background: rgba(255, 159, 28, 0.1); }
.why-card:nth-child(4) .why-card-icon { background: rgba(180, 70, 255, 0.1); }
.why-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: #fff;
}
.why-card p {
  font-size: 0.9rem;
  color: rgba(240, 230, 255, 0.55);
  line-height: 1.7;
}

/* ===== DUTCH-BRAZILIAN SECTION ===== */
.duality-section {
  padding: 7rem 2.5rem;
  position: relative;
}
.duality-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.duality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 3rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}
.duality-col {
  padding: 3rem;
  position: relative;
}
.duality-col:first-child {
  background: rgba(255, 159, 28, 0.04);
  border-right: 1px solid var(--glass-border);
}
.duality-col:last-child {
  background: rgba(0, 245, 212, 0.04);
}
.duality-flag {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.duality-col h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #fff;
}
.duality-col ul {
  list-style: none;
  padding: 0;
}
.duality-col ul li {
  font-size: 0.9rem;
  color: rgba(240, 230, 255, 0.6);
  padding: 0.5rem 0;
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.duality-col:first-child ul li::before {
  content: '\25AA';
  position: absolute;
  left: 0;
  color: var(--hot-orange);
  opacity: 0.6;
}
.duality-col:last-child ul li::before {
  content: '\25AA';
  position: absolute;
  left: 0;
  color: var(--tropical-teal);
  opacity: 0.6;
}

/* ===== ABOUT / MEET SECTION (homepage) ===== */
.about-section {
  padding: 7rem 2.5rem;
  position: relative;
}
.about-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: var(--deep-purple);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 0.8rem 1.2rem;
  font-size: 0.8rem;
  color: var(--tropical-teal);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.about-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.about-text h2 span {
  background: linear-gradient(135deg, var(--vivid-pink), var(--hot-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-text p {
  font-size: 1rem;
  color: rgba(240, 230, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.about-quote {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(240, 230, 255, 0.5);
  border-left: 3px solid var(--vivid-pink);
  padding-left: 1.2rem;
  margin-top: 2rem;
}

/* ===== HOME RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3.2rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .tiers-grid { grid-template-columns: 1fr; max-width: 500px; }
  .why-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { max-width: 300px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .hero { padding: 7rem 1.5rem 3rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 1rem; }
  .altitude, .why-section, .duality-section, .about-section { padding: 4rem 1.5rem; }
  .duality-grid { grid-template-columns: 1fr; }
  .duality-col:first-child { border-right: none; border-bottom: 1px solid var(--glass-border); }
}
