* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

:root {
  --bg: #fff9e3;
  --bg-contrast: #ffffff;
  --text-dark: #1f2937;
  --text: #374151;
  --muted: #6b7280;
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --accent: #111827;
  --surface: rgba(255, 255, 255, 0.6);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 14px;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-lead {
  color: var(--muted);
  margin-bottom: 28px;
}

.small {
  font-size: 0.95rem;
  color: var(--muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 1px, 1px);
  white-space: nowrap;
  border: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}
.btn-sm {
  padding: 8px 14px;
  font-size: 0.95rem;
}
.btn-block {
  width: 100%;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border-color: var(--text-dark);
  color: var(--text-dark);
}
.btn-outline:hover {
  background: var(--text-dark);
  color: white;
}
.btn-dark {
  background: var(--accent);
  color: #fff;
}
.btn-dark:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(160%) blur(10px);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.5)
  );
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.brand-logo {
  width: 46px;
  height: 48px;
  object-fit: contain;
}
footer .brand-logo {
  height: 100px;
  width: auto;
}
.brand-name {
  font-weight: 800;
  letter-spacing: 0.2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
}
.nav-links a:hover {
  opacity: 0.8;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  margin: 6px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.hero-section {
  padding: 70px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.hero-subtitle {
  color: var(--text);
  margin: 12px 0 20px;
  font-size: 1.1rem;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.hero-art {
  position: relative;
  min-height: 352px;
  min-width: 528px;
}
.hero-card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #e0f2fe, #f1f5f9);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}
.hero-card.offset {
  inset: 20px 0 -20px 20px;
  background: linear-gradient(135deg, #f5f3ff, #fff1f2);
  transform: rotate(3deg);
}

/* Website Showcase */
.website-showcase {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.showcase-frame {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.showcase-dots {
  display: flex;
  gap: 4px;
}

.showcase-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}

.showcase-dots span:nth-child(1) {
  background: #ef4444;
}
.showcase-dots span:nth-child(2) {
  background: #f59e0b;
}
.showcase-dots span:nth-child(3) {
  background: #10b981;
}

.showcase-url {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.showcase-content {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.website-screenshot {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.website-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

/* GSAP Animation Classes */
.website-screenshot.scrolling img {
  animation: scrollWebsite 10s ease-in-out infinite;
}

@keyframes scrollWebsite {
  0% {
    transform: translateY(0);
  }
  14% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-16%);
  }
  46% {
    transform: translateY(-40%);
  }
  72% {
    transform: translateY(-67%);
  }
  86% {
    transform: translateY(-86%);
  }
  100% {
    transform: translateY(0);
  }
}

/* Hover Effects */
.website-showcase:hover .website-screenshot img {
  transform: scale(1.02);
}

/* Why Choose Us */
#why {
  margin-top: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  position: relative;
}

.why-grid::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
}

.why-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--primary-dark),
    #06b6d4
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.05),
    rgba(6, 182, 212, 0.05)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover::after {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(14, 165, 233, 0.3);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.why-card:hover .why-icon::before {
  transform: translateX(100%);
}

.why-card:hover .why-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.4);
  border-radius: 20px;
}

.why-icon i {
  font-size: 1.8rem;
  color: white;
  transition: transform 0.3s ease;
}

.why-card:hover .why-icon i {
  transform: scale(1.1);
}

.why-card h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  transition: all 0.3s ease;
  position: relative;
}

.why-card:hover h3 {
  color: var(--primary);
  transform: translateY(-2px);
}

