/* ============================================
   HYBRID Design - Enhanced styling + Original fonts
   Colors/effects from Enhanced, Fonts from Original
   Generated by font.py option 3
   ============================================ */

/* CSS Variables for consistent theming */
:root {
  /* Primary Colors - Enhanced Cyber Blue Theme */
  --primary-gradient: linear-gradient(135deg, #00d4ff 0%, #0099ff 50%, #6366f1 100%);
  --accent-gradient: linear-gradient(135deg, #ff6b35 0%, #f97316 50%, #fbbf24 100%);
  --success-gradient: linear-gradient(135deg, #10b981 0%, #00e676 50%, #34d399 100%);
  --premium-gradient: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #d946ef 100%);
  --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fcd34d 100%);
  
  /* Background Colors */
  --bg-dark: #080810;
  --bg-darker: #040408;
  --bg-card: rgba(12, 12, 24, 0.85);
  --bg-card-hover: rgba(18, 18, 35, 0.95);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-section-alt: #0c0c18;
  --bg-section-dark: #0a0a14;
  
  /* Accent Colors */
  --accent-cyan: #00d4ff;
  --accent-blue: #3b82f6;
  --accent-indigo: #6366f1;
  --accent-orange: #f97316;
  --accent-gold: #fbbf24;
  --accent-green: #10b981;
  --accent-red: #ef4444;
  --accent-purple: #a855f7;
  --accent-pink: #ec4899;
  
  /* Text Colors */
  --text-primary: #f8fafc;
  --text-secondary: rgba(248, 250, 252, 0.75);
  --text-muted: rgba(248, 250, 252, 0.5);
  --text-accent: #00d4ff;
  
  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.12);
  --border-glow: rgba(0, 212, 255, 0.35);
  --border-gold: rgba(251, 191, 36, 0.35);
  
  /* Shadows */
  --shadow-glow: 0 0 50px rgba(0, 212, 255, 0.12);
  --shadow-glow-strong: 0 0 80px rgba(0, 212, 255, 0.2);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-elevated: 0 25px 80px rgba(0, 0, 0, 0.6);
  --shadow-button: 0 4px 20px rgba(0, 0, 0, 0.4);
  
  /* Typography */
  --font-display: 'Exo', 'Varela', sans-serif;
  --font-body: 'Exo', 'Droid Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Spacing */
  --section-padding: clamp(60px, 10vw, 100px);
  --container-max: 1200px;
}

/* Import Modern Fonts */
/* Original fonts - no custom import needed */

/* ============================================
   Global Enhancements
   ============================================ */

body {
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  background: var(--bg-dark) !important;
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Animated Background with Gradient Orbs */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 100% 60% at 50% -30%, rgba(0, 212, 255, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(249, 115, 22, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 35% at 100% 100%, rgba(168, 85, 247, 0.05) 0%, transparent 45%);
  pointer-events: none;
  z-index: -2;
  animation: backgroundPulse 20s ease-in-out infinite alternate;
}

@keyframes backgroundPulse {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0.85; transform: scale(1.03); }
}

/* Subtle Grid Pattern */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -1;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 70%);
}

/* Smooth scroll for the whole page */
html {
  scroll-behavior: smooth;
}

/* Global box-sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* ============================================
   Typography Enhancements
   ============================================ */

h1, h2, h3, .centered-heading, .centered-heading-copy, 
.centered-heading-copy2, .centered-heading-copy3,
.small-head, .small-head-copy, .pricing-title, .pricing-title-2 {
  font-family: 'Exo', 'Varela', sans-serif!important;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 0 50px rgba(0, 212, 255, 0.15);
}

/* Hero Heading - Main */
.centered-heading.margin-bottom-32px {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem) !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
  background: linear-gradient(135deg, #ffffff 0%, rgba(248, 250, 252, 0.95) 50%, rgba(200, 220, 255, 0.95) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero question lines (index page) - slightly larger than the base h1,
   but still smaller than the orange headline above. */
.hero-question {
  font-size: 1.09em;
}

/* Orange Accent Heading */
.centered-heading-copy {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem) !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, #ff6b35 0%, #f97316 40%, #fbbf24 100%) !important;
  background-size: 200% 200%;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  text-shadow: none !important;
  animation: textGradient 5s ease infinite;
}

/* Cyan/Green Accent Headings */
/* ★ 초록색 타이틀 (Earn money, Powerful alarms 등) */
.centered-heading-copy3.margin-bottom-32px {
  background: linear-gradient(135deg, #10b981 0%, #00d4ff 50%, #6366f1 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem) !important;  /* ← 여기서 크기 조절 */
  line-height: 1.3 !important;
  padding: 0 10px;
}

/* Secondary headings */
.centered-heading-copy2.margin-bottom-32px {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem) !important;
  color: var(--text-secondary) !important;
  font-weight: 500 !important;
}

/* Section Subheadings */
.small-head.margin-bottom-32px,
.small-head-copy.margin-bottom-32px {
  font-size: clamp(1.8rem, 4vw, 2.5rem) !important;  /* ★ Features 타이틀 크기 */
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-indigo) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-left: 28px;
  text-shadow: none !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  padding-bottom: 4px !important;
}

