/* Additional styling for mockup elements */
.sidebar-header {
  margin-bottom: 24px;
}

.sidebar-item {
  margin-bottom: 16px;
}

.content-header {
  margin-bottom: 16px;
}

.content-text {
  margin-bottom: 12px;
  width: 100%;
}

.content-text.short {
  width: 70%;
}

.content-card {
  flex: 1;
  border-radius: 8px;
}

.info-text {
  margin-top: 8px;
  width: 100%;
}

/* Variables */
:root {
  --color-primary: #6366f1;
  --color-primary-light: #818cf8;
  --color-primary-dark: #4f46e5;
  --color-primary-hover: #4338ca;
  --color-primary-gradient: linear-gradient(135deg, #818cf8, #4f46e5);
  
  --color-secondary: #f43f5e;
  --color-secondary-light: #fb7185;
  --color-secondary-dark: #e11d48;

  --color-success: #10b981;
  --color-success-light: rgba(16, 185, 129, 0.1);
  
  --color-bg: #f8fafc;
  --color-bg-alt: #f1f5f9;
  --color-card: #ffffff;
  --color-border: #e2e8f0;
  --color-text: #0f172a;
  --color-text-light: #334155;
  --color-text-muted: #64748b;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.2);
  
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  --section-spacing: 100px;
}

/* Dark Mode */
.dark-mode {
  --color-bg: #0f172a;
  --color-bg-alt: #1e293b;
  --color-card: #1e293b;
  --color-border: #334155;
  --color-text: #f1f5f9;
  --color-text-light: #cbd5e1;
  --color-text-muted: #94a3b8;
  
  --color-success-light: rgba(16, 185, 129, 0.15);
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.25), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.25), 0 10px 10px -5px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

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

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(244, 63, 94, 0.1));
  color: var(--color-primary);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dark-mode .section-label {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(244, 63, 94, 0.2));
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--color-text);
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* Loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loader .logo-wrapper {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    filter: drop-shadow(0 0 0 rgba(99, 102, 241, 0.5));
  }
  70% {
    transform: scale(1);
    filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.4));
  }
  100% {
    transform: scale(0.95);
    filter: drop-shadow(0 0 0 rgba(99, 102, 241, 0));
  }
}

.loader-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: center;
}

.loader-text .dot {
  animation: dots 1.5s infinite;
  opacity: 0;
  margin-left: 2px;
}

.loader-text .dot:nth-child(2) {
  animation-delay: 0.5s;
}

.loader-text .dot:nth-child(3) {
  animation-delay: 1s;
}

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

/* Header */
header {
  padding: 16px 0;
  position: sticky;
  top: 0;
  background-color: rgba(248, 250, 252, 0.8);
  z-index: 100;
  transition: all var(--transition-normal);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.dark-mode header {
  background-color: rgba(15, 23, 42, 0.8);
}

header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 12px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  transition: transform var(--transition-normal);
}

.logo:hover .logo-wrapper {
  transform: rotate(10deg);
}

.logo-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(var(--shadow-glow));
}

h1 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.01em;
  background: var(--color-primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-normal);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary-gradient);
  transition: width var(--transition-normal);
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-card);
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
  padding: 0;
}

.theme-toggle:hover {
  transform: rotate(30deg);
}

.theme-toggle svg {
  stroke: var(--color-text-muted);
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

/* Moon icon styling when dark mode is active */
.dark-mode .theme-toggle svg {
  stroke: #f1f5f9; /* Light gray-white color for the moon */
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  transition: all var(--transition-normal);
}

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

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

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

.mobile-menu {
  position: fixed;
  top: 73px;
  left: 0;
  width: 100%;
  background-color: var(--color-card);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border-top: 1px solid var(--color-border);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 99;
}

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

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu-link {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition-normal);
}

.mobile-menu-link:hover {
  color: var(--color-primary);
}

.mobile-cta {
  margin-top: 16px;
}

