:root {
  --color-primary: #FF6600;
  --color-text: #222222;
  --color-muted: #555555;
  --color-bg: #ffffff;
  --radius-lg: 18px;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 10px 24px rgba(0,0,0,0.12);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Poppins', Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
}

/* Global List Styling */
ul, ol {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

ul li, ol li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

ul {
  list-style-type: disc;
}

ul ul {
  list-style-type: circle;
  margin: 0.5rem 0;
}

ol {
  list-style-type: decimal;
}

ol ol {
  list-style-type: lower-alpha;
  margin: 0.5rem 0;
}

/* Styled lists */
.styled-list {
  list-style: none;
  padding-left: 1.2rem;
}

.styled-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.styled-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FF6600;
  font-weight: bold;
}

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 16px; }

/* Header Styles */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-text);
  transition: all 0.3s ease;
}

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

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  color: white;
  border-radius: 10px;
  margin-right: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.logo-text {
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.main-nav a {
  color: var(--color-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* Mobile Navigation */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav a {
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .main-nav a::after {
    display: none;
  }
}

.hero { position: relative; padding: 64px 0; overflow: hidden; }
.hero h1 { margin: 0 0 12px; font-size: 2rem; }
.hero p { margin: 0 0 24px; color: var(--color-muted); }
.hero-actions { display: flex; gap: 12px; }
.hero-gradient { position: absolute; inset: -20% -10% auto -10%; height: 260px; background: linear-gradient(135deg, rgba(255,102,0,0.15), rgba(255,102,0,0.05)); transform: skewY(-6deg); border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; pointer-events: none; }

/* Stats Banner */
.stats-banner {
  position: relative;
  padding: 50px 0;
  background: linear-gradient(135deg, #FF6600, #FF8C42);
  color: white;
  margin: 0 0 60px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.stats-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
  pointer-events: none;
}

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

.stat-number.animate {
  animation: countUp 1s ease-out forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
}

.btn { display: inline-block; padding: 12px 22px; border-radius: var(--radius-lg); text-decoration: none; font-weight: 600; transition: transform .15s ease, box-shadow .15s ease, background .2s ease; }
.btn-primary { background: var(--color-primary); color: #fff; box-shadow: var(--shadow-sm); border: 2px solid var(--color-primary); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline { background: #fff; color: var(--color-primary); border: 2px solid var(--color-primary); }
.btn-outline:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }

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

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

@keyframes wave {
  0% {
    transform: translateX(0) translateZ(0) scaleY(1);
  }
  50% {
    transform: translateX(-25%) translateZ(0) scaleY(0.9);
  }
  100% {
    transform: translateX(-50%) translateZ(0) scaleY(1);
  }
}

/* Benefits Banner */
.benefits-banner {
  position: relative;
  padding: 100px 0 180px;
  background: linear-gradient(135deg, #1a163d 0%, #3a3480 50%, #2a2757 100%);
  overflow: hidden;
  margin: 60px 0 0;
  color: #fff;
  isolation: isolate;
}

.benefits-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 102, 0, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 195, 255, 0.15) 0%, transparent 40%);
  z-index: -1;
  animation: gradientShift 15s ease infinite;
  background-size: 200% 200%;
}

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

.benefits-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.benefits-text {
  flex: 1;
  max-width: 600px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
  position: relative;
  z-index: 2;
}

.benefits-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 102, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
}

.gradient-text {
  background: linear-gradient(90deg, #FF6600, #FF8C42);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.benefits-title {
  font-size: 3.5rem;
  margin: 0 0 24px;
  color: #fff;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.benefits-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 40px;
  line-height: 1.8;
  max-width: 90%;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.benefits-cta {
  display: flex;
  gap: 20px;
  margin: 40px 0 30px;
  flex-wrap: wrap;
}

.benefits-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.4s;
}

.benefits-rating .stars {
  color: #FFD700;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.benefits-rating span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.benefits-cta .btn {
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.benefits-cta .btn-primary {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  color: white;
}

.benefits-cta .btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.benefits-visual {
  position: relative;
  flex-shrink: 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.4s;
  perspective: 1500px;
  transform-style: preserve-3d;
  width: 100%;
  max-width: 500px;
}

.benefits-card {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.card-bg {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(45deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border-radius: 24px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
  z-index: -1;
  transform: translateZ(-10px);
  opacity: 0.8;
  transition: all 0.5s ease;
}

.benefits-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateX(20px);
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.benefits-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.benefits-item:last-child {
  margin-bottom: 0;
}

.benefits-item:nth-child(1) {
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: 0.6s;
}

.benefits-item:nth-child(2) {
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: 0.8s;
}

.benefits-item:nth-child(3) {
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: 1s;
}

.benefits-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  position: relative;
  font-size: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.2), rgba(255, 102, 0, 0.1));
  border-radius: 16px;
  color: #fff;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  overflow: hidden;
}

.icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.3), rgba(255, 102, 0, 0.1));
  z-index: -1;
  opacity: 0.7;
  transition: all 0.4s ease;
}

