/* iCloud-Unlock.com - Apple-Inspired Styling */

:root {
  --primary-blue: #007AFF;
  --primary-blue-dark: #0056b3;
  --success-green: #34C759;
  --warning-orange: #FF9500;
  --error-red: #FF3B30;
  --text-primary: #1D1D1F;
  --text-secondary: #6E6E73;
  --text-tertiary: #8E8E93;
  --background-primary: #FFFFFF;
  --background-secondary: #F5F5F7;
  --background-tertiary: #FBFBFD;
  --border-light: #E5E5E7;
  --shadow-light: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-heavy: 0 8px 48px rgba(0, 0, 0, 0.16);
  --gradient-primary: linear-gradient(135deg, #007AFF 0%, #5AC8FA 100%);
  --gradient-secondary: linear-gradient(135deg, #F5F5F7 0%, #FFFFFF 100%);
  
  /* Apple.com Inspired Design System */
  --apple-blue: #0071e3;
  --apple-blue-hover: #0077ed;
  --apple-gray-1: #1d1d1f;
  --apple-gray-2: #424245;
  --apple-gray-3: #6e6e73;
  --apple-gray-4: #86868b;
  --apple-gray-5: #a1a1a6;
  --apple-gray-6: #f5f5f7;
  --apple-background: #fbfbfd;
  --apple-card-bg: #ffffff;
  --apple-border: rgba(0, 0, 0, 0.1);
  --apple-shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
  --apple-shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --apple-radius: 18px;
  --apple-radius-large: 28px;
  --apple-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Professional Enhancement Variables */
  --pro-blue: #0071e3;
  --pro-blue-light: rgba(0, 113, 227, 0.1);
  --pro-blue-glow: rgba(0, 113, 227, 0.3);
  --pro-gold: #ffb800;
  --pro-gold-light: rgba(255, 184, 0, 0.1);
  --pro-gradient-primary: linear-gradient(135deg, #0071e3 0%, #5ac8fa 100%);
  --pro-gradient-gold: linear-gradient(135deg, #ffb800 0%, #ff9f00 100%);
  --pro-gradient-hero: linear-gradient(135deg, #fbfbfd 0%, #f0f4ff 50%, #fbfbfd 100%);
  --pro-shadow-glow: 0 0 20px rgba(0, 113, 227, 0.3);
  --pro-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --pro-transition-spring: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--apple-gray-1);
  background-color: var(--apple-background);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h3 {
  font-size: 2rem;
  line-height: 1.3;
}

h4 {
  font-size: 1.5rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.text-large {
  font-size: 1.25rem;
  line-height: 1.6;
}

.text-center {
  text-align: center;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  position: relative;
}

/* ========================================
   PROFESSIONAL LOGO DESIGN
   ======================================== */

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: var(--pro-transition);
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-shield {
  position: relative;
  width: 48px;
  height: 48px;
  background: var(--pro-gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 113, 227, 0.2);
  transition: var(--pro-transition);
}

.logo:hover .logo-shield {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 113, 227, 0.3);
}

.shield-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}

.shield-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 100%);
  pointer-events: none;
}

.unlock-symbol {
  font-size: 1.5rem;
  color: white;
  position: relative;
  z-index: 2;
  animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.shield-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--pro-gradient-primary);
  border-radius: 14px;
  opacity: 0;
  z-index: -1;
  filter: blur(8px);
  transition: var(--pro-transition);
}

.logo:hover .shield-glow {
  opacity: 0.6;
  animation: glow-pulse 2s ease-in-out infinite;
}

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

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.logo-main {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--apple-gray-1);
  line-height: 1;
  letter-spacing: -0.02em;
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--apple-gray-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.nav-links > li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #007AFF;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 0.5rem;
  line-height: 1;
}

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

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

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

.btn-secondary:hover {
  background: var(--background-primary);
  border-color: var(--primary-blue);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* ========================================
   PROFESSIONAL HERO SECTION ANIMATIONS
   ======================================== */

.hero {
  background: var(--gradient-secondary);
  padding: 6rem 0 6rem;
  text-align: center;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero-modern {
  background: var(--pro-gradient-hero);
  color: var(--apple-gray-1);
  padding: 8rem 0 8rem;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  margin-top: 70px;
}

.hero-background-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

/* Floating Particles Animation */
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--pro-blue);
  border-radius: 50%;
  opacity: 0.3;
  animation: float-up 15s linear infinite;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.particle:nth-child(2) {
  left: 25%;
  animation-delay: 3s;
  animation-duration: 18s;
}

.particle:nth-child(3) {
  left: 50%;
  animation-delay: 6s;
  animation-duration: 15s;
}

.particle:nth-child(4) {
  left: 75%;
  animation-delay: 9s;
  animation-duration: 20s;
}

.particle:nth-child(5) {
  left: 90%;
  animation-delay: 12s;
  animation-duration: 14s;
}

@keyframes float-up {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
    transform: scale(1);
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) scale(0);
    opacity: 0;
  }
}

