/* CSS Reset & Variables (Premium SaaS Style) */
:root {
  /* Brand Colors */
  --brand-fuchsia: #f43f5e;
  /* Soft Rose */
  --brand-violet: #8b5cf6;
  /* Sweet Lavender */
  --brand-pink: #f472b6;
  /* Playful pink */
  --brand-gradient: linear-gradient(135deg, var(--brand-fuchsia) 0%, var(--brand-violet) 100%);
  --brand-gradient-hover: linear-gradient(135deg, #e11d48 0%, #7c3aed 100%);

  /* Brand Lights */
  --brand-fuchsia-light: #fff1f2;
  --brand-violet-light: #f5f3ff;
  --brand-pink-light: #fdf2f8;

  /* System UI Colors */
  --bg-main: #fffcfd;
  /* Slightly warmer white */
  --bg-secondary: #fdfafb;
  --text-primary: #334155;
  /* Softer slate text */
  --text-secondary: #64748b;
  --text-tertiary: #94a3b8;
  --border-light: #f1f5f9;
  --white: #ffffff;

  /* Typography */
  --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Shadows & Radius (Modern & Fun) */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 10px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 15px 25px -5px rgba(244, 114, 182, 0.15), 0 8px 10px -6px rgba(244, 114, 182, 0.1);
  --shadow-mockup: 0 30px 60px -15px rgba(244, 63, 94, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease-out;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-inter);
  background-color: var(--bg-main);
  /* Playful polka-dot background pattern */
  background-image: radial-gradient(var(--brand-pink-light) 2px, transparent 2px);
  background-size: 30px 30px;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
}

/* Utilities */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
}

.text-center {
  text-align: center;
}

.mt-3 {
  margin-top: 3rem;
}

.text-gradient {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.color-fuchsia {
  color: var(--brand-fuchsia);
}

.color-violet {
  color: var(--brand-violet);
}

.color-pink {
  color: var(--brand-pink);
}

.color-green {
  color: #10b981;
}

.bg-fuchsia-light {
  background-color: var(--brand-fuchsia-light);
}

.bg-violet-light {
  background-color: var(--brand-violet-light);
}

.bg-pink-light {
  background-color: var(--brand-pink-light);
}

.bg-secundary {
  background-color: var(--bg-secondary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-inter);
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--brand-fuchsia);
  color: var(--white);
  box-shadow: var(--shadow-md), 0 4px 14px 0 rgba(244, 63, 94, 0.39);
  padding: 0.75rem 1.5rem;
}

.btn-primary:hover {
  background: #e11d48;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 6px 20px rgba(244, 63, 94, 0.4);
}

.btn-white {
  background: var(--white);
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}

.glow-btn {
  position: relative;
  overflow: hidden;
  background: var(--brand-gradient);
  box-shadow: 0 4px 14px 0 rgba(244, 63, 94, 0.39);
}

.glow-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-20deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20%,
  100% {
    left: 200%;
  }
}

.btn-secondary {
  background-color: var(--white);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  padding: 0.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg-secondary);
  border-color: #cbd5e1;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .btn-large {
    width: auto;
  }
}

.btn-block {
  width: 100% !important;
}

.link-action {
  color: var(--brand-violet);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.link-action:hover {
  gap: 0.75rem;
  color: var(--brand-fuchsia);
}

/* Background Gradients */
.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
}

.glow-top-right {
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
}

.glow-center-left {
  top: 40%;
  left: -300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
}

/* Festive Background Decor */
.festive-bg-decor {
  position: absolute;
  font-size: 2.5rem;
  z-index: 0;
  opacity: 0.8;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
  pointer-events: none;
  animation: float-decor 6s ease-in-out infinite;
}

.bg-ballon-1 {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
  font-size: 3.5rem;
}

.bg-star-1 {
  top: 35%;
  right: 10%;
  animation-delay: 1s;
  font-size: 2.5rem;
}

.bg-gift-1 {
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
  font-size: 3rem;
}

.bg-confetti-1 {
  top: 10%;
  right: 25%;
  animation-delay: 3s;
  font-size: 2.8rem;
}

.bg-cake-1 {
  top: 10%;
  left: 10%;
  animation-delay: 1.5s;
  font-size: 3.5rem;
}

.bg-partyhat-1 {
  bottom: 10%;
  right: 5%;
  animation-delay: 2.5s;
  font-size: 3rem;
}

.bg-candy-1 {
  top: 30%;
  right: 15%;
  animation-delay: 0.5s;
  font-size: 2.5rem;
}

.bg-music-1 {
  bottom: 15%;
  left: 20%;
  animation-delay: 4s;
  font-size: 2.5rem;
}

.bg-ballon-2 {
  top: -10%;
  right: 10%;
  animation-delay: 0.2s;
  font-size: 3rem;
}

.bg-gift-2 {
  bottom: 10%;
  left: 10%;
  animation-delay: 1.2s;
  font-size: 2.5rem;
}