.small-head.margin-bottom-32px::before,
.small-head-copy.margin-bottom-32px::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 60%;
  background: var(--primary-gradient);
  border-radius: 3px;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

/* Body Text */
.margin-bottom-24px,
.testimonial-text-four, .text-block-11 {
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.25rem) !important;  /* 설명 텍스트 - 타이틀보다 작게 */
  line-height: 1.85 !important;
  color: var(--text-secondary) !important;
}

/* 그림 설명 텍스트 - 부드러운 회색/시안 */
.margin-bottom-cap {
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  font-weight: 400 !important;
  font-size: clamp(0.95rem, 2vw, 1.1rem) !important;
  line-height: 1.7 !important;
  color: rgba(180, 200, 220, 0.85) !important;  /* 부드러운 청회색 */
  font-style: normal !important;  /* 이탤릭 아님 */
  -webkit-text-fill-color: rgba(180, 200, 220, 0.85) !important;
  background: none !important;
  text-align: center !important;
}

.text-block-11 {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem) !important;
  line-height: 1.85 !important;
  padding: 0 10px;
  max-width: 900px;
  margin: 0 auto;
}

/* Strong text in body */
.margin-bottom-24px strong,
.text-block-11 strong,
.text-block-11 em {
  color: var(--accent-cyan) !important;
  font-weight: 600;
  font-style: normal;
}

/* Highlight text */
.text-span-3 {
  background: linear-gradient(135deg, #00d4ff 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* "Just check when the alarm goes off!" - 골드/앰버 강조 */
.text-span-5 {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 40%, #fcd34d 100%) !important;  /* 골드/앰버 */
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 700 !important;
  font-style: normal !important;
  font-size: 1.25em !important;
  display: inline-block !important;
  margin-top: 10px !important;
}

.text-span-4 {
  color: var(--text-primary) !important;
}

.text-span-6 strong {
  color: var(--accent-cyan) !important;
}

/* ============================================
   Navigation Enhancement
   ============================================ */

.navbar-logo-center {
  background: linear-gradient(180deg, rgba(8, 8, 16, 0.96) 0%, rgba(8, 8, 16, 0.9) 100%) !important;
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky !important;
  top: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar-logo-center:hover {
  background: linear-gradient(180deg, rgba(8, 8, 16, 0.98) 0%, rgba(8, 8, 16, 0.94) 100%) !important;
}

.navbar-logo-center-container.shadow-three {
  background: transparent !important;
  box-shadow: none !important;
}

/* Logo Enhancement */
.navbar-brand-three {
  position: relative !important;
  z-index: 10;
  margin-right: 30px;
}

.navbar-brand-three img {
  transition: var(--transition-smooth);
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.35));
}

.navbar-brand-three:hover img {
  transform: scale(1.1) rotate(-3deg);
  filter: drop-shadow(0 0 18px rgba(0, 212, 255, 0.55));
}

/* Navbar Wrapper Fix */
.navbar-wrapper-three {
  justify-content: flex-start !important;
  gap: 20px;
}

/* Navbar alignment fix (multi-language / font fallback safe)
   - Prevent dropdown labels from getting extra padding/height
   - Force consistent vertical centering across links/toggles/buttons */
.nav-menu-three,
.nav-menu-block {
  align-items: center !important;
}

.nav-link,
.nav-link-accent,
.nav-dropdown-toggle,
.auth-btn {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1.15 !important;
  min-height: 36px !important;
}

.nav-dropdown-toggle {
  padding: 8px 30px 8px 14px !important;
}

.nav-dropdown-toggle .text-block-9,
.nav-dropdown-toggle .text-block-10 {
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1.15 !important;
}

.nav-menu-three {
  background: transparent !important;
}

.nav-link, .text-block-9, .text-block-10 {
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  font-weight: 500 !important;
  font-size: 14px !important;
  letter-spacing: 0.04em;
  color: var(--text-secondary) !important;
  transition: var(--transition-smooth) !important;
  position: relative;
  padding: 8px 14px !important;
}

.nav-link:hover, .nav-link.w--current,
.text-block-9:hover, .text-block-10:hover {
  color: var(--accent-cyan) !important;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.w--current::after {
  width: 75%;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
}

.nav-link-accent {
  color: var(--accent-cyan) !important;
  font-weight: 600 !important;
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.nav-link-accent:hover {
  color: var(--accent-gold) !important;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

/* Dropdown Styling */
.nav-dropdown-list.shadow-three.mobile-shadow-hide {
  background: var(--bg-card) !important;
  backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--border-medium);
  border-radius: 18px !important;
  box-shadow: var(--shadow-elevated), 0 0 35px rgba(0, 212, 255, 0.1) !important;
  padding: 10px !important;
  overflow: hidden;
}

.nav-dropdown-link {
  color: var(--text-secondary) !important;
  transition: var(--transition-fast);
  border-radius: 12px !important;
  margin: 3px 0;
  padding: 12px 18px !important;
}

.nav-dropdown-link:hover {
  color: var(--accent-cyan) !important;
  background: rgba(0, 212, 255, 0.12) !important;
}

/* Dropdown Icon */
.nav-dropdown-icon {
  color: var(--text-muted) !important;
  transition: var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-icon {
  color: var(--accent-cyan) !important;
}

/* Auth Button */
.auth-btn {
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
  border-radius: 12px !important;
  padding: 12px 28px !important;
  transition: var(--transition-smooth) !important;
  border: none !important;
  position: relative;
  overflow: hidden;
}

.auth-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transition: 0.6s;
}

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

.auth-btn.login {
  background: var(--primary-gradient) !important;
  box-shadow: 0 4px 22px rgba(59, 130, 246, 0.4);
}

.auth-btn.login:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.55);
}

.auth-btn.logout {
  background: linear-gradient(135deg, var(--accent-red) 0%, #b91c1c 100%) !important;
  box-shadow: 0 4px 22px rgba(239, 68, 68, 0.4);
}

.auth-btn.logout:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(239, 68, 68, 0.55);
}

/* ============================================
   Hero Section Enhancement
   ============================================ */

.hero-heading-center {
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-section-alt) 100%) !important;
  position: relative;
  overflow: hidden;
  padding: 100px 30px 90px !important;
}