/* Gradient Orbs Animation */
.gradient-orbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.1;
  animation: orb-float 20s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: var(--pro-gradient-primary);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 200px;
  height: 200px;
  background: var(--pro-gradient-gold);
  top: 60%;
  right: 15%;
  animation-delay: 7s;
}

.orb-3 {
  width: 150px;
  height: 150px;
  background: var(--pro-gradient-primary);
  bottom: 20%;
  left: 60%;
  animation-delay: 14s;
}

@keyframes orb-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* Tech Grid Background */
.tech-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 113, 227, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 113, 227, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-move 30s linear infinite;
}

@keyframes grid-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

/* Hero Content Enhancement */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: fade-in-up 1s ease-out;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23007AFF" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></g></svg>');
  opacity: 0.5;
}

.hero h1 {
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Feature Cards */
.features {
  padding: 6rem 0;
  background: var(--background-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  background: var(--background-tertiary);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Stats Section */
.stats {
  background: var(--background-secondary);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-secondary);
  font-weight: 500;
  margin: 0;
}

/* Device Selector */
.device-selector {
  background: var(--background-primary);
  padding: 6rem 0;
}

.unlock-form {
  max-width: 600px;
  margin: 4rem auto 0;
  background: var(--background-tertiary);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
}

.form-step {
  margin-bottom: 2rem;
}

.form-step:last-child {
  margin-bottom: 0;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  font-weight: 600;
  margin-right: 1rem;
  font-size: 0.875rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

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

.form-group:last-child {
  margin-bottom: 0;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

input, select, textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-size: 1rem;
  background: var(--background-primary);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Trust Badges */
.trust-badges {
  background: var(--background-secondary);
  padding: 4rem 0;
  text-align: center;
}

.badges-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.badge-icon {
  width: 24px;
  height: 24px;
  color: var(--success-green);
}

/* Footer */
footer {
  background: var(--text-primary);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero {
    padding: 6rem 0 4rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .badges-grid {
    gap: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  .hero {
    padding: 5rem 0 3rem;
  }
  
  .unlock-form {
    padding: 2rem;
    margin: 2rem auto 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Loading Animation */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Progress Bar */
.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--background-secondary);
  border-radius: 4px;
  overflow: hidden;
  margin: 1rem 0;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* Alerts */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin: 1rem 0;
  border-left: 4px solid;
}

.alert-success {
  background: rgba(52, 199, 89, 0.1);
  border-left-color: var(--success-green);
  color: var(--success-green);
}

.alert-warning {
  background: rgba(255, 149, 0, 0.1);
  border-left-color: var(--warning-orange);
  color: var(--warning-orange);
}

.alert-error {
  background: rgba(255, 59, 48, 0.1);
  border-left-color: var(--error-red);
  color: var(--error-red);
}

/* Breadcrumbs */
.breadcrumb {
  padding: 1rem 0;
  margin-top: 80px;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.breadcrumb li::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--text-tertiary);
}

.breadcrumb li:last-child::after {
  display: none;
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--primary-blue);
}

/* Apple-style Content Sections */
.content-section {
  padding: 4rem 0;
}

.content-section:nth-child(even) {
  background: var(--apple-gray-6);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--apple-gray-1);
}

.section-header p {
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--apple-gray-3);
  max-width: 700px;
  margin: 0 auto;
}

/* FAQ Styles */
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background: var(--background-tertiary);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--background-secondary);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-toggle {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

/* Device Grid */
.device-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.device-card {
  background: var(--background-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.device-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-blue);
}

.device-image {
  width: 80px;
  height: 120px;
  background: var(--gradient-primary);
  border-radius: 12px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.device-card h3 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.device-card p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.875rem;
}

/* ========================================
   APPLE.COM INSPIRED DESIGN SYSTEM
   ======================================== */

/* Professional Feature Cards */
.feature-card-1,
.feature-card-2,
.feature-card-3,
.feature-card-4,
.feature-card-5,
.feature-card-6 {
  background: var(--apple-card-bg);
  border: 1px solid var(--apple-border);
  border-radius: var(--apple-radius);
  padding: 3rem;
  margin-bottom: 1.5rem;
  color: var(--apple-gray-1);
  box-shadow: var(--apple-shadow-light);
  transition: var(--apple-transition);
  position: relative;
  text-align: center;
}

/* Professional icon containers */
.professional-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: white;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.professional-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
}

/* Professional icon variations */
.feature-card-1 .professional-icon {
  background: linear-gradient(135deg, #0071e3 0%, #005bb5 100%);
}

.feature-card-2 .professional-icon {
  background: linear-gradient(135deg, #34c759 0%, #2ea043 100%);
}

.feature-card-3 .professional-icon {
  background: linear-gradient(135deg, #ff9500 0%, #e8890b 100%);
}

.feature-card-4 .professional-icon {
  background: linear-gradient(135deg, #5856d6 0%, #4c4bcc 100%);
}

.feature-card-5 .professional-icon {
  background: linear-gradient(135deg, #ff3b30 0%, #e8312a 100%);
}

.feature-card-6 .professional-icon {
  background: linear-gradient(135deg, #1d1d1f 0%, #424245 100%);
}

/* Subtle variations for visual interest */
.feature-card-1 {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.feature-card-2 {
  background: var(--apple-card-bg);
  border-color: rgba(52, 199, 89, 0.2);
}

.feature-card-3 {
  background: linear-gradient(135deg, #ffffff 0%, #fbfbfd 100%);
}

.feature-card-4 {
  background: var(--apple-card-bg);
  border-color: rgba(88, 86, 214, 0.2);
}

.feature-card-5 {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.feature-card-6 {
  background: var(--apple-card-bg);
  border-color: rgba(29, 29, 31, 0.15);
}

/* Professional typography in cards */
.feature-card-1 h3,
.feature-card-2 h3,
.feature-card-3 h3,
.feature-card-4 h3,
.feature-card-5 h3,
.feature-card-6 h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.feature-card-1 p,
.feature-card-2 p,
.feature-card-3 p,
.feature-card-4 p,
.feature-card-5 p,
.feature-card-6 p {
  color: var(--apple-gray-3);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.feature-card-1 strong,
.feature-card-2 strong,
.feature-card-3 strong,
.feature-card-4 strong,
.feature-card-5 strong,
.feature-card-6 strong {
  display: block;
  color: var(--apple-blue);
  font-weight: 600;
  margin-top: 1rem;
  font-size: 0.95rem;
}

/* Professional hover effects */
.feature-card-1:hover,
.feature-card-2:hover,
.feature-card-3:hover,
.feature-card-4:hover,
.feature-card-5:hover,
.feature-card-6:hover {
  transform: translateY(-6px);
  box-shadow: var(--apple-shadow-medium);
}

.feature-card-1:hover {
  border-color: rgba(0, 113, 227, 0.3);
}

.feature-card-2:hover {
  border-color: rgba(52, 199, 89, 0.4);
}

.feature-card-3:hover {
  border-color: rgba(255, 149, 0, 0.4);
}

.feature-card-4:hover {
  border-color: rgba(88, 86, 214, 0.4);
}

.feature-card-5:hover {
  border-color: rgba(255, 59, 48, 0.4);
}

.feature-card-6:hover {
  border-color: rgba(29, 29, 31, 0.3);
}

/* Professional Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 113, 227, 0.2);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--apple-gray-2);
  box-shadow: 0 4px 20px rgba(0, 113, 227, 0.1);
  animation: badge-float 3s ease-in-out infinite;
}

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

.badge-icon {
  font-size: 1rem;
  animation: icon-glow 2s ease-in-out infinite;
}

@keyframes icon-glow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3) drop-shadow(0 0 5px rgba(255, 184, 0, 0.5)); }
}

/* Enhanced Hero Title */
.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
  position: relative;
  animation: title-appear 1.2s ease-out 0.3s both;
}

@keyframes title-appear {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.title-underline {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: var(--pro-gradient-primary);
  border-radius: 2px;
  animation: underline-expand 1.5s ease-out 1.5s both;
}

@keyframes underline-expand {
  to { width: 200px; }
}

/* Enhanced Rotating Text */
.rotating-text {
  display: inline-block;
  position: relative;
  height: 1.2em;
  overflow: hidden;
  margin: 0 0.2em;
}

.rotating-text span {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  animation: enhanced-rotate-text 12s infinite;
  color: var(--pro-blue);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px rgba(0, 113, 227, 0.3);
}

.rotating-text span:nth-child(1) { animation-delay: 0s; }
.rotating-text span:nth-child(2) { animation-delay: 3s; }
.rotating-text span:nth-child(3) { animation-delay: 6s; }
.rotating-text span:nth-child(4) { animation-delay: 9s; }

@keyframes enhanced-rotate-text {
  0%, 20% { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
    filter: blur(0px);
  }
  25%, 100% { 
    opacity: 0; 
    transform: translateY(-30px) scale(0.8); 
    filter: blur(2px);
  }
}

/* Enhanced Description */
.hero-description {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--apple-gray-3);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: description-appear 1s ease-out 0.9s both;
}

@keyframes description-appear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.highlight-text {
  color: var(--pro-blue);
  font-weight: 600;
  position: relative;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--pro-blue) 50%, transparent 100%);
  opacity: 0.3;
}

/* Enhanced Buttons */
.btn-primary-cta,
.btn-info-cta {
  position: relative;
  overflow: hidden;
  transition: var(--pro-transition-spring);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 980px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  min-height: 48px;
}

.btn-primary-cta {
  background: var(--pro-gradient-primary);
  color: white;
  box-shadow: 
    0 8px 25px rgba(0, 113, 227, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-primary-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 15px 35px rgba(0, 113, 227, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.btn-info-cta {
  background: rgba(255, 255, 255, 0.9);
  color: var(--apple-gray-1);
  border: 1px solid rgba(0, 113, 227, 0.2);
  backdrop-filter: blur(10px);
}

.btn-info-cta:hover {
  transform: translateY(-3px) scale(1.02);
  background: white;
  border-color: var(--pro-blue);
  color: var(--pro-blue);
}

.btn-icon {
  font-size: 1.1rem;
  transition: var(--pro-transition);
}

.btn-arrow {
  font-size: 1.2rem;
  transition: var(--pro-transition);
}

.btn-primary-cta:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-info-cta:hover .btn-arrow {
  transform: translateY(3px);
}

/* Shimmer Effect for Primary Button */
.btn-primary-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary-cta:hover::before {
  left: 100%;
}

/* Apple-style Buttons (backward compatibility) */
.btn-modern {
  background: var(--apple-blue);
  color: white;
  border: none;
  border-radius: 980px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--apple-transition);
  letter-spacing: -0.01em;
  min-height: 48px;
}

.btn-modern:hover {
  background: var(--apple-blue-hover);
  transform: translateY(-1px);
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  animation: trust-appear 1s ease-out 1.2s both;
}

@keyframes trust-appear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 113, 227, 0.1);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--apple-gray-2);
  transition: var(--pro-transition);
}

.trust-item:hover {
  transform: translateY(-2px);
  background: white;
  border-color: var(--pro-blue);
  box-shadow: 0 4px 15px rgba(0, 113, 227, 0.2);
}

.trust-icon {
  font-size: 1rem;
  filter: grayscale(0.3);
  transition: var(--pro-transition);
}

.trust-item:hover .trust-icon {
  filter: grayscale(0);
  transform: scale(1.1);
}



/* Professional Statistics Section */
.stats {
  background: var(--apple-gray-6);
  padding: 6rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

/* Apple-style Statistics Cards */
.stat-modern {
  background: var(--apple-card-bg);
  border: none;
  border-radius: var(--apple-radius-large);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--apple-shadow-light);
  transition: var(--apple-transition);
  position: relative;
}

.stat-modern::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 4px;
  background: var(--apple-blue);
  border-radius: 2px;
  opacity: 0;
  transition: var(--apple-transition);
}

.stat-modern:hover {
  transform: translateY(-4px);
  box-shadow: var(--apple-shadow-medium);
}

.stat-modern:hover::after {
  opacity: 1;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--apple-blue);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  display: block;
}

.stat-modern p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--apple-gray-1);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.stat-modern small {
  font-size: 0.9rem;
  color: var(--apple-gray-4);
  font-weight: 400;
}



/* Professional Hero Section with Subtle Animation */
.hero-modern {
  background: linear-gradient(135deg, #fbfbfd 0%, #f5f5f7 100%);
  color: var(--apple-gray-1);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.hero-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 113, 227, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 113, 227, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 113, 227, 0.05) 0%, transparent 50%);
  animation: subtle-flow 20s ease-in-out infinite;
}

@keyframes subtle-flow {
  0%, 100% { 
    transform: translateX(0) translateY(0) scale(1);
    opacity: 1;
  }
  50% { 
    transform: translateX(-10px) translateY(-5px) scale(1.02);
    opacity: 0.8;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-content .text-large {
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--apple-gray-3);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Enhanced Activation Lock Focus */
.activation-lock-focus {
  background: linear-gradient(135deg, var(--pro-blue) 0%, #005bb5 100%);
  color: white;
  border-radius: var(--apple-radius-large);
  padding: 3rem;
  margin: 3rem 0;
  position: relative;
  text-align: center;
  box-shadow: 
    0 20px 60px rgba(0, 113, 227, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  animation: focus-appear 1s ease-out 0.6s both;
}

@keyframes focus-appear {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.activation-lock-focus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
  animation: focus-shimmer 8s ease-in-out infinite;
}

@keyframes focus-shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.focus-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.focus-icon {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.icon-layers {
  position: relative;
  width: 100%;
  height: 100%;
}

.layer-1, .layer-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: var(--pro-transition);
}

.layer-1 {
  z-index: 1;
  animation: layer-pulse 3s ease-in-out infinite;
}

.layer-2 {
  z-index: 2;
  opacity: 0;
  transform: scale(0.5);
  color: #4ade80;
  animation: layer-success 6s ease-in-out infinite;
}

@keyframes layer-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes layer-success {
  0%, 60%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  70%, 90% { opacity: 1; transform: scale(1) rotate(360deg); }
}

.activation-lock-focus h3 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
}

.activation-lock-focus p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

/* Success Metrics */
.success-metrics {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 120px;
  transition: var(--pro-transition);
}

.metric:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
}

.metric-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.metric-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

/* Professional Responsive Design */
/* ========================================
   RESPONSIVE ENHANCEMENTS
   ======================================== */

@media (max-width: 768px) {
  .hero-modern {
    padding: 6rem 0 4rem;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .activation-lock-focus {
    padding: 2rem;
    margin: 2rem 0;
  }
  
  .focus-header {
    flex-direction: column;
    gap: 1rem;
  }
  
  .focus-icon {
    width: 60px;
    height: 60px;
  }
  
  .layer-1, .layer-2 {
    font-size: 1.5rem;
  }
  
  .success-metrics {
    gap: 1rem;
  }
  
  .metric {
    min-width: 100px;
    padding: 0.75rem;
  }
  
  .trust-indicators {
    gap: 1rem;
  }
  
  .trust-item {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .logo-container {
    gap: 0.75rem;
  }
  
  .logo-shield {
    width: 40px;
    height: 40px;
  }
  
  .logo-main {
    font-size: 1.3rem;
  }
  
  .logo-sub {
    font-size: 0.7rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 1.1rem;
  }
  
  .feature-card-1,
  .feature-card-2,
  .feature-card-3,
  .feature-card-4,
  .feature-card-5,
  .feature-card-6 {
    padding: 2.5rem 2rem;
    margin-bottom: 1.5rem;
  }
  
  .professional-icon {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }
  
  .rotating-text {
    height: auto;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }
  
  .stat-modern {
    padding: 2.5rem 1.5rem;
  }
  
  .stats {
    padding: 4rem 0;
  }
  
  .content-section {
    padding: 3rem 0;
  }
}

/* ========================================
   UNLOCK NOTIFICATION WIDGET
   ======================================== */

.unlock-notification-widget {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1000;
  pointer-events: none;
}

.notification-popup {
  background: white;
  border-radius: 16px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 113, 227, 0.1);
  max-width: 320px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: auto;
  animation: none;
}

@keyframes slideInNotification {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideOutNotification {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
}

.notification-content {
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
}

.notification-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(-2px);
  }
}

.notification-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--apple-gray-1);
}

.notification-text strong {
  color: var(--pro-blue);
  font-weight: 600;
}

.timestamp {
  font-size: 0.8rem;
  color: var(--apple-gray-4);
  margin-top: 0.2rem;
  font-style: italic;
}

.imei-proof {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: var(--apple-gray-4);
  margin-top: 0.3rem;
  letter-spacing: 0.5px;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--success-green);
  font-weight: 500;
}

.verified-icon {
  font-size: 0.9rem;
}

.notification-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--apple-gray-4);
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  transition: var(--apple-transition);
  opacity: 0.7;
}

