/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
  background-color: var(--zinc-50);
}

@media (max-width: 1023px) {
  .hero { padding-top: 8rem; }
}

@media (max-width: 640px) {
  .hero { padding-top: 7rem; }
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
  animation-delay: 0.3s;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  mix-blend-mode: multiply;
  opacity: 0;
}

.hero-blob-1 {
  top: 0; left: 0;
  width: 500px; height: 500px;
  background-color: rgba(167, 243, 208, 0.3);
  animation: blob 7s infinite, fadeInBlob 1.5s ease forwards;
  animation-delay: 0s, 0s;
}

.hero-blob-2 {
  bottom: 0; right: 0;
  width: 600px; height: 600px;
  background-color: rgba(153, 246, 228, 0.3);
  animation: blob 7s infinite, fadeInBlob 1.5s ease forwards;
  animation-delay: 2s, 0.2s;
}

.hero-container { position: relative; z-index: 10; width: 100%; }

.famous-owners {
  padding: 5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.hero-left { display: flex; flex-direction: column; align-items: flex-start; }

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--zinc-900);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
  animation-delay: 0.2s;
}

@media (min-width: 640px) { .hero-title { font-size: 3.5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }
@media (max-width: 640px) { .hero-title { font-size: 2.5rem; } }

.hero-title .text-gradient {
  background: linear-gradient(to right, var(--emerald-600), var(--teal-500), var(--emerald-600));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 4s ease infinite;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--zinc-600);
  margin-bottom: 2rem;
  max-width: 36rem;
  line-height: 1.75;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
  animation-delay: 0.45s;
}

@media (min-width: 640px) { .hero-subtitle { font-size: 1.125rem; } }
@media (max-width: 640px) { .hero-subtitle { font-size: 0.9375rem; } }
.hero-subtitle strong { color: var(--emerald-600); font-weight: 700; }

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
  animation-delay: 0.7s;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--zinc-700);
  font-weight: 500;
  opacity: 0;
  font-size: 0.875rem;
}

.benefit-item:nth-child(1) { animation: fadeInLeft 0.5s ease forwards; animation-delay: 0.85s; }
.benefit-item:nth-child(2) { animation: fadeInLeft 0.5s ease forwards; animation-delay: 1s; }
.benefit-item:nth-child(3) { animation: fadeInLeft 0.5s ease forwards; animation-delay: 1.15s; }

.benefit-icon {
  color: var(--emerald-500);
  font-size: 1.25rem;
  flex-shrink: 0;
  animation: iconPop 0.4s ease forwards;
  animation-delay: inherit;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
  animation-delay: 1.4s;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; width: auto; }
}

.hero-right {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeInScale 1s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
  animation-delay: 0.5s;
}

@media (min-width: 640px) { .hero-right { height: 500px; } }
@media (max-width: 1023px) { .hero-right { margin-top: 2rem; margin-bottom: 3rem; } }
@media (min-width: 1024px) { .hero-right { height: 600px; justify-content: flex-end; } }

.hero-image-blob {
  position: absolute;
  inset: 0;
  filter: blur(64px);
  opacity: 0;
  border-radius: 50%;
  transform: scale(0.9);
  background: linear-gradient(to bottom right, var(--emerald-600), var(--teal-500));
  animation: fadeInBlob 1.5s ease forwards, blobPulse 4s ease infinite;
  animation-delay: 0.3s, 1.8s;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 24rem;
  aspect-ratio: 4 / 5;
  border-radius: 2.5rem;
  padding: 0.375rem;
  overflow: visible;
  animation: none;
}

@media (min-width: 640px) { .hero-image-wrapper { max-width: 28rem; } }

.hero-image-border {
  position: absolute;
  inset: 0;
  border-radius: 2.5rem;
  opacity: 0.5;
  background: linear-gradient(to bottom right, var(--emerald-600), var(--teal-500));
  animation: borderGlow 3s ease infinite;
}

.hero-image-container {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 2.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  background-color: var(--zinc-900);
  border: 4px solid white;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  transition: transform 0.7s cubic-bezier(0.2, 0.9, 0.3, 1);
}


@media (prefers-reduced-motion: reduce) {
  .hero-title, .hero-subtitle, .hero-benefits, .benefit-item,
  .hero-buttons, .hero-right, .hero-image-blob, .hero-image-wrapper {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero-title .text-gradient { animation: none; }
}

/* ===== MARQUEE ===== */
.marquee-section {
  padding: 3rem 0;
  background-color: white;
  border-top: 1px solid var(--zinc-100);
  border-bottom: 1px solid var(--zinc-100);
  overflow: hidden;
  position: relative;
}

.marquee-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 6rem;
  z-index: 10;
  pointer-events: none;
}

.marquee-fade-left { left: 0; background: linear-gradient(to right, white, transparent); }
.marquee-fade-right { right: 0; background: linear-gradient(to left, white, transparent); }
.marquee-container { overflow: hidden; }