.hero-heading-center .container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.hero-heading-center::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 180%;
  height: 100%;
  background: 
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 212, 255, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 40% 35% at 80% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse 40% 35% at 20% 30%, rgba(249, 115, 22, 0.07) 0%, transparent 40%);
  pointer-events: none;
  animation: backgroundPulse 15s ease-in-out infinite alternate;
}

.hero-heading-center::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  opacity: 0.35;
}

/* Hero Image Enhancement */
.shadow-two {
  border: 1px solid var(--border-glow) !important;
  border-radius: 22px !important;
  box-shadow: 
    var(--shadow-glow-strong),
    var(--shadow-card),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.shadow-two:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 
    0 0 90px rgba(0, 212, 255, 0.28),
    var(--shadow-elevated),
    inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

/* ============================================
   Buttons Enhancement
   ============================================ */

.button-8, .button-8-copy {
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  font-weight: 700 !important;
  font-size: 18px !important;  /* 버튼 글씨 크기 증가 */
  letter-spacing: 0.04em;
  padding: 18px 42px !important;
  border-radius: 14px !important;
  border: none !important;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  text-transform: none !important;
  text-align: center !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.button-8 {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%) !important;  /* 더 진한 오렌지 */
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;  /* 글씨 그림자로 대비 높임 */
  box-shadow: 
    0 4px 22px rgba(234, 88, 12, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Main hero CTA: make it consistently wider (works especially when parent is a flex container) */
.hero-heading-center .button-8,
.section-22 .button-8,
.section-copy .button-8 {
  width: min(520px, 92vw) !important;
}

.button-8:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 
    0 14px 40px rgba(249, 115, 22, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button-8:active {
  transform: translateY(-2px) scale(1.01);
}

.button-8-copy {
  background: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #22d3ee 100%) !important;  /* 시안 계열로 변경 */
  color: #000000 !important;  /* 검정 글씨로 대비 높임 */
  -webkit-text-fill-color: #000000 !important;
  text-shadow: none !important;
  box-shadow: 
    0 4px 22px rgba(6, 182, 212, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-8-copy:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 
    0 14px 40px rgba(16, 185, 129, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button-8-copy:active {
  transform: translateY(-2px) scale(1.01);
}

/* Button Shine Effect */
.button-8::before, .button-8-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transition: 0.6s ease;
}

.button-8:hover::before, .button-8-copy:hover::before {
  left: 100%;
}

/* ============================================
   Section Styling
   ============================================ */

.section-2 {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(18, 18, 28, 1) 100%) !important;
  position: relative;
  padding: 80px 30px !important;
}

/* 빈 섹션 숨기기 (네비게이션 아래 빈 공간) */
.section-2:has(.container-copy:empty) {
  display: none !important;
}

/* :has() 지원 안하는 브라우저용 - 빈 container-copy */
.container-copy:empty {
  display: none !important;
}

/* navbar 바로 다음 빈 section-2 제거 */
.navbar-logo-center + .section-2 {
  padding: 0 !important;
  min-height: 0 !important;
  height: auto !important;
}

.navbar-logo-center + .section-2 > .container-copy:empty {
  display: none !important;
}

.section-22 {
  background: var(--bg-darker) !important;
  position: relative;
  padding: 80px 30px !important;
}

.section-22::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  opacity: 0.35;
}

.section-copy {
  background: linear-gradient(180deg, rgba(22, 22, 32, 1) 0%, var(--bg-dark) 100%) !important;
  padding: 80px 30px !important;
}

/* Section Images */
.image-5, .image-5-copy {
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.image-5:hover, .image-5-copy:hover {
  transform: scale(1.02);
}

/* ============================================
   Pricing Section Enhancement
   ============================================ */

.testimonial-image-left {
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-section-alt) 50%, var(--bg-darker) 100%) !important;
  padding: 80px 30px !important;
  position: relative;
}

.testimonial-image-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-indigo), transparent);
  opacity: 0.45;
}