/* Hero Section */
.hero {
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(99, 102, 241, 0.1);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.dark-mode .hero-badge {
  background-color: rgba(99, 102, 241, 0.2);
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--color-primary-gradient);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

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

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

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

.cta-button:active {
  transform: translateY(0);
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.text-button:hover {
  background-color: var(--color-bg-alt);
  border-color: var(--color-text-muted);
}

.text-button svg {
  transition: transform var(--transition-normal);
}

.text-button:hover svg {
  transform: translateX(3px);
}

.hero-stats {
  display: flex;
  gap: 40px;
}

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

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
}

.stat-label {
  font-size: 14px;
  color: var(--color-text-muted);
}

.hero-image {
  flex: 1;
  max-width: 600px;
  position: relative;
}

.browser-mockup {
  position: relative;
  background-color: var(--color-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: none;
  transition: all var(--transition-normal), background-color var(--transition-normal), border-color var(--transition-normal);
  border: 1px solid var(--color-border);
  z-index: 2;
}

/* Removed hover effect for browser mockup */

.browser-topbar {
  display: flex;
  align-items: center;
  padding: 6px 16px;
  background-color: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.browser-dot:nth-child(1) {
  background-color: #f43f5e;
}

.browser-dot:nth-child(2) {
  background-color: #f59e0b;
}

.browser-dot:nth-child(3) {
  background-color: #10b981;
}

.browser-address {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 16px;
  background-color: var(--color-bg);
  border-radius: 4px;
  padding: 3px 10px;
  width: 100%;
  max-width: 320px;
  font-size: 12px;
  color: var(--color-text-muted);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-normal);
}

.browser-content {
  padding: 0;
  position: relative;
  height: 400px;
  overflow: hidden;
}

.browser-website {
  width: 100%;
  height: 100%;
  background-color: var(--color-bg);
  overflow: hidden;
  transition: background-color var(--transition-normal);
}

.website-header {
  height: 60px;
  background-color: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

.website-logo,
.nav-item,
.sidebar-header,
.sidebar-item,
.content-header,
.content-text,
.content-card,
.info-item,
.info-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.website-nav {
  display: flex;
  gap: 16px;
}

.website-content {
  display: flex;
  padding: 20px;
  gap: 20px;
  height: calc(100% - 60px);
}

.website-sidebar {
  width: 180px;
  padding-right: 20px;
  border-right: 1px solid var(--color-border);
}



.website-main {
  flex: 1;
}



.content-cards {
  display: flex;
  gap: 16px;
  margin: 24px 0;
}

.content-info {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}



.blur-overlay {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 0;
  height: 0;
  border: 2px dashed var(--color-primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: width 0.3s, height 0.3s;
}

@keyframes pulse-border {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.3);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
  }
}

@keyframes draw-selection {
  0% {
    width: 0;
    height: 0;
  }
  100% {
    width: 200px;
    height: 60px;
  }
}

.blur-selection {
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-color: rgba(99, 102, 241, 0.15);
  transition: backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease, background-color 0.3s ease;
  border-radius: 4px;
  /* Add fallback for older mobile browsers */
  @supports not (backdrop-filter: blur(8px)) {
    background-color: rgba(99, 102, 241, 0.25);
  }
}

.dark-mode .blur-selection {
  background-color: rgba(99, 102, 241, 0.25);
  /* Add fallback for older mobile browsers */
  @supports not (backdrop-filter: blur(8px)) {
    background-color: rgba(99, 102, 241, 0.35);
  }
}

/* Borderless blur styles */
.borderless-blur {
  position: absolute;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-color: rgba(99, 102, 241, 0.04);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
  z-index: 16;
  /* Add fallback for browsers without backdrop-filter support */
  @supports not (backdrop-filter: blur(8px)) {
    background-color: rgba(99, 102, 241, 0.2);
  }
}

.dark-mode .borderless-blur {
  background-color: rgba(99, 102, 241, 0.08);
  @supports not (backdrop-filter: blur(8px)) {
    background-color: rgba(99, 102, 241, 0.3);
  }
}

.borderless-text-blur {
  position: absolute;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-color: rgba(99, 102, 241, 0.04);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
  z-index: 15;
  border-radius: 6px;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  @supports not (backdrop-filter: blur(8px)) {
    background-color: rgba(99, 102, 241, 0.2);
  }
}

.dark-mode .borderless-text-blur {
  background-color: rgba(99, 102, 241, 0.08);
  @supports not (backdrop-filter: blur(8px)) {
    background-color: rgba(99, 102, 241, 0.3);
  }
}

/* Additional mobile-specific blur styles */
@media (max-width: 768px) {
  .blur-selection {
    /* Use a stronger background color on mobile if backdrop filter is not supported */
    background-color: rgba(99, 102, 241, 0.2);
  }
  
  .dark-mode .blur-selection {
    background-color: rgba(99, 102, 241, 0.3);
  }
  
  /* Ensure borderless blur works on mobile */
  .borderless-blur {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    /* Fallback with stronger opacity */
    background-color: rgba(99, 102, 241, 0.15);
  }
  
  .dark-mode .borderless-blur {
    background-color: rgba(99, 102, 241, 0.2);
  }
  
  .borderless-text-blur {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background-color: rgba(99, 102, 241, 0.15);
  }
  
  .dark-mode .borderless-text-blur {
    background-color: rgba(99, 102, 241, 0.2);
  }
}

.blur-handle {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: white;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
}

.blur-handle.top-left {
  top: -4px;
  left: -4px;
}

.blur-handle.top-right {
  top: -4px;
  right: -4px;
}

.blur-handle.bottom-right {
  bottom: -4px;
  right: -4px;
}

.blur-handle.bottom-left {
  bottom: -4px;
  left: -4px;
}

.blur-tooltip {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  padding: 12px;
  width: 240px;
  opacity: 0;
  z-index: 20;
}

@keyframes slide-up {
  from {
    bottom: -80px;
    opacity: 0;
  }
  to {
    bottom: -64px;
    opacity: 1;
  }
}

.blur-tooltip::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--color-card);
}

