/* ===== PLUGUS DESIGN SYSTEM ===== */
/* Colors derived from logo: Cyan Blue, Green, Orange/Amber */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Primary Colors from Logo */
  --blue-50: #e6f7fc;
  --blue-100: #b3e8f7;
  --blue-200: #80d9f2;
  --blue-300: #4dcaed;
  --blue-400: #26bee9;
  --blue-500: #00B4D8; /* Primary Cyan Blue */
  --blue-600: #0096b7;
  --blue-700: #007896;
  --blue-800: #005a75;
  --blue-900: #003c54;

  --green-50: #e8f9ed;
  --green-100: #b8edc8;
  --green-200: #88e1a3;
  --green-300: #58d57e;
  --green-400: #3dce68;
  --green-500: #2DC653; /* Logo Green */
  --green-600: #25a545;
  --green-700: #1d8437;
  --green-800: #156329;
  --green-900: #0d421b;

  --orange-50: #fff5e6;
  --orange-100: #ffe0b3;
  --orange-200: #ffcb80;
  --orange-300: #ffb64d;
  --orange-400: #ffa726;
  --orange-500: #FFA500; /* Logo Orange */
  --orange-600: #d48a00;
  --orange-700: #a96f00;
  --orange-800: #7e5400;
  --orange-900: #533900;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #868e96;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --dark: #0a0a1a;
  --dark-surface: #12122a;
  --dark-card: #1a1a3e;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-700) 100%);
  --gradient-accent: linear-gradient(135deg, var(--green-500) 0%, var(--blue-500) 100%);
  --gradient-warm: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-300) 100%);
  --gradient-hero: linear-gradient(160deg, #f8fbff 0%, #e6f7fc 40%, #f0faf3 100%);
  --gradient-dark: linear-gradient(180deg, var(--dark) 0%, var(--dark-surface) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.08), 0 6px 10px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.12), 0 12px 24px rgba(0,0,0,0.08);
  --shadow-blue: 0 8px 32px rgba(0, 180, 216, 0.3);
  --shadow-green: 0 8px 32px rgba(45, 198, 83, 0.3);
  --shadow-orange: 0 8px 32px rgba(255, 165, 0, 0.3);

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
}

p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 180, 216, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--blue-500);
  color: var(--blue-500);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--blue-600);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand img {
  height: 40px;
  width: 40px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.nav-brand span {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-500);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
  transition: width var(--transition-base);
}

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

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

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

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 14px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-blob 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 198, 83, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-blob 15s ease-in-out infinite reverse;
}

@keyframes float-blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.15);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  color: var(--gray-900);
  margin-bottom: 8px;
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
}

.hero h1 .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .plug-icon {
  display: inline-block;
  color: var(--orange-500);
  -webkit-text-fill-color: var(--orange-500);
  animation: plug-wiggle 3s ease-in-out infinite;
}

@keyframes plug-wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  75% { transform: rotate(-10deg); }
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 480px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.email-input-group {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 4px 4px 4px 20px;
  width: 420px;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.email-input-group:focus-within {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

.email-input-group input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-800);
  background: transparent;
}

.email-input-group input::placeholder {
  color: var(--gray-400);
}

.email-input-group .btn {
  padding: 12px 24px;
  font-size: 14px;
  flex-shrink: 0;
}

.hero-partners {
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-partners p {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0.4;
}

.partner-logos span {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-700);
  letter-spacing: 0.02em;
}

.partner-logos span:nth-child(4) {
  font-style: italic;
}

/* Hero Image */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease 0.3s forwards;
  opacity: 0;
}

.hero-phone {
  position: relative;
  z-index: 2;
}

.hero-phone img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0, 180, 216, 0.2));
  animation: float-phone 6s ease-in-out infinite;
}

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

.hero-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

/* Floating cards around hero phone */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: float-card 5s ease-in-out infinite;
}

.float-card.card-1 {
  top: 15%;
  left: -10%;
  animation-delay: 0s;
}