.pricing-comparison-2 {
  background: transparent !important;
  padding: 50px 0 !important;
}

.pricing-wrapper-2 {
  gap: 45px !important;
}

.pricing-card-2 {
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(8, 8, 20, 0.92) 100%) !important;
  backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid var(--border-subtle) !important;
  border-radius: 26px !important;
  padding: 48px 38px !important;
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  width: auto !important;
  min-width: 350px;
}

/* Pricing Card Glow Effect */
.pricing-card-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition-smooth);
}

.pricing-card-2::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.pricing-card-2:hover {
  transform: translateY(-14px) scale(1.02);
  border-color: var(--border-glow) !important;
  box-shadow: 
    var(--shadow-glow-strong), 
    var(--shadow-elevated),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pricing-card-2:hover::before {
  opacity: 1;
}

.pricing-card-2:hover::after {
  opacity: 1;
}

/* Pro Card Special Styling */
.pricing-card-2:nth-child(2) {
  border-color: rgba(168, 85, 247, 0.22) !important;
}

.pricing-card-2:nth-child(2)::before {
  background: var(--premium-gradient);
}

.pricing-card-2:nth-child(2):hover {
  border-color: rgba(168, 85, 247, 0.45) !important;
  box-shadow: 
    0 0 70px rgba(168, 85, 247, 0.22), 
    var(--shadow-elevated);
}

.pricing-title-2 {
  font-family: 'Exo', 'Varela', sans-serif!important;
  font-size: 2.6rem !important;
  font-weight: 700 !important;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px !important;
  text-shadow: none !important;
}

.pricing-card-2:nth-child(2) .pricing-title-2 {
  background: var(--premium-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.pricing-subtitle-2 {
  color: var(--text-muted) !important;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.pricing-price-2 {
  font-family: 'Exo', 'Varela', sans-serif!important;
  font-size: 1.85rem !important;
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  text-decoration: none !important;
  line-height: 1.4 !important;
}

.text-span {
  color: var(--text-muted) !important;
  font-size: 0.85rem !important;
  text-decoration: line-through;
}

/* Subscribe Button */
.button-primary-5.outline-button {
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.12em !important;
  padding: 16px 42px !important;
  border-radius: 13px !important;
  background: transparent !important;
  border: 2px solid var(--accent-cyan) !important;
  color: var(--accent-cyan) !important;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  box-shadow: none !important;
  position: relative;
  overflow: hidden;
}

.button-primary-5.outline-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  transition: left 0.4s ease;
  z-index: -1;
}

.button-primary-5.outline-button:hover {
  border-color: transparent !important;
  color: white !important;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 35px rgba(0, 212, 255, 0.5) !important;
}

.button-primary-5.outline-button:hover::before {
  left: 0;
}

/* Pro Card Subscribe Button */
.pricing-card-2:nth-child(2) .button-primary-5.outline-button {
  border-color: var(--accent-purple) !important;
  color: var(--accent-purple) !important;
}

.pricing-card-2:nth-child(2) .button-primary-5.outline-button::before {
  background: var(--premium-gradient);
}

.pricing-card-2:nth-child(2) .button-primary-5.outline-button:hover {
  box-shadow: 0 10px 35px rgba(168, 85, 247, 0.5) !important;
}

/* Pricing Features */
.pricing-divider-2 {
  background: linear-gradient(90deg, transparent, var(--border-medium), transparent) !important;
  margin: 38px 0 !important;
  height: 1px !important;
}

.pricing-feature-o, .pricing-feature-x, .pricing-feature-xx {
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  font-size: 14px !important;
  line-height: 1.75 !important;
  color: var(--text-secondary) !important;
  padding-left: 32px !important;
  position: relative;
  transition: var(--transition-fast);
}

.pricing-feature-o:hover {
  color: var(--text-primary) !important;
}

.pricing-feature-o::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
  font-size: 16px;
}

.pricing-feature-xx.xline {
  color: var(--text-muted) !important;
  opacity: 0.7;
}

.pricing-feature-xx.xline::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--accent-red);
  opacity: 0.5;
  font-size: 14px;
}

/* Pricing Image Enhancement */
.pricing-image-2 {
  filter: brightness(1.1) saturate(1.2);
  transition: var(--transition-smooth);
}

.pricing-card-2:hover .pricing-image-2 {
  transform: scale(1.1) rotate(5deg);
  filter: brightness(1.25) saturate(1.35);
}

/* ============================================
   Form Styling
   ============================================ */

.text-field {
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  background: var(--bg-glass) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: 12px !important;
  color: var(--text-primary) !important;
  padding: 14px 22px !important;
  transition: var(--transition-smooth);
}

.text-field:focus {
  border-color: var(--accent-cyan) !important;
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.15) !important;
  outline: none !important;
}

.text-field::placeholder {
  color: var(--text-muted) !important;
}

.field-label {
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--text-secondary) !important;
  margin-bottom: 8px !important;
}

/* ============================================
   Features Page Enhancement
   ============================================ */

.hero-split {
  max-width: 920px !important;
  margin: 0 auto;
}

