* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #6366f1;
  --primary-glow: rgba(99, 102, 241, 0.5);
  --secondary: #ec4899;
  --accent: #06b6d4;
  --bg: #030712;
  --card-bg: #111827;
  --card-border: rgba(255, 255, 255, 0.1);
  --text: #f8fafc;
  --text-dim: #94a3b8;
  --border: rgba(255, 255, 255, 0.1);
  --glass-bg: #111827; /* Updated to solid dark */
  --glass-border: rgba(255, 255, 255, 0.15);
  --gradient-1: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  --gradient-2: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
  --gradient-3: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  --surface: rgba(255, 255, 255, 0.03);
  --font-main: 'Kanit', sans-serif;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-glow);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

body {
  font-family: var(--font-main);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Premium Background Effects --- */
.bg-wrapper {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  background: var(--bg);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  z-index: -1;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -15%;
  left: -15%;
  opacity: 0.2;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--secondary);
  bottom: -10%;
  right: -5%;
  animation-delay: -5s;
  opacity: 0.15;
}

/* --- Cursor Glow --- */
.cursor-glow {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  position: fixed;
  pointer-events: none; /* CRITICAL: ensures clicks pass through */
  z-index: 1; /* Move to background layer */
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: var(--tertiary);
  top: 20%;
  right: 15%;
  animation-delay: -8s;
  opacity: 0.15;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(10%, 15%) scale(1.1); }
  66% { transform: translate(-5%, 20%) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

/* --- Layout Container --- */
.container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

/* --- Lightbox Modal --- */
.lightbox {
  display: none;
  position: fixed;
  z-index: 30000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
  cursor: pointer;
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 90%;
  max-width: 1100px;
  max-height: 85vh;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  border-radius: 20px;
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.8);
  animation: lightboxIn 0.5s cubic-bezier(0.2, 1, 0.2, 1) forwards;
}

@keyframes lightboxIn {
  to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  z-index: 30001;
  transition: transform 0.3s;
}

.close-btn:hover { transform: scale(1.2) rotate(90deg); }

/* --- Modal & Payment Info --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 20000;
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  width: 100%;
  max-width: 450px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  animation: modalIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.4rem;
  color: #fff;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover { color: #fff; }

.modal-body {
  padding: 32px;
}

.payment-info {
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.payment-row:last-child { margin-bottom: 0; }

.payment-row .label { color: #94a3b8; }
.payment-row .value { color: #fff; font-weight: 500; text-align: right; }

.bank-highlight {
  color: #06C755 !important;
  font-weight: 700 !important;
}

.account-number {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.payment-instruction {
  text-align: center;
}

.payment-instruction p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 24px;
}

.line-btn {
  background: linear-gradient(135deg, #06C755 0%, #05a346 100%) !important;
  border: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.line-btn i { width: 20px; height: 20px; }

/* --- Navigation --- */
header {
  position: sticky;
  top: 24px;
  z-index: 1000;
  margin-top: 24px;
}

.pricing-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 48px 32px; /* Increased padding */
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  height: 100%; /* Ensure equal height in grid */
}

.price-list {
  margin-bottom: 40px; /* Force space below the list */
}

.pricing-card .btn {
  margin-top: auto; /* Still pushes to bottom, but looks better with the list margin */
}

.priciheader {
  position: sticky;
  top: 20px;
  z-index: 5000;
  width: 100%;
}

.nav-glass {
  background: #111827 !important; /* Force solid */
  backdrop-filter: none !important; /* Disable any blur */
  border: 1px solid var(--border);
  padding: 12px 32px;
  border-radius: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  flex-wrap: nowrap;
  gap: 20px;
  width: 100%;
}

.nav-links {
  display: flex;
  gap: 32px;
  flex-shrink: 1;
}

@media (max-width: 1100px) {
  .nav-links { display: none; } /* Hide links earlier to prevent overlapping */
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 12px;
  filter: drop-shadow(0 0 8px var(--primary-glow));
}

/* --- Floating Contact Button --- */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 0; /* No gap initially */
  padding: 16px; /* Initial circle padding */
  background: linear-gradient(135deg, #06C755 0%, #05a346 100%);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 100px;
  box-shadow: 0 15px 30px rgba(6, 199, 85, 0.4);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  animation: floatBounce 3s ease-in-out infinite;
  overflow: hidden;
  max-width: 56px; /* Icon width only initially */
  white-space: nowrap;
}

.floating-contact span {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.floating-contact:hover {
  max-width: 300px; /* Expand to show text */
  padding: 16px 28px;
  gap: 12px;
  box-shadow: 0 20px 45px rgba(6, 199, 85, 0.6);
  animation-play-state: paused;
}

.floating-contact:hover span {
  opacity: 1;
  max-width: 200px;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  width: 24px;
  height: 24px;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 480px) {
  .floating-contact { bottom: 20px; right: 20px; }
  /* Ensure it remains an icon on small mobiles */
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  width: 24px;
  height: 24px;
}

@media (max-width: 480px) {
  .floating-contact span { display: none; }
  .floating-contact { padding: 16px; border-radius: 50%; bottom: 20px; right: 20px; }
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
  h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.1; }
  h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
  p { font-size: clamp(0.9rem, 2vw, 1.1rem); line-height: 1.6; }
  box-shadow: 0 0 20px var(--primary-glow);
}