.bg-star-2 {
  top: 50%;
  right: 5%;
  animation-delay: 3.2s;
  font-size: 2rem;
}

.bg-confetti-2 {
  top: 15%;
  left: 15%;
  animation-delay: 0.8s;
  font-size: 3.5rem;
}

.bg-partyhat-2 {
  bottom: 25%;
  right: 15%;
  animation-delay: 2.8s;
  font-size: 3rem;
}

@keyframes float-decor {
  0% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-20px) rotate(15deg) scale(1.1);
  }

  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
}

/* Fun tag styles */
.tag-fun {
  background: linear-gradient(135deg, #f43f5e, #f97316);
  color: white;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(244, 63, 94, 0.3);
  border: none;
}

/* Bounce button animation */
.bounce-btn {
  animation: bounce-continuous 2s infinite;
}

@keyframes bounce-continuous {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(252, 252, 253, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: all var(--transition-fast);
}

.container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  height: 54px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.link-nav {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: none;
}

.link-nav:hover {
  color: var(--text-primary);
}

@media(min-width: 640px) {
  .link-nav {
    display: block;
  }
}

/* Common Sections */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-violet);
  background: var(--brand-violet-light);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

@media(min-width: 768px) {
  .section-header h2 {
    font-size: 2.75rem;
  }
}

.section-header p {
  font-size: 1.125rem;
  max-width: 500px;
}

/* Hero */
.hero {
  padding-top: 140px;
  padding-bottom: 6rem;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--brand-fuchsia);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.4);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(225, 29, 72, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(225, 29, 72, 0);
  }
}

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-content {
    text-align: left;
    align-items: flex-start;
  }
}

.hero .title {
  font-size: 3rem;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero .title {
    font-size: 4rem;
  }
}

.hero .subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

.hero-trust {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  flex-direction: column;
}

@media (min-width: 640px) {
  .hero-trust {
    flex-direction: row;
  }
}

.avatars {
  display: flex;
}

.avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-main);
  object-fit: cover;
  margin-left: -10px;
}

.avatars img:first-child {
  margin-left: 0;
}