.margin-bottom-24px strong,
.margin-bottom-cap strong {
  color: var(--accent-cyan);
  font-weight: 600;
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(45px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.35);
  }
  50% {
    box-shadow: 0 0 55px rgba(0, 212, 255, 0.55);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

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

@keyframes textGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
}

/* Apply animations with staggered delays */
.hero-heading-center .container > * {
  opacity: 0;
  animation: fadeInUp 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-heading-center .container > *:nth-child(1) { animation-delay: 0.1s; }
.hero-heading-center .container > *:nth-child(2) { animation-delay: 0.2s; }
.hero-heading-center .container > *:nth-child(3) { animation-delay: 0.35s; }
.hero-heading-center .container > *:nth-child(4) { animation-delay: 0.5s; }
.hero-heading-center .container > *:nth-child(5) { animation-delay: 0.65s; }
.hero-heading-center .container > *:nth-child(6) { animation-delay: 0.8s; }

.pricing-card-2 {
  opacity: 0;
  animation: fadeInUp 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.pricing-card-2:nth-child(1) { animation-delay: 0.2s; }
.pricing-card-2:nth-child(2) { animation-delay: 0.4s; }

/* Floating effect for images */
.image-5, .image-5-copy {
  animation: float 7s ease-in-out infinite;
}

.image-5-copy {
  animation-delay: 1.5s;
}

/* ============================================
   Responsive Adjustments
   ============================================ */

@media screen and (max-width: 991px) {
  .nav-menu-three {
    background: var(--bg-card) !important;
    backdrop-filter: blur(22px);
    border: 1px solid var(--border-subtle);
    border-radius: 18px !important;
  }
  
  .pricing-wrapper-2 {
    gap: 32px !important;
  }
  
  .pricing-card-2 {
    min-width: auto;
    width: 100% !important;
    max-width: 420px;
  }
}

@media screen and (max-width: 767px) {
  .hero-heading-center {
    padding: 50px 15px !important;
  }
  
  .centered-heading.margin-bottom-32px {
    font-size: 1.75rem !important;  /* 흰색 부제목 - 모바일 크게 */
    line-height: 1.45 !important;
    padding: 0 5px !important;
  }
  
  .centered-heading-copy {
    font-size: 2.6rem !important;  /* 주황색 타이틀 (It's Essential...) */
    padding: 0 5px !important;
  }
  
  .centered-heading-copy3.margin-bottom-32px {
    font-size: 1.85rem !important;  /* ← 767px 이하 모바일 타이틀 크기 */
    line-height: 1.35 !important;
    padding: 0 5px !important;
  }
  
  .text-block-11 {
    font-size: 1.25rem !important;  /* 본문 설명 텍스트 */
    line-height: 1.8 !important;
    padding: 0 10px !important;
  }
  
  .button-8, .button-8-copy {
    font-size: 17px !important;  /* 모바일 버튼 글씨 크기 */
    padding: 18px 40px !important;
    width: auto !important;
    max-width: 90% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
  }
  
  .hero_left-content {
    padding: 50px 50px !important;
    max-width: 95% !important;
    min-width: auto !important;
  }
  
  .hero_heading {
    font-size: 2.6rem !important;
  }
  
  /* Section padding for mobile */
  .section-2,
  .section-22,
  .section-copy {
    padding: 50px 12px !important;
  }
  
  .container,
  .container-copy {
    padding: 0 8px !important;
  }
  
  /* Image sizing on mobile */
  .image-5,
  .image-5-copy,
  .shadow-two {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 10px !important;  /* 그림 설명과 간격 줄임 */
  }
  
  .margin-bottom-cap {
    margin-top: 5px !important;  /* 그림과 간격 줄임 */
  }
  
  .margin-bottom-cap {
    font-size: 1.15rem !important;  /* 추가 설명 텍스트 */
    padding: 0 10px !important;
  }
  
  /* Features 페이지 타이틀 */
  .small-head.margin-bottom-32px,
  .small-head-copy.margin-bottom-32px {
    font-size: 1.8rem !important;  /* 모바일 타이틀 - 더 크게 */
    padding-left: 20px !important;
    line-height: 1.35 !important;
  }
  
  /* Features 페이지 설명 텍스트 */
  .margin-bottom-24px {
    font-size: 1.15rem !important;  /* 모바일 설명 - 더 크게 */
    line-height: 1.75 !important;
  }
}

@media screen and (max-width: 479px) {
  .pricing-card-2 {
    padding: 32px 22px !important;
  }
  
  .pricing-title-2 {
    font-size: 2rem !important;
  }
  
  .hero_left-content {
    padding: 35px 25px !important;
    max-width: 95% !important;
    min-width: auto !important;
    margin: 0 auto !important;
  }
  
  .hero_heading {
    font-size: 1.8rem !important;
    margin-bottom: 25px !important;
  }
  
  .hero_button.orange_button,
  .button-6,
  .hero_button-copy {
    padding: 14px 24px !important;
    font-size: 16px !important;  /* 모바일 로그인 버튼 글씨 크기 */
  }
  
  .navbar-brand-three {
    margin-right: 15px;
  }
  
  /* Extra small screen text */
  .hero-heading-center {
    padding: 40px 10px !important;
  }
  
  .centered-heading.margin-bottom-32px {
    font-size: 1.55rem !important;  /* 흰색 부제목 - 작은 모바일 크게 */
    padding: 0 5px !important;
    line-height: 1.45 !important;
  }
  
  .centered-heading-copy {
    font-size: 2.3rem !important;  /* 주황색 타이틀 */
  }
  
  .centered-heading-copy3.margin-bottom-32px {
    font-size: 1.7rem !important;  /* ← 479px 이하 작은 모바일 타이틀 크기 */
    padding: 0 5px !important;
  }
  
  .text-block-11 {
    font-size: 1.15rem !important;  /* 본문 설명 텍스트 */
    line-height: 1.75 !important;
    padding: 0 8px !important;
  }
  
  .section-2,
  .section-22,
  .section-copy {
    padding: 40px 10px !important;
  }
  
  .container,
  .container-copy {
    padding: 0 5px !important;
  }
  
  .margin-bottom-cap {
    font-size: 1.1rem !important;  /* 추가 설명 텍스트 */
    padding: 0 8px !important;
  }
  
  /* Features 페이지 타이틀 */
  .small-head.margin-bottom-32px,
  .small-head-copy.margin-bottom-32px {
    font-size: 1.6rem !important;  /* 작은 모바일 타이틀 - 더 크게 */
    padding-left: 18px !important;
    line-height: 1.35 !important;
  }
  
  /* Features 페이지 설명 텍스트 */
  .margin-bottom-24px {
    font-size: 1.1rem !important;  /* 작은 모바일 설명 - 더 크게 */
    line-height: 1.7 !important;
  }
  
  .image-5,
  .image-5-copy,
  .shadow-two {
    max-width: 100% !important;
    width: 100% !important;
    margin: 10px auto 8px !important;  /* 그림 설명과 간격 줄임 */
  }
  
  .margin-bottom-cap {
    margin-top: 3px !important;  /* 그림과 간격 줄임 */
  }
  
  .button-8, .button-8-copy {
    font-size: 16px !important;  /* 작은 모바일 버튼 글씨 크기 */
    padding: 16px 30px !important;
    margin: 25px auto !important;
    width: auto !important;
    max-width: 92% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
  }
}

/* ============================================
   Scrollbar Styling
   ============================================ */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-blue));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* ============================================
   Selection Styling
   ============================================ */

