/*
Theme Name: Turbogainsux
Description: A modern, responsive WordPress theme for stock market alerts and financial services
Version: 2.0.0
Author: Your Name
Author URI: https://yoursite.com
Text Domain: turbogainsux
*/

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

html, 
body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background: #000000;
}

a {
  text-decoration: none;
}

button {
  appearance: none;
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}

button:focus-visible {
  outline: 2px solid #4a90e2 !important;
}

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  /* Colors */
  --color-background-brand-default: rgba(44, 44, 44, 1);
  
  /* Shadows */
  --drop-shadow-200: 0px 1px 4px 0px rgba(12, 12, 13, 0.05), 
                      0px 1px 4px 0px rgba(12, 12, 13, 0.1);
  
  /* Border Radius */
  --size-radius-full: 9999px;
  
  /* Spacing */
  --size-space-200: 8px;
  --size-space-300: 12px;
  --size-space-400: 16px;
  --size-space-600: 24px;
  --size-space-800: 32px;
}

/* ========================================
   MAIN LAYOUT
   ======================================== */
.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #000000;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  position: relative;
  width: 1200px;
  height: 992px;
  top: -200px;
}

.hero-background {
  position: relative;
  width: 100%;
  height: 1152px;
  left: -87px;
}

.hero-bg-image {
  position: absolute;
  width: 100%;
  height: 992px;
  top: 0;
  left: 4px;
  mix-blend-mode: lighten;
  aspect-ratio: 1.23;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* space between logo and text */
    text-decoration: none; /* remove underline */
    cursor: pointer; /* show pointer on hover */
}

.logo-link .logo-text {
    color: #fff; /* adjust text color if needed */
    font-weight: bold;
}

.header-section {
  position: sticky;
  top: 16px;
  z-index: 11;
}

.header {
  display: flex;
  justify-content: space-between;
  width: 1200px;
  align-items: center;
  padding: var(--size-space-300) var(--size-space-400);
  top: 15px;
  left: 87px;
  background: rgba(44, 44, 44, 0.2);
  border-radius: var(--size-radius-full);
  backdrop-filter: blur(32px);
  border: 1px solid rgba(51, 51, 51, 0.5);
}

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

.logo {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  color: white;
  font-size: 20px;
  margin-left: 8px;
}

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

.nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #b8b8b8;
  transition: color 0.2s;
}

.nav-link.active {
  color: #ffffff;
}

.nav-link:hover {
  color: white;
}

/* ========================================
   MOBILE HAMBURGER MENU STYLES
   ======================================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: white;
  margin: 3px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger Animation - Open State */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Mobile Menu Close Button */
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.mobile-menu-close svg {
  width: 20px;
  height: 20px;
}

.mobile-menu-overlay.active {
  display: flex;
  opacity: 1;
}

/* Mobile Navigation */
.mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
  text-align: center;
  overflow: scroll;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu-list li {
  margin: 0;
  padding: 0;
}

.mobile-nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px; /* Minimum touch target size */
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #ffffff;
  background: none;
}

/* Mobile Download Section */
.mobile-download-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  background: #4747ff;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s ease;
}

.mobile-download-btn:hover {
  background: #3636ee;
  transform: translateY(-2px);
}

.mobile-download-btn img {
  width: 20px;
  height: 20px;
}

.download-btn {
  width: auto;
  padding: var(--size-space-200) var(--size-space-400);
  background: #4747ff;
  border-radius: var(--size-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: var(--drop-shadow-200);
  transition: background-color 0.2s;
  margin-left: 10px;
}

.download-btn:hover {
  background: #3636ee;
}

.download-btn span {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: white;
  font-size: 16px;
}

/* ========================================
   PHONE CONTAINER & ALERTS
   ======================================== */
.phone-container {
  position: absolute;
  width: 431px;
  height: 851px;
  top: 161px;
  left: 472px;
  border-radius: 66.74px;
  box-shadow: inset -3.71px -2.78px 3.71px rgba(255, 255, 255, 0.25);
}

/* Add a background pattern behind the phone for backdrop-filter to work */
.phone-bg {
  position: relative;
  width: 450px;
  height: 920px;
  top: -35px;
  left: -15px;
  background: url('images/image-19.png') center/cover;
}

.alerts-container {
  display: flex;
  flex-direction: column;
  width: 393px;
  gap: 7.42px;
  position: relative;
  top: 105px;
  left: 29px;
}

.alert-card {
  display: flex;
  flex-direction: column;
  gap: 14.83px;
  padding: 21.32px 16.68px;
  background: rgba(6, 10, 19, 0.4);
  border-radius: 24px;
  box-shadow: 0px 3.71px 3.71px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(40px);
  border: 0.93px solid rgba(128, 128, 128, 0.3);
  opacity: 0;
  transform: translateY(-30px);
}

.alert-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.alert-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Initial state */
/* Animation class */
.alert-card.animate {
  animation: popIn 0.8s ease-out forwards;
}

/* Keyframes */
@keyframes popIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  60% {
    opacity: 1;
    transform: translateY(5px); /* small overshoot for smoothness */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.company-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  background: rgba(54, 54, 54, 0.4);
  border-radius: 16.68px;
  backdrop-filter: blur(29.66px);
  border: 0.93px solid rgba(64, 64, 64, 0.5);
  animation: tagGlow 3s ease-in-out 2.5s infinite;
}

@keyframes tagGlow {
  0%, 100% {
    border-color: rgba(64, 64, 64, 0.5);
    background: rgba(54, 54, 54, 0.4);
  }
  50% {
    border-color: rgba(71, 71, 255, 0.6);
    background: rgba(54, 54, 54, 0.6);
  }
}

.company-icon {
  width: 14px;
  height: 14px;
}

.company-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: white;
}