.blur-slider {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.blur-slider span {
  font-size: 12px;
  color: var(--color-text-muted);
}

.blur-range {
  width: 100%;
  height: 4px;
  background: var(--color-bg-alt);
  outline: none;
  -webkit-appearance: none;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.blur-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  border: 2px solid white;
  box-shadow: var(--shadow-sm);
}

.blur-actions {
  display: flex;
  gap: 8px;
}

.blur-action-button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  transition: all var(--transition-normal);
}

.blur-action-button.save {
  background-color: var(--color-primary);
  color: white;
}

.blur-action-button.save:hover {
  background-color: var(--color-primary-hover);
}

.blur-action-button.cancel {
  background-color: var(--color-bg-alt);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.blur-action-button.cancel:hover {
  background-color: var(--color-border);
}

.hero-shape {
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 240px;
  height: 240px;
  background: linear-gradient(135deg, var(--color-primary-light), transparent);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(60px);
  opacity: 0.3;
  animation: shape-morph 8s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes shape-morph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 50% 50% 40% 60% / 40% 50% 60% 50%;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-blob {
  position: absolute;
  filter: blur(40px);
  opacity: 0.4;
}

.blob-1 {
  top: 10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, rgba(99, 102, 241, 0.1) 50%, transparent 70%);
  animation: blob-float 20s infinite ease-in-out alternate;
}

.blob-2 {
  bottom: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.3) 0%, rgba(244, 63, 94, 0.1) 50%, transparent 70%);
  animation: blob-float 15s infinite ease-in-out alternate-reverse;
}

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

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(99, 102, 241, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
}

.dark-mode .hero-grid {
  background-image: 
    linear-gradient(to right, rgba(99, 102, 241, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(99, 102, 241, 0.08) 1px, transparent 1px);
}

/* Partners Section */
.partners {
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-bg-alt);
}

.partners-label {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  transition: opacity var(--transition-normal);
}

.partner-logo:hover {
  opacity: 1;
}

.partner-logo svg {
  stroke: var(--color-text-muted);
}

.partner-logo span {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Features Section */
.features {
  padding: var(--section-spacing) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.feature-card {
  background-color: var(--color-card);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  z-index: 2;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
  z-index: 1;
}

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

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--color-success-light);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
  transform: scale(1.05);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-success);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text);
}

.feature-desc {
  color: var(--color-text-muted);
  font-size: 16px;
  margin-bottom: 20px;
}

.feature-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
  margin-top: auto;
  transition: gap var(--transition-normal);
}

.feature-link:hover {
  gap: 12px;
}