.float-card.card-2 {
  bottom: 20%;
  right: -5%;
  animation-delay: -2s;
}

.float-card.card-3 {
  top: 60%;
  left: -15%;
  animation-delay: -4s;
}

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

.float-card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 6px;
}

.float-card-icon.blue {
  background: var(--blue-50);
}

.float-card-icon.green {
  background: var(--green-50);
}

.float-card-icon.orange {
  background: var(--orange-50);
}

.float-card-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-500);
}

.float-card-value {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
}

/* ===== FEATURES SECTION (Dark) ===== */
.features {
  background: var(--gradient-dark);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.3), transparent);
}

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

.features-header h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.features-header h2 .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-header p {
  color: var(--gray-500);
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto;
}

.features-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.features-phones-img {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-xl);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 900px;
}

.feature-card {
  background: var(--gradient-glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 180, 216, 0.3);
  box-shadow: 0 8px 32px rgba(0, 180, 216, 0.1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.feature-icon.blue-glow {
  background: rgba(0, 180, 216, 0.15);
  box-shadow: 0 0 20px rgba(0, 180, 216, 0.1);
}

.feature-icon.green-glow {
  background: rgba(45, 198, 83, 0.15);
  box-shadow: 0 0 20px rgba(45, 198, 83, 0.1);
}

.feature-icon.orange-glow {
  background: rgba(255, 165, 0, 0.15);
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.1);
}

.feature-card h3 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== STATS SECTION ===== */
.stats {
  padding: 80px 0;
  background: var(--white);
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.stat-item:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
}

.stat-number {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 15px;
  color: var(--gray-500);
  font-weight: 500;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: var(--section-padding);
  background: var(--gray-50);
  position: relative;
}

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

.section-header .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.12);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  margin-bottom: 16px;
}

.section-header h2 {
  color: var(--gray-900);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto;
}

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.66% + 12px);
  right: calc(16.66% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--green-500), var(--orange-500));
  border-radius: 2px;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  position: relative;
  box-shadow: var(--shadow-lg);
}

.step-card:nth-child(1) .step-number {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-blue);
}

.step-card:nth-child(2) .step-number {
  background: var(--gradient-accent);
  box-shadow: var(--shadow-green);
}

.step-card:nth-child(3) .step-number {
  background: var(--gradient-warm);
  box-shadow: var(--shadow-orange);
}

.step-card h3 {
  color: var(--gray-900);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 15px;
  max-width: 280px;
  margin: 0 auto;
}

/* ===== APP STORE SECTION ===== */
.app-release {
  padding: var(--section-padding);
  background: var(--white);
  text-align: center;
}

.app-release h2 {
  color: var(--gray-900);
  margin-bottom: 12px;
}

.app-release .subtitle {
  font-size: 18px;
  color: var(--gray-500);
  margin-bottom: 48px;
}

.app-release-image {
  max-width: 400px;
  margin: 0 auto 40px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

.app-store-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--gray-900);
  color: var(--white);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  transition: all var(--transition-base);
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.store-btn-icon {
  font-size: 28px;
}

.store-btn-text {
  text-align: left;
}

.store-btn-text small {
  display: block;
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 400;
}

.store-btn-text strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

/* ===== CTA / NEWSLETTER SECTION ===== */
.cta-section {
  padding: 80px 0;
  background: var(--gradient-hero);
}

.cta-card {
  background: var(--gradient-primary);
  border-radius: var(--radius-2xl);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 198, 83, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 165, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

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

.cta-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 480px;
  margin: 0 auto 32px;
}

.cta-email-group {
  display: flex;
  align-items: center;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 5px 5px 5px 24px;
}

.cta-email-group input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
}

.cta-email-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--gray-400);
  padding: 72px 0 32px;
}

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

.footer-brand img {
  height: 36px;
  width: 36px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.footer-brand .brand-name {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-400);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  font-size: 14px;
  color: var(--gray-500);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--blue-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-600);
}

.footer-bottom a {
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--blue-400);
  text-decoration: underline;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gray-500);
  transition: all var(--transition-base);
}

