/* ============================================
   HelloMyGYM - Premium Marketing Website
   Modern, Clean, Responsive CSS
   ============================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary Colors */
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-300: #93c5fd;
  --primary-400: #60a5fa;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-800: #1e40af;
  --primary-900: #1e3a8a;

  /* Accent Colors */
  --accent-orange: #f97316;
  --accent-green: #10b981;
  --accent-emerald: #059669;
  --accent-red: #ef4444;
  --accent-amber: #f59e0b;
  --accent-purple: #8b5cf6;
  --accent-cyan: #06b6d4;

  /* Neutral Colors */
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --gray-950: #020617;

  /* Semantic Colors */
  --bg-body: #fafbfc;
  --bg-surface: #ffffff;
  --bg-elevated: #ffffff;
  --border-light: #e5e7eb;
  --border-medium: #d1d5db;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;

  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  /* Spacing Scale */
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --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 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-primary: 0 20px 40px -10px rgba(37, 99, 235, 0.4);
  --shadow-glow: 0 0 60px rgba(59, 130, 246, 0.3);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Container */
  --container-max: 1200px;
  --container-padding: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-family);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--gray-800);
  background-color: var(--bg-body);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Smooth background gradient */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(139, 92, 246, 0.08), transparent),
    radial-gradient(ellipse 50% 30% at 0% 100%, rgba(16, 185, 129, 0.06), transparent);
  pointer-events: none;
  z-index: -1;
}

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

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

a:hover {
  color: var(--primary-600);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ---------- Selection Style ---------- */
::selection {
  background-color: var(--primary-200);
  color: var(--primary-900);
}

/* ---------- Focus Styles ---------- */
:focus-visible {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
}

/* ---------- Container ---------- */
.hm-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ---------- Section ---------- */
.hm-section {
  padding: var(--space-20) 0;
  position: relative;
}

.hm-section-alt {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--bg-body) 100%);
}

.hm-section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

/* ---------- Section Header ---------- */
.hm-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-12);
}

.hm-section-header-left {
  text-align: left;
  margin-left: 0;
}

.hm-section-header h2 {
  font-size: var(--text-4xl);
  font-weight: var(--font-extrabold);
  line-height: var(--leading-tight);
  color: var(--gray-900);
  margin-bottom: var(--space-4);
  letter-spacing: -0.025em;
}

.hm-section-header p {
  font-size: var(--text-lg);
  color: var(--gray-600);
  line-height: var(--leading-relaxed);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.hm-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
  transition: all var(--transition-base);
}

.hm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  gap: var(--space-8);
}

/* Logo */
.hm-logo {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-extrabold);
  color: var(--gray-900);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.hm-logo span {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.hm-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.hm-nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.hm-nav-list a {
  display: block;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--gray-600);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.hm-nav-list a:hover {
  color: var(--gray-900);
  background-color: var(--gray-100);
  text-decoration: none;
}

/* Mobile Nav Toggle */
.hm-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background-color: var(--gray-100);
  gap: 5px;
  transition: background-color var(--transition-fast);
}

.hm-nav-toggle:hover {
  background-color: var(--gray-200);
}

.hm-nav-toggle span {
  width: 20px;
  height: 2px;
  background-color: var(--gray-700);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

/* Header CTA */
.hm-header-cta {
  flex-shrink: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.hm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  line-height: var(--leading-tight);
  border-radius: var(--radius-xl);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none !important;
}

.hm-btn-primary {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  color: white;
  box-shadow: var(--shadow-primary), inset 0 1px 0 rgba(255,255,255,0.1);
}

.hm-btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary), 0 25px 50px -10px rgba(37, 99, 235, 0.5);
}

.hm-btn-primary:active {
  transform: translateY(0);
}

.hm-btn-ghost {
  background-color: white;
  color: var(--gray-700);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.hm-btn-ghost:hover {
  background-color: var(--gray-50);
  border-color: var(--gray-300);
  color: var(--gray-900);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.hm-btn-block {
  width: 100%;
}

.hm-btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  border-radius: var(--radius-2xl);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hm-hero {
  padding: var(--space-16) 0 var(--space-20);
  overflow: hidden;
}

.hm-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hm-hero-content {
  max-width: 580px;
}

/* Hero Badge */
.hm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  border: 1px solid var(--primary-200);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--primary-700);
  margin-bottom: var(--space-6);
}

.hm-hero-badge::before {
  content: '✨';
}