.feature-link svg {
  transition: transform var(--transition-normal);
}

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


/* How It Works Section */
.how-it-works {
  padding: var(--section-spacing) 0;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: center;
  gap: 24px;
  background-color: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--color-primary-gradient);
  transition: width var(--transition-normal);
}

.step:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.step:hover::after {
  width: 6px;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  background: var(--color-primary-gradient);
  color: white;
  font-size: 24px;
  font-weight: 700;
  border-radius: var(--radius-full);
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.step:hover .step-number {
  transform: scale(1.05);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.step-desc {
  color: var(--color-text-muted);
  font-size: 16px;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background-color: var(--color-success-light);
  border-radius: var(--radius-md);
  margin-bottom: 0;
  transition: all var(--transition-normal);
}

.step-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-success);
  transition: all var(--transition-normal);
}

.step:hover .step-icon svg {
  stroke: var(--color-success);
  transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
  padding: var(--section-spacing) 0;
  background-color: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.testimonials::before,
.testimonials::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(244, 63, 94, 0.05));
  z-index: 0;
  filter: blur(40px);
}

.testimonials::before {
  top: -100px;
  left: -100px;
}

.testimonials::after {
  bottom: -100px;
  right: -100px;
}

.dark-mode .testimonials::before,
.dark-mode .testimonials::after {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(244, 63, 94, 0.1));
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonials-grid .testimonial-card:nth-child(1) {
  animation: fadeInUp 0.6s ease-out;
}

.testimonials-grid .testimonial-card:nth-child(2) {
  animation: fadeInUp 0.6s ease-out 0.2s;
  animation-fill-mode: both;
}

.testimonials-grid .testimonial-card:nth-child(3) {
  animation: fadeInUp 0.6s ease-out 0.4s;
  animation-fill-mode: both;
}

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

.testimonial-card {
  background-color: var(--color-card);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--color-border);
  overflow: hidden;
  height: 100%;
}



.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-primary-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-rating svg {
  color: #f59e0b;
  filter: drop-shadow(0 1px 2px rgba(245, 158, 11, 0.1));
  transition: transform var(--transition-normal);
}

.testimonial-card:hover .testimonial-rating svg {
  transform: scale(1.05);
}

.testimonial-text {
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 24px;
  line-height: 1.7;
  position: relative;
  flex: 1;
  font-style: italic;
  padding-left: 8px;
  border-left: 3px solid transparent;
  transition: all var(--transition-normal);
}

.testimonial-card:hover .testimonial-text {
  border-left: 3px solid var(--color-primary-light);
  padding-left: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  margin-top: auto;
  position: relative;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  font-size: 18px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.testimonial-card:hover .author-avatar {
  transform: scale(1.05);
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text);
  transition: color var(--transition-normal);
}

.testimonial-card:hover .author-name {
  color: var(--color-primary);
}

.author-role {
  color: var(--color-text-muted);
  font-size: 14px;
  position: relative;
  display: inline-block;
}

/* Pricing Section */
.pricing {
  padding: var(--section-spacing) 0;
}

.pricing-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.price-card {
  background-color: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 370px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.price-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-primary-gradient);
}

.price-card.featured {
  border-color: var(--color-primary);
  transform: scale(1.05);
  z-index: 2;
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.price-card.featured::before {
  height: 6px;
}

.price-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-card.featured .price-badge {
  background-color: var(--color-primary);
  color: white;
}

.price-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}

.price-subtitle {
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.price-value {
  font-size: 72px;
  font-weight: 800;
  margin-bottom: 32px;
  background: var(--color-primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.price-features {
  list-style: none;
  margin-bottom: 40px;
  width: 100%;
  text-align: left;
}

.price-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--color-border);
}

.price-feature:last-child {
  border-bottom: none;
}

.price-feature svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-success);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.price-feature.inactive {
  color: var(--color-text-muted);
  opacity: 0.7;
}

.price-feature.inactive svg {
  stroke: var(--color-text-muted);
}