.why-card p {
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.why-card:hover p {
  color: var(--text-dark);
}

/* Journey/Steps */
.journey-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.journey-path {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.journey-path::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 60px;
  bottom: 60px;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 2px;
  z-index: 1;
}

.journey-step {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.step-marker {
  position: relative;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.step-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  background: var(--bg-contrast);
  z-index: 2;
}

.step-content {
  flex: 1;
  background: var(--bg-contrast);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.step-content::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 24px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid var(--bg-contrast);
  z-index: 2;
}

.step-content::after {
  content: "";
  position: absolute;
  left: -9px;
  top: 24px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid rgba(0, 0, 0, 0.06);
  z-index: 1;
}

.journey-step:hover .step-content {
  transform: translateX(8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.step-content h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.step-content p {
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.journey-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

#faq .journey-cta {
  margin-top: 10px;
}

.journey-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.journey-cta i {
  font-size: 0.8rem;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 6px;
}

.step-badge i {
  color: var(--primary);
  font-size: 0.9rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.pricing-card {
  background: var(--bg-contrast);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.pricing-card.highlight {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.price-note {
  color: var(--muted);
  margin-bottom: 12px;
}
.feature-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 12px 0 18px;
}
.feature-list i {
  color: #16a34a;
  margin-right: 8px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--bg-contrast);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.testimonial:hover::before {
  transform: scaleX(1);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-quote {
  flex: 1;
  margin-bottom: 20px;
}

.testimonial-quote i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: block;
  opacity: 0.7;
}

.testimonial-quote p {
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 4px;
}

.author-title {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.author-website {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(14, 165, 233, 0.1);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.author-website:hover {
  background: rgba(14, 165, 233, 0.15);
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.author-website i {
  font-size: 0.8rem;
}

/* Showcase */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.showcase-card {
  position: relative;
  background: var(--bg-contrast);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
}
.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}
.showcase-card:hover::after {
  transform: translateX(100%);
}
.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
}
.showcase-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  background: #e5e7eb;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.showcase-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.showcase-card:hover .showcase-thumb img {
  transform: scale(1.05);
}
.showcase-domain {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(17, 24, 39, 0.55);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
  backdrop-filter: saturate(140%) blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s ease;
}
.faq-item summary:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-icon {
  font-size: 0.9rem;
  color: var(--muted);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: var(--text-dark);
}
.faq-item .faq-content {
  padding: 0 18px 16px;
  color: var(--text);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.faq-item[open] .faq-content {
  max-height: none;
  padding: 0 18px 16px;
}

/* Footer */
.footer {
  padding: 40px 0 20px;
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 40px;
  backdrop-filter: blur(6px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: end;
}
.footer-brand {
  margin-bottom: 30px;
}
.footer-links {
  display: grid;
  gap: 8px;
}
.footer-links a {
  text-decoration: none;
  color: var(--text-dark);
}
.footer-links a:hover {
  opacity: 0.8;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  margin-top: 10px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 16px;
  color: var(--muted);
}

@media (min-width: 841px) {
  .footer-links {
    justify-self: end;
    text-align: right;
    column-gap: 28px;
    row-gap: 8px;
    justify-items: end;
  }
  .footer-contact {
    justify-self: end;
    text-align: right;
  }
}

@media (max-width: 1000px) {
  #why {
    margin-top: 30px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 64px;
    text-align: center;
  }
  .hero-art {
    order: -1;
    margin: auto;
  }
  .hero-card {
    max-width: 520px;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
}

@media (max-width: 580px) {
  #why {
    margin-top: 0px;
  }
  .hero-section {
    padding: 40px 0 30px;
  }

  .hero-art {
    min-width: 300px;
    min-height: 320px;
    margin: initial;
  }
  .hero-card {
    min-height: 240px;
    min-width: 200px;
  }
}

/* Responsive */
@media (max-width: 840px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 25px;
  }
  .why-card {
    padding: 20px 16px;
  }
  .why-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }
  .why-icon i {
    font-size: 1.6rem;
  }
  .why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .why-card p {
    font-size: 0.85rem;
  }
  .journey-container {
    padding: 20px 0;
  }
  .journey-path {
    gap: 30px;
  }
  .journey-path::before {
    left: 25px;
  }
  .journey-step {
    gap: 20px;
  }
  .step-marker {
    width: 50px;
    height: 50px;
  }
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  .step-dot {
    width: 50px;
    height: 50px;
  }
  .step-content {
    padding: 20px;
  }
  .step-content::before {
    left: -6px;
    top: 20px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid var(--bg-contrast);
  }
  .step-content::after {
    left: -7px;
    top: 20px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid rgba(0, 0, 0, 0.06);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .author-website {
    align-self: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .journey-path::before {
    top: 20px;
  }
}

@media (max-width: 680px) {
  .nav-toggle {
    display: inline-block;
  }
  .nav-links {
    position: absolute;
    top: 64px;
    right: 20px;
    left: auto;
    width: auto;
    min-width: 200px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 12px;
    display: none;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow);
    align-items: start;
  }
  .nav-links.open {
    display: flex;
  }

  .website-showcase {
    font-size: 10px;
  }
  .showcase-header {
    padding: 8px 12px;
  }
  .showcase-url {
    font-size: 10px;
  }
  .showcase-dots span {
    width: 6px;
    height: 6px;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }
  .hero-trust {
    font-size: 0.9rem;
    flex-direction: column;
    gap: 8px;
  }
  .hero-trust-item {
    white-space: normal;
  }
  .journey-container {
    padding: 15px 0;
  }
  .journey-path {
    gap: 25px;
  }
  .journey-path::before {
    left: 20px;
  }
  .journey-step {
    gap: 10px;
  }
  .step-marker {
    width: 42px;
    height: 40px;
  }
  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  .step-dot {
    width: 40px;
    height: 40px;
  }
  .step-content {
    padding: 16px;
  }
  .step-content h3 {
    font-size: 1.1rem;
  }
  .step-content p {
    font-size: 0.95rem;
  }
  .journey-cta {
    font-size: 0.85rem;
    padding: 8px 14px;
  }
  .step-badge {
    font-size: 0.85rem;
    padding: 6px 10px;
  }
  .testimonial {
    padding: 20px;
  }
  .testimonial-quote i {
    font-size: 1.3rem;
  }
  .testimonial-quote p {
    font-size: 0.95rem;
  }
  .author-name {
    font-size: 0.95rem;
  }
  .author-title {
    font-size: 0.85rem;
  }
  .author-website {
    font-size: 0.85rem;
    padding: 5px 10px;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .why-card {
    padding: 18px 14px;
  }
  .why-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 14px;
  }
  .why-icon i {
    font-size: 1.4rem;
  }
  .why-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .why-card p {
    font-size: 0.8rem;
  }
}

#business-offering {
  padding: 0 0 24px 0 !important;
}
.biz-section {
  background: none !important;
}
.biz-discount-banner {
  background: #fefcf2 !important;
  color: #191919 !important;
}
.biz-discount-banner b {
  color: #c4a47c !important;
}
.biz-cta {
  margin-top: 30px;
  margin-bottom: 80px;
}

#showcase.section {
  padding: 0 0 80px 0;
}

.biz-cta .text-content {
  text-align: center;
}
.biz-cta .btn {
  padding: 14px 22px;
}

/* Extra small screens */
@media (max-width: 480px) {
  .hero-section {
    padding: 30px 0 20px;
  }
  .hero-grid {
    gap: 86px;
  }
  .hero-art {
    min-height: 200px;
    min-width: 240px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .container {
    padding: 0 16px;
  }
}

/* Guides Page Styles */
.guides-nav {
  margin-bottom: 60px;
}

.guides-nav h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  color: var(--text-dark);
}

.hero-contact-info {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 20px;
  margin-top: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-contact-info p {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.5;
}

.hero-contact-info a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.hero-contact-info a:hover {
  text-decoration: underline;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.guide-card {
  background: var(--bg-contrast);
  border-radius: var(--radius);
  padding: 32px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.guide-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.guide-icon i {
  font-size: 24px;
  color: white;
}

.guide-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.guide-card p {
  color: var(--muted);
  line-height: 1.5;
}

.guide-section {
  margin-bottom: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.guide-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.guide-section h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: var(--text-dark);
  padding-bottom: 16px;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
}

.guide-content {
  background: var(--bg-contrast);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.guide-intro {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-left: 4px solid var(--primary);
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 32px;
}

.guide-intro p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.guide-steps h3 {
  font-size: 1.4rem;
  margin: 32px 0 16px 0;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

.guide-steps h3::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background: var(--primary);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.guide-steps {
  counter-reset: step-counter;
}

.guide-steps ol {
  margin-left: 20px;
  margin-bottom: 24px;
}

.guide-steps ol li {
  margin-bottom: 12px;
  line-height: 1.6;
  color: var(--text);
}

.guide-steps ul {
  margin: 16px 0 16px 20px;
}

.guide-steps ul li {
  margin-bottom: 8px;
  line-height: 1.5;
  color: var(--text);
}

.guide-steps code {
  background: #f3f4f6;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.guide-steps a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.guide-steps a:hover {
  text-decoration: underline;
}

.guide-tip {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #f59e0b;
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}

.guide-tip h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #92400e;
  font-size: 1.1rem;
}

.guide-tip i {
  color: #f59e0b;
}

.guide-tip p {
  margin: 0;
  color: #78350f;
  line-height: 1.5;
}

/* Responsive Design for Guides */
@media (max-width: 768px) {
  .guides-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .guide-card {
    padding: 24px;
  }

  .guide-content {
    padding: 24px;
  }

  .guide-section h2 {
    font-size: 2rem;
  }

  .guide-steps h3 {
    font-size: 1.2rem;
  }

  .guide-intro {
    padding: 20px;
  }

  .guide-tip {
    padding: 20px;
  }

  .hero-contact-info {
    padding: 16px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .guide-card {
    padding: 20px;
  }

  .guide-content {
    padding: 20px;
  }

  .guide-icon {
    width: 50px;
    height: 50px;
  }

  .guide-icon i {
    font-size: 20px;
  }

  .hero-contact-info {
    padding: 14px;
    margin-top: 16px;
  }
}

/* Terms of Service Page Styles */
.tos-content {
  max-width: 800px;
  margin: 0 auto;
}

.tos-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tos-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.tos-section h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--text-dark);
  font-weight: 600;
}

.tos-section p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: var(--text);
}

.tos-section ul {
  margin: 16px 0 16px 20px;
}

.tos-section ul li {
  margin-bottom: 8px;
  line-height: 1.5;
  color: var(--text);
}

.tos-highlight {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}

.tos-highlight h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--primary-dark);
  font-size: 1.2rem;
  font-weight: 600;
}

.tos-highlight i {
  color: var(--primary);
}

.tos-highlight p {
  margin-bottom: 12px;
  color: var(--text-dark);
  line-height: 1.5;
}

.tos-highlight ul {
  margin: 12px 0 12px 20px;
}

.tos-highlight ul li {
  margin-bottom: 6px;
  color: var(--text);
}

.contact-info {
  background: var(--bg-contrast);
  border-radius: 8px;
  padding: 20px;
  margin-top: 16px;
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-info a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Responsive Design for Terms of Service */
@media (max-width: 768px) {
  .tos-section h2 {
    font-size: 1.6rem;
  }

  .tos-highlight {
    padding: 20px;
  }

  .tos-highlight h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .tos-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .tos-section h2 {
    font-size: 1.4rem;
  }

  .tos-highlight {
    padding: 16px;
  }

  .contact-info {
    padding: 16px;
  }
}