/* Hero Heading */
.hm-hero h1 {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: var(--font-extrabold);
  line-height: 1.1;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
}

.hm-hero h1 strong {
  background: linear-gradient(135deg, var(--primary-600), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Subtitle */
.hm-hero-subtitle {
  font-size: var(--text-xl);
  color: var(--gray-600);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
}

/* Hero Bullets */
.hm-hero-bullets {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.hm-hero-bullets li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--gray-700);
}

.hm-hero-bullets li::before {
  content: '';
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-emerald));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

/* Hero CTA */
.hm-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

/* Hero Note */
.hm-hero-note {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

/* Hero Preview / Phone Mockup */
.hm-hero-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Glow effect behind phone */
.hm-hero-preview::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-400) 0%, transparent 70%);
  opacity: 0.3;
  filter: blur(60px);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.4; }
}

/* Phone Frame */
.hm-phone-frame {
  width: 300px;
  height: 600px;
  background: linear-gradient(145deg, var(--gray-900) 0%, var(--gray-800) 50%, var(--primary-900) 100%);
  border-radius: 44px;
  padding: 12px;
  position: relative;
  box-shadow: 
    0 50px 100px -20px rgba(0, 0, 0, 0.4),
    0 30px 60px -30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform var(--transition-slow);
}

.hm-phone-frame:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Phone Notch */
.hm-phone-frame::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background-color: var(--gray-950);
  border-radius: 20px;
  z-index: 10;
}

/* Phone Screen */
.hm-phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-50) 0%, white 30%, var(--gray-50) 100%);
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: var(--space-10) var(--space-5) var(--space-5);
}

/* Phone Badge */
.hm-phone-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: var(--space-2) var(--space-3);
  background: var(--gray-900);
  color: white;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

/* Phone Stats Grid */
.hm-phone-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  flex: 1;
}

.hm-phone-stat-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.hm-phone-stat-label {
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-1);
}

.hm-phone-stat-value {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--gray-900);
  line-height: var(--leading-none);
  margin-bottom: var(--space-1);
}

.hm-phone-stat-meta {
  font-size: var(--text-xs);
  color: var(--gray-500);
}

.hm-phone-stat-meta.positive {
  color: var(--accent-green);
}

/* Phone Footer */
.hm-phone-footer {
  margin-top: auto;
  padding-top: var(--space-4);
  text-align: center;
  font-size: var(--text-xs);
  color: var(--gray-500);
}

/* ============================================
   CARDS & GRIDS
   ============================================ */
.hm-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.hm-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

/* Feature Grid */
.hm-feature-grid {
  margin-top: var(--space-4);
}

/* Card */
.hm-card {
  background: white;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.hm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-purple));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.hm-card:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

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

/* Card Icon */
.hm-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  margin-bottom: var(--space-5);
}

.hm-card h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--gray-900);
  margin-bottom: var(--space-3);
}

.hm-card p {
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* ============================================
   LIST STYLES
   ============================================ */
.hm-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.hm-list li {
  font-size: var(--text-sm);
  color: var(--gray-700);
  padding-left: var(--space-6);
  position: relative;
  line-height: var(--leading-relaxed);
}

.hm-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background-color: var(--gray-300);
  border-radius: var(--radius-full);
}

.hm-list-check li::before {
  width: 20px;
  height: 20px;
  top: 0;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-emerald));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.hm-list-check li {
  padding-left: var(--space-8);
}

/* ============================================
   HOW IT WORKS / STEPS
   ============================================ */
.hm-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-4);
  position: relative;
}

/* Connection line */
.hm-steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-200), var(--primary-400), var(--primary-200));
  z-index: 0;
}

.hm-step {
  background: white;
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  text-align: center;
  border: 1px solid var(--gray-100);
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.hm-step:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.hm-step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  margin: 0 auto var(--space-4);
  box-shadow: var(--shadow-primary);
}

.hm-step h3 {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--gray-900);
  margin-bottom: var(--space-2);
}

.hm-step p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: var(--leading-normal);
  margin: 0;
}

/* ============================================
   PRICING
   ============================================ */
.hm-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-4);
  align-items: stretch;
}

.hm-pricing-card {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
}

.hm-pricing-card-popular {
  border-color: var(--primary-300);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--primary-200);
  transform: scale(1.02);
  z-index: 1;
}

.hm-pricing-card-popular::before {
  opacity: 1 !important;
}

