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

/* Color Variables & Theme Configurations */
:root {
  /* Common Colors */
  --primary: #0077ff;
  --primary-light: #3399ff;
  --primary-glow: rgba(0, 119, 255, 0.4);
  --accent: #00aaff;
  --accent-purple: #8b5cf6;
  --success: #10b981;
  --warning: #f59e0b;
  
  /* Transition Speed */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Light Mode Variables (Default) */
  --bg-body: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.8);
  --bg-nav: rgba(255, 255, 255, 0.85);
  --border-color: rgba(226, 232, 240, 0.8);
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-inverse: #ffffff;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
  --gradient-text: linear-gradient(135deg, #0055ff, #00c3ff);
  --hero-bg-glow: radial-gradient(circle at 50% 50%, rgba(0, 170, 255, 0.08) 0%, transparent 60%);
  --footer-bg: #0f172a;
}

[data-theme="dark"] {
  /* Dark Mode Variables */
  --bg-body: #090d16;
  --bg-card: rgba(17, 24, 39, 0.6);
  --bg-nav: rgba(9, 13, 22, 0.85);
  --border-color: rgba(255, 255, 255, 0.08);
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-inverse: #0f172a;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 45px -10px rgba(0, 119, 255, 0.15), 0 10px 15px -5px rgba(0, 0, 0, 0.5);
  --gradient-text: linear-gradient(135deg, #00aaff, #c084fc);
  --hero-bg-glow: radial-gradient(circle at 50% 30%, rgba(0, 119, 255, 0.15) 0%, rgba(139, 92, 246, 0.08) 40%, transparent 70%);
  --footer-bg: #030712;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Gradient Text Effect */
.grad-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sticky Navigation Header with Glassmorphism */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo img {
  height: 2.25rem;
  width: 2.25rem;
}

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

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.theme-toggle-btn:hover {
  background-color: var(--border-color);
  transform: scale(1.05);
}

.theme-toggle-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.theme-toggle-btn .sun-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle-btn .moon-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle-btn .sun-icon {
  display: block;
}

/* Hamburger Menu button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 1.5rem;
  height: 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  transition: var(--transition);
}

/* Interactive Hamburger states */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Buttons Styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-inverse);
  box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--border-color);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  background-image: var(--hero-bg-glow);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-content p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrapper {
  position: relative;
  border-radius: 2rem;
  padding: 0.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.hero-img-wrapper img {
  border-radius: 1.5rem;
}

/* Floating Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Glowing Background Decors */
.hero-glow-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(0, 170, 255, 0.25);
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  top: -10%;
  right: 10%;
}

/* Feature Cards Grid (Glassmorphism) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background-color: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 3rem 2.25rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 119, 255, 0.2);
}

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

.feature-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(0, 119, 255, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 2rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
  background-color: var(--primary);
  color: var(--text-inverse);
  transform: scale(1.05);
}

.feature-icon-wrapper svg {
  width: 1.75rem;
  height: 1.75rem;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

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

.feature-list {
  list-style: none;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.feature-list li svg {
  width: 1rem;
  height: 1rem;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Basic Features Checklist Section */
.basic-features-section {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.checklist-col h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.checklist-icon {
  width: 2.25rem;
  height: 2.25rem;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  flex-shrink: 0;
}

.checklist-icon svg {
  width: 1rem;
  height: 1rem;
}

.checklist-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.checklist-text p {
  color: var(--text-muted);
  font-size: 0.925rem;
}

/* Pro Upgrade Banner */
.pro-banner {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid var(--border-color);
  border-radius: 2rem;
  padding: 4rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.pro-banner::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(0, 119, 255, 0.2);
  filter: blur(60px);
  border-radius: 50%;
  top: -20%;
  left: -5%;
}

.pro-banner::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.2);
  filter: blur(60px);
  border-radius: 50%;
  bottom: -20%;
  right: -5%;
}

.pro-banner-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
}

.pro-banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pro-banner-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.pro-banner-badge {
  display: inline-block;
  background-color: var(--primary);
  color: var(--text-inverse);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

/* Pricing Page Layout */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  background-color: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 2rem;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

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

.pricing-card.premium {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.pricing-card.premium::after {
  content: 'Terpopuler';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent-purple));
  color: var(--text-inverse);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  letter-spacing: 0.5px;
}