/* FAQ Section */
.faq {
  padding: var(--section-spacing) 0;
  background-color: var(--color-bg-alt);
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background-color: var(--color-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
}

.accordion-item:hover {
  box-shadow: var(--shadow-lg);
}

.accordion-header {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  user-select: none;
  color: var(--color-text);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  transition: transform var(--transition-normal);
  stroke: var(--color-text-muted);
}

.accordion-icon.active {
  transform: rotate(45deg);
  stroke: var(--color-primary);
}

.accordion-content {
  padding: 0 24px;
  height: 0;
  overflow: hidden;
  transition: height var(--transition-normal);
}

.accordion-content-inner {
  padding-bottom: 24px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: var(--section-spacing) 0;
  position: relative;
  overflow: hidden;
}

.cta-content {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: 60px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0.9;
}

.cta-content .cta-button {
  background: white;
  color: var(--color-primary);
}

.cta-content .cta-button:hover {
  background: rgba(255, 255, 255, 0.9);
}

.cta-content .cta-button svg {
  stroke: var(--color-primary);
}

.cta-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: rgba(99, 102, 241, 0.5);
  top: -50px;
  left: 10%;
  animation: float 8s infinite ease-in-out alternate;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(244, 63, 94, 0.5);
  bottom: -100px;
  right: 15%;
  animation: float 10s infinite ease-in-out alternate-reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: rgba(16, 185, 129, 0.5);
  bottom: 50px;
  left: 30%;
  animation: float 6s infinite ease-in-out alternate;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(20px, -20px);
  }
}

/* Footer */
footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--color-border);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 300px;
}

.footer-tagline {
  margin-top: 16px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.footer-links-wrapper {
  display: flex;
  gap: 60px;
}

.footer-links-group {
  min-width: 120px;
}

.footer-links-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-text);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--color-text-muted);
  font-size: 14px;
  transition: color var(--transition-normal);
}

.footer-link:hover {
  color: var(--color-primary);
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  transition: all var(--transition-normal);
  border: 1px solid var(--color-border);
}

.social-link:hover {
  transform: translateY(-4px);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.social-link svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.copyright {
  font-size: 14px;
  color: var(--color-text-muted);
}

.credit {
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.credit svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-secondary);
  fill: var(--color-secondary);
}

.credit a {
  color: var(--color-primary);
  transition: color var(--transition-normal);
}

.credit a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 44px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  /* Browser mockup adjustments */
  .browser-mockup {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .browser-content {
    height: 350px;
  }
}

