/* ProfitSweep - Unified Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ===== CSS Variables ===== */
:root {
  --background: #ffffff;
  --foreground: #141820;
  --card: #ffffff;
  --primary: #141820;
  --primary-foreground: #ffffff;
  --secondary: #f4f5f7;
  --muted: #f4f5f7;
  --muted-foreground: #6b7280;
  --accent: #f97316;
  --accent-foreground: #ffffff;
  --success: #f97316;
  --success-light: #fff7ed;
  --warning: #eab308;
  --destructive: #ef4444;
  --border: #e5e7eb;
  --radius: 0.75rem;
  --gradient-hero: linear-gradient(135deg, #0f1115 0%, #1a1f2e 100%);
  --gradient-profit: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-profit: 0 4px 14px 0 rgba(249, 115, 22, 0.4);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
}

/* ===== Utilities ===== */
.w-full { width: 100%; }
.text-gradient {
  background: var(--gradient-profit);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 1024px) {
  .header-container { height: 80px; }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--gradient-profit);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-icon-light {
  background: var(--success);
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
}

.footer .logo-text {
  color: white;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

.nav-link {
  color: var(--muted-foreground);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--foreground);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .header-cta { display: flex; }
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

.menu-icon {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  padding: 1rem;
  border-top: 1px solid var(--border);
  background: white;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav .nav-link {
  padding: 0.5rem 0;
  display: block;
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-profit);
  color: white;
  box-shadow: var(--shadow-profit);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--foreground);
}

.btn-ghost:hover {
  background: var(--secondary);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--secondary);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-success {
  background: var(--success);
  color: white;
  box-shadow: var(--shadow-profit);
}

.btn-success:hover {
  opacity: 0.9;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* ===== Hero Section ===== */
.hero {
  padding-top: 7rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 9rem;
    padding-bottom: 6rem;
  }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content { text-align: left; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--success-light);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--success);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-gentle 2s ease-in-out infinite;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 36rem;
}

@media (min-width: 1024px) {
  .hero-description {
    font-size: 1.25rem;
    margin-left: 0;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-buttons { justify-content: flex-start; }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .hero-stats {
    justify-content: flex-start;
    gap: 3rem;
  }
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .stat-value { font-size: 2.25rem; }
}

.stat-label {
  color: var(--muted-foreground);
  font-weight: 500;
}

/* Hero Visual / Product Journey */
.hero-visual {
  position: relative;
}

@media (min-width: 1024px) {
  .hero-visual { padding-left: 2rem; }
}

.product-journey {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.journey-step {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--success-light);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.step-number-active {
  background: var(--success);
  color: white;
}

.step-spacer {
  width: 56px;
}

.step-card {
  flex: 1;
  background: white;
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-card-highlight {
  border: 2px solid var(--success);
  box-shadow: var(--shadow-lg);
}

.step-card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-icon {
  width: 64px;
  height: 64px;
  background: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon svg {
  width: 32px;
  height: 32px;
  color: var(--muted-foreground);
}

.product-icon-success {
  background: var(--success-light);
}

.product-icon-success svg {
  color: var(--success);
}

.product-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.product-label-success {
  color: var(--success);
  font-weight: 600;
}

.product-name {
  font-weight: 600;
  color: var(--foreground);
}

.product-source {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.journey-arrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 1.75rem;
}

.arrow-line {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--success), rgba(249, 115, 22, 0.3));
}

.markup-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--success);
  font-size: 0.875rem;
  font-weight: 500;
}

.markup-badge svg {
  width: 20px;
  height: 20px;
}

.profit-card {
  flex: 1;
  background: var(--gradient-profit);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-profit);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profit-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.profit-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profit-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.profit-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.profit-sublabel {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.profit-amount {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
}

.floating-notification {
  position: absolute;
  top: -8px;
  right: 0;
  background: white;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  animation: float 6s ease-in-out infinite;
}

@media (min-width: 1024px) {
  .floating-notification {
    top: 0;
    right: -1rem;
  }
}

.notification-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-gentle 2s ease-in-out infinite;
}

