* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: 220 90% 45%;
  --primary-foreground: 0 0% 100%;
  --secondary: 220 20% 96%;
  --accent: 38 95% 55%;
  --accent-foreground: 0 0% 100%;
  --foreground: 220 30% 20%;
  --background: 0 0% 100%;
  --muted-foreground: 220 15% 45%;
  --border: 220 20% 90%;
}

body {
  font-family: "Outfit", sans-serif;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Prevent fixed header overlapping anchor links */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: hsl(var(--background) / 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon img {
  width: 32px;
  height: 32px;
  background: hsl(var(--primary));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-foreground));
  font-weight: bold;
  font-size: 1.125rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: bold;
}

.nav-links {
  display: none;
  gap: 2rem;
}

.nav-links button {
  background: none;
  border: none;
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: color 0.3s;
  font-family: inherit;
  font-size: 1rem;
}

.nav-links button:hover {
  color: hsl(var(--primary));
}

.btn {
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  border: none;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-accent {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.btn-accent:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-outline {
  background: hsl(var(--muted-foreground) / 0.1);
  border: 2px solid hsl(var(--border));
  color: hsl(var(--foreground));
}

.btn-outline:hover {
  background: hsl(var(--secondary));
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid hsl(var(--border));
  /* margin-top: 1rem; */
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu button {
  border: none;
  color: hsl(var(--foreground));
  cursor: pointer;
  padding: 0.5rem;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
}
.transparent {
  background: transparent !important;
}
.mobile-menu button:hover {
  color: hsl(var(--primary));
}

/* Hero Section */
.hero {
  padding: 7rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 100% 0%,
      hsl(var(--primary) / 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 0% 100%,
      hsl(var(--accent) / 0.1) 0%,
      transparent 50%
    );
}

.hero-content {
  display: grid;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.badge-hero {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid hsl(var(--primary) / 0.2);
}

.hero-text h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-text h1 .highlight {
  color: hsl(var(--primary));
}

.hero-text p {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
}

.avatars {
  display: flex;
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid hsl(var(--background));
  margin-left: -0.75rem;
}
.avatar:first-child {
  margin-left: 0;
}

.avatar-count {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsl(var(--secondary));
  border: 2px solid hsl(var(--background));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  margin-left: -0.75rem;
  z-index: 1;
}

.trust-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.hero-image {
  position: relative;
  perspective: 1000px;
}

.hero-image-glow {
  position: absolute;
  inset: -2rem;
  background: radial-gradient(
    circle,
    hsl(var(--primary) / 0.3) 0%,
    transparent 70%
  );
  border-radius: 9999px;
  filter: blur(60px);
  z-index: -1;
}

.mockup-container {
  position: relative;
  transform: rotateY(-5deg) rotateX(5deg);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.mockup-container:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.mockup-img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid hsl(var(--border));
}

.floating-card {
  position: absolute;
  background: hsl(var(--background) / 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

.metric-card {
  bottom: -2rem;
  left: -2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.metric-icon {
  font-size: 2rem;
  background: hsl(var(--secondary));
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
}

.metric-value {
  font-size: 1.25rem;
  font-weight: bold;
  color: hsl(var(--primary));
}

.metric-label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* Marquee Section */
.marquee-section {
  padding: 2rem 0;
  background: hsl(var(--secondary) / 0.5);
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
  overflow: hidden;
}

.marquee-title {
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  width: 100vw;
  margin-left: calc(-50vw + 50%); /* Full width bleed */
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  padding-left: 3rem;
}

.marquee-item {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  opacity: 0.7;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Section */
section {
  padding: 3rem 0;
}

.section-alt {
  background: hsl(var(--secondary) / 0.3);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.section-header p {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto;
}

/* Grid & Bento */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(
      4,
      1fr
    ); /* Switched to 4 columns to balance standard boxes */
    grid-template-rows: repeat(2, minmax(280px, auto));
  }
}

.bento-card {
  position: relative;
  background: hsl(var(--background));
  border-radius: 1.5rem;
  padding: 2.5rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
  z-index: 1;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.bento-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.bento-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.1;
  transition: opacity 0.4s ease;
}

.bento-graphic {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid hsl(var(--border) / 0.5);
}

.bento-graphic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.bento-card:hover .bento-graphic img {
  transform: scale(1.05);
}

.bento-card:hover .bento-bg {
  opacity: 0.2;
}

.bg-1 {
  background: radial-gradient(
    circle at bottom right,
    hsl(var(--primary)),
    transparent 60%
  );
}

.bg-2 {
  background: radial-gradient(
    circle at top left,
    hsl(var(--accent)),
    transparent 60%
  );
}

@media (min-width: 768px) {
  .bento-large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    /* display: flex; */
    flex-direction: row; /* Split image and text horizontally on desktop */
    align-items: center;
    gap: 2rem;
  }

  .bento-large .bento-content {
    flex: 1;
  }
  .bento-wide {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
  }
}

.bento-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.bento-large h3 {
  font-size: 2rem;
}

.bento-card p {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: auto; /* Puskes content down if needed */
}

/* Card */
.card {
  background: hsl(var(--background));
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.card:hover {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: hsl(var(--primary));
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.card p {
  color: hsl(var(--muted-foreground));
}

/* Pricing */
.pricing-card {
  border: 2px solid hsl(var(--border));
  position: relative;
}

.pricing-card.popular {
  border-color: hsl(var(--accent));
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  padding-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.price {
  font-size: 2.3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  background: hsl(var(--primary) / 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: hsl(var(--primary));
  margin-top: 0.125rem;
}

/* Timeline Process Section */
.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: hsl(var(--border));
  border-radius: 4px;
}

.timeline-step {
  position: relative;
  background: hsl(var(--background));
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid hsl(var(--border));
  transition: transform 0.3s;
}

.timeline-step:hover {
  transform: translateX(10px);
  border-color: hsl(var(--primary));
}

.timeline-dot {
  position: absolute;
  top: 1.5rem;
  left: -2.85rem; /* center on the line */
  width: 2rem;
  height: 2rem;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 0 0 4px hsl(var(--secondary));
  z-index: 2;
}

.timeline-content {
  display: flex;
  flex-direction: column;
}

.timeline-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.timeline-content p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .timeline-container {
    flex-direction: row;
    align-items: flex-start;
    padding-left: 0;
    padding-top: 2rem;
  }

  .timeline-line {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 4px;
  }

  .timeline-step {
    flex: 1;
    margin-top: 1.5rem;
  }

  .timeline-step:hover {
    transform: translateY(-10px);
    border-color: hsl(var(--primary));
  }

  .timeline-dot {
    top: -2.85rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-content {
    align-items: center;
    text-align: center;
  }
}

/* Testimonials */
.testimonial-card {
  padding: 2.5rem;
}

.quote-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: hsl(var(--primary) / 0.3);
  margin-bottom: 1.5rem;
}

.testimonial-quote {
  font-style: italic;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.testimonial-author {
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
}

.testimonial-author .name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-author .business {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* About */
.about-content {
  max-width: 56rem;
  margin: 0 auto;
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
  text-align: center;
}
.awal {
  font-weight: bold;
}
/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.contact-form {
  background: hsl(var(--background));
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-form-desc {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info .card {
  cursor: pointer;
  margin-bottom: 2rem;
}

.contact-card-content {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon.accent {
  background: hsl(var(--accent) / 0.1);
  color: hsl(var(--accent));
}

.contact-icon.primary {
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.contact-details h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.contact-link {
  color: hsl(var(--primary));
  font-weight: 600;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.cta-card {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  text-align: center;
  margin-bottom: 0 !important;
}

.cta-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cta-card p {
  margin-bottom: 1.5rem;
  color: white;
}

.btn-hero {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}

.btn-hero:hover {
  opacity: 0.9;
}

/* Footer */
footer {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
  background: hsl(var(--primary));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-foreground));
  font-weight: bold;
  font-size: 1.125rem;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: bold;
}

.footer-desc {
  color: hsla(var(--background), 0.7);
  font-size: 0.875rem;
}

.footer-section h3 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
  color: hsla(var(--background), 0.7);
  font-size: 0.875rem;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsla(var(--background), 0.7);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
  font-size: 0.875rem;
}

.footer-contact a:hover {
  color: hsl(var(--background));
}

.footer-bottom {
  border-top: 1px solid hsla(var(--background), 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: hsla(var(--background), 0.6);
}

/* Icons */
.icon {
  width: 1.75rem;
  height: 1.75rem;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

/* Responsive */
@media (min-width: 768px) {
  section {
    padding: 5rem 0;
  }

  .nav-links {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 2.7rem;
  }
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up-hero {
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.card,
.pricing-card,
.process-step,
.testimonial-card,
.bento-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card {
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  border: 2px solid hsl(var(--accent));
  box-shadow: 0 0 30px hsl(var(--accent) / 0.15);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 25px 60px hsl(var(--accent) / 0.2);
}

/* Lead Magnet */
.lead-magnet-card {
  background: linear-gradient(
    135deg,
    hsl(var(--primary)) 0%,
    hsl(var(--primary) / 0.8) 100%
  );
  border-radius: 1.5rem;
  padding: 3rem;
  color: white;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 20px 40px hsl(var(--primary) / 0.3);
  overflow: hidden;
  position: relative;
}

.lead-magnet-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
  transform: rotate(30deg);
  pointer-events: none;
  z-index: 1;
}

.lead-magnet-content,
.lead-magnet-image {
  position: relative;
  z-index: 10;
}

.lead-magnet-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.lead-magnet-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.lead-magnet-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.lead-magnet-form .form-input {
  flex: 1;
  min-width: 200px;
  background: white;
  border: none;
  font-size: 1rem;
}

.privacy-text {
  font-size: 0.875rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 0 !important;
}

.ebook-mockup {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border-radius: 4px 12px 12px 4px;
  box-shadow:
    -15px 15px 30px rgba(0, 0, 0, 0.3),
    inset -5px 0 10px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  margin: 0 auto;
  border-left: 10px solid hsl(var(--accent));
  transform: perspective(800px) rotateY(-15deg);
  transition: transform 0.4s ease;
}

.ebook-mockup:hover {
  transform: perspective(800px) rotateY(0deg);
}

.ebook-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.ebook-badge {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .lead-magnet-card {
    grid-template-columns: 1.5fr 1fr;
    padding: 4rem;
  }
}

/* Blog Section */
.blog-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid hsl(var(--border));
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--accent));
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  text-decoration: none;
  line-height: 1.4;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.blog-title:hover {
  color: hsl(var(--primary));
}

.blog-excerpt {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-readmore {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--primary));
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: gap 0.3s;
  gap: 0.25rem;
}

.blog-readmore:hover {
  gap: 0.5rem;
}