/* Badge */
.hm-badge {
  position: absolute;
  top: -14px;
  right: var(--space-6);
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(135deg, var(--accent-orange), #ea580c);
  color: white;
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.hm-pricing-card h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-2);
}

.hm-pricing-price {
  font-size: var(--text-4xl);
  font-weight: var(--font-extrabold);
  color: var(--gray-900);
  margin-bottom: var(--space-2);
}

.hm-pricing-price span {
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: var(--gray-500);
}

.hm-pricing-note {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--gray-100);
}

.hm-pricing-card .hm-list {
  flex: 1;
  margin-bottom: var(--space-6);
}

.hm-pricing-card .hm-btn {
  margin-top: auto;
}

.hm-pricing-disclaimer {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-top: var(--space-8);
}

/* ============================================
   SECURITY SECTION
   ============================================ */
.hm-security-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hm-security-highlight {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  border-radius: var(--radius-3xl);
  padding: var(--space-10);
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.hm-security-highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hm-security-badge {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hm-security-badge::before {
  content: '🔒';
}

.hm-security-note {
  font-size: var(--text-base);
  opacity: 0.9;
  line-height: var(--leading-relaxed);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.hm-faq-list {
  max-width: 800px;
  margin: var(--space-4) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.hm-faq-item {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all var(--transition-base);
}

.hm-faq-item:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.hm-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: var(--gray-900);
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hm-faq-question:hover {
  color: var(--primary-600);
}

.hm-faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-100);
  border-radius: var(--radius-full);
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--gray-500);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.hm-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.hm-faq-answer p {
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* FAQ Open State */
.hm-faq-item.is-open {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-md);
}

.hm-faq-item.is-open .hm-faq-icon {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
  color: white;
  transform: rotate(45deg);
}

.hm-faq-item.is-open .hm-faq-answer {
  max-height: 300px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.hm-contact {
  background: linear-gradient(180deg, var(--primary-50) 0%, var(--bg-body) 100%);
  position: relative;
}

.hm-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-200), transparent);
}

.hm-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-12);
  align-items: flex-start;
}

/* Contact Form */
.hm-contact-form {
  padding: var(--space-8);
}

.hm-form-group {
  margin-bottom: var(--space-5);
}

.hm-form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--gray-700);
  margin-bottom: var(--space-2);
}

.hm-form-group input,
.hm-form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  font-family: inherit;
  color: var(--gray-900);
  background-color: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  outline: none;
  transition: all var(--transition-fast);
}

.hm-form-group input::placeholder,
.hm-form-group textarea::placeholder {
  color: var(--gray-400);
}

.hm-form-group input:focus,
.hm-form-group textarea:focus {
  background-color: white;
  border-color: var(--primary-400);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.hm-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.hm-form-note {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: var(--space-4);
}

.hm-form-privacy {
  font-size: var(--text-xs);
  color: var(--gray-500);
  margin-top: var(--space-4);
  line-height: var(--leading-relaxed);
}

.hm-form-status {
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  text-align: center;
}

.hm-form-status:empty {
  display: none;
}

.hm-form-status.is-success {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--accent-emerald);
}

.hm-form-status.is-error {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--accent-red);
}

/* ============================================
   FOOTER
   ============================================ */
.hm-footer {
  background: var(--gray-950);
  color: var(--gray-300);
  padding-top: var(--space-16);
}

.hm-footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--space-16);
  padding-bottom: var(--space-12);
}

.hm-footer-logo {
  margin-bottom: var(--space-4);
  color: white;
}

.hm-footer-text {
  font-size: var(--text-sm);
  color: var(--gray-400);
  line-height: var(--leading-relaxed);
  max-width: 300px;
}

.hm-footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.hm-footer-links h3 {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: white;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hm-footer-links a,
.hm-footer-links span {
  display: block;
  font-size: var(--text-sm);
  color: var(--gray-400);
  margin-bottom: var(--space-3);
  transition: color var(--transition-fast);
}

.hm-footer-links a:hover {
  color: white;
  text-decoration: none;
}

/* Footer Bottom */
.hm-footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding: var(--space-6) 0;
}

.hm-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

.hm-footer-bottom-inner p {
  font-size: var(--text-xs);
  color: var(--gray-500);
  margin: 0;
}