.alert-time {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #c7c7c7;
}

.alert-message {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: white;
}

/* ========================================
   HERO CONTENT
   ======================================== */
.hero-content,
.hero-title,
.cta-container {
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  transition: none; /* disable smooth transition by default */
}

.hero-content.animate,
.hero-title.animate,
.cta-container.animate {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition: opacity 0.2s ease-out, transform 0.6s ease-out; /* super fast */
}


   
.hero-content {
  display: flex;
  width: 1200px;
  align-items: end;
  justify-content: space-between;
  position: absolute;
  top:88vh;
  left: 87px;
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.2s ease-out;
}

.hero-content.animate {
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title.animate {
  animation: fadeInUp 0.8s ease-out forwards;
}

.cta-container.animate {
  animation: fadeInUp 0.8s ease-out forwards;
}

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


.hero-title {
  width: 402px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 60px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 50%, rgba(153, 153, 153, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 24px 24px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s ease-out 0.2s;
}

.hero-title.animate {
  opacity: 1;
  transform: translateY(0);
}

.cta-container {
  height: 71px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: var(--size-space-600) 20px;
  background: rgba(44, 44, 44, 0.5);
  border-radius: 54px;
  border: 1px solid #212020;
  box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.05), 0px 1px 4px rgba(12, 12, 13, 0.1), inset 0px 2px 0px #393939;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s ease-out 0.4s;
}

.cta-container.animate {
  opacity: 1;
  transform: translateY(0);
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-main {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: white;
}

.cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #cccccc;
}

.store-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: var(--size-space-200) var(--size-space-300);
  background: #f2f2f2;
  border-radius: var(--size-radius-full);
  box-shadow: var(--drop-shadow-200);
  transition: background-color 0.2s;
}

.store-btn:hover {
  background: #e8e8e8;
}

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

.store-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #191919;
}

/* Gradients */
.hero-gradient-1 {
  position: absolute;
  width: 100%;
  height: 400px;
  top: 660px;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  /* backdrop-filter: blur(20px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%); */
}

.hero-gradient-2 {
  position: absolute;
  width: 100%;
  height: 667px;
  top: 375px;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
}

/* ========================================
   HIGHLIGHTS & COMMUNITY SECTION
   ======================================== */
   .highlights-section {
    position: relative;
    height: calc(100vh - 100px);
    overflow: hidden; /* Prevent scrollbars */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .community-bg {
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: 100%; /* slightly larger so it covers when shifted */
    object-fit: cover;
    z-index: 1;
    transform: translateY(0);
    will-change: transform;
  }
  
  .highlights-content-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    border-radius: 12px;
  }
  

.highlights-content {
  display: flex;
  flex-direction: column;
  height: 90vh;
  align-items: center;
  gap: 30px;
  padding: 100px 0 0 0;
  width: 100%;
  position: relative;
}

.highlights-content {
  position: relative;
  overflow: hidden;
}

.community-bg {
  position: absolute;
  top: -400px;
  left: -40px;
  width: 100%;
  height: 120%; /* slightly larger so it covers when shifted */
  object-fit: none;
  z-index: 1;
  transform: translateY(0);
  will-change: transform;
}

.highlights-content-text {
  position: relative;
  z-index: 1;
  padding: 2rem;
  text-align: center;
}



.community-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 60px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(153, 153, 153, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 24px 24px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
}

.social-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 50px;
}


.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  background: var(--color-background-brand-default);
  border-radius: 14998.5px;
  box-shadow: var(--drop-shadow-200);
  border: 1.5px solid rgba(102, 102, 102, 0.3);
  transition: opacity 0.2s;
}

.social-nav {
  display: flex;
  flex-wrap: wrap;        /* allow multiple rows */
  gap: 1rem 1.5rem;       /* vertical + horizontal spacing */
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex: 0 0 0;          /* force 4 per row */
  justify-content: center;
  box-sizing: border-box; /* include padding in width */
}


.social-link:hover {
  opacity: 0.8;
}

.social-icon {
  width: 30px;
  height: 30px;
}

.social-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: white;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 100px 0;
  width: 100%;
  background: #050405;
}

.pricing-container {
  display: flex;
  flex-direction: column;
  width: 1200px;
  gap: 30px;
}

.pricing-header {
  display: flex;
  align-items: end;
  justify-content: space-around;
  gap: 10px;
}