/* ===== Sections ===== */
.section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section { padding: 7rem 0; }
}

.section-alt {
  background: rgba(244, 245, 247, 0.5);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--success);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .section-title { font-size: 3rem; }
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

/* ===== Content Grid (Two Column) ===== */
.content-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.content-text {
  text-align: center;
}

@media (min-width: 1024px) {
  .content-text { text-align: left; }
}

.content-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .content-title { font-size: 1.875rem; }
}

.content-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
}

@media (min-width: 1024px) {
  .benefit-item { justify-content: flex-start; }
}

.benefit-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-check svg {
  width: 14px;
  height: 14px;
  color: white;
}

/* Example Card */
.example-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 1024px) {
  .example-card { padding: 2rem; }
}

.example-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.example-product-image {
  width: 80px;
  height: 80px;
  background: var(--secondary);
  border-radius: 12px;
  overflow: hidden;
}

.example-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.example-product-info h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.example-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(234, 179, 8, 0.1);
  color: var(--warning);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
}

.example-prices {
  display: flex;
  flex-direction: column;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.price-label {
  color: var(--muted-foreground);
}

.price-value {
  font-size: 1.25rem;
  font-weight: 700;
}

.price-row-profit {
  background: var(--success-light);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  margin-top: 1rem;
  border: none;
}

.price-row-profit .price-label {
  color: var(--success);
  font-weight: 500;
}

.price-value-profit {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--success);
}

/* Deal Card */
.deal-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.deal-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.deal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.deal-image {
  width: 64px;
  height: 64px;
  background: var(--secondary);
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.deal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deal-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.deal-info h4 {
  font-size: 0.875rem;
  font-weight: 600;
}

.deal-prices {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.deal-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted-foreground);
}

.deal-price {
  font-weight: 700;
  color: var(--foreground);
}

.deal-arrow {
  display: flex;
  justify-content: center;
  color: var(--muted-foreground);
}

.deal-arrow svg {
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
}

.deal-fees {
  font-size: 0.875rem;
}

.deal-fees span:last-child {
  color: var(--destructive);
}

.deal-profit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--success-light);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 0.5rem;
}

.deal-profit-row span:first-child {
  color: var(--success);
  font-weight: 500;
}

.deal-profit {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--success);
}

.deal-roi {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--success);
  margin-top: 0.75rem;
}

/* Features Mini Grid */
.features-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 640px) {
  .features-mini-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.feature-mini {
  text-align: center;
  padding: 1rem;
}

.feature-mini-icon {
  width: 56px;
  height: 56px;
  background: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.feature-mini-icon svg {
  width: 28px;
  height: 28px;
  color: var(--foreground);
}

.feature-mini h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.feature-mini p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== Cards Grid ===== */
.cards-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
}

.feature-card-icon {
  width: 56px;
  height: 56px;
  background: var(--success-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--success);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--muted-foreground);
}

/* ===== Steps Grid ===== */
.steps-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}