::selection {
  background: rgba(0, 212, 255, 0.32);
  color: white;
}

::-moz-selection {
  background: rgba(0, 212, 255, 0.32);
  color: white;
}

/* ============================================
   Login/Signup Page Enhancements
   ============================================ */

.section_hero {
  background: var(--bg-darker) !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.section_hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero_left-content {
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(8, 8, 20, 0.92) 100%) !important;
  backdrop-filter: blur(26px) saturate(150%);
  border: 1px solid var(--border-medium) !important;
  border-radius: 30px !important;
  padding: 60px 80px !important;
  box-shadow: 
    var(--shadow-elevated),
    0 0 70px rgba(99, 102, 241, 0.1);
  max-width: 750px !important;
  min-width: 600px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.hero_left-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

.hero_heading {
  font-family: 'Exo', 'Varela', sans-serif!important;
  font-size: 3.2rem !important;
  font-weight: 700 !important;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px !important;
  text-shadow: none !important;
  letter-spacing: 0.08em;
  text-align: center;
  width: 100%;
  display: block;
}

.text-size-small.text-color-gray {
  color: var(--text-secondary) !important;
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  font-weight: 600;
  font-size: 11px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form_text-field {
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  background: rgba(255, 255, 255, 0.035) !important;
  border: 1px solid var(--border-medium) !important;
  border-radius: 14px !important;
  color: var(--text-primary) !important;
  padding: 18px 24px !important;
  font-size: 17px !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  transition: all 0.3s ease;
}

/* Form container */
.margin-top.margin-medium.w-form {
  width: 100%;
}

.hero_right-content,
.hero_grid {
  width: 100% !important;
  max-width: 100% !important;
}

.form_text-field:focus {
  border-color: var(--accent-cyan) !important;
  background: rgba(0, 212, 255, 0.035) !important;
  box-shadow: 
    0 0 0 4px rgba(0, 212, 255, 0.12),
    0 0 22px rgba(0, 212, 255, 0.12) !important;
  outline: none !important;
}

.form_text-field::placeholder {
  color: var(--text-muted) !important;
}

.form_link-text {
  color: var(--accent-cyan) !important;
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition-fast);
}

.form_link-text:hover {
  color: var(--accent-gold) !important;
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.35);
}

/* Button Container */
.hero_button-div {
  width: 100% !important;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero_button.orange_button {
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  font-weight: 700 !important;
  font-size: 18px !important;  /* 버튼 글씨 크기 증가 */
  letter-spacing: 0.06em;
  background: var(--accent-gradient) !important;
  border: none !important;
  border-radius: 14px !important;
  padding: 18px 40px !important;
  transition: all 0.3s ease !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.hero_button.orange_button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transition: 0.5s;
}

.hero_button.orange_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.5);
}

