/* ===================================
   Reset & Base Styles
   =================================== */
:root {
  /* Colors - Ant Design inspired */
  --primary: #18212d;
  --primary-hover: #18212d;
  --primary-light: rgba(22, 119, 255, 0.1);
  --text-dark: #18212d;
  --text-medium: rgba(24, 33, 45, 0.5);
  --text-light: #a0aec0;
  --bg-white: #ffffff;
  --bg-light: #fafafa;
  --bg-card: #fbfaf9;
  --border-light: rgba(24, 24, 24, 0.07);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Typography */
  --font-sans:
    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "DM Sans", sans-serif;

  /* Spacing */
  --container-max: 1440px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

/* ===================================
   Typography
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 0.75rem;
}

p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-medium);
  font-weight: 400;
}

/* ===================================
   Navigation
   =================================== */
.nav {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(250, 250, 250, 0.95);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: color 0.2s;
  padding: 8px 12px;
  border-radius: 50px;
}

.nav-links a:hover {
  color: var(--primary);
  background: rgba(22, 119, 255, 0.05);
}

.nav-cta {
  display: flex;
  gap: 1rem;
}

/* ===================================
   Buttons - Framer Theme
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1em;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  border: 1px solid rgba(24, 24, 24, 0.07);
  will-change: transform;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 119, 255, 0.25);
}

.btn-secondary {
  background: rgb(251, 250, 249);
  color: var(--text-dark);
  border: 1px solid rgba(24, 24, 24, 0.07);
}

.btn-secondary:hover {
  background: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid rgba(24, 24, 24, 0.12);
}

.btn-outline:hover {
  background: rgb(251, 250, 249);
  border-color: rgba(24, 24, 24, 0.15);
  transform: translateY(-1px);
}

.btn-large {
  padding: 14px 24px;
  font-size: 16px;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  padding: var(--spacing-xl) 0;
  text-align: center;
  /* background: linear-gradient(135deg, #fafafa 0%, #f0f5ff 100%); */
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero .container {
  width: 100% !important;
}
.herod {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}
.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  flex: 1;
}
.heroimg {
  width: 40%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-img-placeholder {
  width: 100%;
  max-width: 400px;
  min-height: 480px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-img-placeholder .img-hint {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ba-img-placeholder .img-hint {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.2);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 16px;
  background: rgb(251, 250, 249);
  border: 1px solid rgba(24, 24, 24, 0.07);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.badge-icon {
  color: var(--primary);
  flex-shrink: 0;
}
.heroimg {
}
.hero-title {
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-medium);
  margin-bottom: 2.5rem;
  max-width: 700px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  gap: 2rem;

  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-medium);
}

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

.hero-trust span svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ===================================
   How It Works Section
   =================================== */
.how-it-works {
  padding: var(--spacing-xl) 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-title {
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.25rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

.steps {
  display: grid;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-light);
  font-family: var(--font-display);
  line-height: 1;
}

.step-content {
  padding: 2rem;
  background: rgb(251, 250, 249);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(24, 24, 24, 0.07);
  transition: all 0.3s;
}

.step-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.step-icon {
  margin-bottom: 1.5rem;
}

.step h3 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--text-medium);
  font-size: 1rem;
}

.action-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.action-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 10px 14px;
  background: white;
  border-radius: 50px;
  border: 1px solid rgba(24, 24, 24, 0.07);
  font-size: 15px;
}

.action-label {
  font-weight: 500;
  color: var(--text-dark);
  min-width: 100px;
}

.action-arrow {
  color: var(--primary);
  font-weight: 400;
}

.action-value {
  color: var(--text-medium);
  font-weight: 400;
}

/* ===================================
   Features Section
   =================================== */
.features {
  padding: var(--spacing-xl) 0;
  background: var(--bg-light);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(24, 24, 24, 0.07);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(22, 119, 255, 0.15);
}

.feature-icon {
  margin-bottom: 1.5rem;
  display: flex;
}

.feature-icon svg {
  display: block;
  flex-shrink: 0;
}

.feature-card h3 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-medium);
  font-size: 1rem;
}

/* ===================================
   Hero Channels Pills
   =================================== */
.hero-channels {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.channel-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 16px;
  background: white;
  border: 1px solid rgba(24, 24, 24, 0.08);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.2s;
}

.channel-pill svg {
  flex-shrink: 0;
  color: var(--primary);
}

.channel-pill:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

/* Button with subtitle */
.btn-sub {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.75;
  margin-top: -2px;
}

/* ===================================
   Channels Section
   =================================== */
.channels-section {
  padding: var(--spacing-xl) 0;
  background: white;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.channel-card {
  padding: 2rem;
  background: rgb(251, 250, 249);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(24, 24, 24, 0.07);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.channel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(22, 119, 255, 0.15);
}

.channel-icon {
  margin-bottom: 1rem;
  display: flex;
}

.channel-icon svg {
  display: block;
  flex-shrink: 0;
}

.channel-card h4 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.channel-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.channel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: gap 0.2s;
}

.channel-link:hover {
  gap: 0.75rem;
}

/* ===================================
   Benefits Section
   =================================== */