.step-card-item {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.step-card-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.step-number-large {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(249, 115, 22, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-icon-box {
  width: 56px;
  height: 56px;
  background: var(--success);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.step-icon-box svg {
  width: 28px;
  height: 28px;
  color: white;
}

.step-card-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-card-item p {
  color: var(--muted-foreground);
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--warning);
  color: var(--warning);
}

.testimonial-content {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-profit);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.author-name {
  font-weight: 600;
}

.author-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.testimonial-earnings {
  text-align: right;
}

.earnings-amount {
  font-weight: 700;
  color: var(--success);
}

.earnings-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

.pricing-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.pricing-card-featured {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--success);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card-featured .pricing-header h3 {
  color: white;
}

.pricing-header p {
  color: var(--muted-foreground);
}

.pricing-card-featured .pricing-header p {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-price {
  margin-bottom: 2rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
}

.pricing-card-featured .price-amount {
  color: white;
}

.price-period {
  color: var(--muted-foreground);
}

.pricing-card-featured .price-period {
  color: rgba(255, 255, 255, 0.7);
}

.price-equivalent {
  font-size: 0.875rem;
  color: var(--success);
  margin-top: 0.25rem;
}

.pricing-card .btn {
  margin-bottom: 2rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted-foreground);
}

.pricing-card-featured .pricing-features li {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-features svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

.pricing-card-featured .pricing-features svg {
  color: var(--success);
}

/* ===== FAQ ===== */
.faq-container {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item.active {
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

.faq-question:hover {
  color: var(--success);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--muted-foreground);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-box {
  background: var(--gradient-hero);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .cta-box { padding: 4rem; }
}

.cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.cta-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 256px;
  height: 256px;
  background: var(--success);
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(-50%, -50%);
}

.cta-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: var(--success);
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(50%, 50%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .cta-content h2 { font-size: 3rem; }
}

.cta-content > p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

@media (min-width: 1024px) {
  .cta-content > p { font-size: 1.25rem; }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; }
}

.cta-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Footer ===== */
.footer {
  background: var(--foreground);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 20rem;
  margin-top: 1rem;
}

.footer-links h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.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.4);
  font-size: 0.875rem;
}

/* ===== Auth Pages ===== */
.auth-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}

.auth-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.auth-card {
  width: 100%;
  max-width: 28rem;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h1 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--muted-foreground);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.2s;
  background: var(--background);
}

.form-group input:focus {
  outline: none;
  border-color: var(--success);
}

.form-group input::placeholder {
  color: var(--muted-foreground);
}

.password-input {
  position: relative;
}

.password-input input {
  padding-right: 3rem;
}

.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted-foreground);
  padding: 0.25rem;
}

.password-toggle:hover {
  color: var(--foreground);
}

.password-toggle svg {
  width: 20px;
  height: 20px;
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.checkbox-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--success);
}

.forgot-link {
  font-size: 0.875rem;
  color: var(--success);
}

.forgot-link:hover {
  text-decoration: underline;
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--muted-foreground);
}

.auth-footer a {
  color: var(--success);
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* ===== Checkout Pages ===== */
.checkout-main {
  padding-top: 100px;
  padding-bottom: 3rem;
  min-height: 100vh;
}

.checkout-container {
  max-width: 64rem;
  margin: 0 auto;
}

.checkout-step {
  animation: fadeIn 0.3s ease;
}

.checkout-step-hidden {
  display: none;
}

.checkout-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.checkout-header h1 {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .checkout-header h1 { font-size: 2.25rem; }
}

.checkout-header p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

/* Plans Grid */
.plans-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
}

.plan-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 2px solid var(--border);
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-card:hover {
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: var(--shadow-md);
}

.plan-card-selected {
  border-color: var(--success);
  background: rgba(249, 115, 22, 0.02);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.plan-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 1rem;
  background: var(--success);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: var(--shadow-profit);
}

.plan-badge-top svg {
  width: 12px;
  height: 12px;
}

.plan-savings {
  position: absolute;
  top: -12px;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  background: #22c55e;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
}

.plan-content {
  padding-top: 0.5rem;
}

.plan-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.plan-price {
  margin-bottom: 0.25rem;
}

.plan-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--success);
}

.plan-period {
  color: var(--muted-foreground);
}

.plan-equivalent {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.plan-features svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

.plan-select-indicator {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.plan-card-selected .plan-select-indicator {
  background: var(--success);
  border-color: var(--success);
}

.plan-select-indicator svg {
  width: 16px;
  height: 16px;
  color: white;
  opacity: 0;
}

.plan-card-selected .plan-select-indicator svg {
  opacity: 1;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.trust-badge svg {
  width: 16px;
  height: 16px;
  color: var(--success);
}

.checkout-continue {
  display: flex;
  margin: 0 auto;
  max-width: 24rem;
}

/* Back Button */
.back-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  padding: 0;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.back-btn:hover {
  color: var(--foreground);
}

.back-btn svg {
  width: 16px;
  height: 16px;
}

/* Checkout Layout */
.checkout-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .checkout-layout {
    grid-template-columns: 3fr 2fr;
  }
}

.checkout-form-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checkout-form-section .checkout-header {
  text-align: left;
  margin-bottom: 0;
}

/* Form Card */
.form-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.form-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--success);
}

