@import url(../main.css);

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, .5);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid rgba(119, 76, 254, 0.08);
  padding: 14px 0;
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.logo {
  height: 30px;
}

.logo img {
  width: auto;
  height: 100%;
}

.navbar .nav-cta {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  border: 1px solid var(--primary);
  padding: .25em .75em .25em 1.15em;
  border-radius: .5em;

  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.nav-cta svg {
  width: 18px;
  height: 18px;
}

.navbar .nav-cta:hover {
  background-color: var(--primary);
  color: white;
  transition: all 0.3s ease;
}

/* ===== Hero ===== */
.hero {
  padding: 140px 0 32px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(119, 76, 254, 0.06) 0%, transparent 70%);
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px 4px 4px;
  background: oklch(96.9% 0.016 293.756);
  border: 1px solid var(--primary);
  border-radius: 2.5em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: 3.15rem;
  line-height: 1;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero h1 .highlight {
  color: var(--primary);
}

.hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-micro {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-micro svg {
  color: #22c55e;
  flex-shrink: 0;
}

.hero-image {
  position: relative;
  z-index: 2;
  animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-image img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  filter: drop-shadow(0 20px 60px rgba(119, 76, 254, 0.15));
}

/* ===== Trust Bar ===== */
.trust-bar {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid #eee;
}

.trust-bar .container {
  text-align: center;
  max-width: 100%;
}

.trust-rating {
  margin-bottom: 8px !important;
  color: var(--primary) !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .8rem !important;
  font-weight: 600 !important;
  line-height: 1;
}

.trust-bar p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
}

.trust-bar img.splide__slide {
  height: 96px;
  object-fit: contain;
}

.trust-bar .splide__slide {
  opacity: 0.25;
  transition: opacity 0.25s ease;
}

.trust-bar .splide__slide.is-visible {
  opacity: 1;
}

.trust-bar .splide__slide.is-active {
  opacity: 1;
  transform: scale(1.05);
}

/* ===== Section Base ===== */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-header .label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-header .label svg {
  width: 18px;
  height: 18px;
}

.section-header h2 {
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 16px;
  color: var(--text);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ===== Value Props ===== */
.row-2 {
  grid-row: span 2;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 24px;
}

.value-card {
  background: #fefefe;
  border-radius: var(--radius);
  padding: 36px 36px 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.075);
}

.value-card:hover {
  box-shadow: 0 15px 30px #100e221a;
}

.value-card.first-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url('https://i0.wp.com/landing.acadiapos.com/assets/graphics/gradient-dots-pattern.png?ssl=1'), radial-gradient(circle at 80% 10%, rgba(119, 76, 254, 0.15) 0%, transparent 40%), radial-gradient(circle at 10% 70%, rgba(56, 189, 248, 0.12) 0%, transparent 40%);
  background-position: bottom center, top right, bottom left;
  background-size: cover;
  background-repeat: no-repeat;
}

.value-card.first-card ul {
  list-style: none;
}

.value-card.first-card ul li svg {
  width: 16px;
  height: 16px;
}

.value-card.first-card ul li {
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.value-card.first-card ul li:last-child {
  border-bottom: 0;
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(119, 76, 254, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  border: 1px solid #dadaff;
}

.value-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.value-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== Offer ===== */
#offer {
  padding: 32px 0;
}

.offer-box {
  background-color: var(--primary);
  border-radius: 24px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.offer-box::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.offer-content {
  position: relative;
  z-index: 2;
}

.offer-content h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--white);
}

.offer-content p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 24px;
}

.offer-list {
  list-style: none;
  margin-bottom: 32px;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
}

.offer-list svg {
  color: #a5f3fc;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .5em 1.5em;
  background: var(--white);
  color: var(--primary);
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: .5em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.offer-image {
  position: relative;
  z-index: 2;
  text-align: center;
}

.offer-image img {
  width: 72%;
  height: auto;
  border-radius: var(--radius);
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.2));
}