@media (max-width: 992px) {
  :root {
    --section-spacing: 80px;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-image {
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
  }
  
  /* Browser mockup tablet adjustments */
  .browser-mockup {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .browser-content {
    height: 320px;
  }
  
  .website-sidebar {
    width: 140px;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-brand {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links-wrapper {
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 60px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Browser mockup mobile adjustments */
  .browser-mockup {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
  }
  
  .browser-topbar {
    padding: 6px 12px;
  }
  
  .browser-dots {
    gap: 4px;
  }
  
  .browser-dot {
    width: 6px;
    height: 6px;
  }
  
  .browser-address {
    font-size: 11px;
    padding: 3px 8px;
    margin-left: 12px;
  }
  
  .browser-content {
    height: 320px;
  }
  
  .website-header {
    height: 50px;
    padding: 0 16px;
  }
  
  .website-logo svg {
    transform: scale(0.9);
  }
  
  .website-content {
    padding: 16px;
    gap: 16px;
  }
  
  .website-sidebar {
    display: none; /* Hide sidebar on mobile for simplicity */
  }
  
  .content-header svg {
    transform: scale(0.85);
  }
  
  .content-cards {
    flex-direction: column;
    gap: 16px;
    margin: 20px 0;
  }
  
  .content-card {
    height: 100px;
  }
  
  .content-info {
    gap: 10px;
  }
  
  /* Blur overlay adjustments */
  .blur-overlay {
    top: 30px;
    left: 30px;
  }
  
  .blur-tooltip {
    width: 200px;
    padding: 10px;
  }
  
  .step {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 24px;
  }
  
  .step-icon {
    display: none;
  }
  
  .price-card {
    padding: 32px 24px;
  }
  
  .price-value {
    font-size: 56px;
  }
  
  .footer-links-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .cta-content {
    padding: 40px 24px;
  }
  
  .cta-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .cta-button,
  .hero-cta .text-button {
    width: 100%;
    justify-content: center;
  }
  
  /* Browser mockup small mobile adjustments */
  .browser-mockup {
    transform: none !important;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
  }
  
  .browser-topbar {
    padding: 4px 8px;
  }
  
  .browser-dots {
    gap: 3px;
  }
  
  .browser-dot {
    width: 5px;
    height: 5px;
  }
  
  .browser-address {
    font-size: 10px;
    padding: 2px 6px;
    margin-left: 8px;
    max-width: 200px;
  }
  
  .browser-address svg {
    width: 10px;
    height: 10px;
  }
  
  .browser-content {
    height: 280px;
  }
  
  .website-header {
    height: 40px;
    padding: 0 12px;
  }
  
  .website-logo svg {
    transform: scale(0.8);
    width: 100px;
  }
  
  .website-content {
    padding: 12px;
    gap: 12px;
  }
  
  .website-nav {
    gap: 6px;
  }
  
  .nav-item {
    display: none;
  }
  
  .nav-item:first-child,
  .nav-item:nth-child(2) {
    display: block;
  }
  
  .nav-item svg {
    transform: scale(0.8);
  }
  
  .content-header svg {
    transform: scale(0.75);
    width: 150px;
  }
  
  .content-text {
    margin-bottom: 10px;
  }
  
  .content-text svg {
    height: 10px;
  }
  
  .content-cards {
    margin: 16px 0;
    gap: 12px;
  }
  
  .content-card {
    height: 90px;
  }
  
  .content-card svg {
    transform: scale(0.85);
  }
  
  .content-info {
    margin-top: 16px;
    gap: 8px;
  }
  
  .info-item svg {
    transform: scale(0.8);
  }
  
  .info-text svg {
    height: 50px;
  }
  
  /* Blur overlay adjustments for small screens */
  .blur-overlay {
    top: 20px;
    left: 20px;
  }
  
  .blur-tooltip {
    width: 180px;
    padding: 8px;
    bottom: -100px;
  }
  
  .blur-tooltip.active {
    bottom: -90px;
  }
  
  .blur-slider {
    gap: 6px;
    margin-bottom: 10px;
  }
  
  .blur-slider span {
    font-size: 11px;
  }
  
  .blur-action-button {
    padding: 6px;
    font-size: 11px;
  }
  
  .blur-action-button svg {
    width: 12px;
    height: 12px;
  }
  
  /* Hero shape adjustments */
  .hero-shape {
    width: 180px;
    height: 180px;
    bottom: -30px;
    right: -15px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .partners-logos {
    gap: 24px;
  }
  
  .feature-card,
  .step,
  .testimonial-card {
    padding: 24px;
  }
  
  .price-card {
    padding: 32px 20px;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .price-card.featured:hover {
    transform: translateY(-8px);
  }
  
  .accordion-header {
    font-size: 16px;
    padding: 20px 16px;
  }
}

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

/* JS Helper Classes */
.hidden {
  display: none !important;
}

/* Additional mobile size adjustments for very small screens */
@media (max-width: 480px) {
  .browser-mockup {
    max-width: 100%;
  }
  
  .browser-content {
    height: 260px;
  }
  
  .website-header {
    height: 36px;
  }
  
  .website-logo svg {
    transform: scale(0.7);
    width: 80px;
  }
  
  .website-content {
    padding: 10px;
  }
  
  .content-header svg {
    transform: scale(0.7);
    width: 120px;
  }
  
  .content-cards {
    gap: 10px;
    margin: 12px 0;
  }
  
  .content-card {
    height: 80px;
  }
  
  .content-card svg {
    transform: scale(0.75);
  }
  
  .info-text svg {
    height: 45px;
  }
}

/* Extra small screens (below 380px) */
@media (max-width: 380px) {
  .browser-topbar {
    padding: 3px 6px;
  }
  
  .browser-dots {
    display: none; /* Hide dots on very small screens */
  }
  
  .browser-address {
    font-size: 9px;
    margin-left: 4px;
    max-width: 150px;
  }
  
  .browser-content {
    height: 240px;
  }
  
  .website-content {
    padding: 8px;
  }
  
  .content-card {
    height: 70px;
  }
  
  .content-card svg {
    transform: scale(0.7);
  }
}