.pricing-header h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.pricing-header p {
  color: var(--text-muted);
  font-size: 0.925rem;
  min-height: 2.75rem;
  margin-bottom: 1.5rem;
}

.price {
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--text-main);
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  margin-bottom: 0.5rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.pricing-features li.unavailable {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.6;
}

.pricing-features li svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--success);
  flex-shrink: 0;
}

.pricing-features li.unavailable svg {
  color: var(--text-muted);
}

.pricing-card .btn {
  width: 100%;
}

.pricing-note {
  text-align: center;
  margin-top: 3rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* FAQ / Accordion Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: rgba(0, 119, 255, 0.03);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-answer p {
  padding-bottom: 1.5rem;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 1.25rem;
  height: 1.25rem;
}

.faq-item.active {
  border-color: rgba(0, 119, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 119, 255, 0.05);
}

.faq-item.active .faq-answer {
  max-height: 1000px; /* arbitrary large value for smooth expand */
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

/* Contact Page Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.info-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(0, 119, 255, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.info-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

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

.contact-form-container {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 3.5rem 3rem;
}

.contact-form-container h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.contact-form-container p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-form-container .btn {
  width: 100%;
}

/* Legal Documents Layout (Terms / Privacy) */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 4rem 3.5rem;
}

.legal-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.legal-content h3 {
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.975rem;
  text-align: justify;
}

.legal-content ul, 
.legal-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 0.975rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.legal-table th, 
.legal-table td {
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  text-align: left;
}

.legal-table th {
  background-color: rgba(0, 119, 255, 0.05);
  font-weight: 600;
}

/* Footer Styling */
footer {
  background-color: var(--footer-bg);
  color: #94a3b8;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

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

.footer-about .logo {
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.footer-about p {
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-links-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links-col a {
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

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

/* Scroll Animation States */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .features-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 4.5rem;
  }
  
  .hamburger {
    display: flex;
  }
  
  /* Full screen Navigation Overlay for Mobile */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--bg-nav);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem;
    gap: 2.5rem;
    transition: var(--transition);
    z-index: 1050;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-actions {
    margin-right: 1rem;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .checklist-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-about p {
    max-width: 100%;
  }
  
  .legal-container {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .pro-banner {
    padding: 2.5rem 1.5rem;
  }
  
  .pro-banner-content h2 {
    font-size: 2rem;
  }
  
  .pricing-card {
    padding: 2.5rem 1.75rem;
  }
}

/* Stats Bar Section */
.stats-bar {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2rem 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stats-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stats-label {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.testimonial-card {
  background-color: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 119, 255, 0.2);
}

.testi-rating {
  color: var(--warning);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.testi-text {
  color: var(--text-main);
  font-size: 0.975rem;
  line-height: 1.6;
  font-style: italic;
  flex-grow: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
}

.author-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}

.author-info span {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
}

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

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  background-color: #20ba5a;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: wa-pulse 1.8s infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3.25rem;
    height: 3.25rem;
  }
}

/* Mockup Pulsating Hotspots & Tooltips */
.hero-img-wrapper {
  position: relative;
}

.hotspot {
  position: absolute;
  width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 10;
}

.hotspot-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
}

.hotspot-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: rgba(0, 170, 255, 0.4);
  border-radius: 50%;
  animation: pulse-hotspot 2s infinite;
}

@keyframes pulse-hotspot {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}

/* Tooltip Styling */
.hotspot::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  width: 220px;
  padding: 0.85rem;
  background-color: rgba(15, 23, 42, 0.95);
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 1.4;
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 100;
  text-align: center;
}

.hotspot:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

/* App Showcase Gallery */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.showcase-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-main);
}

.phone-frame {
  position: relative;
  border-radius: 1.75rem;
  padding: 0.5rem;
  background-color: var(--bg-card);
  border: 4px solid var(--text-main);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: var(--transition);
  max-width: 250px;
}

.phone-frame:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 35px rgba(0, 119, 255, 0.12);
  border-color: var(--primary);
}

.phone-frame img {
  border-radius: 1.25rem;
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