/* ===== Pain Points ===== */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.pain-column {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.pain-column-header {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pain-column-header h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pain-column-header img {
  height: 22px;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: background 0.2s;
}

.pain-item:last-child {
  border-bottom: none;
}

.pain-item:hover {
  background: var(--bg-alt);
}

.pain-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pain-icon svg {
  width: 14px;
  height: 14px;
}

.pain-icon.red {
  background: #fef2f2;
  color: #ef4444;
}

.pain-icon.green {
  background: #f0fdf4;
  color: #16a34a;
}

.pain-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.pain-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0.2;
}

.step-card {
  text-align: center;
  padding: 40px 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}


/* ===== Review Section ===== */
.review-section {
  background-image: url('https://i0.wp.com/landing.acadiapos.com/assets/landing-1/review.jpg?ssl=1');
  background-size: cover;
  background-position: top right;
  padding: 120px 0;
}

.review-section .stars {
  color: white;
  margin-bottom: 24px;
}

.review-section p.review {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  width: 72%;
  color: white;
  line-height: 1.25;
  margin-bottom: 40px;
}

.review-section .micro {
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, .85);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.review-section .micro span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.review-section .micro svg {
  width: 16px;
  height: 16px;
}

/* ===== Features Grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-item {
  padding: 28px 24px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid #eee;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: rgba(119, 76, 254, 0.2);
  box-shadow: var(--shadow);
}

.feature-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  height: 20px;
}

.feature-item h1 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Differentiation ===== */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.diff-card {
  padding: 8px 16px;
  border-radius: var(--radius);
  border: 1px solid #eee;
}

.diff-card li svg {
  width: 16px;
  height: 16px;
}

.diff-card.old {
  background: #fafafa;
}

.diff-card.new {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  position: relative;
  border-width: 3px;
}

.diff-card.new ul li {
  font-weight: 500;
}

.diff-card.new img {
  height: 24px;
  margin-top: 16px;
}

.diff-card.new::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -12px;
  left: 32px;
  padding: 4px 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 6px;
}

.diff-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.diff-card ul {
  list-style: none;
}

.diff-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.diff-card li svg {
  flex-shrink: 0;
}

.diff-card.old li svg {
  color: #ef4444;
}

.diff-card.new li svg {
  color: #22c55e;
}

/* ===== Urgency ===== */
.urgency {
  padding: 64px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1f4e 100%);
  color: var(--white);
  text-align: center;
}

.urgency h2 {
  font-size: 2.25rem;
  margin-bottom: 12px;
  color: var(--white);
}

.urgency p {
  font-size: 1.05rem;
  opacity: 0.8;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.6);
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px 4px 4px;
  background: rgba(119, 76, 254, 0.2);
  border: 1px solid rgba(119, 76, 254, 0.4);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 28px;
}

/* ===== Final CTA ===== */
.final-cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--white) 100%);
}

.final-cta h2 {
  font-size: 2.6rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.final-cta p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
}

.final-cta .micro {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Footer ===== */
.footer {
  padding: 24px 0 24px;
  background: var(--bg-alt);
  color: var(--text);
  font-size: 0.75rem;
}

.footer .container>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
}

.footer hr {
  background-color: #e4e8eb;
  border: none;
  height: 1px;
}

.footer .container>div img {
  height: 32px;
}

.footer a {
  color: var(--text);
  text-decoration: none;
  line-height: 1;
  font-size: .9rem;
}

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

.footer-links {
  display: flex;
  gap: 24px;
}

/* ===== Sticky CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.sticky-cta .btn-primary {
  box-shadow: 0 8px 32px rgba(119, 76, 254, 0.4);
  font-size: 0.95rem;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero p {
    margin: 0 auto 32px;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-micro {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    height: 320px;
    width: auto;
    margin: 0 auto;
    display: block;
  }

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

  .offer-box {
    grid-template-columns: 1fr;
    padding: 48px 36px;
    text-align: center;
  }

  .offer-image {
    display: none;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

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

  .diff-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

/*PC only CSS*/
@media screen and (min-width: 768px) {
  .diff-grid {
    gap: 0;
    padding: 24px;
    background: white;
    border-radius: var(--radius);
  }

  .diff-card.old {
    background: unset;
    border: none;
  }

  .col-5 {
    grid-column: span 5;
  }

  .col-6 {
    grid-column: span 6;
  }

  .col-7 {
    grid-column: span 7;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .section-header p,
  .trust-bar p,
  .offer-content p,
  .mid-cta p,
  .urgency p {
    font-size: .9rem;
  }

  .value-card p {
    font-size: .82rem;
  }

  .hero {
    padding: 100px 0 8px;
  }

  .trust-bar {
    padding: 32px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: .9rem;
  }

  .section {
    padding: 64px 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .value-grid,
  .value-grid.first-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    padding: 26px 18px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .offer-box {
    padding: 26px 18px;
  }

  .offer-content h2 {
    font-size: 1.5rem;
  }

  .offer-list li {
    text-align: left;
  }

  .hero-ctas {
    gap: 8px;
  }

  .hero-micro {
    font-size: .7rem;
    gap: 4px;
  }

  .mid-cta {
    padding: 0px 16px;
  }

  .mid-cta>.container {
    padding-top: 40px;
    padding-bottom: 10px;
  }

  .footer .container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .btn-primary,
  .btn-outline,
  .nav-cta {
    font-size: .85rem;
    padding: .5em 1.1em;
  }

  .footer .container>div {
    gap: 16px;
    flex-direction: column;
  }

  .footer .ext-links a {
    font-size: .8rem;
  }

  .footer .ext-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .review-section {
    padding: 40px 0;
    background-position: center;
  }

  .review-section p.review {
    font-size: 1.1em;
    line-height: 1.35;
    width: unset;
    margin-bottom: 24px;
  }

  .review-section .micro {
    font-size: .7rem;
  }

}