.hero_button.orange_button:hover::before {
  left: 100%;
}

/* Google Sign-in Button */
.button-6 {
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  font-weight: 600 !important;
  font-size: 16px !important;
  background: linear-gradient(135deg, #4285f4 0%, #2563eb 100%) !important;
  border: none !important;
  border-radius: 14px !important;
  padding: 18px 30px !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  justify-content: center;
  margin-top: 15px !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.button-6::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transition: 0.5s;
}

.button-6:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5);
}

.button-6:hover::before {
  left: 100%;
}

/* Signup Link Button */
.hero_button-copy {
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  font-weight: 600 !important;
  font-size: 17px !important;  /* 버튼 글씨 크기 증가 */
  letter-spacing: 0.06em;
  background: transparent !important;
  border: 2px solid var(--accent-cyan) !important;
  color: var(--accent-cyan) !important;
  border-radius: 14px !important;
  padding: 16px 36px !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-top: 20px !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.hero_button-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  transition: left 0.4s ease;
  z-index: -1;
}

.hero_button-copy:hover {
  border-color: transparent !important;
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.hero_button-copy:hover::before {
  left: 0;
}

/* ============================================
   My Account Page Enhancements
   ============================================ */

.div-block-3 {
  background: var(--bg-card) !important;
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  padding: 45px !important;
  margin: 45px auto !important;
  max-width: 920px;
}

.bold-text {
  font-family: 'Exo', 'Varela', sans-serif!important;
  font-size: 2rem !important;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grid {
  background: transparent !important;
  gap: 18px 32px;
}

.infotitle {
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  font-weight: 600 !important;
  font-size: 14px !important;
  color: var(--text-muted) !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.infocontent {
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  font-size: 16px !important;
  color: var(--text-primary) !important;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.text-block-2 {
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  color: var(--text-secondary) !important;
  font-size: 1.1rem !important;
}

/* Account Action Buttons */
.button-2 {
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  font-weight: 600 !important;
  background: linear-gradient(135deg, #ff4757 0%, #dc3545 100%) !important;
  border: none !important;
  border-radius: 11px !important;
  padding: 13px 26px !important;
  transition: var(--transition-smooth) !important;
}

.button-2:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 71, 87, 0.45);
}

.button-4, .button-7 {
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  font-weight: 600 !important;
  background: var(--primary-gradient) !important;
  border: none !important;
  border-radius: 11px !important;
  padding: 13px 26px !important;
  transition: var(--transition-smooth) !important;
}

.button-4:hover, .button-7:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 153, 255, 0.45);
}

.button-4-copy {
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  font-weight: 600 !important;
  background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%) !important;
  border: none !important;
  border-radius: 11px !important;
  padding: 13px 26px !important;
  transition: var(--transition-smooth) !important;
}

.button-4-copy:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.45);
}

.container-8, .container-8-copy {
  gap: 22px;
}

/* ============================================
   Downloads Page Enhancements
   ============================================ */

.text-block-6 {
  font-family: 'Exo', 'Varela', sans-serif!important;
  font-size: 2.4rem !important;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px !important;
}

.text-block-7 {
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  color: var(--text-secondary) !important;
  font-size: 1.2rem !important;
}

.container-4-copy {
  border-color: var(--border-subtle) !important;
  padding: 42px 22px !important;
}

/* Download Buttons */
.div-block-4, .div-block-4-copy {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-subtle);
  border-radius: 18px !important;
  padding: 28px 48px !important;
  transition: var(--transition-smooth);
  width: auto !important;
  min-width: 260px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.div-block-4:hover, .div-block-4-copy:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.text-block-4, .text-block-4-copy, .text-block-5, .text-block-5-copy {
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  font-weight: 600 !important;
  font-size: 1.5rem !important;
  color: var(--text-primary) !important;
}

.text-block-3, .text-block-3-copy {
  font-family: 'Exo', 'Droid Sans', sans-serif!important;
  color: var(--text-muted) !important;
  font-style: italic;
  margin-top: 12px;
}

.link-block-3 {
  transition: var(--transition-smooth);
}

.link-block-3:hover {
  transform: scale(1.03);
}

.image {
  filter: brightness(1.1);
  transition: var(--transition-smooth);
  width: 32px !important;
  height: 32px !important;
  object-fit: contain !important;
  vertical-align: middle !important;
  margin: 0 !important;
}

/* Notion embedded docs (article.page.sans): prevent `.image` icon sizing from collapsing figure blocks */
.page.sans figure.image {
  width: 100% !important;
  height: auto !important;
}

.div-block-4:hover .image,
.div-block-4-copy:hover .image {
  filter: brightness(1.35);
}

/* ============================================
   RSI Divergence Page Enhancement
   ============================================ */

.image-4 {
  border: 1px solid var(--border-glow) !important;
  border-radius: 14px !important;
  box-shadow: var(--shadow-card);
}

/* ============================================
   404/Error Pages Enhancement
   ============================================ */