.brand-text h1 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.brand-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 32px;
  position: relative;
  z-index: 1001;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* --- Buttons --- */
.btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}

.btn-primary:hover {
  background: var(--primary);
  color: white;
  box-shadow: 0 15px 30px var(--primary-glow);
  transform: translateY(-3px) scale(1.02);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-muted);
}

/* --- Hero Section --- */
.hero {
  padding: 140px 0 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center; /* Center-aligns text and visual vertically */
  min-height: 85vh;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 48px;
}

/* --- Hero Card / Mockup --- */
.hero-visual {
  position: relative;
}

.mockup-container {
  width: 100%;
  max-width: 500px;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 
    0 30px 60px -12px rgba(0, 0, 0, 0.6),
    0 0 50px var(--primary-glow);
  position: relative;
  backdrop-filter: blur(20px);
}

.mockup-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 14px 20px;
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.mockup-body {
  padding: 40px;
}

.mockup-row {
  height: 14px;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.2));
  border-radius: 100px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-row::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: barShimmer 2.5s infinite linear;
}

@keyframes barShimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

.mockup-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Features Section --- */
.features {
  padding: 100px 0;
}

.section-label {
  text-align: center;
  margin-bottom: 60px;
}

.section-label h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-label p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
  box-shadow: 0 10px 20px var(--primary-glow);
  flex-shrink: 0;
}

.feature-card {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center everything in the card for better balance */
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  transition: left 0.6s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:nth-child(1) .feature-icon { background: var(--gradient-1); }
.feature-card:nth-child(2) .feature-icon { background: var(--gradient-2); }
.feature-card:nth-child(3) .feature-icon { background: var(--gradient-3); }
.feature-card:nth-child(4) .feature-icon { background: var(--gradient-1); }
.feature-card:nth-child(5) .feature-icon { background: var(--gradient-2); }
.feature-card:nth-child(6) .feature-icon { background: var(--gradient-3); }

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 100%, var(--primary-glow), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.feature-card p {
  color: var(--text-muted);
}

/* --- Steps Section --- */
.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  position: relative;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px 32px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  z-index: 2;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-8px);
  border-color: var(--primary);
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -60px auto 20px;
  font-weight: 800;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px var(--primary-glow);
  border: 4px solid var(--bg);
}

.step-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step-card p {
  line-height: 1.6;
  font-size: 0.95rem;
  height: auto; /* Allow auto height on mobile */
  min-height: 4.8em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  z-index: 1;
}

/* --- Screenshots Section --- */
.showcase {
  padding: 100px 0;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Force 4 columns for desktop */
  gap: 24px;
}

@media (max-width: 1200px) {
  .shot-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .shot-grid { grid-template-columns: 1fr; }
}

.shot-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: zoom-in;
}

.shot-card:hover {
  transform: scale(1.03);
  border-color: var(--secondary);
}

.shot-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.shot-info {
  padding: 20px;
}

.shot-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.shot-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Pricing Section --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 32px 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px -10px var(--primary-glow);
}

.save-badge {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.price-header {
  margin-bottom: 32px;
  position: relative;
}

.popular {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: var(--bg);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.price {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text);
}

.price span {
  font-size: 1rem;
  color: var(--text-muted);
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  text-align: left;
  width: 100%;
}

.price-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
}

.price-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 900;
}

/* --- CTA Section --- */
.cta {
  padding: 100px 0;
}

.cta-glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(59, 130, 246, 0.1));
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  padding: 80px 40px;
  border-radius: 40px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-glass h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.cta-glass p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 70ch;
  margin: 0 auto 48px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* --- Enhanced Footer --- */
footer {
  background: rgba(0, 0, 0, 0.3);
  padding: 100px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 20px;
  max-width: 30ch;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #475569;
  font-size: 0.9rem;
}

/* --- Tablet & Mobile Layout Fixes --- */
/* --- Mobile optimization refinements --- */
@media (max-width: 1200px) {
  .hero { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-visual { order: -1; max-width: 600px; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 1024px) {
  .section-padding { padding: 80px 0; }
  .steps-container { grid-template-columns: repeat(2, 1fr); gap: 100px 30px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-glass { 
    padding: 12px 20px; 
    border-radius: 100px;
    justify-content: space-between;
    gap: 10px;
    width: 95%;
  }
  .nav-glass .btn-primary {
    padding: 10px 18px;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  .brand-text h1 { font-size: 1.1rem; }
  .brand-text p { font-size: 0.7rem; }
  .logo-img { width: 32px; height: 32px; }
  
  .hero { padding-top: 60px; }
  .hero-title { font-size: 2.2rem; }
  .section-label h2 { font-size: 2rem; }
  .steps-container { grid-template-columns: 1fr; gap: 100px 0; padding-top: 40px; }
  .step-card { padding: 50px 24px 30px; }
  .step-card::after { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  
  /* Footer Fix */
  .footer-grid { 
    grid-template-columns: 1fr; 
    text-align: center; 
    gap: 48px; 
    justify-items: center;
  }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .brand { justify-content: center; width: 100%; }
  .footer-links, .footer-contact { display: flex; flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .section-padding { padding: 60px 0; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; margin: 0; }
  .badge { font-size: 0.75rem; }
  .step-number { width: 56px; height: 56px; font-size: 1.2rem; margin-top: -60px; }
}