:root {
  --bg-color: #fbfbfd;
  --text-primary: #1d1d1f;
  --text-secondary: #86868b;
  --accent-color: #0071e3;
  --accent-hover: #0077ed;
  --surface-color: rgba(255, 255, 255, 0.7);
  --border-color: #d2d2d7;
  --font-family:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.05), 0 2px 8px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
}

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

html {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  padding-top: 64px;
  background: var(--bg-color);
  overflow-x: hidden;
}

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

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

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes floatAlt {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(50, 215, 75, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(50, 215, 75, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(50, 215, 75, 0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Typography & Badges */
.tag,
.content-type,
.step-number,
.content-pack-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 113, 227, 0.08);
  color: var(--accent-color);
  border-radius: 980px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 113, 227, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.trust-bullets {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-bullets span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-bullets svg {
  color: #32d74b;
}

.section-heading {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.section-subhead {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 60px;
  line-height: 1.5;
}

.scarcity-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 16px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ff3b30;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 500;
  border-radius: 980px;
  padding: 14px 28px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  letter-spacing: -0.01em;
}

.button:active {
  transform: translateY(2px) scale(0.98) !important;
}

.button-small {
  font-size: 14px;
  padding: 8px 16px;
}

.button-primary {
  background-color: var(--accent-color);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 113, 227, 0.3);
}

.button-primary:hover {
  background-color: var(--accent-hover);
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 113, 227, 0.4);
}

.button-secondary {
  background-color: rgba(0, 0, 0, 0.03);
  color: var(--text-primary);
  border: 1px solid transparent;
}

.button-secondary:hover {
  background-color: rgba(0, 0, 0, 0.06);
  transform: scale(1.02);
}

/* Navigation */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background-color: rgba(251, 251, 253, 0.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 100;
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Layout Container */
.layout-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 40px;
}

/* Hero Section */
.hero-section {
  padding: 140px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-heading {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 24px;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subhead {
  font-size: 21px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 0 40px;
  line-height: 1.5;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.hero-actions-wrapper {
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-actions-wrapper .trust-bullets {
  justify-content: flex-start;
}

/* Hero Visual Mockups */
.hero-visual {
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.visual-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}

.visual-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(0, 113, 227, 0.15) 0%,
    rgba(251, 251, 253, 0) 70%
  );
  z-index: 0;
  filter: blur(60px);
}

.whatsapp-mock {
  width: 330px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 2;
  position: relative;
  right: -40px;
  transform: translateY(-20px);
  animation: float 6s ease-in-out infinite;
  box-shadow:
    inset 0 0 0 8px rgba(240, 240, 240, 0.5),
    var(--shadow-lg);
}

.chat-header {
  background: rgba(246, 246, 246, 0.9);
  padding: 24px 20px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

.avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.name {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.status {
  font-size: 12px;
  color: var(--text-secondary);
}

.chat-body {
  padding: 20px 16px 32px;
  background: transparent;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.message {
  padding: 12px 16px;
  border-radius: 20px;
  font-size: 14px;
  max-width: 95%;
  line-height: 1.45;
  box-shadow: var(--shadow-sm);
}

.message.out {
  background: #e1fbc5;
  align-self: flex-end;
  border-bottom-right-radius: 6px;
  color: #112f00;
}

.message.in {
  background: #ffffff;
  align-self: flex-start;
  border-bottom-left-radius: 6px;
}

.dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--text-secondary);
  border-radius: 50%;
  margin-right: 4px;
  animation: typing 1.4s infinite ease-in-out both;
}
.dot:nth-child(1) {
  animation-delay: -0.32s;
}
.dot:nth-child(2) {
  animation-delay: -0.16s;
}
.dot:last-child {
  margin-right: 0;
}
@keyframes typing {
  0%,
  80%,
  100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.output-mock {
  width: 370px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 1;
  position: relative;
  left: -20px;
  animation: floatAlt 7s ease-in-out infinite;
}

.content-pack-label {
  margin-bottom: 24px;
  text-align: center;
  color: #32d74b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.content-pack-label::before,
.content-pack-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(50, 215, 75, 0),
    rgba(50, 215, 75, 0.3) 50%,
    rgba(50, 215, 75, 0)
  );
  margin: 0 12px;
}

.mock-post {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.pack-deliverables {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
  z-index: 10;
}

.del-badge {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

.post-header {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e5e5ea, #f5f5f7);
}

.post-username {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.post-image {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%),
    url("./assets/demo-house.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  aspect-ratio: 4/5;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.4);
}

.post-image h2 {
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin-top: 16px;
}

.post-caption-box {
  padding: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

/* Steps Section — Compact Horizontal */
.section-intro {
  text-align: center;
}

.steps-section-compact {
  padding-top: 100px;
  padding-bottom: 100px;
}

.steps-horizontal {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1040px;
  margin: 60px auto 0;
}

/* Prevent Chrome Translate <font> injection from breaking flex/grid layouts */
.steps-horizontal > font,
.testimonial-grid > font,
.gallery-grid > font {
  display: contents;
}

.step-card {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(0, 113, 227, 0.06);
  border: 1px solid rgba(0, 113, 227, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.5;
}

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 20px;
  flex-shrink: 0;
}

/* Gallery / Content Feel */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.gallery-item {
  border-radius: 36px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 400px;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.gallery-item.hook {
  background: linear-gradient(145deg, #fffcf2 0%, #fff6dd 100%);
}
.gallery-item.carousel {
  background: linear-gradient(145deg, #f2f7fd 0%, #e1eefa 100%);
}
.gallery-item.story {
  background: linear-gradient(145deg, #faf2fa 0%, #f3e1f3 100%);
}

.gallery-item blockquote {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 20px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sub-quote {
  font-size: 15px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0;
}

/* FAQ Section */
.faq-section {
  background: var(--bg-color);
  padding: 100px 40px;
}
.faq-content {
  max-width: 1040px;
  margin: 0 auto;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.faq-item {
  padding: 32px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.2s;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.faq-icon {
  font-size: 24px;
  margin-bottom: 20px;
  display: inline-flex;
  background: #f1f1f3;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.faq-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.faq-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.faq-grid-2col {
  grid-template-columns: repeat(2, 1fr);
}

/* Testimonials */
.testimonials-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #004fb3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-info strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.testimonial-info span {
  font-size: 13px;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* Closing CTA */
.cta-section {
  text-align: center;
  padding: 120px 40px 160px;
  background: linear-gradient(180deg, var(--bg-color) 0%, #ffffff 100%);
}

.cta-content {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-section .hero-actions-wrapper {
  margin-top: 24px;
}
.cta-section .scarcity-text {
  justify-content: center;
  margin-top: 24px;
}

/* Footer */
.footer {
  padding: 40px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  color: #86868b;
  font-size: 13px;
  font-weight: 500;
}

.footer-link:hover {
  color: var(--text-primary);
}

/* Responsive Scaling */
@media (max-width: 1024px) {
  .hero-split-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 80px;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-actions-wrapper .trust-bullets {
    justify-content: center;
  }
  .hero-heading {
    font-size: 72px;
  }
  .whatsapp-mock {
    transform: translateY(0);
    margin-bottom: -60px;
    z-index: 2;
    animation: none;
    right: 0;
    left: -20%;
  }
  .output-mock {
    animation: none;
    left: 0;
    right: -20%;
  }
  .visual-container {
    width: 100%;
    margin: 0 auto;
    max-width: 600px;
  }
}

@media (max-width: 900px) {
  .hero-heading {
    font-size: 56px;
  }
  .steps-horizontal {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .step-arrow {
    transform: rotate(90deg);
    padding-top: 0;
  }
  .step-card {
    max-width: 360px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid,
  .faq-grid-2col {
    grid-template-columns: 1fr;
  }
  .section-heading {
    font-size: 44px;
  }
  .layout-container {
    padding: 100px 32px;
  }
  .hero-section {
    padding: 120px 32px 60px;
  }
}

@media (max-width: 600px) {
  .hero-heading {
    font-size: 42px;
  }
  .section-heading {
    font-size: 36px;
  }
  .button {
    width: 100%;
    justify-content: center;
  }
  .whatsapp-mock {
    left: 0;
    margin-bottom: 20px;
    width: 100%;
    right: auto;
    margin-right: 0;
  }
  .output-mock {
    left: 0;
    width: 100%;
    padding: 24px;
    right: auto;
    margin-right: 0;
  }
  .visual-container {
    flex-direction: column;
    padding: 0 16px;
  }
  .trust-bullets {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
