/* ============================================
   FEEDO AGENT — Landing Page Styles
   feedoagent.com
   ============================================ */

/* --- Google Fonts & Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --green: #00c853;
  --green-dark: #00a844;
  --green-glow: rgba(0, 200, 83, 0.15);
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --grey: #f5f5f5;
  --grey-2: #e8e8e8;
  --grey-3: #999999;
  --text: #111111;
  --text-light: #555555;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
  --shadow-green: 0 8px 32px rgba(0, 200, 83, 0.25);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
  font-size: 1.05rem;
  line-height: 1.75;
}

/* --- Layout --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  background: var(--green-glow);
  padding: 6px 14px;
  border-radius: 100px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--green);
  color: var(--dark);
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background: #00e05c;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 200, 83, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-grey {
  background: #e0e0e0;
  color: #444;
}

.btn-grey:hover {
  background: #d0d0d0;
  transform: translateY(-1px);
}

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

.btn-dark:hover {
  background: #222;
  transform: translateY(-2px);
}

.btn-lg {
  font-size: 1.1rem;
  padding: 18px 36px;
}

/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }


/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.nav-logo span {
  color: var(--green);
}

.nav-cta {
  font-size: 0.9rem;
  padding: 10px 20px;
}


/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Animated gradient background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(0, 200, 83, 0.12) 0%, transparent 65%);
  animation: pulse 8s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 65%;
  height: 65%;
  background: radial-gradient(ellipse, rgba(0, 200, 83, 0.07) 0%, transparent 65%);
  animation: pulse 10s ease-in-out 2s infinite reverse;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.2);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 900;
}

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

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Trust bar */
.trust-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 40px;
  margin-top: 40px;
  width: 100%;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.trust-bar-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-platforms {
  display: flex;
  align-items: center;
  gap: 12px;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.platform-badge:hover {
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.9);
}

.platform-badge i {
  font-size: 1rem;
}

.platform-badge .fa-instagram { color: #e1306c; }
.platform-badge .fa-facebook { color: #1877f2; }
.platform-badge .fa-tiktok { color: #ffffff; }
.platform-badge .fa-google { color: #4285f4; }


/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem {
  background: var(--grey);
  padding: 100px 0;
}

.problem-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.problem h2 {
  margin-bottom: 32px;
}

.problem-pains {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 36px 0;
  text-align: left;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--grey-2);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  transition: var(--transition);
}

.pain-item:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.pain-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-item p {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0;
}

.pain-item p strong {
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

.problem-closer {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 40px;
}

.problem-closer .green {
  color: var(--green);
}


/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
  background: var(--white);
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 14px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

/* Connector line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, var(--grey-2) 100%);
  z-index: 0;
}

.step-card {
  background: var(--grey);
  border: 1px solid var(--grey-2);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--green);
}

.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--green);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
}

.step-icon {
  font-size: 2.4rem;
  margin: 12px 0 20px;
}

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

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


/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
  background: var(--dark-2);
  padding: 100px 0;
}

.features .section-header h2 {
  color: var(--white);
}

.features .section-header p {
  color: rgba(255, 255, 255, 0.5);
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 83, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 200, 83, 0.2);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: inline-block;
  background: var(--green-glow);
  padding: 12px;
  border-radius: 10px;
}

.feature-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
  line-height: 1.65;
}


/* ============================================
   COMPARISON SECTION
   ============================================ */

.comparison {
  background: var(--white);
  padding: 100px 0;
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--grey-2);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 24px;
  text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  color: var(--text-light);
  font-weight: 500;
  background: var(--grey);
}

.comparison-table th {
  font-size: 0.9rem;
  font-weight: 700;
  border-bottom: 2px solid var(--grey-2);
  background: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
}

.comparison-table th:nth-child(2) {
  background: rgba(0, 200, 83, 0.06);
  color: var(--green-dark);
  border-bottom: 2px solid var(--green);
}

.comparison-table td:nth-child(2) {
  background: rgba(0, 200, 83, 0.04);
  font-weight: 600;
  color: var(--text);
}

.comparison-table tr {
  border-bottom: 1px solid var(--grey-2);
}

.comparison-table tr:last-child {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: var(--grey);
}

.comparison-table tr:hover td:nth-child(2) {
  background: rgba(0, 200, 83, 0.06);
}

.check { color: var(--green); font-size: 1.1rem; }
.cross { color: #ff4444; font-size: 1.1rem; }
.dash { color: var(--grey-3); }

.comparison-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.comparison-note strong {
  color: var(--green-dark);
}


/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
  background: var(--grey);
  padding: 100px 0;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--grey-2);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), var(--shadow-lg);
  transform: scale(1.03);
  z-index: 1;
}

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

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 200, 83, 0.35);
}

.pricing-plan {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}

.featured .pricing-plan {
  color: var(--green-dark);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.price-dollar {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.price-amount {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-light);
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--grey-2);
  line-height: 1.5;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
}

.pricing-feature .check-icon {
  color: var(--green);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-feature .dim-icon {
  color: var(--grey-3);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 3px;
}

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

.pricing-cancel {
  text-align: center;
  font-size: 0.78rem;
  color: var(--grey-3);
  margin-top: 10px;
}


/* ============================================
   SOCIAL PROOF
   ============================================ */

.social-proof {
  background: var(--white);
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.testimonial-card {
  background: var(--grey);
  border: 1px solid var(--grey-2);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.author-biz {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1px;
}

/* Platform logos row */
.platform-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px 0 0;
  border-top: 1px solid var(--grey-2);
}

.platform-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
}

.platform-logo-item:hover {
  color: var(--text);
}

.platform-logo-item i {
  font-size: 1.5rem;
}

.platform-logo-item .fa-instagram { color: #e1306c; }
.platform-logo-item .fa-facebook { color: #1877f2; }
.platform-logo-item .fa-tiktok { color: #010101; }
.platform-logo-item .fa-google { color: #4285f4; }


/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
  background: var(--grey);
  padding: 100px 0;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(0, 200, 83, 0.3);
  box-shadow: 0 4px 20px rgba(0, 200, 83, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
  -webkit-user-select: none;
}

.faq-question:hover {
  background: var(--grey);
}

.faq-q-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--text-light);
  font-size: 0.85rem;
}

.faq-item.open .faq-icon {
  background: var(--green);
  color: var(--dark);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
}

.faq-answer-inner strong {
  color: var(--text);
}


/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
  background: var(--dark);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(0, 200, 83, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 540px;
  margin: 0 auto 40px;
}

.final-cta-fine {
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3) !important;
  margin-bottom: 0 !important;
}

.final-cta-fine span {
  margin: 0 8px;
  opacity: 0.4;
}


/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 0 28px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.footer-logo span {
  color: var(--green);
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.2);
}


/* ============================================
   RESPONSIVE — TABLET
   ============================================ */

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

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

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto 48px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px 16px;
    font-size: 0.88rem;
  }
}


/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */

@media (max-width: 620px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .trust-bar {
    flex-direction: column;
    gap: 14px;
  }

  .trust-platforms {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .platform-logos {
    gap: 20px;
  }

  .comparison-table {
    font-size: 0.82rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
}