/* Premium Smartphone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.device-mockup {
  width: 290px;
  height: 600px;
  background-color: var(--white);
  border-radius: 40px;
  border: 8px solid #0f172a;
  box-shadow: var(--shadow-mockup);
  position: relative;
  overflow: hidden;
  transform: rotate(2deg) translateY(0);
  animation: float-device 6s ease-in-out infinite;
}

.device-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 20px;
  background-color: #0f172a;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

.device-screen {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: var(--bg-main);
}

.device-screen::-webkit-scrollbar {
  display: none;
}

.mockup-ui-scroll {
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem;
}

.mockup-header-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.mockup-content {
  padding: 1.5rem;
  margin-top: -2rem;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  position: relative;
}

.mockup-chip {
  background: var(--brand-fuchsia-light);
  color: var(--brand-fuchsia);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.mockup-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.mockup-desc {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.mockup-detail-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.mockup-d-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-secondary);
  padding: 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.mdc-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}

.mdc-text {
  display: flex;
  flex-direction: column;
}

.mdc-text span {
  font-size: 0.65rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  font-weight: 600;
}

.mdc-text strong {
  font-size: 0.85rem;
  color: var(--text-primary);
}

.mockup-btn-primary {
  width: 100%;
  background: var(--brand-fuchsia);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  font-size: 0.9rem;
}

/* Floating Widgets */
.floating-widget {
  position: absolute;
  background: var(--white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  z-index: 5;
}

.fw-1 {
  top: 15%;
  right: -20px;
  animation: float-up-down 5s ease-in-out infinite;
}

.fw-2 {
  bottom: 25%;
  left: -30px;
  animation: float-up-down 4s ease-in-out infinite reverse;
}

@keyframes float-device {
  0% {
    transform: rotate(2deg) translateY(0px);
  }

  50% {
    transform: rotate(1deg) translateY(-15px);
  }

  100% {
    transform: rotate(2deg) translateY(0px);
  }
}

@keyframes float-up-down {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Social Proof Bar */
.social-proof {
  padding: 3rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-secondary);
}

.proof-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.proof-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

@media(min-width: 640px) {
  .proof-logos {
    gap: 4rem;
  }
}

.metric h4 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.metric span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Steps format SaaS */
.steps-section {
  padding: 6rem 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.saas-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.saas-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.card-icon-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.step-num {
  font-size: 2rem;
  font-weight: 800;
  color: #f1f5f9;
}

.saas-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.saas-card p {
  font-size: 0.95rem;
}

/* Visual UI Section */
.visual-section {
  padding: 6rem 0;
  overflow: hidden;
}

.visual-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media(min-width: 992px) {
  .visual-container {
    grid-template-columns: 1fr 1fr;
  }
}

.benefit-list-clean {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.benefit-list-clean li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.bl-icon {
  color: var(--brand-violet);
  font-size: 1.5rem;
  margin-top: 0.1rem;
}

.bl-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.bl-content p {
  font-size: 0.95rem;
  margin: 0;
}

.visual-display {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.display-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 400px;
  background: conic-gradient(from 180deg at 50% 50%, rgba(236, 72, 153, 0.2) 0deg, rgba(99, 102, 241, 0.2) 360deg);
  filter: blur(60px);
  opacity: 0.6;
  border-radius: 50%;
}

.browser-frame {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-mockup);
  overflow: hidden;
  position: relative;
  z-index: 2;
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.browser-frame:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
}

.browser-header {
  height: 40px;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 0.4rem;
}

.b-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.b-dot:nth-child(1) {
  background: #fca5a5;
}

.b-dot:nth-child(2) {
  background: #fde047;
}

.b-dot:nth-child(3) {
  background: #86efac;
}

.b-url {
  background: var(--white);
  padding: 0.2rem 1rem;
  border-radius: 4px;
  font-size: 0.65rem;
  color: var(--text-tertiary);
  margin-left: auto;
  margin-right: auto;
  width: 140px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.browser-body {
  background: var(--bg-main);
}

.full-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.b-content {
  padding: 1.5rem;
  text-align: center;
}

.b-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.fake-line {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  margin: 0.5rem auto;
}

.width-lg {
  width: 90%;
}

.width-md {
  width: 70%;
}

.fake-btn {
  height: 36px;
  background: var(--text-primary);
  border-radius: var(--radius-pill);
  width: 80%;
  margin: 1.5rem auto 0;
}

/* 2x2 Feature Grid */
.benefits-grid-section {
  padding: 6rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.grid-2x2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media(min-width: 640px) {
  .grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  border-color: var(--brand-fuchsia);
  box-shadow: var(--shadow-sm);
}

.fc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.fc-text h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.fc-text p {
  font-size: 0.95rem;
  margin: 0;
}

/* Templates with hover */
.templates-section {
  padding: 6rem 0;
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media(min-width: 768px) {
  .templates-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.template-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.template-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.ti-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform 0.3s ease;
}

.template-item:hover .ti-visual {
  transform: scale(1.05);
}

.bg-soft-green {
  background: #f0fdf4;
}

.bg-soft-pink {
  background: #fdf2f8;
}

.bg-soft-orange {
  background: #fff7ed;
}

.bg-soft-purple {
  background: #f5f3ff;
}

.ti-info {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  position: relative;
  z-index: 2;
}

.ti-info h4 {
  font-size: 0.95rem;
  margin: 0;
}

.ti-info i {
  color: var(--text-tertiary);
  transition: color 0.2s;
}

.template-item:hover .ti-info i {
  color: var(--text-primary);
}

/* Pricing Card */
.pricing-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.pricing-wrapper {
  display: flex;
  justify-content: center;
}

.pricing-card-modern {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 480px;
  overflow: hidden;
}

.pc-header {
  padding: 2.5rem 2.5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.pc-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pc-header p {
  font-size: 0.95rem;
}

.pc-price {
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.25rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.amount {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text-primary);
}

.period {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  align-self: flex-end;
  margin-bottom: 0.5rem;
}

.pc-body {
  padding: 0 2.5rem 2.5rem;
}

.pc-features {
  margin-bottom: 2rem;
}

.pc-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pc-features i {
  color: var(--brand-violet);
  font-size: 1.125rem;
  margin-top: 0.2rem;
}

.pc-footer-text {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-top: 1rem;
  margin-bottom: 0;
}

/* FAQs - Clean */
.faqs-section {
  padding: 6rem 0;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: #cbd5e1;
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
}

.faq-trigger i {
  transition: transform 0.3s;
  color: var(--text-tertiary);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-content p {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  margin: 0;
}

.faq-item.active {
  border-color: var(--text-primary);
}

.faq-item.active .faq-trigger i {
  transform: rotate(45deg);
  color: var(--text-primary);
}

.faq-item.active .faq-content {
  max-height: 300px;
}

/* Bottom CTA */
.bottom-cta {
  padding: 5rem 0;
  color: var(--white);
  text-align: center;
  background: var(--brand-gradient);
}

.bottom-cta h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.bottom-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem;
  background: var(--white);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media(min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 300px;
}

.logo-footer {
  height: 28px;
  width: fit-content;
  filter: grayscale(1) opacity(0.8);
  transition: filter 0.3s;
}

.footer-brand:hover .logo-footer {
  filter: grayscale(0) opacity(1);
}

.footer-brand p {
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.fl-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fl-col h4 {
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.fl-col a {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.fl-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

@media(min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.legal-links a {
  color: var(--text-tertiary);
}

.legal-links a:hover {
  color: var(--text-primary);
}

/* Animations classes for JS */
.fade-in-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-up-element {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}