.hm-footer-mini {
  text-align: right;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Tablets & Small Desktops */
@media (max-width: 1024px) {
  :root {
    --container-padding: 1.25rem;
  }

  .hm-section {
    padding: var(--space-16) 0;
  }

  .hm-section-header h2 {
    font-size: var(--text-3xl);
  }

  .hm-hero-grid {
    gap: var(--space-10);
  }

  .hm-hero h1 {
    font-size: var(--text-4xl);
  }

  .hm-phone-frame {
    width: 260px;
    height: 520px;
  }

  .hm-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }

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

  .hm-footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}

/* Tablets */
@media (max-width: 900px) {
  .hm-hero-grid,
  .hm-security-grid,
  .hm-contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .hm-hero {
    padding: var(--space-10) 0 var(--space-16);
    text-align: center;
  }

  .hm-hero-content {
    max-width: 100%;
  }

  .hm-hero-badge {
    justify-content: center;
  }

  .hm-hero-bullets {
    align-items: center;
  }

  .hm-hero-cta {
    justify-content: center;
  }

  .hm-hero-preview {
    order: -1;
  }

  .hm-section-header-left {
    text-align: center;
  }

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

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

  .hm-pricing-card-popular {
    transform: scale(1);
  }

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

  .hm-footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .hm-security-highlight {
    padding: var(--space-8);
  }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
  }

  .hm-section {
    padding: var(--space-12) 0;
  }

  .hm-section-header {
    margin-bottom: var(--space-8);
  }

  .hm-section-header h2 {
    font-size: var(--text-2xl);
  }

  .hm-section-header p {
    font-size: var(--text-base);
  }

  /* Header Mobile */
  .hm-header-inner {
    padding: var(--space-3) 0;
  }

  .hm-nav-toggle {
    display: inline-flex;
  }

  .hm-nav-list {
    position: fixed;
    top: 70px;
    left: var(--space-4);
    right: var(--space-4);
    flex-direction: column;
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-4);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--gray-100);
    display: none;
    z-index: 99;
  }

  .hm-nav-list.is-open {
    display: flex;
  }

  .hm-nav-list a {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
    border-radius: var(--radius-lg);
  }

  .hm-header-cta {
    display: none;
  }

  /* Hero Mobile */
  .hm-hero h1 {
    font-size: var(--text-3xl);
  }

  .hm-hero-subtitle {
    font-size: var(--text-base);
  }

  .hm-phone-frame {
    width: 240px;
    height: 480px;
    border-radius: 36px;
    transform: none;
  }

  .hm-phone-frame:hover {
    transform: none;
  }

  .hm-phone-screen {
    border-radius: 28px;
    padding: var(--space-8) var(--space-4) var(--space-4);
  }

  /* Grids Mobile */
  .hm-grid-3,
  .hm-grid-2,
  .hm-pricing-grid,
  .hm-steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .hm-card {
    padding: var(--space-6);
  }

  .hm-step {
    padding: var(--space-5);
  }

  /* Pricing Mobile */
  .hm-pricing-card {
    padding: var(--space-6);
  }

  /* Contact Mobile */
  .hm-contact-form {
    padding: var(--space-6);
  }

  /* Footer Mobile */
  .hm-footer {
    padding-top: var(--space-10);
  }

  .hm-footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .hm-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }

  .hm-footer-mini {
    text-align: left;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .hm-section {
    padding: var(--space-10) 0;
  }

  .hm-logo {
    font-size: var(--text-xl);
  }

  .hm-hero h1 {
    font-size: var(--text-2xl);
    line-height: 1.2;
  }

  .hm-hero-subtitle {
    font-size: var(--text-sm);
  }

  .hm-hero-bullets li {
    font-size: var(--text-sm);
  }

  .hm-hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hm-hero-cta .hm-btn {
    width: 100%;
    justify-content: center;
  }

  .hm-phone-frame {
    width: 200px;
    height: 400px;
    border-radius: 30px;
  }

  .hm-phone-screen {
    border-radius: 24px;
    padding: var(--space-6) var(--space-3) var(--space-3);
  }

  .hm-phone-stat-value {
    font-size: var(--text-xl);
  }

  .hm-section-header h2 {
    font-size: var(--text-xl);
  }

  .hm-card h3 {
    font-size: var(--text-lg);
  }

  .hm-pricing-price {
    font-size: var(--text-3xl);
  }

  .hm-faq-question {
    padding: var(--space-4);
    font-size: var(--text-sm);
  }

  .hm-faq-answer p {
    padding: 0 var(--space-4) var(--space-4);
    font-size: var(--text-sm);
  }

  .hm-footer-links {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* Small Mobile */
@media (max-width: 360px) {
  :root {
    --container-padding: 0.75rem;
  }

  .hm-hero h1 {
    font-size: 1.5rem;
  }

  .hm-btn {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
  }

  .hm-phone-frame {
    width: 180px;
    height: 360px;
  }
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print styles */
@media print {
  .hm-header,
  .hm-footer,
  .hm-hero-preview,
  .hm-btn {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  body::before {
    display: none;
  }

  .hm-section {
    padding: 1rem 0;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; }

.hidden { display: none; }
.visible { display: block; }

/* WhatsApp Button special styling */
.hm-btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  box-shadow: 0 20px 40px -10px rgba(37, 211, 102, 0.4);
}

.hm-btn-whatsapp:hover {
  background: linear-gradient(135deg, #2BE070 0%, #14A085 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 25px 50px -10px rgba(37, 211, 102, 0.5);
}

.hm-btn-whatsapp::before {
  content: '💬';
  margin-right: var(--space-2);
}

/* ============================================
   LEGAL PAGES STYLES
   ============================================ */
.hm-section-header h1 {
  font-size: var(--text-4xl);
  font-weight: var(--font-extrabold);
  color: var(--gray-900);
  margin-bottom: var(--space-3);
  letter-spacing: -0.025em;
}

/* Legal content styling */
.hm-card h2 {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--gray-900);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--gray-100);
}

.hm-card h2:first-child {
  margin-top: 0;
}

.hm-card p {
  margin-bottom: var(--space-4);
  color: var(--gray-700);
  line-height: var(--leading-relaxed);
}

.hm-card p:last-child {
  margin-bottom: 0;
}

.hm-card strong {
  color: var(--gray-900);
  font-weight: var(--font-semibold);
}

.hm-card .hm-list {
  margin-bottom: var(--space-4);
}

/* ---------- DARK LUXURY THEME OVERRIDE ---------- */
:root {
  --primary-500: #FF6B1A;
  --primary-600: #FF6B1A;
  --primary-700: #ff8540;
  --bg-body: #0A0A0F;
  --gray-900: #F0F0F0;
  --gray-800: #F0F0F0;
  --gray-700: #cbd5e1;
  --gray-600: #888899;
  --gray-500: #888899;
  --gray-100: #1a1a24;
  --gray-50: #13131A;
}

body {
  background-color: #0A0A0F !important;
  color: #F0F0F0 !important;
  scrollbar-width: thin;
  scrollbar-color: #FF6B1A #0A0A0F;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0A0A0F; }
::-webkit-scrollbar-thumb { background: #FF6B1A; border-radius: 10px; }

body::before { display: none !important; }

.hm-section-alt { background: rgba(0,0,0,0.3) !important; }
.hm-section-alt::before { display: none !important; }

.hm-header {
  background: rgba(19, 19, 26, 0.7) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(255, 107, 26, 0.2) !important;
}

.hm-logo {
  color: #F0F0F0 !important;
  font-family: 'Bebas Neue', sans-serif !important;
  letter-spacing: 2px !important;
}

.hm-logo span {
  background: none !important;
  -webkit-text-fill-color: #FF6B1A !important;
  color: #FF6B1A !important;
}

.hm-nav-list a, .hm-nav a { color: #888899 !important; font-family: 'DM Sans', sans-serif; }
.hm-nav-list a:hover, .hm-nav a:hover {
  color: #FF6B1A !important;
  background-color: transparent !important;
}

.hm-card {
  background: #13131A !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
  color: #888899 !important;
}

.hm-card h1, .hm-card h2, .hm-section-header h1 {
  font-family: 'Bebas Neue', sans-serif !important;
  color: #FFD600 !important;
  letter-spacing: 1px;
}

.hm-card p, .hm-card li { color: #888899 !important; }
.hm-list-check li::before { background: #FF6B1A !important; }

.hm-footer {
  background: #050508 !important;
  border-top: 1px solid rgba(255,255,255,0.05) !important;
}

.hm-btn-primary {
  background: #FF6B1A !important;
  color: #000 !important;
  font-family: 'Bebas Neue', sans-serif !important;
  letter-spacing: 1px !important;
  box-shadow: 0 4px 15px rgba(255, 107, 26, 0.3) !important;
  text-transform: uppercase !important;
}

.hm-card strong {
  color: #F0F0F0 !important;
}