.pricing-header-content {
  display: flex;
  flex-direction: column;
  width: 780px;
  gap: 10px;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  background: linear-gradient(90deg, rgba(128, 102, 255, 1) 0%, rgba(102, 153, 255, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 24px 24px rgba(0, 0, 0, 0.45);
}

.section-description {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 28.8px;
  text-align: center;
  color: #e5e4e6;
  text-shadow: 0px 24px 24px rgba(0, 0, 0, 0.45);
}

.process-steps {
  display: flex;
  align-items: center;
  gap: 16px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 48px;
  flex: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(24, 24, 24, 0.7) 100%);
  border: 1px solid rgba(69, 69, 84, 0.5);
  overflow: hidden;
  position: relative;
}

.step-1 {
  border-radius: 36px 0px 0px 36px;
  margin: -1px 0 -1px -1px;
}

.step-2 {
  border-radius: 0px 36px 8px 0px;
  margin: -1px -1px -1px -1px;
}

.step-3 {
  border-radius: 0px 8px 36px 0px;
  margin: -1px -1px -1px -1px;
}

.step-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 19.2px;
  background: linear-gradient(90deg, rgba(229, 228, 231, 1) 0%, rgba(178, 178, 179, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 24px 24px rgba(0, 0, 0, 0.45);
}

.step-image {
  width: 100%;
  aspect-ratio: 3.02;
}

.step-description {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  background: linear-gradient(90deg, rgba(229, 228, 231, 1) 0%, rgba(178, 178, 179, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.8;
  text-shadow: 0px 24px 24px rgba(0, 0, 0, 0.45);
}

.step-glow {
  position: absolute;
  width: 533px;
  height: 97px;
  background: #9eb0d2;
  border-radius: 266.5px/48.5px;
  filter: blur(37px);
  mix-blend-mode: color-dodge;
}

.step-1 .step-glow:first-of-type {
  top: 57px;
  left: 26px;
  background: #d9d9d9;
}

.step-1 .step-glow:last-of-type {
  top: 347px;
  left: 28px;
}

.step-2 .step-glow,
.step-3 .step-glow {
  top: 137px;
  left: 28px;
}

/* ========================================
   TRUST & AUTHORITY SECTION
   ======================================== */
.trust-section {
  height: 686px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  background: #050405;
}

.trust-bg-main {
  position: absolute;
  width: calc(100vw - 45px);
  height: 935px;
  top: -124px;
  left: 42px;
  mix-blend-mode: lighten;
}

.trust-bg-vector {
  position: absolute;
  width: 100%;
  height: 506px;
  left: 0;
}

.trust-content {
  display: flex;
  flex-direction: column;
  width: 1200px;
  height: 686px;
  align-items: center;
  gap: 60px;
  padding: 170px 0 48px 0;
  position: relative;
}

.trust-title {
  width: 570px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(153, 153, 153, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px -3px 14px rgba(0, 0, 0, 0.2);
}

.performance-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 58px;
  padding: var(--size-space-800) 40px;
  background: rgba(44, 44, 44, 0.7);
  border-radius: var(--size-radius-full);
  box-shadow: 0px 50px 80px rgba(12, 12, 13, 0.6);
  backdrop-filter: blur(25px);
  border: 0.5px solid rgba(102, 102, 102, 0.3);
}

.performance-stats {
  transform: scale(0.85);
  opacity: 0.5;
  transition: none; /* JS drives animation now */
  will-change: transform, opacity;
}

.performance-stats.active {
  transform: scale(1);      /* normal size */
  opacity: 1;
}

.stat-item {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
}

.stat-value {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 40px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgb(255, 255, 255) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px -3px 14px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  color: #ffffff;
}

/* ========================================
   WEBINARS SECTION
   ======================================== */
.webinars-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 140px 83px;
  width: 100%;
}

.webinar-dates,
.webinar-card {
  transform: scale(0.85);
  opacity: 0.5;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
  will-change: transform, opacity;
}

.webinar-dates.active,
.webinar-card.active {
  transform: scale(1);
  opacity: 1;
}

.webinars-title {
  width: 570px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 70px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(153, 153, 153, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px -3px 14px rgba(0, 0, 0, 0.2);
}

.webinar-dates {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.webinar-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: var(--size-space-400) 20px;
  background: rgba(44, 44, 44, 0.7);
  border-radius: var(--size-radius-full);
  box-shadow: var(--drop-shadow-200);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(102, 102, 102, 0.3);
}

.webinar-date.opacity-40 {
  opacity: 0.4;
}

.webinar-date.opacity-60 {
  opacity: 0.6;
}

.webinar-day,
.webinar-month {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  text-align: center;
  color: #e6e6e6;
}

.webinar-date-num {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  color: white;
}

.webinar-card {
  display: flex;
  width: 778px;
  height: 117px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 48px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(24, 24, 24, 0.7) 100%);
  border: 1px solid rgba(69, 69, 84, 0.5);
  overflow: hidden;
  position: relative;
}

.webinar-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.webinar-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  background: linear-gradient(90deg, rgba(229, 228, 231, 1) 0%, rgba(178, 178, 179, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 24px 24px rgba(0, 0, 0, 0.45);
}

.webinar-author {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  background: linear-gradient(90deg, rgba(229, 228, 231, 1) 0%, rgba(178, 178, 179, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.8;
  text-shadow: 0px 24px 24px rgba(0, 0, 0, 0.45);
}

.webinar-platform {
  display: flex;
  align-items: center;
  gap: 7px;
}

.webinar-platform-icon {
  width: 19px;
  height: 20px;
}

.webinar-platform-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  text-align: center;
  background: linear-gradient(90deg, rgba(229, 228, 231, 1) 0%, rgba(178, 178, 179, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.8;
  text-shadow: 0px 24px 24px rgba(0, 0, 0, 0.45);
}

.webinar-glow {
  position: absolute;
  width: 748px;
  height: 97px;
  top: 77px;
  left: 19px;
  border-radius: 374px/48.5px;
  background: #9eb0d2;
  filter: blur(37px);
  mix-blend-mode: color-dodge;
}

/* ========================================
   PERFORMANCE & PRICING SECTION
   ======================================== */
.performance-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 100px 83px;
  width: 100%;
}

.performance-title {
  width: 570px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(153, 153, 153, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px -3px 14px rgba(0, 0, 0, 0.2);
}

.pricing-plans {
  display: flex;
  align-items: center;
  gap: 21px;
}

.pricing-plan {
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0.5;
  will-change: transform, opacity;
}

/* Initial positions */
.pricing-plan:first-child {
  transform: translateX(-120px); /* slide from left */
}
.pricing-plan:last-child {
  transform: translateX(120px); /* slide from right */
}
.pricing-plan:nth-child(2) {
  transform: translateY(40px); /* subtle lift effect */
}

/* Active state */
.pricing-plan.active {
  transform: translateX(0) translateY(0);
  opacity: 1;
}


.pricing-plan {
  display: flex;
  flex-direction: column;
  width: 302px;
  gap: 30px;
  padding: 24px;
  border-radius: 36px;
  box-shadow: inset 0px 0px 50px rgba(102, 102, 255, 0.3);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(24, 24, 24, 0.7) 100%);
  border: 1px solid rgba(69, 69, 84, 0.5);
  position: relative;
}

.pricing-plan.popular {
  padding: 55px 36px;
  justify-content: center;
  overflow: hidden;
}

.plan-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-icon {
  width: 29px;
  height: 29px;
  border-radius: 6px;
  box-shadow: inset 0px 0px 12px #000000;
  position: relative;
}

.plan-icon-inner {
  width: 17px;
  height: 17px;
  top: 6px;
  left: 6px;
  border-radius: 6px;
  position: absolute;
}

.icon-cyan {
  background: linear-gradient(180deg, rgba(186, 230, 245, 1) 0%, rgba(52, 228, 248, 1) 100%);
}

.icon-purple {
  background: linear-gradient(180deg, rgba(158, 123, 255, 1) 0%, rgba(73, 73, 253, 1) 100%);
}

.icon-green {
  background: linear-gradient(180deg, rgba(219, 245, 186, 1) 0%, rgba(52, 248, 101, 1) 100%);
}

.plan-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plan-name {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: white;
}

.plan-description {
  width: 152px;
  opacity: 0.6;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 14px;
  color: var(--3-mode-base-input, #e4e4e7);
}

.plan-pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-price {
  display: flex;
  align-items: end;
  gap: 4px;
}

.plan-currency {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  line-height: 20px;
  color: white;
}

.plan-amount {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 20px;
  color: white;
}

.plan-period {
  width: 152px;
  opacity: 0.6;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 14px;
  color: var(--3-mode-base-input, #e4e4e7);
}

.plan-full-description {
  opacity: 0.6;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--3-mode-base-input, #e4e4e7);
}

.plan-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 59px;
  box-shadow: var(--drop-shadow-200);
  transition: background-color 0.2s;
}

.plan-button.light {
  background: #f2f2f2;
  padding: var(--size-space-300);
}

.plan-button.light:hover {
  background: #e8e8e8;
}

.plan-button.dark {
  background: var(--color-background-brand-default);
  border: 1px solid rgba(102, 102, 102, 0.3);
}

.plan-button.dark:hover {
  background: rgba(44, 44, 44, 0.8);
}

.plan-button-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.plan-button.light .plan-button-text {
  color: #191919;
}

.plan-button.dark .plan-button-text {
  color: white;
}

.popular-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  position: absolute;
  top: 17px;
  right: 17px;
  background: var(--color-background-brand-default);
  border-radius: 100px;
  box-shadow: var(--drop-shadow-200);
  border: 1px solid rgba(102, 102, 102, 0.3);
}

.popular-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: white;
}

.plan-glow {
  position: absolute;
  width: 348px;
  height: 65px;
  top: 350px;
  left: -22px;
  border-radius: 174px/32.5px;
  background: #9eb0d2;
  filter: blur(37px);
  mix-blend-mode: color-dodge;
}

.original-price {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  color: rgba(228, 228, 231, 0.4);
  text-decoration: line-through;
}

/* Line separator */
.line-separator {
  width: 100%;
  height: 1px;
}

/* ========================================
   ALERTS SECTION
   ======================================== */
.alerts-section {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 40px;
  padding: 100px 83px
}

.alerts-left,
.alerts-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 0;
}

.alerts-logo-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin: 25px 0;
}

.alerts-logo {
  display: flex;
  width: 363px;
  align-items: center;
}

.alerts-logo-icon {
  width: 50.11px;
  height: 50.11px;
}

.alerts-logo-text {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 27.8px;
  color: white;
  margin-left: 8px;
}

.alerts-main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.alerts-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 66px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(153, 153, 153, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px -3px 14px rgba(0, 0, 0, 0.2);
}

.alerts-description {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  background: linear-gradient(90deg, rgba(229, 228, 231, 1) 0%, rgba(178, 178, 179, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.8;
  text-shadow: 0px 24px 24px rgba(0, 0, 0, 0.45);
}

/* Footer navigation links */
.alerts-footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.alerts-footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 22.4px;
  color: rgba(178, 178, 179, 1);
  text-decoration: none;
  transition: color 0.3s ease;
}

.alerts-footer-link:hover {
  color: rgba(229, 228, 231, 1);
}

.alerts-footer-separator {
  color: rgba(102, 102, 102, 0.5);
  font-size: 14px;
}

.alerts-separator {
  flex: 1;
  position: relative;
}

.alerts-separator img {
  width: 100%;
  height: 100%;
}

.alerts-right {
  margin-right: -1px;
  position: relative;
}

.alerts-section-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.alerts-section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: white;
}

.alerts-section-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  background: linear-gradient(90deg, rgba(229, 228, 231, 1) 0%, rgba(178, 178, 179, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.8;
  text-shadow: 0px 24px 24px rgba(0, 0, 0, 0.45);
}

.alerts-socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.alerts-social-link {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 25.6px;
  background: linear-gradient(90deg, rgba(229, 228, 231, 1) 0%, rgba(178, 178, 179, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.8;
  text-shadow: 0px 24px 24px rgba(0, 0, 0, 0.45);
  transition: opacity 0.2s;
}

.alerts-social-link:hover {
  opacity: 1;
}
.footer-image-content {
  display: contents;
}

.alerts-bg-image {
  position: absolute;
  width: 224px;
  height: 228px;
  top: 128px;
  left: 148px;
  mix-blend-mode: lighten;
}

/* Footer */
.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 0;
  width: 100%;
}

.footer-text {
  width: 1200px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 13.2px;
  color: #a1a1a1;
}

/* ========================================
   COMMUNITY SECTION
   ======================================== */
.community-section {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 10px;
  padding: 93px 348px;
  width: 100%;
  aspect-ratio: 1.59;
  background: url('images/community-bg-person.png') center/cover;
  background-position: -140px center;
}

.community-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: -35px;
}

.community-main-title {
  width: 740px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 66px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(153, 153, 153, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px -3px 14px rgba(0, 0, 0, 0.2);
}

.community-buttons {
  display: flex;
  align-items: start;
  gap: 10px;
}

.community-btn {
  display: flex;
  width: 176px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: var(--size-space-300);
  border-radius: var(--size-radius-full);
  box-shadow: var(--drop-shadow-200);
  transition: all 0.2s;
}

.community-btn.outline {
  background: rgba(45, 45, 45, 0.01);
  border: 0.5px solid #c9c9c9;
}

.community-btn.outline:hover {
  background: rgba(45, 45, 45, 0.03);
}

.community-btn.filled {
  background: #f2f2f2;
}

.community-btn.filled:hover {
  background: #e8e8e8;
}

.community-btn-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  flex: 1;
}

.community-btn.outline .community-btn-text {
  color: white;
}

.community-btn.filled .community-btn-text {
  color: #191919;
}

/* Page Template Styles */
.site-main {
    padding: 2rem 0;
    min-height: 60vh;
    margin-top: 66px;
    width: 100%;
}

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

.entry-header {
    margin-bottom: 2rem;
    text-align: center;
}

.entry-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 3rem;
    line-height: 1.2;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(153, 153, 153, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 24px 24px rgba(0, 0, 0, 0.45);
}

.post-thumbnail {
    margin-bottom: 2rem;
    text-align: center;
}

.post-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.3);
}

.entry-content {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e5e4e6;
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    margin: 2rem 0 1rem 0;
    background: linear-gradient(90deg, rgba(229, 228, 231, 1) 0%, rgba(178, 178, 179, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.entry-content a {
    color: #4747ff;
    text-decoration: none;
    transition: color 0.2s;
}

.entry-content a:hover {
    color: #3636ee;
}

.entry-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(102, 102, 102, 0.3);
    text-align: center;
}

.edit-link a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-background-brand-default);
    color: white;
    text-decoration: none;
    border-radius: var(--size-radius-full);
    border: 1px solid rgba(102, 102, 102, 0.3);
    transition: background-color 0.2s;
}

.edit-link a:hover {
    background: rgba(44, 44, 44, 0.8);
}

/* Modal Container */
.modal {
  display: none; 
  position: fixed; 
  z-index: 9999; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto;
  background-color: rgba(0,0,0,0.5); 
}

/* Modal Content Box */
.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  color: #333;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  position: relative;
}

/* Close Button */
.modal-content .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #999;
}