.notification-close:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .unlock-notification-widget {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }
  
  .notification-popup {
    max-width: none;
  }
  
  .notification-content {
    padding: 1rem;
  }
}

/* ========================================
   IMEI ARTICLE SECTION STYLES
   ======================================== */

.imei-article {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 6rem 0;
}

.article-content {
  max-width: 1200px;
  margin: 0 auto;
}

.article-intro {
  margin-bottom: 4rem;
  text-align: center;
}

.intro-highlight {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 1px solid #ffeaa7;
  border-radius: var(--apple-radius);
  padding: 2rem;
  margin: 0 auto;
  max-width: 800px;
  text-align: left;
  box-shadow: var(--apple-shadow-light);
}

.highlight-icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.imei-example {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
  font-family: 'Courier New', monospace;
  text-align: center;
}

.imei-example code {
  background: #e9ecef;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.timeline-list li {
  background: #f8f9fa;
  padding: 0.75rem;
  margin: 0.5rem 0;
  border-left: 4px solid var(--pro-blue);
  border-radius: 4px;
}

.blacklist-scenarios ul,
.protection-checklist ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.blacklist-scenarios li,
.protection-checklist li {
  margin: 0.5rem 0;
  line-height: 1.5;
}

.technical-breakdown {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
}

.technical-breakdown ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.technical-breakdown li {
  margin: 0.5rem 0;
  line-height: 1.6;
}