.marquee-content {
  display: flex;
  gap: 4rem;
  padding: 0 2rem;
  align-items: center;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-section:hover .marquee-content { animation-play-state: paused; }

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--zinc-400);
  text-transform: uppercase;
  letter-spacing: -0.025em;
  transition: color 0.15s;
  cursor: default;
}

@media (min-width: 1024px) { .marquee-item { font-size: 1.5rem; } }
.marquee-item:hover { color: var(--emerald-600); }
.marquee-item i { opacity: 0.5; }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 8rem 0;
  background-color: var(--zinc-50);
  position: relative;
  overflow: hidden;
}

.steps-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
}

@media (min-width: 768px) {
  .steps-container { grid-template-columns: repeat(3, 1fr); }
}

.steps-line {
  display: none;
  position: absolute;
  top: 3rem;
  left: 16%;
  right: 16%;
  height: 2px;
  border-top: 2px dashed var(--emerald-200);
  z-index: 0;
}

@media (min-width: 768px) { .steps-line { display: block; } }

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 10;
  position: relative;
}

.step-icon-wrapper {
  width: 6rem;
  height: 6rem;
  border-radius: 1rem;
  background-color: white;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--zinc-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  transition: transform 0.3s;
}

.step-item:hover .step-icon-wrapper { transform: translateY(-0.5rem); }
.step-icon { font-size: 2rem; color: var(--emerald-600); }

.step-number {
  position: absolute;
  top: -0.75rem; right: -0.75rem;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background-color: var(--emerald-600);
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  box-shadow: var(--shadow-md);
}

.step-title { font-size: 1.5rem; font-weight: 700; color: var(--zinc-900); margin-bottom: 1rem; }
.step-desc { color: var(--zinc-600); line-height: 1.75; max-width: 24rem; }

/* ===== FAQ (HOME PAGE) ===== */
.faq { padding: 2rem 0 5rem; background-color: var(--zinc-50); }
.faq-container { max-width: 56rem; }

.faq-list { display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--zinc-200);
  transition: border-color 0.3s;
}

.faq-item:hover { border-color: var(--emerald-100); }
.faq-item-open { border-color: var(--emerald-200); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-question-text {
  font-size: 1.125rem;
  font-weight: 700;
  padding-right: 2rem;
  transition: color 0.3s;
  color: var(--zinc-900);
}

.faq-item-open .faq-question-text { color: var(--emerald-700); }

.faq-icon {
  width: 2rem; height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--zinc-100);
  color: var(--zinc-600);
  transition: all 0.3s;
  flex-shrink: 0;
}

.faq-item-open .faq-icon {
  background-color: var(--emerald-100);
  color: var(--emerald-600);
  transform: rotate(180deg);
}

.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-open .faq-answer-wrapper { grid-template-rows: 1fr; }
.faq-answer { overflow: hidden; }

.faq-answer-content {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  color: var(--zinc-600);
  line-height: 1.75;
  border-top: 1px solid var(--zinc-100);
}

.faq-more-link { text-align: center; margin-top: 2.5rem; }

/* ===== CTA ===== */
.cta {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, var(--emerald-600), var(--teal-500));
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 24px 24px;
}

.cta-container { max-width: 56rem; position: relative; z-index: 10; text-align: center; }
.cta-icon { font-size: 4rem; color: white; margin-bottom: 2rem; opacity: 0.8; }
.cta-title { font-size: 2.25rem; font-weight: 800; color: white; margin-bottom: 1.5rem; letter-spacing: -0.025em; }
@media (min-width: 768px) { .cta-title { font-size: 3.75rem; } }
.cta-subtitle { font-size: 1.25rem; color: var(--emerald-50); margin-bottom: 2.5rem; max-width: 42rem; margin-left: auto; margin-right: auto; }

.cta-form { display: flex; flex-direction: column; gap: 0.75rem; max-width: 36rem; margin: 0 auto; }
@media (min-width: 640px) { .cta-form { flex-direction: row; } }
.cta-input-wrapper { position: relative; flex-grow: 1; }
.cta-input-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--zinc-400); }
.cta-input {
  width: 100%; padding: 1rem 1rem 1rem 2.75rem;
  border-radius: 0.75rem; font-size: 1.125rem;
  background-color: white; border: 2px solid transparent; outline: none;
  transition: all 0.2s; box-shadow: var(--shadow-xl);
}
.cta-input:focus { border-color: white; box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3); }
.cta-button {
  padding: 1rem 2rem; border-radius: 0.75rem; background-color: var(--zinc-900);
  color: white; font-weight: 700; font-size: 1.125rem; border: none; cursor: pointer;
  box-shadow: var(--shadow-xl); display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; transition: background-color 0.2s; white-space: nowrap;
}
.cta-button:hover { background-color: var(--zinc-800); }
.cta-button i { transition: transform 0.2s; }
.cta-button:hover i { transform: translateX(0.25rem); }
.cta-privacy { color: var(--emerald-100); font-size: 0.875rem; margin-top: 1.5rem; }

/* ===== PROBLEM & SOLUTION ===== */
.problem-solution {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}



.ps-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .ps-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ps-content { text-align: center; }
}