.form-card-header h3 {
  font-weight: 700;
  font-size: 1rem;
}

.form-card-header p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.form-card-header-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.form-card-header-inline svg {
  width: 20px;
  height: 20px;
  color: var(--success);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--background);
  transition: border-color 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--success);
}

.form-input::placeholder {
  color: var(--muted-foreground);
}

.form-input-mono {
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
  letter-spacing: 0.05em;
}

.form-input-disabled {
  background: var(--muted);
  color: var(--muted-foreground);
}

.form-hint {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-row-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.promo-row {
  display: flex;
  gap: 0.75rem;
}

.promo-row .form-input {
  flex: 1;
}

.btn-success-applied {
  background: rgba(249, 115, 22, 0.1);
  color: var(--success);
  border-color: var(--success);
}

.checkout-terms {
  font-size: 0.75rem;
  text-align: center;
  color: var(--muted-foreground);
}

.checkout-terms a {
  color: var(--success);
}

.checkout-terms a:hover {
  text-decoration: underline;
}

/* Order Summary Sidebar */
.checkout-sidebar {
  position: sticky;
  top: 100px;
}

.order-summary {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.order-summary h3 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.summary-plan {
  background: rgba(249, 115, 22, 0.05);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.summary-plan-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.25rem;
}

.summary-plan-header span:first-child {
  font-weight: 500;
}

.summary-plan-price {
  font-weight: 700;
  color: var(--success);
}

.summary-billing {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.promo-applied {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #22c55e;
  margin-bottom: 1rem;
}

.promo-discount {
  font-weight: 500;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.summary-total span:first-child {
  font-weight: 700;
}

.summary-total-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--success);
}

.summary-guarantees {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.summary-guarantees li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.summary-guarantees svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
}

/* Account Setup */
.account-setup {
  max-width: 32rem;
  margin: 0 auto;
}

.success-indicator {
  text-align: center;
  margin-bottom: 2rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  color: var(--success);
}

.success-text {
  color: var(--success);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.success-indicator h1 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .success-indicator h1 { font-size: 1.875rem; }
}

.success-indicator p {
  color: var(--muted-foreground);
}

/* Success Page */
.success-page {
  text-align: center;
  padding: 3rem 0;
}

.success-icon-large {
  width: 80px;
  height: 80px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon-large svg {
  width: 40px;
  height: 40px;
  color: var(--success);
}

.success-page h1 {
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .success-page h1 { font-size: 2.25rem; }
}

.success-page > p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.success-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.success-note {
  background: rgba(244, 245, 247, 0.5);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 28rem;
  margin: 0 auto;
}

.success-note p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.success-note strong {
  color: var(--foreground);
}

/* ===== Privacy Policy ===== */
.privacy-main {
  padding-top: 100px;
  padding-bottom: 4rem;
  background: rgba(244, 245, 247, 0.3);
  min-height: 100vh;
}

.privacy-container {
  max-width: 56rem;
}

.privacy-header {
  margin-bottom: 3rem;
}

.privacy-header h1 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.privacy-date {
  color: var(--muted-foreground);
}

.privacy-content {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .privacy-content { padding: 3rem; }
}

.privacy-section {
  margin-bottom: 2.5rem;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.privacy-section h3 {
  font-size: 1rem;
  color: var(--success);
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.privacy-section h3:first-of-type {
  margin-top: 0;
}

.privacy-section p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  list-style: disc;
}

.privacy-section li {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.privacy-section a {
  color: var(--success);
}

.privacy-section a:hover {
  text-decoration: underline;
}

.contact-info p {
  margin-bottom: 0.25rem;
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-gentle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-slide-up {
  animation: slideUp 0.6s ease forwards;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-fade-in {
  animation: fadeIn 0.3s ease;
}
