/* --- GLOBAL VARIABLES --- */
:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --accent: #181ed9;
  --accent-hover: #1015b0;
  --success: #10b981;
  --bg-body: #ffffff;
  --surface: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --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 -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius-lg: 24px;
  --radius-md: 12px;
  --container-width: 1280px;
  --font-display: "Inter", sans-serif;
}

/* --- RESET & TYPOGRAPHY --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

/* --- UTILITIES --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}
.text-center {
  text-align: center;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, #4f54ff 0%, var(--accent) 100%);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(24, 30, 217, 0.39);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #3d42e6 0%, #1015b0 100%);
  box-shadow: 0 6px 20px rgba(24, 30, 217, 0.23);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-main);
}
.btn-outline:hover {
  border-color: var(--text-main);
  background: white;
}

/* --- HEADER --- */
header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  position: absolute;
  width: 100%;
  top: 0;
  padding-top: 24px;
  z-index: 1000;
  border-bottom: none;
  padding-left: 24px;
  padding-right: 24px;
}

nav {
  background: white;
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  border-radius: 50px;
  padding: 0 32px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
  max-width: var(--container-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.logo-icon {
  color: var(--accent);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a.active {
  color: var(--accent);
  font-weight: 600;
}

.nav-links a.has-dropdown::after {
  content: "▾";
  margin-left: 4px;
  font-size: 0.8em;
}

.nav-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}

.login-link {
  font-weight: 600;
  color: var(--text-main);
}

.login-link:hover {
  color: var(--accent);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* --- HOME PAGE STYLES --- */

/* Ticker Animation */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: white;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 60px;
  white-space: nowrap;
}

.ticker {
  display: inline-block;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  display: inline-block;
  padding: 0 40px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Features / Marketplace */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.feature-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.check-list li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 500;
  color: var(--primary);
}

.check-list li svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  color: var(--success);
  flex-shrink: 0;
}

.feature-image-wrapper {
  position: relative;
}

.feature-image-wrapper img {
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transform: rotate(2deg);
  transition: transform 0.3s;
  border-radius: var(--radius-lg);
}

.feature-image-wrapper:hover img {
  transform: rotate(0deg);
}

/* Payments */
.payments {
  background-color: var(--primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.payments::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  opacity: 0.3;
}

.payments-content {
  position: relative;
  z-index: 2;
}

.payments h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.payments p {
  color: #94a3b8;
  font-size: 1.1rem;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.payment-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: var(--radius-lg);
  transition: transform 0.3s;
}

.payment-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.payment-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.pill {
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Apps */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.app-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.app-img-container {
  height: 200px;
  overflow: hidden;
}

.app-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s;
}

.app-card:hover .app-img-container img {
  transform: scale(1.05);
}

.app-content {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.app-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--primary);
}
.app-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.store-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.btn-black {
  background: #000;
  color: white;
  font-size: 0.9rem;
  padding: 10px 20px;
}
.btn-black:hover {
  background: #333;
}

.badge {
  display: inline-block;
  background: #dbeafe;
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 100px;
  overflow: hidden;
  background: 
    radial-gradient(circle at 15% 20%, rgba(24, 30, 217, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(79, 84, 255, 0.08) 0%, transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1px solid rgba(24, 30, 217, 0.15);
  padding: 6px 6px 6px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--text-muted);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  margin-bottom: 32px;
  transition: transform 0.2s;
}

.pill-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.new-tag {
  background: linear-gradient(135deg, #4f54ff 0%, var(--accent) 100%);
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 100px;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.hero-cta-btn {
  padding: 16px 40px;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px -5px rgba(24, 30, 217, 0.4);
}

.dashboard-container {
  position: relative;
  margin-top: 80px;
  border-radius: var(--radius-lg);
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.15),
    0 0 80px -10px rgba(24, 30, 217, 0.25);
  background: white;
  padding: 12px;
}

.dashboard-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  border: 1px solid var(--border);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.feature-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.icon-box {
  width: 56px;
  height: 56px;
  background: #eff6ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary);
}

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

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 24px;
  margin-top: 60px;
}

.bento-item {
  background: #f8fafc;
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.bento-item:hover {
  border-color: var(--accent);
}

.bento-large {
  grid-column: span 2;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
}

.bento-tall {
  grid-row: span 2;
  background: white;
}

.bento-content {
  position: relative;
  z-index: 2;
}

.bento-large h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.bento-large p {
  color: #94a3b8;
  max-width: 400px;
}

.bento-img {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 60%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* Testimonials */
.testimonials-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 40px 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testimonial-card {
  min-width: 350px;
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  scroll-snap-align: center;
}

.stars {
  color: #fbbf24;
  margin-bottom: 16px;
}

.quote {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e2e8f0;
}

/* CTA Section */
.cta-box {
  background: var(--primary);
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-box h2 {
  font-size: 3rem;
  margin-bottom: 24px;
}

.cta-box p {
  color: #94a3b8;
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  max-width: 400px;
  width: 90%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  text-align: center;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

.modal h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.modal input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin: 20px 0 12px;
  font-size: 1rem;
}

/* --- PRICING PAGE STYLES --- */

.pricing-hero {
  padding-top: 180px;
  padding-bottom: 60px;
  text-align: center;
  background: radial-gradient(
      circle at 50% 0%,
      rgba(24, 30, 217, 0.05) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.pricing-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.pricing-hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Scribble Underline for Header */
.pricing-hero h1 {
  position: relative;
  display: inline-block;
}

.pricing-hero h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 8px;
  background: url('data:image/svg+xml;utf8,<svg width="200" height="10" viewBox="0 0 200 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 5.5C45.5 2.5 105.5 2.5 198 5.5" stroke="%233b82f6" stroke-width="4" stroke-linecap="round"/></svg>') no-repeat center;
  background-size: 100% 100%;
  opacity: 0.6;
}

/* Toggle Switch */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  background: white;
  padding: 6px;
  border-radius: 50px;
  border: 1px solid var(--border);
  position: relative;
  margin-bottom: 60px;
}

.toggle-btn {
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.toggle-btn.active {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 12px rgba(24, 30, 217, 0.2);
}

.toggle-btn:not(.active) {
  color: var(--text-muted);
}

.save-badge {
  position: absolute;
  top: -12px;
  right: -20px;
  background: #dbeafe;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
  transform: rotate(12deg);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.pricing-card.popular {
  border: 2px solid var(--accent);
  box-shadow: 0 10px 30px -5px rgba(24, 30, 217, 0.15);
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--success);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  min-height: 42px;
}

.price-area {
  margin-bottom: 24px;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.period {
  color: var(--text-muted);
  font-size: 1rem;
}

.promo-text {
  display: block;
  font-size: 0.85rem;
  color: var(--success);
  font-weight: 600;
  margin-top: 8px;
  background: #ecfdf5;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
}

.features-list {
  margin: 24px 0;
  flex-grow: 1;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.4;
}

.features-list li svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  margin-right: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

.transaction-fee {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.transaction-fee strong {
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}

/* Mobile Tabs */
.mobile-tabs {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  padding: 0 16px;
  overflow-x: auto;
}

.tab-btn {
  padding: 8px 16px;
  border-radius: 20px;
  background: #f1f5f9;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

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

/* --- PRICE COMPARISON --- */
.comparison-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.comparison-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}

.comparison-toggle:hover {
  color: var(--accent);
}

/* --- EVERY PLAN INCLUDES --- */
.features-highlight {
  background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
  color: white;
  padding: 100px 0;
  margin-top: 80px;
}

.features-highlight h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 60px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.highlight-item svg {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.highlight-item h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.highlight-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* --- COMMUNITY TICKER --- */
.community-section {
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.community-section h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 40px;
}

.ticker-text-wrap {
  background: white;
  white-space: nowrap;
  overflow: hidden;
  padding: 20px 0;
}

.ticker-text {
  display: inline-block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  animation: ticker 20s linear infinite;
}

.ticker-item-text {
  margin: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.diamond {
  color: black;
  font-size: 2rem;
}

/* --- CTA SECTION --- */
.cta-section {
  background: #1e293b;
  color: white;
  padding: 100px 0;
  text-align: center;
  background-image: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=2564&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.cta-section p {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 40px;
}

/* --- FOOTER --- */
footer {
  background: white;
  border-top: 1px solid var(--border);
  padding-top: 80px;
  padding-bottom: 40px;
  margin-top: 100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 300px;
  font-size: 0.95rem;
}

.footer-col h4 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col h5 {
  color: var(--primary);
  font-size: 0.95rem;
  margin: 24px 0 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent);
}

/* App Buttons */
.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.app-btn-group {
  margin-bottom: 8px;
}

.app-btn-group p {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
}

.store-links {
  display: flex;
  gap: 10px;
}

.store-btn {
  background: black;
  color: white;
  border-radius: 8px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
  border: 1px solid black;
}

.store-btn:hover {
  opacity: 0.8;
  color: white;
}

.store-btn svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.store-btn-small {
  font-size: 0.6rem;
  font-weight: 400;
}

.store-btn-large {
  font-size: 0.9rem;
  font-weight: 600;
}

.store-btn-apple {
  background: #007AFF;
  border-color: #007AFF;
}

.store-btn-google {
  background: #01875F;
  border-color: #01875F;
}

/* Support & Social */
.support-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.support-info a {
  color: var(--accent);
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}

.social-icon:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.social-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: white !important;
}

.social-tiktok {
  background: #000000;
  color: white !important;
}

.social-facebook {
  background: #1877F2;
  color: white !important;
}

.social-x {
  background: #000000;
  color: white !important;
}

.social-linkedin {
  background: #0A66C2;
  color: white !important;
}

.copyright {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.copyright p {
  margin-bottom: 4px;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
    gap: 40px;
    text-align: center;
  }
  
  /* Pricing Page Responsive */
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-image-wrapper img {
    transform: rotate(0);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .check-list li {
    justify-content: center;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bento-large {
    grid-column: span 1;
  }
  .bento-tall {
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .nav-actions, .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .pricing-hero h1 {
    font-size: 2.5rem;
  }
  
  .mobile-tabs {
    display: none;
  }
  
  .pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 40px;
  }
  
  .pricing-card {
    display: flex;
    margin-bottom: 0;
  }
  
  .pricing-card.active-card {
    display: flex;
    animation: none;
  }

  .grid-2 {
    grid-template-columns: 1fr !important; /* Force stack */
    text-align: center;
  }
  
  .highlight-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  

  
  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .features-highlight h2 {
    font-size: 2rem;
  }
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.coming-soon-badge {
  display: inline-block;
  padding: 6px 12px;
  background: #f1f5f9;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* --- MOBILE MENU --- */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: flex;
  opacity: 1;
}

.mobile-menu-container {
  background: white;
  width: 80%;
  max-width: 300px;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu-overlay.active .mobile-menu-container {
  transform: translateX(0);
}

.close-mobile-menu {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  margin-bottom: 24px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.mobile-link:hover {
  color: var(--accent);
}

/* --- EXTRA RESPONSIVE --- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  
  .hero h1 {
    font-size: 1.85rem;
    padding: 0 10px;
  }
  
  .hero p {
    font-size: 1rem;
  }

  .feature-text h2 {
    font-size: 1.75rem;
  }
  
  .pricing-hero h1 {
    font-size: 2rem;
  }
  
  .app-grid, .features-grid, .payment-grid {
    grid-template-columns: 1fr; /* Force 1 column on phones */
  }
  
  .cta-box {
    padding: 40px 20px;
  }
  
  .cta-box h2 {
    font-size: 2rem;
  }
  
  .cta-section h2 {
    font-size: 1.75rem;
  }
  
  .footer-col h4 {
    font-size: 1rem;
  }
  
  .store-links {
    flex-direction: row;
  }
  
  .store-btn {
    justify-content: center;
    flex: 1;
    padding: 6px 4px;
  }
}