.footer-socials a:hover {
  background: var(--blue-500);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== SERVICE CATEGORIES RIBBON ===== */
.service-categories {
  padding: 24px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  position: relative;
  z-index: 10;
}

.categories-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}

.categories-scroll:active {
  cursor: grabbing;
}

.categories-scroll::-webkit-scrollbar {
  display: none;
}

.category-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  flex-shrink: 0;
}

.category-chip:hover {
  border-color: var(--blue-400);
  background: #f8fbff;
  color: var(--blue-700);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 180, 216, 0.15);
}

.category-chip.active {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 119, 182, 0.3);
}

.cat-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.category-chip:hover .cat-icon {
  transform: scale(1.15) rotate(5deg);
}

.category-chip.active .cat-icon {
  transform: scale(1.1);
}

/* ===== POPULAR SERVICES ===== */
.popular-services {
  padding: var(--section-padding);
  background: var(--white);
}

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

.service-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
}

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

.service-card-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.service-card-content {
  flex: 1;
}

.service-card-content h3 {
  font-size: 16px;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.service-card-content p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 12px;
}

.service-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-rating {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-500);
}

.service-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-600);
  font-family: var(--font-primary);
}

/* ===== TRUST SECTION ===== */
.trust-section {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

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

.trust-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}

.trust-card:nth-child(2) .trust-icon {
  background: var(--green-50);
}

.trust-card:nth-child(3) .trust-icon {
  background: var(--orange-50);
}

.trust-card:nth-child(4) .trust-icon {
  background: var(--blue-50);
}

.trust-card h3 {
  font-size: 16px;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== SCROLL ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

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

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .partner-logos {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-image {
    order: -1;
  }

  .hero-phone img {
    max-width: 320px;
  }

  .float-card {
    display: none;
  }

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

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

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

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

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 20px;
  }

  .nav-cta {
    display: none;
  }

  .nav-cta.active {
    display: flex;
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
  }

  .hamburger {
    display: flex;
  }

  .email-input-group {
    width: 100%;
    max-width: 400px;
  }

  .hero {
    padding: 100px 0 60px;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .stats .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

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

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

  .service-card {
    flex-direction: column;
    text-align: center;
  }

  .service-card-icon {
    margin: 0 auto;
  }

  .service-card-meta {
    justify-content: center;
    gap: 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .app-store-buttons {
    flex-direction: column;
  }

  .cta-card {
    padding: 40px 24px;
  }

  .cta-email-group {
    flex-direction: column;
    background: transparent;
    backdrop-filter: none;
    border: none;
    padding: 0;
    gap: 12px;
  }

  .cta-email-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    padding: 14px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .email-input-group {
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: 12px;
    gap: 8px;
  }

  .email-input-group input {
    width: 100%;
    text-align: center;
    padding: 8px 0;
  }

  .email-input-group .btn {
    width: 100%;
  }

  .partner-logos {
    gap: 20px;
  }

  .partner-logos span {
    font-size: 14px;
  }

  .glance-showcase {
    flex-direction: column;
    align-items: center;
  }
  
  .glance-device {
    transform: none !important;
  }
}

/* ===== APP GLANCE SECTION ===== */
.app-glance {
  background: var(--gray-50);
  padding: var(--section-padding);
  overflow: hidden;
}

.glance-showcase {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 60px;
  position: relative;
}

.glance-device {
  width: 300px;
  height: 600px;
  background: #111;
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-xl);
  position: relative;
  transition: var(--transition-spring);
  z-index: 1;
  border: 4px solid #333;
}

.glance-device::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background: #111;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 10;
}

.glance-device:hover {
  transform: translateY(-20px) scale(1.02);
  z-index: 10;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.glance-device:not(.center-device) {
  transform: translateY(40px) scale(0.9);
  opacity: 0.8;
  z-index: 0;
}

.glance-device:not(.center-device):hover {
  opacity: 1;
  transform: translateY(20px) scale(0.95);
}

.glance-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.glance-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