.modal-content .close:hover {
  color: #333;
}

/* ========================================
   RESPONSIVE DESIGN - TABLET & DESKTOP
   ======================================== */

/* Desktop - Show hamburger menu on smaller screens */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .modal-content {
    margin-top: 40%;
    padding: 20px;
  }
}

/* Large Desktop (1400px and below) */
@media (max-width: 1400px) {
  .header-section {
    width: 1200px;
  }

  .hero-section,
  .pricing-container,
  .trust-content,
  .hero-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
  }

  .hero-background {
    width: 100%;
    left: 0;
  }

  .phone-container {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Tablet Landscape (1200px and below) */
@media (max-width: 1200px) {
  .hero-section {
    width: 100%;
    height: auto;
    min-height: 800px;
  }

  .hero-background {
    width: 100%;
    height: auto;
    min-height: 900px;
    left: 0;
  }

  .hero-content {
    width: 100%;
    max-width: 1000px;
    padding: 0 40px;
    position: relative;
    top: auto;
    left: 0;
    margin-top: 50px;
  }

  .hero-title {
    width: 100%;
    max-width: 500px;
    font-size: 48px;
    line-height: 52px;
  }

  .cta-container {
    flex-direction: column;
    height: auto;
    gap: 20px;
    padding: 30px 20px;
  }

  .pricing-container,
  .trust-content {
    width: 100%;
    max-width: 1000px;
    padding: 0 40px;
  }

  .pricing-plans {
    gap: 15px;
  }

  .pricing-plan {
    width: 280px;
  }

  .webinars-section {
    padding: 100px 40px;
  }

  .webinar-dates {
    flex-wrap: wrap;
    gap: 10px;
  }

  .alerts-section {
    padding: 0 40px;
    height: auto;
    min-height: 400px;
  }

  .alerts-left,
  .alerts-right {
    width: 100%;
    max-width: 500px;
  }

  /* Trust section responsive */
  .trust-section {
    position: relative;
    overflow: hidden;
  }

  .trust-bg-main {
    width: 100%;
    height: auto;
    max-width: 100%;
    top: 0;
    left: 0;
  }

  .trust-bg-vector {
    width: 100%;
    height: auto;
    max-width: 100%;
    left: 0;
    top: 0;
  }

  /* Community background responsive */
  .highlights-content {
    position: relative;
    overflow: hidden;
  }

  .community-bg {
    width: 100%;
    height: auto;
    max-width: 100%;
    top: 0;
    left: 0;
  }

  .highlights-content-text {
    position: relative;
    top: auto;
    z-index: 2;
    margin-top: 20px;
  }
}
/* No Tablet Portrait Support Yet */
/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */

/* Mobile Large (480px and below) - Match the image layout */
@media (max-width: 768px) {
  .header-section {
    width:100%;
    z-index: 26;
    top: 0;
  }

  /* Reset hero section for mobile-first layout */
  .hero-section {
    height: auto;
    min-height: 600px;
    padding-top: 65px!important;
    position: relative;
    width: 100%;
    overflow: visible !important;
    background: linear-gradient(135deg, #050405 0%, #0a0a1a 50%, #050405 100%);
    margin-top: 0px!important;
  }

  /* Force phone container visibility on mobile */
  .hero-section .phone-container {
    display: flex !important ;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100vw !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    height: calc(680px + 40px);
  }

  /* Phone background with proper image */
  .hero-section .phone-bg {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: url(images/image-19.png) center / cover !important;
    border: none !important;
  }

  .hero-background {
    height: auto;
  }

  /* Mobile header - compact and centered */
  .header {
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 15px 20px;
    background: rgba(6, 10, 19, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 0;
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    box-sizing: border-box;
  }

  .desktop-nav {
    display: none; /* Hide desktop navigation on mobile */
  }

  .mobile-menu-toggle {
    display: flex; /* Show hamburger menu on mobile */
  }

  .download-btn {
    width: auto;
    min-width: 65px;
    padding: 8px 16px;
    font-size: 14px;
  }

  .download-btn span {
    display: none;
  }

  /* Phone container - prominent and centered */
  .phone-container {
    position: relative !important;
    width: 320px !important;
    top: 60px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 auto 40px auto !important;
    z-index: 10 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none!important;
  }

  .phone-bg {
    width: 340px !important;
    height: 680px !important;
    top: -20px !important;
    left: 0px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    border-radius: 40px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
  }

  .alerts-container {
    display: flex;
    flex-direction: column;
    width: 280px;
    gap: 7.42px;
    position: relative;
    top: 105px;
    left: 29px;
  }

  .phone-container, .phone-bg, .hero-gradient-1 {
    width: 100%;
    height: 100vh;
  }

  .hero-bg-image {
    width: 100%;
    height: calc(680px + 40px);
  }

  .hero-gradient-1, .hero-gradient-2 {
    width: 100%;
    bottom: 0px;
    z-index: 10;
    height: 528px;
    top: 400px;
  }
  .hero-gradient-1::after, .hero-gradient-2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px; /* height of blur/fade */
    background: linear-gradient(179deg, rgba(0, 0, 0, 0) 0%, rgb(8 8 19) 100%);
    backdrop-filter: blur(10px);  /* adds blur effect */
    pointer-events: none;
}

  /* Hero content - stacked below phone */
  .hero-content {
    position: relative;
    left: auto;
    margin: 0;
    flex-direction: column;
    gap: 25px;
    text-align: left;
    z-index: 25;
    width: calc(100% - 40px);
    max-width: 100%;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s ease-out;
    margin-top: 40px;
  }

  .hero-content.animate {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-title {
    font-size: 42px;
    line-height: 42px;
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px 0;
    color: white;
    font-weight: 400;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s ease-out 0.2s;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgb(220 218 218) 0%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 24px 24px rgba(0, 0, 0, 0.45);
  }

  .hero-title.animate {
    opacity: 1;
    transform: translateY(0);
  }

  /* CTA container - compact and centered */
  .cta-container {
    gap: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 20px 15px;
    border-radius: 20px;
    border: none;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s ease-out 0.4s;
  }

  .cta-container.animate {
    opacity: 1;
    transform: translateY(0);
  }

  .cta-main {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
    color: white;
    font-weight: 400;
    text-align: center;
  }

  .cta-sub {
    font-size: 16px;
    line-height: 20px;
    opacity: 0.9;
    color: white;
    margin-bottom: 25px;
    text-align: center;
  }

  /* Store buttons - horizontal layout */
  .store-buttons {
    justify-content: center;
    gap: 20px;
    margin-top: 0;
    flex-wrap: wrap;
  }

  .store-btn {
    padding: 12px 15px;
    min-width: 140px;
    flex-shrink: 0;
    background: white;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .store-text {
    font-size: 16px;
    color: black;
    font-weight: 500;
  }

  /* Community section - compact */
  .highlights-section {
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
    height: 50vh;
  }

  .highlights-content {
    height: auto;
    min-height: auto;
    padding: 40px 0 0 0;
    text-align: center;
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
  }

  .community-bg {
    width: 100%;
    height: auto;
    max-width: 100%;
    top: -200px;
    left: 0;
    z-index: 1;
    object-fit: cover;
  }

  .highlights-content-text {
    position: relative;
    top: auto;
    z-index: 2;
    margin-top: 20px;
  }

  .community-title {
    font-size: 28px;
    line-height: 32px;
    text-align: center;
    white-space: normal;
    margin-bottom: 25px;
    width: 100%;
    max-width: 100%;
  }

  .social-nav {
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }

  .social-link {
    padding: 12px 16px;
    min-width: 60px;
    min-height: 60px;
    flex-shrink: 0;
    flex: 0 0 0%;
  }

  .social-text {
    font-size: 14px;
    display: none;
  }

  /* How it works section - compact cards */
  .pricing-section {
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .pricing-header-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: center;
  }

  .section-subtitle {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .section-description {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 30px;
  }

  .process-steps {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
  }

  .process-step {
    padding: 20px 15px;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 16px !important;
  }

  .step-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .step-description {
    font-size: 13px;
    line-height: 18px;
  }

  /* Performance section - horizontal stats */
  .performance-section {
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .performance-title {
    width: 100%;
    max-width: 100%;
    font-size: 28px;
    line-height: 32px;
    text-align: center;
    margin-bottom: 25px;
  }

  .performance-stats {
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 20px;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }

  .stat-value {
    font-size: 24px;
    line-height: 24px;
  }

  .stat-label {
    font-size: 14px;
    line-height: 18px;
  }

  /* Webinars section - compact */
  .webinars-section {
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .webinars-title {
    width: 100%;
    max-width: 100%;
    font-size: 28px;
    line-height: 32px;
    text-align: center;
    margin-bottom: 25px;
  }

  .webinar-dates {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: flex-start;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    padding: 0 10px;
    box-sizing: border-box;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }

  .webinar-dates::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  .webinar-date {
    padding: 10px 12px;
    min-width: 60px;
    flex-shrink: 0;
    white-space: nowrap;
    text-align: center;
  }

  .webinar-day,
  .webinar-month {
    font-size: 12px;
  }

  .webinar-date-num {
    font-size: 16px;
  }

  .webinar-card {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    padding: 20px 15px;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    box-sizing: border-box;
  }

  .webinar-title {
    font-size: 16px;
    line-height: 20px;
  }

  .webinar-author {
    font-size: 13px;
    line-height: 18px;
  }

  /* Pricing plans - vertical stack */
  .pricing-plans {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 100%;
  }

  .pricing-plan {
    width: 100%;
    max-width: 100%;
    padding: 20px 15px;
    box-sizing: border-box;
  }

  .pricing-plan.popular {
    padding: 25px 20px;
  }

  .plan-name {
    font-size: 16px;
  }

  .plan-amount {
    font-size: 20px;
  }

  /* Trust section - compact */
  .trust-section {
    height: auto;
    min-height: auto;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
  }

  .trust-bg-main {
    position: absolute;
    width: 100%;
    height: auto;
    max-width: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: lighten;
    z-index: 1;
  }

  .trust-bg-vector {
    position: absolute;
    width: 100%;
    height: auto;
    max-width: 100%;
    left: 0;
    top: 0;
    z-index: 1;
  }

  .trust-content {
    width: 100%;
    max-width: 100%;
    padding: 40px 20px;
    height: auto;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
  }

  .trust-title {
    width: 100%;
    max-width: 100%;
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 20px;
  }

  /* Alerts section - vertical stack */
  .alerts-section {
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
    height: auto;
    min-height: auto;
    width: 100%;
    box-sizing: border-box;
    margin-top: 40px;
  }

  .alerts-left,
  .alerts-right {
    width: 100%;
    max-width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    padding: 0;
  }

  .alerts-logo {
    width: 100%;
    max-width: 250px;
    margin: 0 auto 20px auto;
  }

  .alerts-title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 15px;
  }

  .alerts-socials {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  /* Community section - compact */
  .community-section {
    padding: 40px 20px 600px 20px;
    width: 100%;
    box-sizing: border-box;
    background-position: center;
  }

  .community-main-title {
    width: 100%;
    max-width: 100%;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 25px;
    padding: 0 20px;
  }

  .community-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .community-btn {
    width: 180px;
    padding: 12px;
  }

  .community-btn-text {
    font-size: 14px;
  }

  .pricing-section {
    padding: 40px 20px;
    margin-top: -160px!important;
    width: 100%;
    box-sizing: border-box;
  }

  /* Footer - compact */
  .footer-text {
    width: 100%;
    max-width: 100%;
    font-size: 11px;
    line-height: 14px;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
  }

  /* Fix for all sections to use full width */
  .hero-section,
  .highlights-section,
  .pricing-section,
  .performance-section,
  .webinars-section,
  .trust-section,
  .alerts-section,
  .community-section {
    overflow: hidden;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    box-sizing: border-box;
    margin-top: 40px;
  }

  /* Ensure content containers use full available width */
  .hero-content,
  .highlights-content,
  .pricing-header-content,
  .performance-stats,
  .webinar-dates,
  .pricing-plans,
  .trust-content,
  .alerts-left,
  .alerts-right,
  .community-main-title {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  
  .footer-image-content {
    display: block;
  }
  .alerts-bg-image {
    position: inherit;
  }
  .alerts-logo-section {
    margin: 20px 0;
  }
}

/* Mobile Small (360px and below) */
@media (max-width: 360px) {
  
}

/* Landscape Mobile (max-height: 500px) */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    height: auto;
    min-height: auto;
    padding: 20px 0;
  }

  .hero-background {
    height: auto;
    min-height: auto;
  }

  .phone-container {
    top: 20px;
    margin-bottom: 20px;
  }

  .hero-content {
    margin-top: 20px;
  }

  .highlights-content {
    padding: 20px 0 0 0;
  }

  .trust-content {
    padding: 30px 20px;
  }

  .webinars-section {
    padding: 30px 20px;
  }

  .performance-section {
    padding: 30px 20px;
  }

  .community-section {
    padding: 30px 20px;
  }
} 


/* ========================================
   BLOG LISTING PAGE STYLES
   ======================================== */

.blog-main {
  padding: 2rem 0;
  min-height: 60vh;
  margin-top: 66px;
  width: 100%;
  background: #000;
}

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

/* Blog Header */
.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.blog-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}

.blog-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e5e4e6;
  margin: 0;
}

/* Posts Grid */
.posts-container {
  margin-bottom: 60px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.blog-post {
  background-color: #000;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  color: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.post-thumbnail {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post:hover .post-thumbnail img {
  transform: scale(1.05);
}

.post-categories {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.post-category {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-content {
  padding: 25px;
}

.post-header {
  margin-bottom: 15px;
}

.post-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  margin: 0 0 15px 0;
}

.post-title a {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-title a:hover {
  color: #ccc;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #aaa;
  flex-wrap: wrap;
}

.post-meta svg {
  width: 14px;
  height: 14px;
  margin-right: 6px;
}

.post-date,
.post-author,
.post-comments {
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e5e4e6;
  margin-bottom: 20px;
}

.post-footer {
  display: flex;
  justify-content: flex-end;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s ease;
}

.read-more-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: #fff;
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

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

.pagination-nav .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s ease;
}

.pagination-nav .page-numbers:hover,
.pagination-nav .page-numbers.current {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.pagination-nav .prev,
.pagination-nav .next {
  gap: 8px;
  padding: 0 20px;
}

/* No Posts Found */
.no-posts-found {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
}

.no-posts-content {
  max-width: 400px;
}

.no-posts-icon {
  color: #b8b8b8;
  margin-bottom: 20px;
}

.no-posts-title {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: #fff;
  margin-bottom: 15px;
}

.no-posts-description {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #e5e4e6;
  margin-bottom: 25px;
}

.back-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: background-color 0.2s ease;
}

.back-home-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
  .logo-link .logo-text {
    display: none;
  }
  .blog-main {
    padding: 1.5rem 0;
    margin-top: 60px;
  }

  .blog-container {
    padding: 0 15px;
  }

  .blog-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .blog-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-post {
    border-radius: 8px;
  }

  .post-thumbnail {
    height: 180px;
  }

  .post-content {
    padding: 20px;
  }

  .post-title {
    font-size: 18px;
    line-height: 24px;
  }

  .post-meta {
    gap: 15px;
    font-size: 13px;
  }

  .pagination-nav .page-numbers {
    min-width: 35px;
    height: 35px;
    font-size: 13px;
  }

  /* Mobile menu improvements */
  .mobile-menu-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  .mobile-menu-close svg {
    width: 18px;
    height: 18px;
  }

  .mobile-nav-link {
    font-size: 20px;
    padding: 0.8rem 1.5rem;
  }
}

/* Single post styling */
.single-post {
  background-color: #000; /* dark card background */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  color: #fff; /* ensure text inside post is white */
}

/* Post headings */
.single-post .site-main h1,
.single-post .site-main h2,
.single-post .site-main h3,
.single-post .site-main h4,
.single-post .site-main h5,
.single-post .site-main h6 {
  color: #fff;
}

/* Links inside post */
.single-post .site-main a {
  color: #fff;           /* white links */
  font-weight: bold;      /* bold text */
  text-decoration: underline; /* underline */
}

.single-post .site-main a:hover {
  color: #ccc;           /* lighter on hover */
}

/* Post metadata */
.single-post .site-main .entry-meta {
  color: #aaa; /* slightly muted gray for meta */
}

/* Post footer */
.single-post .site-main .entry-footer {
  border-top: 1px solid #333;
  padding-top: 1rem;
  color: #ccc;
}

/* Featured image adjustment */
.single-post .site-main .post-thumbnail img {
  border-radius: 6px;
  margin-bottom: 1rem;
}

/* Entry content paragraphs */
.single-post .site-main .entry-content p {
  color: #fff;
  line-height: 1.8;
}

.wpforms-container .wpforms-form .wpforms-field-label, .wpforms-container .wpforms-form .wpforms-field-sublabel, .wpforms-container .wpforms-form .wpforms-field-description, .wpforms-container .wpforms-form textarea, .wpforms-container .wpforms-form li, .wpforms-container .wpforms-form th {
  color:#ffffff;
}

div.wpforms-container-full input[type=text], div.wpforms-container-full .wpforms-form .wpforms-field input.wpforms-error, div.wpforms-container-full input[type=email], div.wpforms-container-full button[type=submit]:not(:hover):not(:active), .wpforms-container .wpforms-form textarea, div.wpforms-container-full button[type=submit]:hover {
  border-radius: 15px;
}

div.wpforms-container-full .wpforms-confirmation-container-full, div[submit-success]>.wpforms-confirmation-container-full:not(.wpforms-redirection-message) {
  background: #fff;
  border: 1px;
  border-radius: 15px;
}

.phone-number  input[type=number] {
    border-radius: 15px !important;
}

.confirmation-checkbox label{
    color: #fff !important;
}

div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium {
    color: rgba(0, 0, 0, 0.7);
}

.nav-link.active, a:where(:not(.wp-element-button)) {
    text-decoration: none ;
}

.store-btn { 
	text-decoration: none ;
}