@media (min-width: 1025px) {
  .ps-content { text-align: left; }
}

.ps-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}



.ps-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 576px;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-2xl);
  object-fit: contain;
  transition: transform 0.5s ease;
}

.ps-image:hover { transform: scale(1.03) rotate(1deg); }
.ps-title {
  font-size: 2.25rem; 
  font-weight: 800; 
  line-height: 1.2; 
  margin-bottom: 2rem;
  background: linear-gradient(to right, var(--emerald-700), var(--teal-500), var(--emerald-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (min-width: 1024px) { .ps-title { font-size: 3rem; } }
.ps-text { font-size: 1.125rem; line-height: 1.85; color: var(--zinc-600); }

/* ===== THREE PILLARS ===== */
.three-pillars { padding: 5rem 0; background: var(--zinc-50); }

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}

.pillar-card {
  background: var(--zinc-50);
  border: 1px solid var(--zinc-200);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.pillar-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  border-color: var(--emerald-200);
}

.pillar-icon { display: flex; line-height: 0; }
.pillar-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--zinc-900); }
.pillar-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; flex: 1; }
.pillar-card ul li {
  font-size: 0.9rem;
  color: var(--zinc-600);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.pillar-card ul li::before { content: '•'; position: absolute; left: 0; color: var(--emerald-500); font-weight: 700; }
.pillar-card .btn { margin-top: auto; padding: 0.75rem 1.25rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; text-align: center; }

/* ===== SECURITY ILLUSION ===== */
.security-illusion {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--zinc-900) 0%, var(--zinc-800) 100%);
  color: white;
  position: relative;
}

.si-header { text-align: center; margin-bottom: 3rem; }
.si-main-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; color: white; }
@media (min-width: 1024px) { .si-main-title { font-size: 3rem; } }
.si-subtitle { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 40rem; margin: 0 auto; line-height: 1.7; }
.si-toggle-wrapper { display: flex; justify-content: center; margin-bottom: 3rem; }
.si-toggle {
  display: flex;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9999px;
  padding: 0.375rem;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.si-toggle-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.si-toggle-btn.active {
  background: linear-gradient(to right, var(--emerald-600), var(--teal-500));
  color: white;
  box-shadow: 0 4px 15px rgba(5,150,105,0.4);
}

.si-panel { display: none; max-width: 56rem; margin: 0 auto; animation: fadeInUp 0.4s ease; }
.si-panel.active { display: block; }
.si-panel-intro { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; line-height: 1.7; }
.si-facts { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }

.si-fact {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.si-fact-icon { flex-shrink: 0; line-height: 0; display: flex; }
.si-fact-text { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.65; }
.si-fact-text strong { color: white; display: block; margin-bottom: 0.2rem; }
.si-conclusion {
  text-align: center; margin: 2.5rem auto; max-width: 40rem;
  font-size: 1.125rem; font-weight: 600; color: var(--emerald-400); font-style: italic;
}
.si-cta-row { text-align: center; }

/* ===== TRUST FOUNDATION ===== */
.trust-foundation { padding: 5rem 0; }
.tf-inner { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .tf-inner { grid-template-columns: 1fr 1fr; } }

.tf-portraits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.tf-portrait {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.3s;
}

.tf-portrait-1 { transform: rotate(-3deg);  }
.tf-portrait-2 { transform: translateY(-1rem);}
.tf-portrait-3 { transform: rotate(3deg);}
.tf-portrait-1:hover { transform: rotate(-3deg) scale(1.04); }
.tf-portrait-2:hover { transform: translateY(-1rem) scale(1.04); }
.tf-portrait-3:hover { transform: rotate(3deg) scale(1.04); }
.tf-portrait-img { width: 100%; height: 100%; object-fit: cover; object-position: top; position: absolute; inset: 0; }
.tf-portrait-label { position: absolute; bottom: 0; left: 0; right: 0; font-size: 0.7rem; color: white; font-weight: 600; text-align: center; padding: 0.5rem; line-height: 1.3; background: linear-gradient(to top, rgba(0,0,0,0.65), transparent); z-index: 1; }

.tf-content { display: flex; flex-direction: column; gap: 1.5rem; }
.tf-overtitle { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--emerald-600); }
.tf-title { font-size: 2rem; font-weight: 800; color: var(--zinc-900); line-height: 1.2; }
@media (min-width: 1024px) { .tf-title { font-size: 2.5rem; } }
.tf-text { font-size: 1rem; color: var(--zinc-600); line-height: 1.8; }

/* ===== FOOTER CTA ===== */
.footer-cta {
  padding: 6rem 0;
  background-color: var(--zinc-900);
  text-align: center;
  position: relative;
  overflow: hidden;
}



.footer-cta-inner { position: relative; z-index: 1; }
.footer-cta-text { font-size: 1.25rem; color: rgba(255,255,255,0.65); max-width: 48rem; margin: 0 auto 2.5rem; line-height: 1.85; }
.footer-cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}
@media (min-width: 1024px) { .footer-cta-title { font-size: 3.5rem; } }