.double-lock-scenario {
  background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
  border: 1px solid #fed7d7;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
}

.double-lock-scenario p {
  margin: 0.5rem 0;
  font-weight: 500;
  color: #c53030;
}

.imei-cta-section {
  margin-top: 4rem;
  text-align: center;
}

.imei-emergency {
  background: linear-gradient(135deg, var(--pro-blue) 0%, #005bb5 100%);
  color: white;
  border-radius: var(--apple-radius-large);
  padding: 3rem;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 
    0 20px 60px rgba(0, 113, 227, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.imei-emergency::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.imei-emergency h3 {
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.imei-emergency p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.emergency-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.emergency-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 120px;
}

.emergency-stats .stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.emergency-stats .stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.emergency-btn {
  background: white;
  color: var(--pro-blue);
  border: none;
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--pro-transition);
  position: relative;
  z-index: 2;
}

.emergency-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .imei-article {
    padding: 4rem 0;
  }
  
  .intro-highlight {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  .imei-emergency {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .emergency-stats {
    gap: 1.5rem;
  }
  
  .emergency-stats .stat {
    min-width: 100px;
    padding: 0.75rem;
  }
  
  .timeline-list li,
  .technical-breakdown,
  .double-lock-scenario {
    padding: 1rem;
    margin: 0.75rem 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .particle {
    display: none; /* Hide particles on very small screens for performance */
  }
  
  .orb {
    transform: scale(0.7); /* Scale down orbs on mobile */
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hero-badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .title-underline {
    width: 150px;
  }
  
  .btn-primary-cta,
  .btn-info-cta {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .metric {
    min-width: 90px;
    padding: 0.5rem;
  }
  
  .metric-number {
    font-size: 1.3rem;
  }
  
  .metric-label {
    font-size: 0.75rem;
  }
  
  .imei-emergency {
    padding: 1.5rem;
  }
  
  .emergency-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .emergency-stats .stat {
    min-width: auto;
  }
  
  .imei-example code {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
}

/* ========================================
   COMPREHENSIVE ACTIVATION LOCK GUIDE
   ======================================== */

.activation-guide {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 6rem 0;
}

.guide-section {
  margin: 4rem 0;
  padding: 3rem 0;
  border-bottom: 1px solid #e9ecef;
}

.guide-section:last-child {
  border-bottom: none;
}

.guide-section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--apple-gray-1);
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: -0.01em;
}

/* Guide Introduction Box */
.guide-intro-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border: 1px solid #90caf9;
  border-radius: var(--apple-radius);
  padding: 2rem;
  margin: 2rem 0;
}

.guide-icon {
  font-size: 3rem;
  flex-shrink: 0;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.guide-text {
  flex: 1;
}

.guide-text h4 {
  color: var(--apple-gray-1);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.guide-text p {
  color: var(--apple-gray-2);
  line-height: 1.6;
  margin: 0;
}

/* Benefits and Features */
.why-exists {
  margin: 3rem 0;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.benefit-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.benefit-list li::before {
  content: '✓';
  background: var(--success-green);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
}

.stat-highlight {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border: 1px solid #ffcc02;
  border-radius: 8px;
  padding: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
}

/* Device Compatibility Grid */
.device-grid-small {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.device-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--apple-card-bg);
  border: 1px solid var(--apple-border);
  border-radius: 12px;
  padding: 1rem;
  transition: var(--apple-transition);
}

.device-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--apple-shadow-light);
}

.device-emoji {
  font-size: 1.5rem;
}

.device-item strong {
  display: block;
  color: var(--apple-gray-1);
  font-weight: 600;
}

.device-item small {
  color: var(--apple-gray-4);
  font-size: 0.8rem;
}

/* Problem Scenarios */
.problem-scenarios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.scenario-card {
  background: var(--apple-card-bg);
  border-radius: var(--apple-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--apple-shadow-light);
  border: 1px solid var(--apple-border);
  transition: var(--apple-transition);
}

.scenario-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--apple-shadow-medium);
}

.scenario-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.scenario-card h4 {
  color: var(--apple-gray-1);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.scenario-stat {
  background: #f8f9fa;
  border-radius: 6px;
  padding: 0.75rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--pro-blue);
}

/* Empathy Box */
.empathy-box {
  background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
  border: 1px solid #81c784;
  border-radius: var(--apple-radius);
  padding: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.empathy-box h4 {
  color: var(--apple-gray-1);
  margin-bottom: 1rem;
}

.empathy-box p {
  color: var(--apple-gray-2);
  line-height: 1.6;
  margin: 0;
}

/* Method Cards */
.method-container {
  display: grid;
  gap: 2rem;
  margin: 3rem 0;
}

.method-card {
  background: var(--apple-card-bg);
  border-radius: var(--apple-radius);
  box-shadow: var(--apple-shadow-light);
  border: 1px solid var(--apple-border);
  overflow: hidden;
  transition: var(--apple-transition);
}

.method-card:hover {
  box-shadow: var(--apple-shadow-medium);
  transform: translateY(-2px);
}

.method-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--apple-border);
}

.method-icon {
  font-size: 1.5rem;
}

.method-header h4 {
  flex: 1;
  margin: 0;
  color: var(--apple-gray-1);
  font-size: 1.3rem;
}

.method-badge {
  background: var(--pro-blue);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.method-primary .method-badge {
  background: var(--success-green);
}

.method-secondary .method-badge {
  background: var(--warning-orange);
}

.method-content {
  padding: 2rem;
}

.step-by-step {
  margin: 1.5rem 0;
}

.step-by-step h5 {
  color: var(--apple-gray-1);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.process-steps {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.process-steps > li {
  counter-increment: step-counter;
  position: relative;
  padding: 0.75rem 0 0.75rem 3rem;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.5;
}

.process-steps > li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0.75rem;
  background: var(--pro-blue);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.sub-steps {
  list-style: none;
  padding: 0.5rem 0 0 1rem;
  margin: 0.5rem 0;
  counter-reset: none;
}

.sub-steps li {
  padding: 0.25rem 0 0.25rem 1.5rem;
  border: none;
  position: relative;
  color: var(--apple-gray-2);
  font-size: 0.95rem;
  line-height: 1.4;
}

.sub-steps li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0.25rem;
  color: var(--pro-blue);
  font-weight: bold;
  font-size: 0.9rem;
}

.sub-steps li strong {
  color: var(--apple-gray-1);
  font-weight: 600;
}

.sub-steps li a {
  color: var(--pro-blue);
  font-weight: 600;
}

.success-rate {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
  margin: 1.5rem 0 0 0;
  font-size: 0.9rem;
}

.requirements-box {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border: 1px solid #ffb74d;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.requirement-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.requirement-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.requirement-list li::before {
  content: '📄';
  position: absolute;
  left: 0;
}

.golden-rule {
  background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
  border: 2px solid var(--pro-gold);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.15);
}

.golden-rule h5 {
  color: var(--apple-gray-1);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.golden-rule p {
  color: var(--apple-gray-2);
  line-height: 1.5;
  margin: 0;
}

.alternative-method {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1.2rem;
  margin: 1rem 0;
}

.alternative-method h5 {
  color: var(--apple-gray-1);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.alternative-method p {
  color: var(--apple-gray-2);
  margin: 0;
  line-height: 1.4;
}

/* Warning Section */
.warning-section {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border: 2px solid #ef5350;
  border-radius: var(--apple-radius);
  padding: 2rem;
  margin: 3rem 0;
}

.warning-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.warning-icon {
  font-size: 2rem;
  color: #d32f2f;
}

.warning-header h4 {
  color: #d32f2f;
  margin: 0;
}

.third-party-explanation {
  margin: 1.5rem 0;
}

.risks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.risk-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid #ffab91;
}

.risk-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.risk-card h5 {
  color: var(--apple-gray-1);
  margin-bottom: 1rem;
}

.risk-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.risk-card li {
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  color: var(--apple-gray-2);
}

.risk-card li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: #d32f2f;
  font-weight: bold;
}

.recommendation-box {
  background: white;
  border: 2px solid var(--success-green);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0 0 0;
}

.recommendation-box h5 {
  color: var(--success-green);
  margin-bottom: 1rem;
}

/* Cloud-Unlock Highlight */
.cloud-unlock-highlight {
  background: linear-gradient(135deg, #e8f4fd 0%, #d6eaff 100%);
  border: 2px solid var(--pro-blue);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0 0 0;
}

.cloud-unlock-highlight h6 {
  color: var(--pro-blue);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cloud-unlock-benefits {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.cloud-unlock-benefits li {
  padding: 0.75rem 0;
  position: relative;
  padding-left: 2rem;
  color: var(--apple-gray-2);
  line-height: 1.5;
  border-bottom: 1px solid rgba(0, 113, 227, 0.1);
}

.cloud-unlock-benefits li:last-child {
  border-bottom: none;
}

.cloud-unlock-benefits li::before {
  content: '✓';
  background: var(--pro-blue);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.ethical-note {
  background: rgba(0, 113, 227, 0.1);
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0 0 0;
  font-size: 0.9rem;
  color: var(--apple-gray-2);
  border-left: 4px solid var(--pro-blue);
}

/* Prevention Grid */
.prevention-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.prevention-card {
  background: var(--apple-card-bg);
  border-radius: var(--apple-radius);
  box-shadow: var(--apple-shadow-light);
  border: 1px solid var(--apple-border);
  overflow: hidden;
}

.prevention-header {
  background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--apple-border);
}

.seller-card .prevention-header {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.prevention-icon {
  font-size: 1.5rem;
}

.prevention-header h4 {
  margin: 0;
  color: var(--apple-gray-1);
  font-size: 1.2rem;
}

.checklist-container {
  padding: 2rem;
}

.checklist {
  margin: 1rem 0;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checklist-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  flex-shrink: 0;
}

.checkmark {
  width: 20px;
  height: 20px;
  background: var(--success-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
  flex-shrink: 0;
}

/* FAQ Section */
.faq-container {
  margin: 2rem 0;
}

.faq-item {
  background: var(--apple-card-bg);
  border: 1px solid var(--apple-border);
  border-radius: 8px;
  margin: 1rem 0;
  overflow: hidden;
}

.faq-question {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--apple-transition);
}

.faq-question:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.faq-question h5 {
  margin: 0;
  color: var(--apple-gray-1);
  font-size: 1.1rem;
  flex: 1;
}

.faq-toggle {
  color: var(--apple-gray-4);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 1.5rem;
  color: var(--apple-gray-2);
  line-height: 1.6;
  border-top: 1px solid var(--apple-border);
}

.faq-answer p {
  margin: 0;
}

/* Guide Conclusion */
.guide-conclusion {
  margin: 4rem 0 0 0;
  text-align: center;
}

.conclusion-card {
  background: linear-gradient(135deg, var(--pro-blue) 0%, #005bb5 100%);
  color: white;
  border-radius: var(--apple-radius-large);
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 
    0 20px 60px rgba(0, 113, 227, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.conclusion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.conclusion-card h3 {
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  font-size: 1.8rem;
}

.conclusion-card > p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  line-height: 1.5;
}

.conclusion-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.conclusion-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 120px;
  position: relative;
  z-index: 2;
}

.conclusion-stat .stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.conclusion-stat .stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.conclusion-cta {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
}

.guide-cta-btn {
  background: white;
  color: var(--pro-blue);
  border: none;
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--pro-transition);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}

.guide-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-disclaimer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin: 0;
}

/* Responsive Design for Guide */
@media (max-width: 768px) {
  .activation-guide {
    padding: 4rem 0;
  }
  
  .guide-section {
    margin: 3rem 0;
    padding: 2rem 0;
  }
  
  .guide-section-title {
    font-size: 1.6rem;
  }
  
  .guide-intro-box {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .guide-icon {
    font-size: 2.5rem;
  }
  
  .problem-scenarios {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .device-grid-small {
    grid-template-columns: 1fr;
  }
  
  .prevention-grid {
    grid-template-columns: 1fr;
  }
  
  .risks-grid {
    grid-template-columns: 1fr;
  }
  
  .method-header {
    padding: 1rem;
  }
  
  .method-content {
    padding: 1.5rem;
  }
  
  .conclusion-stats {
    gap: 1.5rem;
  }
  
  .conclusion-card {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .warning-section {
    padding: 1.5rem;
  }
  
  .cloud-unlock-highlight {
    padding: 1rem;
  }
  
  .cloud-unlock-benefits li {
    padding-left: 1.5rem;
  }
  
  .cloud-unlock-benefits li::before {
    width: 16px;
    height: 16px;
    font-size: 0.6rem;
  }
  
  .sub-steps li {
    padding-left: 1.2rem;
    font-size: 0.9rem;
  }
  
  .sub-steps li::before {
    font-size: 0.8rem;
  }
  
  .process-steps {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .guide-section-title {
    font-size: 1.4rem;
  }
  
  .method-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .method-header h4 {
    font-size: 1.1rem;
  }
  
  .process-steps > li {
    padding-left: 2.5rem;
  }
  
  .process-steps > li::before {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }
  
  .conclusion-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .conclusion-stat {
    min-width: auto;
  }
  
  .guide-cta-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Guide Links Styling */
.activation-guide a:not(.btn):not(.guide-cta-btn) {
  color: var(--pro-blue);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 113, 227, 0.3);
  transition: var(--apple-transition);
}

.activation-guide a:not(.btn):not(.guide-cta-btn):hover {
  color: #005bb5;
  border-bottom-color: var(--pro-blue);
  background: rgba(0, 113, 227, 0.05);
}

/* External Link Icon */
.activation-guide a[target="_blank"]:not(.btn):not(.guide-cta-btn)::after {
  content: ' ↗';
  font-size: 0.8em;
  opacity: 0.6;
  margin-left: 2px;
}

/* Improve text readability in method cards */
.method-content p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.method-content strong {
  color: var(--apple-gray-1);
}

/* Better spacing for nested lists */
.process-steps .sub-steps {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Improve readability of stat highlights */
.stat-highlight a {
  color: inherit;
  font-weight: 600;
}

/* Better visual hierarchy for FAQ */
.faq-answer a {
  font-weight: 600;
}

/* Cloud-Unlock benefits links styling */
.cloud-unlock-benefits a {
  color: var(--pro-blue);
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 113, 227, 0.3);
}

.cloud-unlock-benefits a:hover {
  color: #005bb5;
  border-bottom-color: var(--pro-blue);
}

/* Enhanced visual improvements for the guide */
.method-card {
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.method-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.method-header {
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.method-badge {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
}

.step-by-step h5 {
  border-bottom: 2px solid var(--pro-blue);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--pro-blue);
  display: inline-block;
}

.process-steps {
  background: rgba(248, 249, 250, 0.3);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
}

.process-steps > li:last-child {
  border-bottom: none;
}

.success-rate {
  background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
  border: 1px solid #c8e6c9;
  color: var(--apple-gray-1);
  font-weight: 500;
}

.requirements-box h5 {
  color: #f57c00;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* ==========================================
   DROPDOWN NAVIGATION STYLES
   ========================================== */

/* Navigation Base Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

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

.nav-links > li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007AFF;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 0.75rem 0;
    border: 1px solid #e1e1e1;
    max-height: 400px;
    overflow-y: auto;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 400;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #007AFF;
    border-left-color: #007AFF;
}

.dropdown-header {
    padding: 0.75rem 1.5rem 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 1px solid #eee;
    margin-bottom: 0.25rem;
    background-color: #fafafa;
}

.dropdown-divider {
    height: 1px;
    background-color: #eee;
    margin: 0.5rem 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background-color: #007AFF;
}

/* Reviews Dropdown Categorization */
.dropdown-menu .dropdown-header:first-of-type {
    margin-top: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dropdown-menu {
        min-width: 250px;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Mobile dropdown styles would go here */
}

/* Enhanced Footer Navigation */
.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #007AFF;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: #007AFF;
}