.benefits-section {
  padding: var(--spacing-xl) 0;
  background: var(--bg-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  padding: 2.5rem 2rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(24, 24, 24, 0.07);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.benefit-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.benefit-card p {
  color: var(--text-medium);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.benefit-card .btn {
  align-self: flex-start;
}

/* ===================================
   Before & After Section
   =================================== */
.before-after-section {
  padding: var(--spacing-xl) 0;
  background: white;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.ba-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(24, 24, 24, 0.07);
  transition: all 0.3s;
}

.ba-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.ba-before {
  background: rgb(251, 250, 249);
}

.ba-after {
  background: linear-gradient(
    135deg,
    rgba(22, 119, 255, 0.03) 0%,
    rgba(64, 150, 255, 0.06) 100%
  );
}

.ba-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.ba-badge.bad {
  background: rgba(255, 77, 79, 0.1);
  color: #ff4d4f;
}

.ba-badge.good {
  background: rgba(82, 196, 26, 0.1);
  color: #52c41a;
}

.ba-img-placeholder {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.ba-img-placeholder .img-hint {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.25);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ba-card h4 {
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
}

.ba-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ba-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.6;
}

.ba-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.ba-before .ba-list li::before {
  content: "✗";
  color: #ff4d4f;
}

.ba-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ===================================
   Use Cases Section
   =================================== */
.usecases-section {
  padding: var(--spacing-xl) 0;
  background: var(--bg-light);
}

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.usecase-card {
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(24, 24, 24, 0.07);
  transition: all 0.3s;
}

.usecase-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.usecase-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-light);
  font-family: var(--font-display);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.usecase-card h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.usecase-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.usecases-cta {
  text-align: center;
  margin-top: 3rem;
}

.usecases-cta .btn-sub {
  color: white;
}

/* ===================================
   How It Works — Simple (3 Steps)
   =================================== */
.how-it-works-simple {
  padding: var(--spacing-xl) 0;
  background: white;
}

.steps-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgb(251, 250, 249);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(24, 24, 24, 0.07);
  transition: all 0.3s;
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.step-icon-big {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.step-icon-big svg {
  display: block;
}

.step-card h4 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

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

.steps-cta {
  text-align: center;
  margin-top: 3rem;
}

.steps-cta .btn-sub {
  color: white;
}

/* ===================================
   Pricing Section
   =================================== */
.pricing-section {
  padding: var(--spacing-xl) 0;
  background: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}

.pricing-card {
  padding: 2.5rem 2rem;
  background: rgb(251, 250, 249);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(24, 24, 24, 0.07);
  transition: all 0.3s;
  text-align: center;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.pricing-card-featured {
  background: white;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 24px rgba(22, 119, 255, 0.12);
  transform: scale(1.02);
}

.pricing-card-featured:hover {
  transform: scale(1.02) translateY(-2px);
}

.pricing-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(24, 33, 45, 0.06);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.pricing-badge-featured {
  display: inline-block;
  padding: 4px 14px;
  background: var(--primary-light);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.pricing-card h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  margin-bottom: 1rem;
}

.pricing-price .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-display);
  line-height: 1;
}

.pricing-price .period {
  font-size: 1rem;
  color: var(--text-medium);
  font-weight: 400;
}

.pricing-desc {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-features li {
  color: var(--text-dark);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-icon {
  color: var(--primary);
  flex-shrink: 0;
  display: inline-flex;
}

.pricing-btn {
  width: 100%;
  justify-content: center;
}

.pricing-trial-note {
  font-size: 0.8rem;
  color: var(--text-medium);
  margin-top: 0.75rem;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
  padding: var(--spacing-xl) 0;
  background: var(--bg-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(24, 24, 24, 0.07);
  transition: all 0.2s;
}

.faq-item:hover {
  border-color: rgba(22, 119, 255, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item h4 {
  color: var(--text-dark);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
}

.faq-cta .btn-sub {
  color: white;
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
  padding: var(--spacing-xl) 0;
  background: white;
}

.cta-card {
  text-align: center;
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, var(--primary) 0%, #4096ff 100%);
  border-radius: var(--radius-lg);
  color: white;
}

.cta-card h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cta-card .btn-primary {
  background: white;
  color: var(--primary);
}

.cta-card .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.cta-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   Footer
   =================================== */
.footer {
  padding: 3rem 0 2rem;
  background: var(--text-dark);
  color: white;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 400px;
}

.footer-brand .logo-text {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-column a {
  position: relative;
}
.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.footer-column a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* ===================================
   Animations
   =================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    gap: 0.5rem;
  }

  .hero {
    padding: var(--spacing-lg) 0;
  }

  .heroimg {
    width: 100%;
  }

  .hero-img-placeholder {
    max-width: 100%;
    min-height: 300px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-trust {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-channels {
    gap: 0.5rem;
  }

  .channel-pill {
    font-size: 12px;
    padding: 5px 12px;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .step-number {
    font-size: 2rem;
  }

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

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

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

  .before-after-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .pricing-card-featured {
    transform: none;
  }

  .pricing-card-featured:hover {
    transform: translateY(-2px);
  }

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

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .action-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .nav-cta .btn {
    padding: 10px 14px;
    font-size: 14px;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .btn-large {
    padding: 12px 18px;
    font-size: 16px;
  }
}