.utility-page-wrap {
  background: var(--bg-darker) !important;
}

.utility-page-content h2 {
  font-family: 'Exo', 'Varela', sans-serif!important;
  color: var(--accent-cyan);
}

/* ============================================
   Footer / Bottom Section
   ============================================ */

.container-13 {
  border-color: var(--border-subtle) !important;
  margin-top: 65px !important;
}

/* ============================================
   Mobile Menu Enhancement
   ============================================ */

.menu-button {
  background: var(--bg-glass) !important;
  border-radius: 10px;
  transition: var(--transition-fast);
}

.menu-button:hover {
  background: rgba(0, 212, 255, 0.12) !important;
}

.w-icon-nav-menu {
  color: var(--text-primary) !important;
}

/* ============================================
   Additional Polish
   ============================================ */

/* Images with better presentation */
.image-3, .image-4 {
  transition: var(--transition-smooth);
}

.image-3:hover, .image-4:hover {
  transform: scale(1.01);
}

/* Better link styling */
a {
  transition: var(--transition-fast);
}

/* Smooth loading animation for page */
@keyframes pageLoad {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
  animation: pageLoad 0.45s ease-out;
}

/* Pulse animation for CTA buttons */
@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.45);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(0, 212, 255, 0);
  }
}

.button-8:focus, .auth-btn.login:focus {
  animation: ctaPulse 2s infinite;
}

/* Loading state for buttons */
.button-8[disabled],
.button-primary-5[disabled],
.auth-btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

/* ============================================
   Heading Section Divider
   ============================================ */

.heading-small.margin-bottom-32px {
  color: var(--text-primary) !important;
  font-family: 'Exo', 'Varela', sans-serif!important;
  font-size: 1.9rem !important;
  font-weight: 600 !important;
  position: relative;
  padding-bottom: 15px;
}

.heading-small.margin-bottom-32px::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

/* ============================================
   Testimonial Section Enhancement
   ============================================ */

.testimonial-text-four {
  font-size: 1.3rem !important;
  color: var(--text-primary) !important;
  font-weight: 600;
}

.testimonial-text-four strong {
  color: var(--accent-gold) !important;
  font-weight: 700;
}

/* ============================================
   Additional Glow Effects
   ============================================ */

/* Glowing border for featured elements */
.featured-pricing {
  animation: glow 3s ease-in-out infinite;
}

/* Shine effect on pricing tags */
.pricing-tag-2 {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%) !important;
  color: var(--bg-dark) !important;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ============================================
   Special Effects for Trading Theme
   ============================================ */

/* Stock ticker style animation for certain text */
@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Chart-like grid background for certain sections */
.pricing-comparison-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 212, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 100% 70% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 100% 70% at 50% 50%, black 0%, transparent 70%);
}

/* ============================================
   FONT OVERRIDES (easy customization)
   - Edit `--font-display` and `--font-body` in :root at the top of this file.
   - Keep `!important` so this wins over Webflow-exported CSS.
   ============================================ */

body {
  font-family: var(--font-body) !important;
}

h1, h2, h3, h4, h5, h6,
.centered-heading, .centered-heading-copy, .centered-heading-copy2, .centered-heading-copy3,
.small-head, .small-head-copy,
.pricing-title, .pricing-title-2,
.heading-small,
.hero_heading,
.bold-text {
  font-family: var(--font-display) !important;
}

.nav-link, .text-block-9, .text-block-10,
.nav-dropdown-link,
.auth-btn,
.margin-bottom-24px, .margin-bottom-cap,
.testimonial-text-four, .text-block-11,
.text-size-small, .text-size-small.text-color-gray,
.form_text-field, .form_link-text,
.hero_button, .hero_button-copy, .button-6,
.w-input, .w-select, .w-button,
input, select, textarea, button {
  font-family: var(--font-body) !important;
}

code, pre, kbd, samp {
  font-family: var(--font-mono) !important;
}

/* ============================================
   Login/Signup mobile fixes (must be AFTER base !important rules)
   ============================================ */

@media screen and (max-width: 767px) {
  .section_hero {
    padding: 0 12px !important;
  }

  .hero_grid {
    display: flex !important;
    justify-content: center !important;
  }

  .hero_left-content {
    width: 92vw !important;
    max-width: 520px !important;
    padding: 34px 20px !important;
    border-radius: 22px !important;
  }

  .hero_heading {
    font-size: 2.2rem !important;
    margin-bottom: 26px !important;
    letter-spacing: 0.06em !important;
  }

  .form_text-field {
    padding: 14px 16px !important;
    font-size: 16px !important;
    border-radius: 14px !important;
  }

  .hero_button.orange_button,
  .button-6,
  .hero_button-copy {
    padding: 14px 18px !important;
    font-size: 16px !important;
    border-radius: 14px !important;
  }

  .hero_button-div {
    gap: 12px !important;
  }
}

@media screen and (max-width: 479px) {
  .hero_left-content {
    width: 94vw !important;
    max-width: 420px !important;
    padding: 28px 16px !important;
  }

  .hero_heading {
    font-size: 1.95rem !important;
    margin-bottom: 22px !important;
  }
}