.benefit-icon span {
  position: relative;
  z-index: 1;
  font-size: 24px;
  transition: all 0.3s ease;
}

.benefits-item:hover .benefit-icon {
  background: var(--color-primary);
  color: white;
  transform: scale(1.1) rotate(5deg);
  animation: none;
}

.benefit-content h3 {
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 10px 0;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.benefit-content p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Hover Effects */
.benefits-item:hover {
  transform: translateY(-5px) scale(1.02) !important;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
}

.benefits-item:hover .benefit-icon {
  transform: rotate(8deg) scale(1.1);
  background: linear-gradient(135deg, #FF6600, #FF8C42);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

.benefits-item:hover .icon-bg {
  opacity: 0;
}

.benefits-item:hover .benefit-icon span {
  color: #fff;
  transform: scale(1.1);
}

/* Button Styles */
.btn-glow {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #FF6600, #FF8C42, #FF6600);
  background-size: 200% 200%;
  z-index: -1;
  border-radius: 50px;
  transition: all 0.4s ease;
  animation: gradientBG 3s ease infinite;
}

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

.btn-glow .btn-text,
.btn-glow .btn-icon {
  padding: 12px 28px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-glow .btn-text {
  background: linear-gradient(45deg, #FF6600, #FF8C42);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-glow .btn-icon {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0 50px 50px 0;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

.btn-glow:hover .btn-icon {
  width: 50px;
  background: rgba(255, 255, 255, 0.15);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Particles */
.benefits-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Wave */
.benefits-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  overflow: hidden;
  z-index: 1;
  opacity: 0.8;
}

.benefits-wave svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  fill: white;
  animation: wave 10s linear infinite;
  transform-origin: 50% 50%;
}

.benefits-wave svg:nth-child(1) {
  animation-duration: 15s;
  opacity: 0.7;
}

.benefits-wave svg:nth-child(2) {
  animation-duration: 12s;
  animation-direction: reverse;
  opacity: 0.5;
}

.benefits-wave svg:nth-child(3) {
  animation-duration: 20s;
  animation-delay: -2s;
  opacity: 0.3;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .benefits-content {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }
  
  .benefits-text {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .benefits-description {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .benefits-cta {
    justify-content: center;
  }
  
  .benefits-visual {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .benefits-content {
    flex-direction: column;
    text-align: center;
  }
  
  .benefits-banner {
    padding: 80px 0 120px;
  }
  
  .benefits-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .benefits-description {
    font-size: 1.1rem;
    max-width: 100%;
  }
  
  .benefits-item {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .benefit-icon {
    margin-bottom: 15px;
  }
  
  .benefit-content {
    text-align: center;
  }
  
  .btn-glow .btn-text,
  .btn-glow .btn-icon {
    padding: 10px 20px;
  }
  
  .btn-glow .btn-icon {
    display: none;
  }
  
  .benefits-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* Section Styles */
.section { 
  padding: 60px 0; 
  position: relative;
}

.bg-light {
  background-color: #f9fafb;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  margin-top: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Section Title Animation */
@keyframes titleUnderline {
  from { width: 0; }
  to { width: 100%; }
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a2e;
  text-align: center;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF6600, #FF8C42);
  border-radius: 2px;
  animation: titleUnderline 0.8s ease-out forwards;
}

.section-title { 
  margin: 0 0 40px; 
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  color: #1a1a2e;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF6600, #FF8C42);
  border-radius: 2px;
}

/* Grid Layout */
.grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
  gap: 24px;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: 0.2s;
}

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

/* Staggered animation for grid items */
.grid .card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease-out forwards;
}

.grid .card:nth-child(1) { animation-delay: 0.1s; }
.grid .card:nth-child(2) { animation-delay: 0.2s; }
.grid .card:nth-child(3) { animation-delay: 0.3s; }
.grid .card:nth-child(4) { animation-delay: 0.4s; }
.grid .card:nth-child(5) { animation-delay: 0.5s; }
.grid .card:nth-child(6) { animation-delay: 0.6s; }

/* Card Styles */
.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  z-index: -1;
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 102, 0, 0.3);
}

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

/* Card content */
.card .icon-svg {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 102, 0, 0.05));
  border-radius: 14px;
  padding: 12px;
  transition: all 0.3s ease;
}

.card:hover .icon-svg {
  transform: rotate(5deg) scale(1.1);
  background: linear-gradient(135deg, #FF6600, #FF8C42);
}

.card:hover .icon-svg svg path[stroke="#222"] {
  stroke: white;
}

.card:hover .icon-svg svg path[fill="#222"] {
  fill: white;
}

.card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 12px 0 4px;
  transition: color 0.3s ease;
}

.card .card-desc {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.card:hover .card-title {
  color: #FF6600;
}

.card:hover .card-desc {
  color: #4b5563;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .card {
    padding: 20px;
  }
}
.card img.icon { width: 28px; height: 28px; object-fit: contain; margin-bottom: 4px; filter: saturate(0.9); }
.card .icon-svg { width: 28px; height: 28px; margin-bottom: 4px; display: inline-block; }
.card .card-icon { font-size: 22px; }
.card .card-title { font-weight: 700; }
.card .card-desc { color: var(--color-muted); font-size: 0.95rem; }

.blog-grid .card { text-decoration: none; color: inherit; cursor: pointer; }

/* Blog cards - advanced */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.post-card { display: grid; grid-template-rows: 160px 1fr; background: #fff; border: 1px solid #eee; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); text-decoration: none; color: inherit; }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.post-thumb { position: relative; background: linear-gradient(135deg, rgba(255,102,0,.15), rgba(255,102,0,.05)); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-content { padding: 12px 14px; display: grid; gap: 8px; }
.post-title { font-weight: 700; line-height: 1.2; }
.post-desc { color: var(--color-muted); font-size: .95rem; }
.post-meta { display: flex; gap: 10px; align-items: center; color: #888; font-size: .85rem; }
.post-tag { display: inline-block; padding: 4px 8px; border-radius: 999px; background: #fff2e9; color: var(--color-primary); border: 1px solid #ffd5bd; font-size: .8rem; }
.featured { display: grid; grid-template-columns: 1.1fr 1fr; gap: 16px; padding: 16px; border: 1px solid #eee; border-radius: 16px; background: linear-gradient(135deg, #fff, #fff7f1); box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.featured .f-thumb { min-height: 220px; background: linear-gradient(135deg, rgba(255,102,0,.18), rgba(255,102,0,.06)); border-radius: 12px; overflow: hidden; }
.featured .f-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.featured .f-body { display: grid; gap: 10px; }
.featured .f-title { font-size: 1.4rem; font-weight: 700; }
.featured .f-desc { color: var(--color-muted); }

/* Features Banner */
.features-banner {
  position: relative;
  padding: 80px 0;
  margin: 40px 0;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.03), rgba(255, 102, 0, 0.01));
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin: 0 0 12px;
  background: linear-gradient(90deg, #FF6600, #FF8C42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--card-color, var(--color-primary));
  transition: height 0.3s ease;
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
  height: 100%;
  opacity: 0.05;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 102, 0, 0.1);
  border-radius: 20px;
  color: var(--card-color, var(--color-primary));
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: rotateY(180deg);
  background: var(--card-color, var(--color-primary));
  color: white;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  color: var(--color-text);
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.feature-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--card-color, var(--color-primary));
  transition: width 0.3s ease;
}

.feature-card:hover h3::after {
  width: 70px;
}

.feature-card p {
  margin: 0 0 20px;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.6;
  min-height: 50px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  color: var(--card-color, var(--color-primary));
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.feature-link:hover {
  opacity: 1;
  transform: translateX(5px);
}

.feature-link::after {
  content: '→';
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.feature-link:hover::after {
  transform: translateX(3px);
}

.cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cta-section h3 {
  font-size: 1.8rem;
  margin: 0 0 10px;
  color: var(--color-text);
}

.cta-section p {
  color: var(--color-muted);
  margin: 0 0 25px;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating shapes animation */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: var(--color-primary);
  top: -100px;
  right: -50px;
  animation: float 15s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: #4ECDC4;
  bottom: -150px;
  left: -100px;
  animation: float 20s ease-in-out infinite reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: #FF6B6B;
  top: 50%;
  right: -50px;
  animation: float 18s ease-in-out infinite;
  animation-delay: 2s;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 900px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .featured { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .post-grid { grid-template-columns: 1fr; }
}

/* Article page */
.breadcrumb { font-size: .9rem; color: #888; margin-bottom: 10px; }
.article-hero { background: linear-gradient(135deg, rgba(255,102,0,.15), rgba(255,102,0,.05)); border: 1px solid #eee; border-radius: 16px; overflow: hidden; margin-bottom: 16px; }
.article-hero img { width: 100%; height: 260px; object-fit: cover; display:block; }
.article-header { display: grid; gap: 8px; margin-bottom: 14px; }
.article-title { font-size: 1.8rem; font-weight: 700; line-height: 1.2; }
.article-meta { display:flex; gap:12px; align-items:center; color:#777; font-size:.9rem; }
.article-meta .tag { background:#fff2e9; color: var(--color-primary); border:1px solid #ffd5bd; padding:4px 8px; border-radius:999px; }
.prose { color: var(--color-text); }
.prose h2, .prose h3 { margin: 18px 0 8px; }
.prose p { margin: 10px 0; color: var(--color-text); }
.prose ul { margin: 8px 0 12px 20px; }
.share { display:flex; gap:10px; align-items:center; margin-top: 18px; }
.share a { text-decoration:none; color: var(--color-primary); font-weight:600; }
.article-nav { display:flex; justify-content: space-between; gap:10px; margin-top: 18px; }
.article-nav a { color: var(--color-muted); text-decoration:none; }

/* Blog toolbar & interactions */
.toolbar { display:flex; gap:10px; align-items:center; justify-content: space-between; margin: 12px 0 16px; flex-wrap: wrap; }
.toolbar .search { flex:1 1 260px; }
.toolbar input[type="search"] { width:100%; padding:10px 12px; border:1px solid #eee; border-radius:12px; font: inherit; }
.pills { display:flex; gap:8px; flex-wrap: wrap; }
.pill { padding:6px 10px; border-radius:999px; border:1px solid #eee; background:#fff; color:#555; font-size:.9rem; cursor:pointer; }
.pill.active { background:#fff2e9; color:var(--color-primary); border-color:#ffd5bd; }
.see-more { display:block; margin: 18px auto 0; padding:10px 16px; border-radius:12px; border:1px solid #eee; background:#fff; cursor:pointer; font-weight:600; }
.hidden { display:none !important; }

/* Footer Styles */
.site-footer {
  margin-top: 80px;
  padding: 60px 0 30px;
  background: #1a1a2e;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6600, #FF8C42);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo .logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 15px;
}

.footer-logo .logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #FF6600;
  color: white;
  border-radius: 8px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}

.footer-about {
  color: #b3b3b3;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.footer-section h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #FF6600;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
  transition: transform 0.2s ease;
}

.footer-links li:hover {
  transform: translateX(5px);
}

.footer-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
  position: relative;
}

.footer-links a:hover {
  color: #FF6600;
}

.footer-links a::before {
  content: "→";
  opacity: 0;
  margin-right: 5px;
  transform: translateX(-5px);
  display: inline-block;
  transition: all 0.2s ease;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #b3b3b3;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #FF6600;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.contact-info p {
  color: #b3b3b3;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}

.contact-info i {
  color: #FF6600;
  margin-right: 10px;
  margin-top: 4px;
}

.contact-info a {
  color: #b3b3b3;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: #FF6600;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: #FF6600;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
  border-color: transparent;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #b3b3b3;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-section {
    margin-bottom: 20px;
  }
  
  .footer-logo {
    text-align: center;
  }
  
  .footer-section h4 {
    text-align: center;
  }
  
  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links ul {
    text-align: center;
  }
  
  .footer-links a {
    padding-left: 0;
  }
  
  .footer-links a::before {
    display: none;
  }
  
  .contact-info {
    text-align: center;
  }
  
  .contact-info p {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; justify-items: flex-start; }
}

.ad-slot { margin: 24px auto; min-height: 60px; display: grid; place-items: center; border: 1px dashed #ddd; border-radius: 12px; color: #888; }

/* Modal */
.modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 100; }
.modal[aria-hidden="false"] { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.modal-content { position: relative; width: min(880px, 92%); max-height: 88vh; overflow: auto; background: #fff; border-radius: 16px; box-shadow: var(--shadow-md); padding: 18px; }
.modal-close { position: absolute; top: 10px; right: 12px; background: transparent; border: none; font-size: 24px; cursor: pointer; }
.modal-body { margin-top: 16px; }
.modal-ad-slot { margin-top: 12px; min-height: 60px; border: 1px dashed #ddd; border-radius: 12px; display: grid; place-items: center; color: #888; }

/* Responsive */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .header-inner { height: 56px; }
  .hero h1 { font-size: 1.6rem; }
}
@media (max-width: 600px) {
  .grid { grid-template-columns: 1fr; }
  .hero { padding: 28px 0; }
  .site-header { position: sticky; top: 0; }
  .container { padding: 0 12px; }
  .card { padding: 14px; border-radius: 12px; }
  .section { padding: 28px 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* Admin tweaks */
@media (max-width: 600px) {
  .admin-grid .form-row { flex-direction: column; align-items: stretch; }
  textarea.json { height: 160px; }
}

/* Tool forms */
.form-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin: 10px 0; }
.input, textarea { width: 100%; border: 1px solid #ddd; border-radius: 10px; padding: 10px 12px; font: inherit; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 10px; }
.stat { background: #fafafa; border: 1px solid #eee; border-radius: 12px; padding: 10px; }

