:root {
  --primary-50: #fef2f2;
  --primary-100: #fee2e2;
  --primary-300: #fca5a5;
  --primary-500: #b91c1c;
  --primary-700: #7f1d1d;
  --primary-rgb: 185, 28, 28;
  --neutral-50: #fafaf9;
  --neutral-100: #f5f5f4;
  --neutral-300: #d6d3d1;
  --neutral-500: #78716c;
  --neutral-700: #44403c;
  --neutral-900: #1c1917;
  --surface-primary: var(--neutral-50);
  --surface-secondary: var(--neutral-100);
  --surface-accent: var(--primary-50);
  --text-primary: var(--neutral-900);
  --text-secondary: var(--neutral-700);
  --text-accent: var(--primary-700);
  --button-primary-bg: var(--primary-500);
  --button-primary-text: #ffffff;
  --button-secondary-bg: var(--neutral-100);
  --button-secondary-text: var(--neutral-900);
  --border-light: var(--neutral-300);
  --border-medium: var(--neutral-500);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-elevated: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-button-hover: 0 6px 12px rgba(185, 28, 28, 0.3);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;
  --transition-slow: 0.3s ease;
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);
  --text-3xl: clamp(1.875rem, 1.6rem + 1.375vw, 2.25rem);
  --text-4xl: clamp(2.25rem, 1.9rem + 1.75vw, 3rem);
  --text-5xl: clamp(3rem, 2.5rem + 2.5vw, 3.75rem);
  --text-6xl: clamp(3.75rem, 3rem + 3.75vw, 4.5rem);
  --text-7xl: clamp(4.5rem, 3.5rem + 5vw, 6rem);
  --text-8xl: clamp(6rem, 4.5rem + 7.5vw, 8rem);
  --text-9xl: clamp(8rem, 6rem + 10vw, 12rem);
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  --leading-extra_loose: 2.5;
  --tracking-tighter: -0.05em;
  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.025em;
  --tracking-wider: 0.05em;
  --tracking-widest: 0.1em;
  --font-primary: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-secondary: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-monospace: 'JetBrains Mono', 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
  --text-body: var(--text-primary);
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-8: 2rem;
  --space-9: 2.25rem;
  --space-10: 2.5rem;
  --space-11: 2.75rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-28: 7rem;
  --space-32: 8rem;
  --space-36: 9rem;
  --space-40: 10rem;
  --space-44: 11rem;
  --space-48: 12rem;
  --space-52: 13rem;
  --space-56: 14rem;
  --space-60: 15rem;
  --space-64: 16rem;
  --space-72: 18rem;
  --space-80: 20rem;
  --space-96: 24rem;
  --space-px: 1px;
  --space-0.5: 0.125rem;
  --space-1.5: 0.375rem;
  --space-2.5: 0.625rem;
  --space-3.5: 0.875rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  --space-5xl: 12rem;
  --space-6xl: 16rem;
  --section-py: clamp(3rem, 5vw, 5rem);
  --section-y-mobile: 3rem;
  --section-y-tablet: 4rem;
  --section-y-desktop: 5rem;
  --section-y-hero: clamp(4rem, 10vw, 8rem);
  --section-x: clamp(1rem, 3vw, 2rem);
  --section-gap: clamp(1.5rem, 3vw, 2.5rem);
  --card-padding: 1.5rem;
  --card-gap: 1rem;
  --button-padding-x: 1.5rem;
  --button-padding-y: 0.75rem;
  --form-gap: 1rem;
}



/* ===== EFFECTS & ELEVATION (Theme-Independent) ===== */
:root {
  /* Shadows */
  --shadow-none: none;
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  
  /* Border Radius */
  --radius-none: 0;
  --radius-xs: 0.125rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-all: all 0.3s ease;
  
  /* Opacity */
  --opacity-disabled: 0.5;
  --opacity-loading: 0.7;
  --opacity-overlay: 0.8;
}

/* ===== SECTION BASE STYLES ===== */
section {
  padding-top: var(--section-y-mobile);
  padding-bottom: var(--section-y-mobile);
  padding-left: var(--section-x);
  padding-right: var(--section-x);
}

@media (min-width: 768px) {
  section {
    padding-top: var(--section-y-tablet);
    padding-bottom: var(--section-y-tablet);
  }
}

@media (min-width: 1024px) {
  section {
    padding-top: var(--section-y-desktop);
    padding-bottom: var(--section-y-desktop);
  }
}

/* Hero section special spacing */
section[id="hero"] {
  padding-top: var(--section-y-hero);
  padding-bottom: var(--section-y-hero);
}

/* ===== RESPONSIVE BEHAVIOR ===== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: high) {
  :root {
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  :root {
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
    --shadow-xl: none;
  }
  
  section {
    padding-top: 1rem;
    padding-bottom: 1rem;
    break-inside: avoid;
  }
}

/* ===== BASE STYLES - ADDITIVE TO BOOTSTRAP ===== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  overflow-x: hidden;
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
*:focus {
  outline: 2px solid var(--border-interactive);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

*:focus:not(:focus-visible) {
  outline: none;
}

*:focus-visible {
  outline: 2px solid var(--border-interactive);
  outline-offset: 2px;
}







/* ===== FONT FAMILY UTILITIES ===== */
.container_font_primary {
  font-family: var(--font-primary);
}

.premium_font_secondary {
  font-family: var(--font-secondary);
}

.base_font_mono {
  font-family: var(--font-mono);
}

/* ===== SEMANTIC TYPOGRAPHY CLASSES ===== */

/* Display Styles - For major headings and hero text */
.creative_display_1 {
  font-family: var(--font-secondary);
  font-size: var(--text-6xl);
  font-weight: var(--font-extrabold);
  line-height: var(--leading-none);
  letter-spacing: var(--tracking-tighter);
}

.agency_display_2 {
  font-family: var(--font-secondary);
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.digital_display_3 {
  font-family: var(--font-secondary);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

/* Heading Styles - For section titles and content hierarchy */
.theme_heading_1 {
  font-family: var(--font-secondary);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.custom_heading_2 {
  font-family: var(--font-secondary);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.page_heading_3 {
  font-family: var(--font-secondary);
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-normal);
}

.modern_heading_4 {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-normal);
}

.brand_heading_5 {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
}

.elite_heading_6 {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
}

/* Body Text Styles */
.style_body_large {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-normal);
  line-height: var(--leading-relaxed);
  letter-spacing: var(--tracking-normal);
}

.unique_body_base {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-relaxed);
  letter-spacing: var(--tracking-normal);
}

.bold_body_small {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-normal);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
}

/* Utility Text Styles */
.company_caption {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-wide);
  color: var(--text-muted);
}

.prime_overline {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Code Styles */
.light_code_inline {
  font-family: var(--font-mono);
  font-size: 0.875em;
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  background-color: var(--bg-muted);
  color: var(--text-primary);
  padding: 0.125rem 0.25rem;
  border-radius: var(--radius-sm);
}

.fresh_code_block {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: var(--font-normal);
  line-height: var(--leading-relaxed);
  background-color: var(--bg-muted);
  color: var(--text-primary);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  overflow-x: auto;
}

/* ===== SECTION-SPECIFIC TYPOGRAPHY ===== */

/* Hero Section Typography */
.best_hero_title {
  font-family: var(--font-secondary);
  font-size: var(--text-6xl);
  font-weight: var(--font-extrabold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tighter);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.minimal_hero_subtitle {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

/* Section Typography */
.app_section_title {
  font-family: var(--font-secondary);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.web_section_subtitle {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
  color: var(--text-secondary);
  margin-bottom: var(--space-3);
}

.new_section_description {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-relaxed);
  letter-spacing: var(--tracking-normal);
  color: var(--text-primary);
  margin-bottom: var(--space-8);
  max-width: 65ch; /* Optimal reading width */
}

/* Card Typography */
.content_card_title {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-normal);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.core_card_text {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
  color: var(--text-primary);
}

/* Navigation Typography */
.dark_nav_link {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.dark_nav_link:hover,
.dark_nav_link:focus {
  color: var(--text-link);
  text-decoration: none;
}

/* Button Typography */
.smart_button_text {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
}

/* Footer Typography */
.studio_footer_text {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-normal);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
  color: var(--text-muted);
}

/* ===== RESPONSIVE TYPOGRAPHY ===== */
@media (max-width: 768px) {
  .best_hero_title {
    font-size: var(--text-4xl);
  }
  
  .app_section_title {
    font-size: var(--text-3xl);
  }
  
  .creative_display_1 {
    font-size: var(--text-5xl);
  }
  
  .agency_display_2 {
    font-size: var(--text-4xl);
  }
}

@media (max-width: 480px) {
  .best_hero_title {
    font-size: var(--text-3xl);
  }
  
  .app_section_title {
    font-size: var(--text-2xl);
  }
  
  .creative_display_1 {
    font-size: var(--text-4xl);
  }
}

/* ===== LINK STYLES - ADDITIVE TO BOOTSTRAP ===== */
a:not([class]) {
  color: var(--text-link);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: all var(--transition-fast);
}

a:not([class]):hover,
a:not([class]):focus {
  color: var(--text-link-hover);
  text-decoration-thickness: 2px;
}

a:not([class]):visited {
  color: var(--text-link);
}

/* ===== TEXT UTILITIES ===== */
.pro_text_gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.business_text_shadow_sm {
  text-shadow: var(--shadow-xs);
}

.clean_text_shadow_md {
  text-shadow: var(--shadow-sm);
}

.design_text_balance {
  text-wrap: balance;
}

.ui_text_pretty {
  text-wrap: pretty;
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
  .dark_nav_link,
  a:not([class]) {
    transition: none;
  }
}

@media (prefers-contrast: high) {
  .company_caption,
  .prime_overline,
  .studio_footer_text {
    color: var(--text-secondary);
  }
  
  .minimal_hero_subtitle,
  .web_section_subtitle {
    color: var(--text-primary);
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .best_hero_title,
  .app_section_title,
  .theme_heading_1,
  .custom_heading_2 {
    break-after: avoid;
    page-break-after: avoid;
  }
  
  .pro_text_gradient {
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
  }
}

/* ===== LAYOUT UTILITIES ===== */
.site_section_wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.section_content_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bright_content_between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top_content_start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.main_content_end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.layout_stack {
  display: flex;
  flex-direction: column;
}

.elite5_stack_center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bright21_full_height {
  min-height: 100vh;
}

.modern68_section_height {
  min-height: 80vh;
}

.theme38_hero_height {
  min-height: 90vh;
}

/* ===== SPACING UTILITIES ===== */

/* Margin utilities */
.fresh97_m_0 { margin: 0; }
.fresh18_m_1 { margin: var(--space-1); }
.fresh17_m_2 { margin: var(--space-2); }
.dark61_m_3 { margin: var(--space-3); }
.ui25_m_4 { margin: var(--space-4); }
.bold89_m_6 { margin: var(--space-6); }
.layout24_m_8 { margin: var(--space-8); }
.agency87_m_12 { margin: var(--space-12); }
.layout49_m_16 { margin: var(--space-16); }

.site40_mx_auto { margin-left: auto; margin-right: auto; }
.digital92_my_auto { margin-top: auto; margin-bottom: auto; }

.company11_mt_0 { margin-top: 0; }
.best92_mt_4 { margin-top: var(--space-4); }
.theme69_mt_8 { margin-top: var(--space-8); }
.bright39_mt_12 { margin-top: var(--space-12); }

.digital45_mb_0 { margin-bottom: 0; }
.clean82_mb_4 { margin-bottom: var(--space-4); }
.bright12_mb_8 { margin-bottom: var(--space-8); }
.light4_mb_12 { margin-bottom: var(--space-12); }

/* Padding utilities */
.style74_p_0 { padding: 0; }
.prime66_p_1 { padding: var(--space-1); }
.pro31_p_2 { padding: var(--space-2); }
.theme51_p_3 { padding: var(--space-3); }
.ui26_p_4 { padding: var(--space-4); }
.creative11_p_6 { padding: var(--space-6); }
.ui36_p_8 { padding: var(--space-8); }

.studio8_px_4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.top63_px_6 { padding-left: var(--space-6); padding-right: var(--space-6); }
.new5_px_8 { padding-left: var(--space-8); padding-right: var(--space-8); }

.section47_py_4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.layout70_py_6 { padding-top: var(--space-6); padding-bottom: var(--space-6); }
.brand61_py_8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }

/* Gap utilities for flex/grid */
.site69_gap_1 { gap: var(--space-1); }
.new33_gap_2 { gap: var(--space-2); }
.business99_gap_3 { gap: var(--space-3); }
.minimal96_gap_4 { gap: var(--space-4); }
.clean84_gap_6 { gap: var(--space-6); }
.ui31_gap_8 { gap: var(--space-8); }

/* ===== VISUAL EFFECTS ===== */

/* Shadow utilities */
.studio25_shadow_none { box-shadow: var(--shadow-none); }
.brand18_shadow_xs { box-shadow: var(--shadow-xs); }
.container2_shadow_sm { box-shadow: var(--shadow-sm); }
.brand56_shadow_md { box-shadow: var(--shadow-md); }
.bold15_shadow_lg { box-shadow: var(--shadow-lg); }
.top32_shadow_xl { box-shadow: var(--shadow-xl); }
.creative19_shadow_2xl { box-shadow: var(--shadow-2xl); }
.business64_shadow_inner { box-shadow: var(--shadow-inner); }
.style36_shadow_colored { box-shadow: var(--shadow-colored); }

/* Border radius utilities */
.layout91_radius_none { border-radius: var(--radius-none); }
.section18_radius_xs { border-radius: var(--radius-xs); }
.studio6_radius_sm { border-radius: var(--radius-sm); }
.new73_radius_md { border-radius: var(--radius-md); }
.web43_radius_lg { border-radius: var(--radius-lg); }
.ui35_radius_xl { border-radius: var(--radius-xl); }
.new59_radius_2xl { border-radius: var(--radius-2xl); }
.theme96_radius_3xl { border-radius: var(--radius-3xl); }
.best51_radius_full { border-radius: var(--radius-full); }

/* Gradient utilities */
.minimal39_gradient_primary {
  background: var(--gradient-primary);
}

.layout55_gradient_secondary {
  background: var(--gradient-secondary);
}

.studio89_gradient_hero {
  background: var(--gradient-hero);
}

.best34_gradient_card {
  background: var(--gradient-card);
}

.theme3_gradient_overlay {
  position: relative;
}

.theme3_gradient_overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay-dark);
  pointer-events: none;
  z-index: 1;
}

.theme3_gradient_overlay > * {
  position: relative;
  z-index: 2;
}

/* ===== INTERACTIVE STATES ===== */

/* Hover effects */
.clean84_hover_lift {
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.clean84_hover_lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.light84_hover_scale {
  transition: transform var(--transition-normal);
}

.light84_hover_scale:hover {
  transform: scale(1.02);
}

.prime85_hover_shadow {
  transition: box-shadow var(--transition-normal);
}

.prime85_hover_shadow:hover {
  box-shadow: var(--shadow-xl);
}

.layout80_hover_fade {
  transition: opacity var(--transition-normal);
}

.layout80_hover_fade:hover {
  opacity: var(--opacity-loading);
}

/* Focus states */
.premium57_focus_ring {
  transition: box-shadow var(--transition-fast);
}

.premium57_focus_ring:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--state-focus);
}

/* ===== SECTION-SPECIFIC UTILITIES ===== */

/* Hero section utilities */
.web73_hero_background {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.layout1_hero_content {
  position: relative;
  z-index: 2;
}

/* Services grid */
.digital72_services_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

/* Team grid */
.creative65_team_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-4);
}

/* Features grid */
.ui64_features_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

/* Gallery grid */
.design68_gallery_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-3);
}

/* Pricing grid */
.layout13_pricing_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-6);
}

/* Timeline layout */
.digital58_timeline {
  position: relative;
}

.digital58_timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-light);
  transform: translateX(-50%);
}

.creative81_timeline_item {
  position: relative;
  width: 50%;
  padding: var(--space-4);
}

.creative81_timeline_item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: var(--space-8);
}

.creative81_timeline_item:nth-child(even) {
  left: 50%;
  text-align: left;
  padding-left: var(--space-8);
}

/* ===== ANIMATION UTILITIES ===== */
.smart27_fade_in {
  opacity: 0;
  animation: tc-fadeIn var(--transition-slow) ease-out forwards;
}

@keyframes tc-fadeIn {
  to {
    opacity: 1;
  }
}

.clean47_slide_up {
  transform: translateY(20px);
  opacity: 0;
  animation: tc-slideUp var(--transition-slow) ease-out forwards;
}

@keyframes tc-slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.container12_slide_in_left {
  transform: translateX(-20px);
  opacity: 0;
  animation: tc-slideInLeft var(--transition-slow) ease-out forwards;
}

@keyframes tc-slideInLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.base33_scale_in {
  transform: scale(0.95);
  opacity: 0;
  animation: tc-scaleIn var(--transition-slow) ease-out forwards;
}

@keyframes tc-scaleIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Transition utilities */
.bright7_transition_all {
  transition: var(--transition-all);
}

.web1_transition_fast {
  transition: all var(--transition-fast);
}

.bright23_transition_normal {
  transition: all var(--transition-normal);
}

.digital12_transition_slow {
  transition: all var(--transition-slow);
}

/* ===== COLOR UTILITIES ===== */
.digital9_bg_primary { background-color: var(--bg-primary); }
.design87_bg_secondary { background-color: var(--bg-secondary); }
.best51_bg_muted { background-color: var(--bg-muted); }
.elite51_bg_glass { background-color: var(--bg-glass); }

.layout72_text_primary { color: var(--text-primary); }
.dark39_text_secondary { color: var(--text-secondary); }
.light51_text_muted { color: var(--text-muted); }
.core36_text_inverse { color: var(--text-inverse); }
.app9_text_link { color: var(--text-link); }

.core37_border_light { border-color: var(--border-light); }
.container27_border_medium { border-color: var(--border-medium); }
.base56_border_strong { border-color: var(--border-strong); }
.theme94_border_interactive { border-color: var(--border-interactive); }

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 768px) {
  .digital72_services_grid,
  .ui64_features_grid,
  .creative65_team_grid,
  .layout13_pricing_grid {
    grid-template-columns: 1fr;
  }
  
  .design68_gallery_grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .digital58_timeline::before {
    left: 30px;
  }
  
  .creative81_timeline_item {
    width: 100%;
    left: 0 !important;
    text-align: left;
    padding-left: var(--space-16) !important;
    padding-right: var(--space-4) !important;
  }
  
  .modern68_section_height {
    min-height: 60vh;
  }
  
  .theme38_hero_height {
    min-height: 70vh;
  }
}

@media (max-width: 480px) {
  .design68_gallery_grid {
    grid-template-columns: 1fr;
  }
  
  .creative81_timeline_item {
    padding-left: var(--space-12) !important;
  }
}

/* ===== ACCESSIBILITY UTILITIES ===== */
.digital91_sr_only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.theme72_not_sr_only {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.page93_skip_link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--bg-inverse);
  color: var(--text-inverse);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  text-decoration: none;
  z-index: 9999;
  transition: top var(--transition-fast);
}

.page93_skip_link:focus {
  top: 6px;
}

/* ===== PRINT UTILITIES ===== */
@media print {
  .business17_no_print {
    display: none !important;
  }
  
  .ui80_print_only {
    display: block !important;
  }
  
  .brand18_shadow_xs,
  .container2_shadow_sm,
  .brand56_shadow_md,
  .bold15_shadow_lg,
  .top32_shadow_xl,
  .creative19_shadow_2xl {
    box-shadow: none !important;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .smart27_fade_in,
  .clean47_slide_up,
  .container12_slide_in_left,
  .base33_scale_in {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .clean84_hover_lift,
  .light84_hover_scale,
  .prime85_hover_shadow,
  .layout80_hover_fade,
  .bright7_transition_all,
  .web1_transition_fast,
  .bright23_transition_normal,
  .digital12_transition_slow {
    transition: none;
  }
}

/* Header section */
.undefined-header {
  position: relative;
  background: linear-gradient(135deg, var(--light) 0%, var(--primary-50) 50%, var(--light) 100%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
}

.undefined-header .navbar {
  padding: 1.5rem 0;
  position: relative;
}

/* Brand Styling - 3D Prism Effect */
.undefined-header .navbar-brand {
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.undefined-header .brand-creative-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.undefined-header .brand-prism {
  width: 54px;
  height: 54px;
  position: relative;
  transform-style: preserve-3d;
  animation: prism-float 4s ease-in-out infinite;
}

@keyframes prism-float {
  0%, 100% {
    transform: translateY(0) rotateY(0deg);
  }
  50% {
    transform: translateY(-8px) rotateY(180deg);
  }
}

.undefined-header .prism-face {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  opacity: 0.3;
}

.undefined-header .face-1 {
  background: var(--primary-400);
  transform: translateZ(-3px);
}

.undefined-header .face-2 {
  background: var(--primary-500);
  transform: translateZ(0px);
}

.undefined-header .face-3 {
  background: var(--primary-600);
  transform: translateZ(3px);
}

.undefined-header .brand-prism i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.75rem;
  color: var(--primary-700);
  z-index: 1;
  animation: icon-glow 3s ease-in-out infinite;
}

@keyframes icon-glow {
  0%, 100% {
    text-shadow: 0 0 10px var(--primary-300);
  }
  50% {
    text-shadow: 0 0 20px var(--primary-500);
  }
}

.undefined-header .brand-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
}

/* Custom Hamburger - Spinning Pentagon SVG */
.undefined-header .menu-checkbox {
  display: none;
}

.undefined-header .hamburger-pentagon {
  display: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.undefined-header .pentagon-svg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.undefined-header .pentagon-shape {
  fill: var(--primary-500);
  stroke: var(--primary-600);
  stroke-width: 2;
  transition: all 0.4s ease;
}

.undefined-header .hamburger-pentagon:hover .pentagon-shape {
  fill: var(--primary-600);
  stroke: var(--primary-700);
}

.undefined-header .line {
  stroke: #334155;
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* Pentagon Spins and Lines Form X */
.undefined-header .menu-checkbox:checked ~ .hamburger-pentagon .pentagon-svg {
  transform: rotate(144deg);
}

.undefined-header .menu-checkbox:checked ~ .hamburger-pentagon .pentagon-shape {
  fill: var(--primary-700);
  stroke: var(--primary-800);
}

.undefined-header .menu-checkbox:checked ~ .hamburger-pentagon .line-h {
  transform: rotate(45deg);
  transform-origin: center;
}

.undefined-header .menu-checkbox:checked ~ .hamburger-pentagon .line-v {
  transform: rotate(-45deg);
  transform-origin: center;
}

/* Navigation Links - Identical Styling */
.undefined-header .nav-link {
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.undefined-header .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, var(--primary-100), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.undefined-header .nav-link:hover {
  color: var(--primary-700);
}

.undefined-header .nav-link:hover::before {
  left: 100%;
}

/* Header Decorative Art Layers */
.undefined-header .header-art-layers {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.undefined-header .art-layer {
  position: absolute;
  background: var(--primary-200);
  opacity: 0.2;
}

.undefined-header .layer-1 {
  width: 100px;
  height: 100px;
  top: -30px;
  right: 12%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph-shape-1 10s ease-in-out infinite;
}

.undefined-header .layer-2 {
  width: 70px;
  height: 70px;
  top: 15px;
  right: 25%;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morph-shape-2 8s ease-in-out infinite;
}

.undefined-header .layer-3 {
  width: 50px;
  height: 50px;
  bottom: 10px;
  right: 18%;
  border-radius: 40% 60% 60% 40% / 40% 60% 40% 60%;
  animation: morph-shape-3 6s ease-in-out infinite;
}

@keyframes morph-shape-1 {
  0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(0deg);
  }
  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    transform: rotate(180deg);
  }
}

@keyframes morph-shape-2 {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(0deg) scale(1);
  }
  50% {
    border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    transform: rotate(-180deg) scale(1.2);
  }
}

@keyframes morph-shape-3 {
  0%, 100% {
    border-radius: 40% 60% 60% 40% / 40% 60% 40% 60%;
  }
  50% {
    border-radius: 60% 40% 40% 60% / 60% 40% 60% 40%;
  }
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
  .undefined-header .hamburger-pentagon {
    display: block;
  }

  .undefined-header .nav-modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .undefined-header .menu-checkbox:checked ~ .nav-modal-wrapper {
    pointer-events: all;
  }

  .undefined-header .modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    transition: all 0.4s ease;
    pointer-events: none;  /* Clicks pass through backdrop */
  }

  .undefined-header .menu-checkbox:checked ~ .nav-modal-wrapper .modal-backdrop {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
  }

  .undefined-header .modal-content {
    position: relative;
    width: 92%;
    max-width: 420px;
    background: linear-gradient(135deg, var(--light), var(--primary-50));
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 2.5rem 2rem;
    opacity: 0;
    transform: scale(0.7) rotateY(-90deg);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 10003;  /* Navigation above backdrop */
  }

  .undefined-header .menu-checkbox:checked ~ .nav-modal-wrapper .modal-content {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
  }

  .undefined-header .navbar-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .undefined-header .nav-item {
    width: 100%;
  }

  .undefined-header .nav-link {
    width: 100%;
    padding: 1.125rem 1.5rem;
    margin: 0;
    font-size: 1.125rem;
    background: var(--light);
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
  }

  .undefined-header .nav-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
  }

  /* Creative Art in Modal */
  .undefined-header .creative-art {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
  }

  .undefined-header .art-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid var(--primary-300);
    opacity: 0.3;
    top: 5%;
    left: 8%;
    animation: art-spin 8s linear infinite;
  }

  .undefined-header .art-circle {
    position: absolute;
    width: 35px;
    height: 35px;
    background: var(--primary-400);
    border-radius: 50%;
    opacity: 0.3;
    top: 10%;
    right: 10%;
    animation: art-bounce 6s ease-in-out infinite;
  }

  .undefined-header .art-square {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--primary-500);
    opacity: 0.3;
    bottom: 8%;
    left: 12%;
    animation: art-rotate 7s ease-in-out infinite;
  }

  @keyframes art-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  @keyframes art-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }

  @keyframes art-rotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
  }

  .undefined-header .sparkles {
    position: absolute;
    bottom: 6%;
    right: 8%;
    display: flex;
    gap: 10px;
    font-size: 1rem;
    color: var(--primary-500);
    opacity: 0.5;
  }

  .undefined-header .sparkles i {
    animation: sparkle-twinkle 2s ease-in-out infinite;
  }

  .undefined-header .sparkles i:nth-child(2) {
    animation-delay: 0.4s;
  }

  .undefined-header .sparkles i:nth-child(3) {
    animation-delay: 0.8s;
  }

  @keyframes sparkle-twinkle {
    0%, 100% {
      opacity: 0.5;
      transform: scale(1) rotate(0deg);
    }
    50% {
      opacity: 1;
      transform: scale(1.4) rotate(180deg);
    }
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
  .undefined-header .modal-content {
    max-width: 480px;
  }

  .undefined-header .nav-link {
    font-size: 1.25rem;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .undefined-header .navbar-nav {
    gap: 0.5rem;
  }

  .undefined-header .creative-art {
    display: none;
  }

  .undefined-header .modal-backdrop {
    display: none !important; /* Hide modal backdrop on desktop */
  }

  .undefined-header .nav-modal-wrapper {
    position: static; /* Reset positioning on desktop */
    z-index: auto;
  }
}







.hero-standard {
  position: relative;
  padding: 100px 0 90px;
  background: linear-gradient(135deg, 
    var(--neutral-50) 0%, 
    var(--primary-50) 40%,
    var(--secondary-50) 100%);
  overflow: hidden;
}

.hero-standard .hero-modular-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.hero-standard .modular-blocks {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-standard .mod-block {
  width: 64px;
  height: 64px;
  background: var(--neutral-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary-300);
  transition: all 0.3s ease;
  animation: module-scale 4s ease-in-out infinite;
}

.hero-standard .block-1 {
  animation-delay: 0s;
}

.hero-standard .block-2 {
  animation-delay: 0.8s;
  background: linear-gradient(135deg, var(--primary-100), var(--neutral-50));
}

.hero-standard .block-3 {
  animation-delay: 1.6s;
}

.hero-standard .block-4 {
  animation-delay: 2.4s;
  background: linear-gradient(135deg, var(--secondary-100), var(--neutral-50));
}

.hero-standard .block-5 {
  animation-delay: 3.2s;
}

@keyframes module-scale {
  0%, 100% { transform: scale(1); }
  12.5% { transform: scale(1.1); }
  25% { transform: scale(1); }
}

.hero-standard .mod-block:hover {
  transform: scale(1.15) rotate(5deg);
  border-color: var(--primary-500);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.hero-standard .mod-block i {
  font-size: 28px;
  color: var(--primary-600);
}

.hero-standard .modular-title {
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 900;
  color: var(--neutral-900);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-standard .modular-subtitle {
  font-size: clamp(1.375rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--primary-700);
  line-height: 1.35;
  margin-bottom: 0;
}

.hero-standard .hero-modular-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  background: var(--neutral-50);
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--primary-200);
}

.hero-standard .modular-description {
  font-size: 1.0625rem;
  color: var(--neutral-700);
  line-height: 1.75;
  margin-bottom: 28px;
}

.hero-standard .module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.hero-standard .grid-module {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary-200), var(--primary-100));
  border-radius: 8px;
  border: 2px solid var(--primary-300);
  transition: all 0.3s ease;
  animation: grid-pulse 3s ease-in-out infinite;
}

.hero-standard .grid-module:nth-child(1) {
  animation-delay: 0s;
}

.hero-standard .grid-module:nth-child(2) {
  animation-delay: 0.75s;
}

.hero-standard .grid-module:nth-child(3) {
  animation-delay: 1.5s;
}

.hero-standard .grid-module:nth-child(4) {
  animation-delay: 2.25s;
}

@keyframes grid-pulse {
  0%, 100% { 
    transform: scale(1); 
    background: linear-gradient(135deg, var(--primary-200), var(--primary-100));
  }
  50% { 
    transform: scale(1.05); 
    background: linear-gradient(135deg, var(--primary-300), var(--primary-200));
  }
}

.hero-standard .grid-module:hover {
  transform: scale(1.1);
  border-color: var(--primary-500);
}

.hero-standard .hero-modular-visual {
  position: relative;
  padding: 30px;
}

.hero-standard .modular-frame {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}

.hero-standard .modular-hero-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.hero-standard .modular-frame:hover .modular-hero-img {
  transform: scale(1.05);
}

.hero-standard .frame-module {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--primary-500);
  z-index: 3;
  opacity: 0.8;
  animation: module-rotate 10s linear infinite;
}

.hero-standard .mod-tl {
  top: -10px;
  left: -10px;
  border-radius: 8px 0 0 0;
  animation-delay: 0s;
}

.hero-standard .mod-tr {
  top: -10px;
  right: -10px;
  border-radius: 0 8px 0 0;
  animation-delay: 2.5s;
}

.hero-standard .mod-bl {
  bottom: -10px;
  left: -10px;
  border-radius: 0 0 0 8px;
  animation-delay: 5s;
}

.hero-standard .mod-br {
  bottom: -10px;
  right: -10px;
  border-radius: 0 0 8px 0;
  animation-delay: 7.5s;
}

@keyframes module-rotate {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(90deg); }
}

.hero-standard .floating-modules {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}

.hero-standard .float-module {
  position: absolute;
  width: 56px;
  height: 56px;
  background: var(--neutral-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--primary-400);
  animation: float-module 5s ease-in-out infinite;
}

.hero-standard .float-module i {
  font-size: 26px;
  color: var(--primary-600);
}

.hero-standard .fm-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.hero-standard .fm-2 {
  bottom: 20%;
  right: 12%;
  animation-delay: 2.5s;
}

@keyframes float-module {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-standard .modular-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-standard .bg-module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px;
  opacity: 0.15;
}

.hero-standard .bg-mod {
  aspect-ratio: 1;
  background: var(--primary-400);
  border-radius: 12px;
  animation: bg-module-fade 6s ease-in-out infinite;
}

.hero-standard .bg-mod:nth-child(1) {
  animation-delay: 0s;
}

.hero-standard .bg-mod:nth-child(2) {
  animation-delay: 0.75s;
}

.hero-standard .bg-mod:nth-child(3) {
  animation-delay: 1.5s;
}

.hero-standard .bg-mod:nth-child(4) {
  animation-delay: 2.25s;
}

.hero-standard .bg-mod:nth-child(5) {
  animation-delay: 3s;
}

.hero-standard .bg-mod:nth-child(6) {
  animation-delay: 3.75s;
}

.hero-standard .bg-mod:nth-child(7) {
  animation-delay: 4.5s;
}

.hero-standard .bg-mod:nth-child(8) {
  animation-delay: 5.25s;
}

@keyframes bg-module-fade {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

@media (max-width: 991px) {
  .hero-standard {
    padding: 70px 0 60px;
  }
  
  .hero-standard .hero-modular-content {
    padding: 25px;
    margin-bottom: 30px;
  }
  
  .hero-standard .module-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hero-standard .hero-modular-visual {
    padding: 25px;
  }
}

@media (max-width: 575px) {
  .hero-standard {
    padding: 50px 0 40px;
  }
  
  .hero-standard .modular-blocks {
    gap: 10px;
  }
  
  .hero-standard .mod-block {
    width: 54px;
    height: 54px;
  }
  
  .hero-standard .mod-block i {
    font-size: 24px;
  }
  
  .hero-standard .hero-modular-content {
    padding: 20px;
  }
  
  .hero-standard .module-grid {
    gap: 10px;
  }
  
  .hero-standard .hero-modular-visual {
    padding: 20px;
  }
  
  .hero-standard .frame-module {
    width: 40px;
    height: 40px;
  }
  
  .hero-standard .float-module {
    width: 48px;
    height: 48px;
  }
  
  .hero-standard .float-module i {
    font-size: 22px;
  }
  
  .hero-standard .bg-module-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
  }
}







.about-section-alt {
  position: relative;
  padding: 120px 0;
  background: var(--surface-primary);
  overflow: hidden;
}

/* Background Elements */
.about-section-alt .nature-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-image: 
    repeating-linear-gradient(45deg, var(--primary-500) 0, var(--primary-500) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, var(--primary-700) 0, var(--primary-700) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

.about-section-alt .earth-gradient-top {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, color-mix(in srgb, var(--primary-300) 12%, transparent), transparent 65%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

.about-section-alt .earth-gradient-bottom {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, color-mix(in srgb, var(--primary-500) 10%, transparent), transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(50px);
}

/* Content Wrapper */
.about-section-alt .content-wrapper {
  position: relative;
  z-index: 1;
}

.about-section-alt .organic-badge {
  width: 80px;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-500), transparent);
  border-radius: 3px;
  margin-bottom: 2rem;
}

.about-section-alt #about-title {
  color: var(--text-primary);
  line-height: 1.2;
}

.about-section-alt #about-subtitle {
  color: var(--text-secondary);
  font-weight: 500;
}

.about-section-alt #about-desc {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Compact Features */
.about-section-alt .features-compact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-section-alt .compact-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--surface-secondary);
  border-radius: 16px;
  border-left: 4px solid var(--primary-500);
  transition: all 0.3s ease;
}

.about-section-alt .compact-feature:hover {
  transform: translateX(8px);
  background: var(--light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-section-alt .feature-icon-small {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary-500);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.about-section-alt .compact-feature:hover .feature-icon-small {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
}

.about-section-alt .feature-icon-small i {
  font-size: 1.25rem;
  color: var(--light);
}

.about-section-alt .feature-text h4 {
  color: var(--text-primary);
  font-weight: 600;
}

.about-section-alt .feature-text p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Image Gallery */
.about-section-alt .image-gallery {
  position: relative;
  z-index: 1;
}

.about-section-alt .gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  height: 520px;
}

.about-section-alt .gallery-item-main {
  grid-column: 1;
  grid-row: 1 / 3;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-section-alt .gallery-item-secondary {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.about-section-alt .gallery-item-tertiary {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.about-section-alt .gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.about-section-alt .gallery-item-main:hover img,
.about-section-alt .gallery-item-secondary:hover img,
.about-section-alt .gallery-item-tertiary:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.about-section-alt .organic-shape-1,
.about-section-alt .organic-shape-2,
.about-section-alt .organic-shape-3 {
  position: absolute;
  background: var(--primary-500);
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

.about-section-alt .organic-shape-1 {
  bottom: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  border-radius: 50% 30% 50% 30%;
}

.about-section-alt .organic-shape-2 {
  top: -8px;
  left: -8px;
  width: 50px;
  height: 50px;
  border-radius: 30% 50% 30% 50%;
}

.about-section-alt .organic-shape-3 {
  bottom: -8px;
  left: -8px;
  width: 50px;
  height: 50px;
  border-radius: 40% 60% 40% 60%;
}

/* Earth Cards */
.about-section-alt .earth-card {
  position: relative;
  background: linear-gradient(135deg, var(--surface-secondary), var(--light));
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  overflow: hidden;
  z-index: 1;
}

.about-section-alt .earth-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-300);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-section-alt .card-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--primary-500) 30%, transparent);
}

.about-section-alt .earth-card:hover .card-icon-wrapper {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--primary-500) 40%, transparent);
}

.about-section-alt .card-icon-wrapper i {
  font-size: 1.75rem;
  color: var(--light);
}

.about-section-alt .earth-card h4 {
  color: var(--text-primary);
  font-weight: 600;
}

.about-section-alt .earth-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.about-section-alt .card-decoration {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: var(--primary-300);
  opacity: 0.08;
  border-radius: 50% 40% 60% 50%;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 991.98px) {
  .about-section-alt {
    padding: 80px 0;
  }

  .about-section-alt #about-title {
    font-size: 2.5rem;
  }

  .about-section-alt .gallery-grid {
    height: 400px;
  }
}

@media (max-width: 767.98px) {
  .about-section-alt {
    padding: 60px 0;
  }

  .about-section-alt #about-title {
    font-size: 2rem;
  }

  .about-section-alt .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 200px);
    height: auto;
  }

  .about-section-alt .gallery-item-main {
    grid-column: 1;
    grid-row: 1;
  }

  .about-section-alt .gallery-item-secondary {
    grid-column: 1;
    grid-row: 2;
  }

  .about-section-alt .gallery-item-tertiary {
    grid-column: 1;
    grid-row: 3;
  }

  .about-section-alt .earth-card {
    padding: 2rem;
  }

  .about-section-alt .compact-feature {
    flex-direction: column;
    text-align: center;
  }
}





.features-section-classic {
  position: relative;
  background: white;
  overflow: hidden;
}

/* Minimal Line */
.features-section-classic .minimal-line {
  width: 40px;
  height: 2px;
  background: var(--primary-700);
  margin-bottom: 1.5rem;
}

/* Header Text */
.features-section-classic #features-title {
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-weight: 700;
}

.features-section-classic #features-subtitle {
  color: var(--primary-700);
  font-weight: 500;
}

.features-section-classic .modern-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  padding-top: 1rem;
}

/* Minimal Features Grid */
.features-section-classic .minimal-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--neutral-300);
  border: 1px solid var(--neutral-300);
}

.features-section-classic .minimal-feature-item {
  position: relative;
  background: white;
  padding: 3rem 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.features-section-classic .minimal-feature-item:hover {
  background: var(--surface-primary);
  transform: scale(1.02);
  z-index: 2;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Minimal Icon */
.features-section-classic .minimal-icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.features-section-classic .minimal-icon-wrapper i {
  font-size: 2rem;
  color: var(--primary-700);
  transition: all 0.3s ease;
}

.features-section-classic .minimal-feature-item:hover .minimal-icon-wrapper i {
  color: var(--primary-500);
  transform: scale(1.15);
}

/* Content */
.features-section-classic .minimal-content h3 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.features-section-classic .minimal-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Hover Indicator */
.features-section-classic .hover-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-700);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.features-section-classic .minimal-feature-item:hover .hover-indicator {
  width: 100%;
}

/* Minimal Accents */
.features-section-classic .minimal-accent {
  position: absolute;
  pointer-events: none;
  opacity: 0.03;
}

.features-section-classic .accent-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-500), transparent 70%);
  top: -100px;
  right: -100px;
}

.features-section-classic .accent-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-700), transparent 70%);
  bottom: -80px;
  left: -80px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .features-section-classic .minimal-features-grid {
    grid-template-columns: 1fr;
  }
  
  .features-section-classic .minimal-feature-item {
    padding: 2.5rem 2rem;
  }
  
  .features-section-classic #features-title {
    font-size: 2.5rem;
  }
  
  .features-section-classic .modern-description {
    margin-top: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .features-section-classic #features-title {
    font-size: 2rem;
  }
  
  .features-section-classic .minimal-feature-item {
    padding: 2rem 1.5rem;
  }
  
  .features-section-classic .minimal-icon-wrapper {
    width: 40px;
    height: 40px;
  }
  
  .features-section-classic .minimal-icon-wrapper i {
    font-size: 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .features-section-classic #features-title {
    font-size: 1.75rem;
  }
  
  .features-section-classic .minimal-feature-item {
    padding: 1.75rem 1.25rem;
  }
}

/* Print Styles */
@media print {
  .features-section-classic .minimal-features-grid {
    display: block;
  }
  
  .features-section-classic .minimal-feature-item {
    page-break-inside: avoid;
    margin-bottom: 1rem;
  }
}





.services-section-style {
  position: relative;
  background: var(--surface-primary);
  overflow: hidden;
}

/* Header Styling */
.services-section-style .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.services-section-style .section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-500);
  line-height: 1.4;
}

.services-section-style .section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Service Card */
.services-section-style .service-card {
  background: var(--light);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid var(--neutral-100);
}

.services-section-style .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-300);
}

/* Service Icon */
.services-section-style .service-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-300), var(--primary-500));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.services-section-style .service-card:hover .service-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.services-section-style .service-icon-wrapper i {
  font-size: 2rem;
  color: var(--light);
}

/* Service Content */
.services-section-style .service-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.3;
}

.services-section-style .service-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: center;
}

.services-section-style .service-features {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 1rem;
  background: var(--surface-secondary);
  border-radius: 8px;
  border-left: 3px solid var(--primary-500);
}

/* Service Price */
.services-section-style .service-price-wrapper {
  text-align: center;
  padding-top: 1rem;
  margin-top: auto;
}

.services-section-style .service-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-500);
  display: inline-block;
}

/* Decorative Line */
.services-section-style .decorative-line {
  height: 4px;
  width: 60px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-300));
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

/* Decorative Shapes */
.services-section-style .decorative-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.services-section-style .shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-300);
  top: -100px;
  right: -100px;
}

.services-section-style .shape-2 {
  width: 250px;
  height: 250px;
  background: var(--primary-500);
  bottom: -80px;
  left: -80px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .services-section-style .section-title {
    font-size: 2rem;
  }
  
  .services-section-style .section-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .services-section-style .section-title {
    font-size: 1.75rem;
  }
  
  .services-section-style .section-subtitle {
    font-size: 1.2rem;
  }
  
  .services-section-style .service-card {
    padding: 1.5rem;
  }
  
  .services-section-style .service-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .services-section-style .service-icon-wrapper i {
    font-size: 1.75rem;
  }
}




.priceplan-section-pro {
  position: relative;
  background: var(--surface-primary);
  overflow: hidden;
}

.priceplan-section-pro .modern-header-wrapper {
  position: relative;
  z-index: 2;
}

.priceplan-section-pro .floating-icons-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.priceplan-section-pro .modern-icon {
  font-size: 1.5rem;
  color: var(--primary-500);
  opacity: 0.4;
  animation: gentle-float 4s ease-in-out infinite;
}

.priceplan-section-pro .modern-icon:nth-child(1) {
  animation-delay: 0s;
}

.priceplan-section-pro .modern-icon:nth-child(2) {
  animation-delay: 0.5s;
}

.priceplan-section-pro .modern-icon:nth-child(3) {
  animation-delay: 1s;
}

@keyframes gentle-float {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-10px); opacity: 0.7; }
}

.priceplan-section-pro .modern-clean-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.priceplan-section-pro .modern-clean-subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary-700);
  line-height: 1.4;
}

.priceplan-section-pro .modern-clean-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto;
}

.priceplan-section-pro .modern-clean-card {
  position: relative;
  background: var(--light);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--neutral-100);
}

.priceplan-section-pro .modern-clean-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-300);
}

.priceplan-section-pro .modern-highlighted {
  border: 2px solid var(--primary-500);
  box-shadow: 0 8px 35px color-mix(in srgb, var(--primary-500) 15%, rgba(0, 0, 0, 0.08));
}

.priceplan-section-pro .modern-highlighted:hover {
  box-shadow: 0 15px 50px color-mix(in srgb, var(--primary-500) 20%, rgba(0, 0, 0, 0.15));
}

.priceplan-section-pro .highlight-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-500) 100%);
  color: var(--light);
  padding: 6px 24px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 0 0 12px 12px;
  z-index: 2;
}

.priceplan-section-pro .card-badge-modern {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
  border-radius: 0 0 35px 35px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 12px;
  margin: 0 auto;
}

.priceplan-section-pro .card-badge-modern i {
  font-size: 2rem;
  color: var(--light);
}

.priceplan-section-pro .modern-card-inner {
  padding: 2rem 2.5rem 2.5rem;
}

.priceplan-section-pro .modern-plan-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-align: center;
}

.priceplan-section-pro .modern-plan-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.7;
  min-height: 65px;
}

.priceplan-section-pro .modern-price-display {
  text-align: center;
  margin-bottom: 1.5rem;
}

.priceplan-section-pro .modern-plan-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-700);
  margin: 0;
  line-height: 1;
  letter-spacing: -2px;
}

.priceplan-section-pro .price-period {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-left: 4px;
}

.priceplan-section-pro .modern-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-500) 50%, transparent 100%);
  margin: 0 auto 2rem;
}

.priceplan-section-pro .modern-features-section {
  background: var(--surface-secondary);
  border-radius: 12px;
  padding: 1.5rem;
}

.priceplan-section-pro .modern-plan-features {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

.priceplan-section-pro .modern-bg-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  opacity: 0.04;
  pointer-events: none;
  filter: blur(60px);
}

.priceplan-section-pro .shape-left {
  background: radial-gradient(circle, var(--primary-500) 0%, transparent 70%);
  top: 20%;
  left: -200px;
  animation: shape-drift 20s ease-in-out infinite;
}

.priceplan-section-pro .shape-right {
  background: radial-gradient(circle, var(--primary-700) 0%, transparent 70%);
  bottom: 10%;
  right: -200px;
  animation: shape-drift 25s ease-in-out infinite reverse;
}

@keyframes shape-drift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -50px) scale(1.1);
  }
}

@media (max-width: 991px) {
  .priceplan-section-pro .modern-clean-title {
    font-size: 2.25rem;
  }
  
  .priceplan-section-pro .modern-clean-subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .priceplan-section-pro .modern-clean-title {
    font-size: 1.875rem;
  }
  
  .priceplan-section-pro .modern-plan-title {
    font-size: 1.75rem;
  }
  
  .priceplan-section-pro .modern-plan-price {
    font-size: 3rem;
  }
  
  .priceplan-section-pro .price-period {
    font-size: 1.25rem;
  }
  
  .priceplan-section-pro .modern-card-inner {
    padding: 2rem 1.5rem 2rem;
  }
  
  .priceplan-section-pro .floating-icons-modern {
    gap: 1rem;
  }
  
  .priceplan-section-pro .modern-icon {
    font-size: 1.25rem;
  }
}





.team-section-alt {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--surface-primary), var(--neutral-50));
  position: relative;
  overflow: hidden;
}

/* Nature Accents */
.team-section-alt .nature-accent-top {
  position: absolute;
  top: 50px;
  right: 80px;
  font-size: 2rem;
  color: var(--primary-300);
  opacity: 0.3;
  z-index: 0;
}

.team-section-alt .nature-accent-top i {
  margin: 0 0.5rem;
}

.team-section-alt .nature-accent-bottom {
  position: absolute;
  bottom: 60px;
  left: 80px;
  font-size: 2.5rem;
  color: var(--primary-300);
  opacity: 0.25;
  z-index: 0;
}

.team-section-alt .nature-accent-bottom i {
  margin: 0 0.5rem;
}

/* Organic Texture */
.team-section-alt .organic-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, var(--primary-50) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, var(--primary-50) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px;
  opacity: 0.4;
  z-index: 0;
}

.team-section-alt .container {
  position: relative;
  z-index: 1;
}

/* Section Header */
.team-section-alt .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.team-section-alt .section-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-500);
  margin-bottom: 1rem;
}

.team-section-alt .section-description {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-secondary);
}

/* Team Member Card */
.team-section-alt .team-member-card {
  background: var(--light);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.team-section-alt .team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

/* Image Container */
.team-section-alt .image-container {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}

.team-section-alt .team-member-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.team-section-alt .team-member-card:hover .team-member-photo {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* Organic Shape Overlay */
.team-section-alt .organic-shape {
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 140%;
  height: 60%;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-300));
  border-radius: 50% 50% 0 0;
  opacity: 0;
  transition: all 0.5s ease;
  transform: translateY(20px);
}

.team-section-alt .team-member-card:hover .organic-shape {
  opacity: 0.2;
  transform: translateY(0);
}

/* Member Info */
.team-section-alt .member-info {
  padding: 1.75rem 1.5rem;
  text-align: center;
  position: relative;
}

.team-section-alt .info-header {
  margin-bottom: 1rem;
}

.team-section-alt .leaf-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: color-mix(in srgb, var(--primary-100) 50%, var(--light) 50%);
  border-radius: 50%;
  color: var(--primary-500);
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.team-section-alt .team-member-card:hover .leaf-icon {
  background: var(--primary-300);
  color: var(--light);
  transform: rotate(15deg);
}

.team-section-alt .member-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.team-section-alt .member-role {
  font-size: 1rem;
  color: var(--primary-500);
  font-weight: 500;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .team-section-alt {
    padding: 80px 0;
  }

  .team-section-alt .section-title {
    font-size: 2.1rem;
  }

  .team-section-alt .section-subtitle {
    font-size: 1.15rem;
  }

  .team-section-alt .nature-accent-top,
  .team-section-alt .nature-accent-bottom {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .team-section-alt {
    padding: 60px 0;
  }

  .team-section-alt .section-title {
    font-size: 1.8rem;
  }

  .team-section-alt .section-description {
    font-size: 1rem;
  }

  .team-section-alt .nature-accent-top {
    top: 30px;
    right: 30px;
  }

  .team-section-alt .nature-accent-bottom {
    bottom: 30px;
    left: 30px;
  }

  .team-section-alt .member-name {
    font-size: 1.15rem;
  }

  .team-section-alt .member-role {
    font-size: 0.95rem;
  }
}





/* Reviews section */
.reviews-section-clean {
  position: relative;
  background: var(--surface-primary);
  overflow: hidden;
}

/* Section Header */
.reviews-section-clean .header-frame {
  position: relative;
  padding-left: 1.5rem;
}

.reviews-section-clean .frame-corner {
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 80px;
  background: var(--primary-500);
}

.reviews-section-clean .frame-corner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 5px;
  background: var(--primary-500);
}

.reviews-section-clean #reviews-title {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

.reviews-section-clean #reviews-subtitle {
  color: var(--primary-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1rem;
}

.reviews-section-clean #reviews-desc {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Industrial Review Card */
.reviews-section-clean .industrial-review-card {
  background: white;
  border: 2px solid var(--neutral-100);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reviews-section-clean .industrial-review-card:hover {
  border-color: var(--primary-500);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

/* Card Header */
.reviews-section-clean .card-header-industrial {
  padding: 1.5rem;
  background: var(--surface-secondary);
  border-bottom: 2px solid var(--neutral-100);
  position: relative;
}

.reviews-section-clean .header-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-700));
}

.reviews-section-clean .reviewer-identity {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviews-section-clean .avatar-box {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 75% 100%, 0 100%);
}

.reviews-section-clean .reviewer-designation {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

/* Card Body */
.reviews-section-clean .card-body-industrial {
  padding: 2rem 1.5rem;
  position: relative;
}

.reviews-section-clean .industrial-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: var(--neutral-100);
}

.reviews-section-clean .review-statement {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  padding-right: 3rem;
}

/* Industrial Grid Background */
.reviews-section-clean .industrial-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(var(--neutral-50) 1px, transparent 1px),
    linear-gradient(90deg, var(--neutral-50) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  pointer-events: none;
}

/* Metal Plates */
.reviews-section-clean .metal-plate {
  position: absolute;
  background: var(--neutral-100);
  opacity: 0.08;
  pointer-events: none;
}

.reviews-section-clean .plate-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 5%;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
  transform: rotate(15deg);
}

.reviews-section-clean .plate-2 {
  width: 180px;
  height: 180px;
  bottom: 15%;
  left: 3%;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 15%);
  transform: rotate(-12deg);
}

/* Responsive Design */
@media (max-width: 991px) {
  .reviews-section-clean .row.mb-5 {
    margin-bottom: 3rem !important;
  }
  
  .reviews-section-clean .col-lg-5,
  .reviews-section-clean .col-lg-7 {
    margin-bottom: 2rem;
  }
  
  .reviews-section-clean .industrial-review-card {
    margin-bottom: 2rem !important;
  }
}

@media (max-width: 767px) {
  .reviews-section-clean #reviews-title {
    font-size: 2rem;
  }
  
  .reviews-section-clean #reviews-subtitle {
    font-size: 0.9rem;
  }
  
  .reviews-section-clean .card-header-industrial,
  .reviews-section-clean .card-body-industrial {
    padding: 1.25rem;
  }
  
  .reviews-section-clean .avatar-box {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }
  
  .reviews-section-clean .review-statement {
    padding-right: 0;
  }
  
  .reviews-section-clean .industrial-icon {
    position: static;
    margin-bottom: 0.75rem;
    font-size: 2rem;
  }
}





.casestudy-section-pro {
  padding: 80px 0;
  background: var(--surface-primary);
  position: relative;
  overflow: hidden;
}

.casestudy-section-pro .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.casestudy-section-pro .section-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-500);
  margin-bottom: 1.5rem;
}

.casestudy-section-pro .section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.casestudy-section-pro .scroll-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0 40px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-500) var(--neutral-100);
}

.casestudy-section-pro .scroll-container::-webkit-scrollbar {
  height: 8px;
}

.casestudy-section-pro .scroll-container::-webkit-scrollbar-track {
  background: var(--neutral-100);
  border-radius: 10px;
}

.casestudy-section-pro .scroll-container::-webkit-scrollbar-thumb {
  background: var(--primary-500);
  border-radius: 10px;
}

.casestudy-section-pro .scroll-wrapper {
  display: flex;
  gap: 2rem;
  padding: 0 1rem;
  min-width: min-content;
}

.casestudy-section-pro .scroll-card {
  flex: 0 0 450px;
  background: var(--light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid var(--neutral-100);
}

.casestudy-section-pro .scroll-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-500);
}

.casestudy-section-pro .card-header-visual {
  position: relative;
  width: 100%;
  height: 200px;
}

.casestudy-section-pro .header-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--neutral-300) 0%, var(--primary-300) 100%);
}

.casestudy-section-pro .header-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--primary-500);
  border: 3px solid var(--light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.casestudy-section-pro .header-badge i {
  font-size: 1.8rem;
  color: var(--light);
}

.casestudy-section-pro .card-content {
  padding: 2rem;
  position: relative;
}

.casestudy-section-pro .card-number {
  position: absolute;
  top: -30px;
  left: 20px;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-100);
  line-height: 1;
}

.casestudy-section-pro .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.casestudy-section-pro .card-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.casestudy-section-pro .card-tech-icons {
  display: flex;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 2px solid var(--neutral-100);
}

.casestudy-section-pro .card-tech-icons i {
  width: 45px;
  height: 45px;
  background: var(--neutral-100);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--neutral-700);
  transition: all 0.3s ease;
}

.casestudy-section-pro .card-tech-icons i:hover {
  background: var(--primary-500);
  color: var(--light);
  transform: scale(1.1);
}

.casestudy-section-pro .scroll-spacer {
  flex: 0 0 20px;
}

.casestudy-section-pro .scroll-indicator {
  text-align: center;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  color: var(--primary-500);
}

.casestudy-section-pro .grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(var(--neutral-100) 1px, transparent 1px),
    linear-gradient(90deg, var(--neutral-100) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 991px) {
  .casestudy-section-pro {
    padding: 60px 0;
  }

  .casestudy-section-pro .section-title {
    font-size: 2rem;
  }

  .casestudy-section-pro .scroll-card {
    flex: 0 0 380px;
  }
}

@media (max-width: 767px) {
  .casestudy-section-pro {
    padding: 50px 0;
  }

  .casestudy-section-pro .section-title {
    font-size: 1.75rem;
  }

  .casestudy-section-pro .scroll-card {
    flex: 0 0 320px;
  }

  .casestudy-section-pro .card-content {
    padding: 1.5rem;
  }

  .casestudy-section-pro .card-title {
    font-size: 1.3rem;
  }
}


.process-section-minimal {
  position: relative;
  background: var(--surface-primary);
  overflow: hidden;
}

/* Section Header */
.process-section-minimal .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.process-section-minimal .section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-500);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1rem;
}

.process-section-minimal .section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Process Timeline */
.process-timeline {
  position: relative;
  z-index: 1;
}

.process-step {
  background: var(--surface-secondary);
  border: 2px solid var(--neutral-100);
  border-left: 4px solid var(--primary-500);
  border-radius: 8px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.process-step:hover {
  border-left-width: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}

.process-step:last-child {
  margin-bottom: 0;
}

/* Step Header */
.step-header {
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--neutral-100);
  gap: 1.5rem;
}

.step-number-badge {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--primary-500);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: monospace;
}

.step-meta {
  flex: 1;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

/* Step Body */
.step-body {
  padding: 2rem;
  position: relative;
}

.step-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--primary-500) 10%, transparent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}

.step-icon i {
  font-size: 1.5rem;
  color: var(--primary-500);
}

.step-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  padding-right: 80px;
}

/* Progress Indicator */
.progress-indicator {
  position: relative;
  height: 8px;
  background: var(--neutral-100);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-line {
  height: 100%;
  width: var(--progress, 0%);
  background: linear-gradient(to right, var(--primary-500), var(--primary-700));
  border-radius: 4px;
  transition: width 1s ease;
  position: relative;
}

.progress-bar-line::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 20px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3));
  animation: shimmer 2s infinite;
}

.progress-bar-complete {
  background: var(--primary-500);
}

@keyframes shimmer {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Grid Overlay */
.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
}

.grid-line {
  position: absolute;
  background: var(--neutral-700);
}

.grid-line-v {
  width: 1px;
  height: 100%;
  top: 0;
}

.grid-line-v:nth-child(1) {
  left: 25%;
}

.grid-line-v:nth-child(2) {
  right: 25%;
}

.grid-line-h {
  height: 1px;
  width: 100%;
  left: 0;
}

.grid-line-h:nth-child(3) {
  top: 30%;
}

.grid-line-h:nth-child(4) {
  bottom: 30%;
}

/* Responsive Design */
@media (max-width: 991px) {
  .process-section-minimal .section-title {
    font-size: 2rem;
  }

  .step-header {
    padding: 1.25rem 1.5rem;
  }

  .step-body {
    padding: 1.5rem;
  }

  .step-description {
    padding-right: 0;
    margin-bottom: 1rem;
  }

  .step-icon {
    position: static;
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .process-section-minimal .section-title {
    font-size: 1.75rem;
  }

  .step-header {
    padding: 1rem 1.25rem;
    gap: 1rem;
  }

  .step-number-badge {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .step-title {
    font-size: 1.25rem;
  }

  .step-body {
    padding: 1.25rem;
  }

  .step-icon {
    width: 40px;
    height: 40px;
  }

  .step-icon i {
    font-size: 1.25rem;
  }

  .process-step:hover {
    transform: translateX(0);
  }
}





/* Timeline  - Creative Purple Theme - Constellation Connected Layout */

.timeline_wrap_pro {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--surface-primary), var(--surface-secondary));
  overflow: hidden;
}

/* Cosmos Background */
.timeline_cosmos_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.timeline_stardust_layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, var(--primary-300) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.2;
  animation: timeline_twinkle 10s ease-in-out infinite;
}

@keyframes timeline_twinkle {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.35;
  }
}

.timeline_nebula_glow {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse at center, var(--primary-100), transparent 70%);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(40px);
}

/* Content Container */
.timeline_wrap_pro .container {
  position: relative;
  z-index: 1;
}

/* Constellation Header */
.timeline_constellation_header {
  text-align: center;
  margin-bottom: 80px;
}

.timeline_cosmic_title {
  font-size: 3.125rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.timeline_cosmic_subtitle {
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--primary-500);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-style: italic;
}

.timeline_cosmic_description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 auto;
  max-width: 800px;
}

/* Stars Network */
.timeline_stars_network {
  position: relative;
  min-height: 1200px;
}

.timeline_connection_lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.timeline_star_path {
  stroke: var(--primary-500);
  stroke-dasharray: 8 4;
}

/* Star Cluster */
.timeline_star_cluster {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Star Node */
.timeline_star_node {
  position: relative;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.timeline_node_1 {
  margin-left: 10%;
}

.timeline_node_2 {
  margin-left: 30%;
}

.timeline_node_3 {
  margin-left: 50%;
}

.timeline_node_4 {
  margin-left: 20%;
}

.timeline_node_5 {
  margin-left: 35%;
}

/* Star Core */
.timeline_star_core {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
  transition: all 0.5s ease;
  position: relative;
}

.timeline_star_core::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid var(--primary-300);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.timeline_star_node:hover .timeline_star_core {
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 0 50px rgba(124, 58, 237, 0.8);
}

.timeline_star_node:hover .timeline_star_core::before {
  opacity: 1;
}

.timeline_star_core i {
  font-size: 2rem;
  color: var(--button-primary-text);
}

.timeline_core_finale {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
}

.timeline_core_finale i {
  font-size: 2.25rem;
}

/* Star Content */
.timeline_star_content {
  flex: 1;
  background: var(--surface-primary);
  border: 2px solid var(--border-light);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.timeline_star_node:hover .timeline_star_content {
  transform: translateX(10px);
  border-color: var(--primary-500);
  box-shadow: var(--shadow-lg);
}

.timeline_star_label {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.timeline_star_description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Finale Node */
.timeline_node_finale .timeline_star_content {
  background: linear-gradient(135deg, var(--surface-accent), var(--surface-primary));
  border-width: 3px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .timeline_wrap_pro {
    padding: 80px 0;
  }
  
  .timeline_constellation_header {
    margin-bottom: 60px;
  }
  
  .timeline_cosmic_title {
    font-size: 2.5rem;
  }
  
  .timeline_cosmic_subtitle {
    font-size: 1.375rem;
  }
  
  .timeline_connection_lines {
    display: none;
  }
  
  .timeline_node_1,
  .timeline_node_2,
  .timeline_node_3,
  .timeline_node_4,
  .timeline_node_5 {
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .timeline_wrap_pro {
    padding: 60px 0;
  }
  
  .timeline_constellation_header {
    margin-bottom: 50px;
  }
  
  .timeline_cosmic_title {
    font-size: 2rem;
  }
  
  .timeline_cosmic_subtitle {
    font-size: 1.25rem;
  }
  
  .timeline_cosmic_description {
    font-size: 1rem;
  }
  
  .timeline_stars_network {
    min-height: auto;
  }
  
  .timeline_star_node {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .timeline_star_core {
    width: 70px;
    height: 70px;
  }
  
  .timeline_star_core i {
    font-size: 1.75rem;
  }
  
  .timeline_core_finale {
    width: 80px;
    height: 80px;
  }
  
  .timeline_core_finale i {
    font-size: 2rem;
  }
  
  .timeline_star_content {
    padding: 1.5rem;
  }
  
  .timeline_star_label {
    font-size: 1.375rem;
  }
  
  .timeline_star_description {
    font-size: 0.9375rem;
  }
}

@media (max-width: 575.98px) {
  .timeline_wrap_pro {
    padding: 50px 0;
  }
  
  .timeline_cosmic_title {
    font-size: 1.75rem;
  }
  
  .timeline_star_core {
    width: 60px;
    height: 60px;
  }
  
  .timeline_star_core i {
    font-size: 1.5rem;
  }
  
  .timeline_core_finale {
    width: 70px;
    height: 70px;
  }
  
  .timeline_core_finale i {
    font-size: 1.75rem;
  }
  
  .timeline_star_content {
    padding: 1.25rem;
  }
  
  .timeline_star_label {
    font-size: 1.25rem;
  }
}



/* FIXED: Ensure vertical text layout on all screens */
@media (max-width: 1199px) {
  .timeline_main_title,
  .timeline_tagline,
  .timeline_intro_text {
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}


.career-section {
  padding: 100px 0;
  background: var(--surface-primary);
  position: relative;
  overflow: hidden;
}

/* Header */
.section-header {
  position: relative;
  text-align: center;
}

.header-decoration {
  position: absolute;
  top: -30px;
  right: 0;
  display: flex;
  gap: 15px;
  opacity: 0.15;
}

.decoration-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-500);
}

.decoration-square {
  width: 60px;
  height: 60px;
  background: var(--primary-300);
  transform: rotate(45deg);
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--primary-500);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* Floating Shapes */
.floating-shape {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--primary-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.floating-shape i {
  font-size: 2rem;
  color: var(--primary-300);
}

.shape-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  top: 60%;
  right: 8%;
  animation-delay: 2s;
}

.shape-3 {
  bottom: 15%;
  left: 10%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* Career Grid */
.career-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* Card Variants */
.career-card {
  background: var(--light);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  overflow: hidden;
}

.card-large {
  grid-column: span 7;
}

.card-small {
  grid-column: span 5;
}

.card-medium {
  grid-column: span 6;
}

.card-accent-right {
  grid-column: span 6;
}

.career-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-300);
}

/* Card Decorations */
.card-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  opacity: 0.08;
  pointer-events: none;
}

.decoration-blob {
  width: 100%;
  height: 100%;
  background: var(--primary-500);
  border-radius: 50%;
  filter: blur(30px);
}

.decoration-dots {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, var(--primary-500) 2px, transparent 2px);
  background-size: 20px 20px;
}

.card-badge {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--primary-500) 15%, var(--light) 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.card-badge i {
  font-size: 2rem;
  color: var(--primary-500);
}

.career-card:hover .card-badge {
  background: var(--primary-500);
  transform: rotate(360deg) scale(1.1);
}

.career-card:hover .card-badge i {
  color: var(--light);
}

/* Card Corners */
.card-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid var(--primary-500);
  opacity: 0.3;
}

.corner-tl {
  top: 15px;
  left: 15px;
  border-right: none;
  border-bottom: none;
}

.corner-tr {
  top: 15px;
  right: 15px;
  border-left: none;
  border-bottom: none;
}

.corner-bl {
  bottom: 15px;
  left: 15px;
  border-right: none;
  border-top: none;
}

.corner-br {
  bottom: 15px;
  right: 15px;
  border-left: none;
  border-top: none;
}

.card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-300), var(--primary-500));
}

.accent-right {
  left: auto;
  right: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-300), var(--primary-500));
}

/* Card Content */
.card-body {
  position: relative;
  z-index: 1;
}

.card-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.card-meta {
  margin-bottom: 1.25rem;
}

.meta-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--primary-50);
  color: var(--primary-700);
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.card-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .section-title {
    font-size: 2.5rem;
  }

  .career-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .card-large,
  .card-small,
  .card-medium,
  .card-accent-right {
    grid-column: span 1;
  }

  .floating-shape {
    display: none;
  }
}

@media (max-width: 767px) {
  .career-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.25rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .career-card {
    padding: 2rem;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .header-decoration {
    display: none;
  }
}





.coreinfo-section {
  position: relative;
  background: var(--surface-primary);
  color: var(--text-primary);
  overflow: hidden;
}

/* Creative Header */
.creative-header .display-4 {
  color: var(--primary-700);
  font-weight: 700;
  line-height: 1.2;
}

.creative-header h3 {
  color: var(--primary-500);
  font-weight: 500;
}

.creative-header .lead {
  color: var(--text-secondary);
  line-height: 1.8;
}

.header-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.deco-circle {
  width: 12px;
  height: 12px;
  background: var(--primary-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.deco-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-300), var(--primary-700));
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* Creative Asymmetric Grid */
.creative-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .creative-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .item-large {
    grid-column: span 2;
  }
}

.grid-item {
  position: relative;
}

.item-inner {
  background: var(--surface-secondary);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--neutral-100);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.item-inner:hover {
  transform: translateY(-12px) rotate(-2deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-500);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-300), var(--primary-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.item-inner:hover .icon-circle {
  transform: rotate(180deg) scale(1.1);
  background: linear-gradient(135deg, var(--primary-700), var(--primary-300));
}

.icon-circle i {
  font-size: 2rem;
  color: var(--light);
}

.item-heading {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.3rem;
  position: relative;
  z-index: 2;
}

.item-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

/* Floating shapes inside items */
.floating-shape {
  position: absolute;
  opacity: 0.08;
  z-index: 1;
  transition: all 0.5s ease;
}

.shape-circle {
  width: 120px;
  height: 120px;
  background: var(--primary-500);
  border-radius: 50%;
  bottom: -30px;
  right: -30px;
}

.shape-square {
  width: 100px;
  height: 100px;
  background: var(--primary-700);
  transform: rotate(45deg);
  top: -30px;
  right: -20px;
}

.shape-triangle {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid var(--primary-500);
  bottom: -40px;
  left: -20px;
}

.item-inner:hover .floating-shape {
  opacity: 0.15;
  transform: scale(1.2) rotate(10deg);
}

/* Background blobs */
.bg-blob {
  position: absolute;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  opacity: 0.08;
  z-index: 0;
  animation: blob-float 20s ease-in-out infinite;
}

.bg-blob.blob-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-300);
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.bg-blob.blob-2 {
  width: 250px;
  height: 250px;
  background: var(--primary-500);
  bottom: 15%;
  left: 8%;
  animation-delay: 7s;
}

.bg-blob.blob-3 {
  width: 200px;
  height: 200px;
  background: var(--primary-700);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

@keyframes blob-float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  25% {
    transform: translate(20px, -30px) rotate(90deg);
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
  }
  50% {
    transform: translate(-20px, 20px) rotate(180deg);
    border-radius: 30% 70% 60% 40% / 60% 40% 50% 60%;
  }
  75% {
    transform: translate(30px, 10px) rotate(270deg);
    border-radius: 70% 30% 40% 60% / 40% 60% 50% 40%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .creative-header .display-4 {
    font-size: 2rem;
  }

  .creative-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .item-inner {
    padding: 1.5rem;
  }

  .bg-blob {
    width: 150px !important;
    height: 150px !important;
  }
}

@media (min-width: 1400px) {
  .creative-grid {
    gap: 2rem;
  }

  .item-inner {
    padding: 2.5rem;
  }
}





.contact-section-minimal {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--surface-primary) 0%, color-mix(in srgb, var(--primary-50) 40%, var(--surface-primary)) 100%);
  position: relative;
  overflow: hidden;
}

.contact-section-minimal .contact-header {
  padding-right: 2rem;
}

.contact-section-minimal .contact-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
  letter-spacing: -1px;
}

.contact-section-minimal .contact-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-500);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.contact-section-minimal .contact-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-section-minimal .contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-section-minimal .method-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--surface-secondary);
  border-radius: 16px;
  border-left: 4px solid var(--primary-500);
  transition: all 0.3s ease;
}

.contact-section-minimal .method-item:hover {
  transform: translateX(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-left-width: 6px;
}

.contact-section-minimal .method-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--primary-500) 12%, transparent);
  color: var(--primary-500);
  font-size: 1.5rem;
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-section-minimal .method-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.contact-section-minimal .creative-form-wrapper {
  background: var(--surface-secondary);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.contact-section-minimal .form-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  pointer-events: none;
}

.contact-section-minimal .deco-circle {
  position: absolute;
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary-500) 8%, transparent);
}

.contact-section-minimal .circle-1 {
  width: 80px;
  height: 80px;
  top: -20px;
  right: -20px;
}

.contact-section-minimal .circle-2 {
  width: 120px;
  height: 120px;
  top: 40px;
  right: 60px;
  opacity: 0.5;
}

.contact-section-minimal .circle-3 {
  width: 60px;
  height: 60px;
  top: 80px;
  right: 20px;
  opacity: 0.3;
}

.contact-section-minimal .creative-form {
  position: relative;
  z-index: 1;
}

.contact-section-minimal .form-field {
  margin-bottom: 1.75rem;
}

.contact-section-minimal .field-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.contact-section-minimal .field-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--neutral-100);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--surface-primary);
  transition: all 0.3s ease;
}

.contact-section-minimal .field-input:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary-500) 10%, transparent);
  transform: translateY(-2px);
}

.contact-section-minimal .field-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-section-minimal .form-field-check {
  display: flex;
  align-items: start;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.contact-section-minimal .field-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  border: 2px solid var(--neutral-300);
  border-radius: 4px;
  flex-shrink: 0;
  cursor: pointer;
}

.contact-section-minimal .field-checkbox:checked {
  background-color: var(--primary-500);
  border-color: var(--primary-500);
}

.contact-section-minimal .checkbox-label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  cursor: pointer;
}

.contact-section-minimal .creative-submit {
  width: 100%;
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #9333ea, #c026d3) !important;
  color: #ffffff !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-section-minimal .creative-submit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.contact-section-minimal .creative-submit:hover::before {
  width: 300px;
  height: 300px;
}

.contact-section-minimal .creative-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(147, 51, 234, 0.35);
}

.contact-section-minimal .creative-submit span,
.contact-section-minimal .creative-submit i {
  position: relative;
  z-index: 1;
}

.contact-section-minimal .creative-submit i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.contact-section-minimal .creative-submit:hover i {
  transform: translateX(4px) rotate(15deg);
}

.contact-section-minimal .background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.contact-section-minimal .bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.contact-section-minimal .blob-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-300);
  top: -200px;
  left: -200px;
}

.contact-section-minimal .blob-2 {
  width: 500px;
  height: 500px;
  background: var(--primary-500);
  bottom: -250px;
  right: -250px;
}

.contact-section-minimal .blob-3 {
  width: 300px;
  height: 300px;
  background: var(--primary-300);
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}

.contact-section-minimal .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .contact-section-minimal {
    padding: 80px 0;
  }

  .contact-section-minimal .contact-title {
    font-size: 2.5rem;
  }

  .contact-section-minimal .contact-subtitle {
    font-size: 1.25rem;
  }

  .contact-section-minimal .contact-header {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .contact-section-minimal .creative-form-wrapper {
    padding: 2rem;
  }
}

@media (max-width: 575.98px) {
  .contact-section-minimal .contact-title {
    font-size: 2rem;
  }

  .contact-section-minimal .creative-form-wrapper {
    padding: 1.5rem;
  }

  .contact-section-minimal .creative-submit {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
}





.blog-section-classic {
  position: relative;
  background: var(--surface-primary);
  overflow: hidden;
}

/* Section Header */
.blog-section-classic .header-block {
  position: relative;
  padding-left: 1.5rem;
}

.blog-section-classic .title-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-500);
}

.blog-section-classic .section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.blog-section-classic .section-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-500);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-section-classic .section-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

/* Blog Card */
.blog-section-classic .blog-card {
  background: var(--surface-secondary);
  border: 2px solid var(--neutral-300);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.blog-section-classic .blog-card:hover {
  border-color: var(--primary-500);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-section-classic .card-header-line {
  width: 100%;
  height: 4px;
  background: var(--primary-500);
  transition: background 0.3s ease;
}

.blog-section-classic .blog-card:hover .card-header-line {
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--primary-700) 100%);
}

/* Blog Image */
.blog-section-classic .blog-image-box {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--neutral-100);
}

.blog-section-classic .blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-section-classic .blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-section-classic .image-border-frame {
  position: absolute;
  inset: 0;
  border: 2px solid var(--neutral-100);
  opacity: 1;
  transition: all 0.3s ease;
  pointer-events: none;
}

.blog-section-classic .blog-card:hover .image-border-frame {
  inset: 0.75rem;
  border-color: var(--primary-500);
}

.blog-section-classic .category-marker {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  background: var(--light);
  border: 2px solid var(--primary-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary-500);
  transition: all 0.3s ease;
}

.blog-section-classic .blog-card:hover .category-marker {
  background: var(--primary-500);
  color: var(--light);
  transform: rotate(90deg);
}

/* Blog Body */
.blog-section-classic .blog-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-section-classic .metadata-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog-section-classic .meta-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--neutral-300);
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.blog-section-classic .blog-card:hover .meta-box {
  border-color: var(--primary-500);
  color: var(--primary-500);
}

.blog-section-classic .meta-box i {
  font-size: 0.9375rem;
}

.blog-section-classic .meta-divider {
  width: 1px;
  height: 16px;
  background: var(--neutral-300);
}

.blog-section-classic .blog-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.blog-section-classic .blog-card:hover .blog-title {
  color: var(--primary-500);
}

.blog-section-classic .blog-excerpt {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.blog-section-classic .blog-action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary-500);
  color: var(--primary-500);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.blog-section-classic .blog-action-link:hover {
  background: var(--primary-500);
  color: var(--light);
  transform: translateX(8px);
}

.blog-section-classic .blog-action-link i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.blog-section-classic .blog-action-link:hover i {
  transform: translateX(4px);
}

/* Geometric Background Elements */
.blog-section-classic .geometric-element {
  position: absolute;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  border: 2px solid var(--primary-500);
}

.blog-section-classic .elem-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 5%;
  transform: rotate(45deg);
}

.blog-section-classic .elem-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 8%;
  border-radius: 50%;
}

.blog-section-classic .elem-3 {
  width: 180px;
  height: 180px;
  top: 50%;
  left: 3%;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  border: none;
  background: var(--primary-500);
}

.blog-section-classic .elem-4 {
  width: 120px;
  height: 120px;
  bottom: 15%;
  right: 10%;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  border: none;
  background: var(--primary-500);
}

.blog-section-classic .container {
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 991.98px) {
  .blog-section-classic .section-title {
    font-size: 2.25rem;
  }
  
  .blog-section-classic .section-subtitle {
    font-size: 1.125rem;
  }
  
  .blog-section-classic .blog-body {
    padding: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .blog-section-classic .section-title {
    font-size: 1.875rem;
  }
  
  .blog-section-classic .blog-image-box {
    height: 200px;
  }
  
  .blog-section-classic .blog-title {
    font-size: 1.0625rem;
  }
  
  .blog-section-classic .category-marker {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
  }
  
  .blog-section-classic .geometric-element {
    display: none;
  }
}





.faq-section-087 {
  padding: 100px 0;
  background: var(--surface-primary);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.faq-section-087 .section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.faq-section-087 .section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-500);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.faq-section-087 .section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* FAQ Container */
.faq-section-087 .faq-container {
  position: relative;
}

/* FAQ Cards */
.faq-section-087 .faq-card {
  border: 2px solid var(--neutral-100);
  border-left: 4px solid var(--primary-500);
  border-radius: 8px;
  background: var(--light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 80px;
  transition: all 0.3s ease;
}

.faq-section-087 .faq-card:hover {
  border-left-color: var(--primary-700);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateX(8px);
}

/* Number Badge */
.faq-section-087 .number-badge {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--primary-100);
  border: 2px solid var(--primary-500);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-700);
  transition: all 0.3s ease;
}

.faq-section-087 .faq-card:hover .number-badge {
  background: var(--primary-500);
  color: var(--light);
  transform: translateY(-50%) scale(1.1);
}

/* Card Content */
.faq-section-087 .card-header {
  background: transparent;
  border: none;
  padding: 1.75rem 2rem 1rem 1rem;
}

.faq-section-087 .faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
}

.faq-section-087 .card-body {
  padding: 0 2rem 1.75rem 1rem;
  background: transparent;
}

.faq-section-087 .faq-answer {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Decorative Grid */
.faq-section-087 .decorative-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: 
    linear-gradient(var(--neutral-100) 1px, transparent 1px),
    linear-gradient(90deg, var(--neutral-100) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 991px) {
  .faq-section-087 {
    padding: 80px 0;
  }

  .faq-section-087 .section-title {
    font-size: 2.25rem;
  }

  .faq-section-087 .section-subtitle {
    font-size: 1.35rem;
  }

  .faq-section-087 .faq-card {
    padding-left: 70px;
  }

  .faq-section-087 .number-badge {
    left: 16px;
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }

  .faq-section-087 .faq-question {
    font-size: 1.15rem;
  }

  .faq-section-087 .card-header {
    padding: 1.5rem 1.75rem 0.875rem 0.875rem;
  }

  .faq-section-087 .card-body {
    padding: 0 1.75rem 1.5rem 0.875rem;
  }
}

@media (max-width: 767px) {
  .faq-section-087 {
    padding: 60px 0;
  }

  .faq-section-087 .section-title {
    font-size: 1.875rem;
  }

  .faq-section-087 .section-subtitle {
    font-size: 1.25rem;
  }

  .faq-section-087 .section-description {
    font-size: 1rem;
  }

  .faq-section-087 .faq-card {
    padding-left: 0;
    padding-top: 56px;
    border-left: 2px solid var(--neutral-100);
    border-top: 4px solid var(--primary-500);
  }

  .faq-section-087 .faq-card:hover {
    border-top-color: var(--primary-700);
    transform: translateY(-4px);
  }

  .faq-section-087 .number-badge {
    left: 50%;
    top: 12px;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .faq-section-087 .faq-card:hover .number-badge {
    transform: translateX(-50%) scale(1.1);
  }

  .faq-section-087 .card-header {
    padding: 0 1.5rem 0.75rem;
  }

  .faq-section-087 .faq-question {
    font-size: 1.1rem;
  }

  .faq-section-087 .card-body {
    padding: 0 1.5rem 1.5rem;
  }

  .faq-section-087 .faq-answer {
    font-size: 0.95rem;
  }

  .faq-section-087 .faq-card {
    margin-bottom: 1rem;
  }
}





/* Gallery section */

.gallery-section-classic {
  background: var(--background-primary);
  position: relative;
  overflow: hidden;
  perspective: 1500px;
}

/* Depth Lines */
.gallery-section-classic .depth-line {
  position: absolute;
  height: 2px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary-300) 50%,
    transparent 100%
  );
  opacity: 0.1;
  z-index: 0;
}

.gallery-section-classic .line-1 {
  top: 20%;
}

.gallery-section-classic .line-2 {
  top: 50%;
}

.gallery-section-classic .line-3 {
  top: 80%;
}

/* Cascade Gallery Container */
.gallery-section-classic .cascade-gallery {
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
  padding: 3rem 0;
}

/* Cascade Layers */
.gallery-section-classic .cascade-layer {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  transform-style: preserve-3d;
}

/* 3D Depth Positioning */
.gallery-section-classic .layer-front {
  transform: translateZ(80px) scale(1.08);
}

.gallery-section-classic .layer-middle {
  transform: translateZ(0px) scale(1);
}

.gallery-section-classic .layer-back {
  transform: translateZ(-80px) scale(0.92);
}

/* Cascade Items */
.gallery-section-classic .cascade-item {
  flex: 0 0 auto;
  width: 280px;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-section-classic .cascade-item:hover {
  transform: translateZ(120px) scale(1.15);
  z-index: 100;
}

/* Item Box */
.gallery-section-classic .item-box {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--background-primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform-style: preserve-3d;
  transition: all 0.5s ease;
}

.gallery-section-classic .cascade-item:hover .item-box {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

/* Cascade Images */
.gallery-section-classic .cascade-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-section-classic .cascade-item:hover .cascade-image {
  transform: scale(1.15);
  filter: brightness(0.9);
}

/* Item Shadow (3D depth effect) */
.gallery-section-classic .item-shadow {
  position: absolute;
  bottom: -30px;
  left: 10%;
  width: 80%;
  height: 30px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.3) 0%,
    transparent 70%
  );
  transform: translateZ(-20px);
  opacity: 0.6;
  filter: blur(10px);
  transition: all 0.5s ease;
}

.gallery-section-classic .cascade-item:hover .item-shadow {
  opacity: 0.8;
  transform: translateZ(-40px) scale(1.2);
}

/* Item Overlay */
.gallery-section-classic .item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.88),
    rgba(var(--secondary-rgb), 0.82)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  transform: translateZ(10px);
}

.gallery-section-classic .cascade-item:hover .item-overlay {
  opacity: 1;
}

.gallery-section-classic .item-overlay i {
  font-size: 4rem;
  color: #ffffff;
  transform: rotateY(-90deg) scale(0);
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gallery-section-classic .cascade-item:hover .item-overlay i {
  transform: rotateY(0deg) scale(1);
}

/* Depth Icon */
.gallery-section-classic .depth-icon {
  position: absolute;
  bottom: 5%;
  right: 5%;
  opacity: 0.08;
  z-index: 0;
}

.gallery-section-classic .depth-icon i {
  font-size: 12rem;
  color: var(--primary-500);
  animation: depth-rotate 20s linear infinite;
}

@keyframes depth-rotate {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .gallery-section-classic .cascade-item {
    width: 260px;
  }
  
  .gallery-section-classic .item-box {
    height: 300px;
  }
  
  .gallery-section-classic .layer-front {
    transform: translateZ(60px) scale(1.06);
  }
  
  .gallery-section-classic .layer-back {
    transform: translateZ(-60px) scale(0.94);
  }
}

@media (max-width: 992px) {
  .gallery-section-classic {
    perspective: 1000px;
  }
  
  .gallery-section-classic .cascade-layer {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .gallery-section-classic .cascade-item {
    width: 240px;
  }
  
  .gallery-section-classic .item-box {
    height: 280px;
  }
  
  .gallery-section-classic .layer-front,
  .gallery-section-classic .layer-middle,
  .gallery-section-classic .layer-back {
    transform: translateZ(0) scale(1);
  }
  
  .gallery-section-classic .cascade-item:hover {
    transform: translateZ(40px) scale(1.08);
  }
}

@media (max-width: 768px) {
  .gallery-section-classic {
    perspective: none;
  }
  
  .gallery-section-classic .cascade-layer {
    gap: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .gallery-section-classic .cascade-item {
    width: 220px;
  }
  
  .gallery-section-classic .item-box {
    height: 260px;
  }
  
  .gallery-section-classic .cascade-item:hover {
    transform: scale(1.05);
  }
  
  .gallery-section-classic .item-shadow {
    display: none;
  }
  
  .gallery-section-classic .item-overlay i {
    font-size: 3rem;
    transform: scale(0);
  }
  
  .gallery-section-classic .cascade-item:hover .item-overlay i {
    transform: scale(1);
  }
}

@media (max-width: 576px) {
  .gallery-section-classic .cascade-layer {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .gallery-section-classic .cascade-item {
    width: 100%;
    max-width: 350px;
  }
  
  .gallery-section-classic .item-box {
    height: 300px;
  }
  
  .gallery-section-classic .depth-icon {
    display: none;
  }
}







/* Footer section */

.footer-standard {
  position: relative;
  padding: 70px 0 40px;
  background: linear-gradient(150deg, 
    color-mix(in srgb, var(--primary-700) 93%, transparent) 0%, 
    color-mix(in srgb, var(--primary-500) 88%, transparent) 60%, 
    color-mix(in srgb, var(--neutral-900) 90%, transparent) 100%), 
    url('HIK_assets/HIK_images/footer_bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  color: #ffffff;
}

.modern-overlay-standard {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--primary-700) 86%, transparent);
  z-index: 1;
}

.footer-standard .container {
  z-index: 2;
}

/* Modern Header */
.modern-header-standard {
  position: relative;
  background: color-mix(in srgb, var(--primary-500) 16%, transparent);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.modern-header-standard:hover {
  background: color-mix(in srgb, var(--primary-500) 20%, transparent);
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* Brand Block */
.brand-block-standard {
  display: flex;
  align-items: start;
  gap: 1.25rem;
}

.brand-icon-standard {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--primary-300) 30%, transparent), 
    color-mix(in srgb, var(--primary-500) 25%, transparent));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.brand-icon-standard i {
  font-size: 1.75rem;
  color: #ffffff;
}

.brand-name-standard {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.brand-text-standard {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

/* Compact Section */
.compact-section-standard {
  height: 100%;
}

.section-title-standard {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title-standard i {
  font-size: 1rem;
  color: color-mix(in srgb, var(--primary-300) 80%, #ffffff 20%);
}

/* Compact Links */
.compact-links-standard {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
}

.compact-links-standard li {
  margin: 0;
}

.compact-links-standard a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  padding: 0.4rem 0;
  transition: all 0.3s ease;
  position: relative;
}

.compact-links-standard a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.compact-links-standard a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.compact-links-standard a:hover::before {
  width: calc(100% - 8px);
}

/* Contact Compact */
.contact-compact-standard {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item-compact {
  display: flex;
  align-items: start;
  gap: 0.65rem;
  padding: 0.5rem 0;
}

.contact-item-compact i {
  font-size: 1rem;
  color: color-mix(in srgb, var(--primary-300) 80%, #ffffff 20%);
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item-compact span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Footer Bottom */
.modern-footer-bottom-standard {
  position: relative;
  padding-top: 2rem;
  margin-top: 2rem;
}

.modern-footer-bottom-standard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.25), 
    transparent);
}

.disclaimer-compact-standard {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

.copyright-compact-standard {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin: 0;
}

.modern-accent-line {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent, 
    color-mix(in srgb, var(--primary-300) 70%, #ffffff 30%), 
    transparent);
  border-radius: 10px;
}

/* Modern Particles */
.modern-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: color-mix(in srgb, var(--primary-300) 60%, #ffffff 40%);
  border-radius: 50%;
  opacity: 0.6;
  pointer-events: none;
  animation: particle-float 8s ease-in-out infinite;
}

.particle-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  top: 25%;
  right: 15%;
  animation-delay: 2s;
}

.particle-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

.particle-4 {
  bottom: 20%;
  right: 25%;
  animation-delay: 6s;
}

@keyframes particle-float {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) scale(1.2);
    opacity: 0.9;
  }
}

/* Modern Glow */
.modern-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.15;
}

.glow-left {
  background: color-mix(in srgb, var(--primary-300) 40%, transparent);
  top: 20%;
  left: -100px;
  animation: glow-pulse 5s ease-in-out infinite;
}

.glow-right {
  background: color-mix(in srgb, var(--primary-500) 40%, transparent);
  bottom: 15%;
  right: -100px;
  animation: glow-pulse 5s ease-in-out infinite reverse;
}

@keyframes glow-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.15;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.25;
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .footer-standard {
    padding: 60px 0 35px;
  }

  .modern-header-standard {
    padding: 2rem;
  }

  .brand-block-standard {
    margin-bottom: 2rem;
  }

  .brand-name-standard {
    font-size: 1.5rem;
  }

  .modern-footer-bottom-standard .text-lg-end {
    text-align: center !important;
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .footer-standard {
    padding: 50px 0 30px;
    background-attachment: scroll;
  }

  .modern-header-standard {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .brand-block-standard {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .brand-name-standard {
    font-size: 1.35rem;
  }

  .section-title-standard {
    justify-content: center;
  }

  .compact-links-standard {
    text-align: center;
  }

  .contact-item-compact {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .modern-particle,
  .modern-glow {
    display: none;
  }

  .disclaimer-compact-standard,
  .copyright-compact-standard {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .brand-icon-standard {
    width: 50px;
    height: 50px;
  }

  .brand-icon-standard i {
    font-size: 1.5rem;
  }
}





.additional-universal-section {
  position: relative;
  background: var(--surface-primary);
  overflow: hidden;
}

/* Header Styles */
.decorative-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-500);
  border-radius: 50%;
  box-shadow: 0 0 0 8px color-mix(in srgb, var(--primary-500) 15%, transparent);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--primary-500);
  line-height: 1.4;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* Card Styles */
.content-card {
  position: relative;
  background: var(--surface-secondary);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--neutral-100);
  overflow: hidden;
}

.content-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-300);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.content-card-large {
  background: linear-gradient(135deg, 
    var(--surface-secondary) 0%, 
    color-mix(in srgb, var(--primary-50) 50%, var(--surface-secondary) 50%) 100%);
}

.card-icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-500), color-mix(in srgb, var(--primary-700) 70%, var(--primary-500) 30%));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.content-card:hover .card-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.card-icon-wrapper i {
  font-size: 2rem;
  color: var(--light);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.card-decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, color-mix(in srgb, var(--primary-300) 20%, transparent) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Decorative Shapes */
.decorative-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.6;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, color-mix(in srgb, var(--primary-300) 15%, transparent), transparent);
  top: 10%;
  left: -100px;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, color-mix(in srgb, var(--primary-500) 10%, transparent), transparent);
  bottom: 15%;
  right: -80px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.25rem;
  }
  
  .content-card {
    padding: 1.5rem;
  }
  
  .card-icon-wrapper {
    width: 56px;
    height: 56px;
  }
  
  .card-icon-wrapper i {
    font-size: 1.75rem;
  }
}

@media (max-width: 767.98px) {
  .additional-universal-section {
    padding: 3rem 0;
  }
  
  .content-card {
    padding: 1.25rem;
  }
  
  .card-title {
    font-size: 1.25rem;
  }
}





/* Universal section */
/* Staggered card layout with organic shapes */

.add_wrap_modern {
  position: relative;
  padding: var(--space-section-y, 5rem) 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--primary-50, #ecfdf5) 50%, #ffffff 100%);
  overflow: hidden;
}

/* Organic header */
.add_wrap_modern .add_header_organic {
  position: relative;
  text-align: center;
  padding: var(--space-8, 2rem);
  margin-bottom: var(--space-12, 3rem);
}

.add_wrap_modern .organic_shape {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.08;
  animation: morph 8s ease-in-out infinite;
}

.add_wrap_modern .shape_left {
  background: var(--primary-500, #059669);
  top: -50px;
  left: 10%;
  animation-delay: 0s;
}

.add_wrap_modern .shape_right {
  background: var(--primary-300, #6ee7b7);
  bottom: -50px;
  right: 10%;
  animation-delay: 4s;
}

@keyframes morph {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(0deg);
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    transform: rotate(180deg);
  }
}

.add_wrap_modern .header_content {
  position: relative;
  z-index: 1;
}

.add_wrap_modern .eco_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-500, #059669) 0%, var(--primary-700, #047857) 100%);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.75rem;
  margin-bottom: var(--space-4, 1rem);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.25);
}

.add_wrap_modern .add_title {
  font-size: clamp(2rem, 4vw, 2.875rem);
  font-weight: 800;
  color: var(--text-primary, #1c1c1e);
  margin-bottom: var(--space-4, 1rem);
  line-height: 1.2;
}

.add_wrap_modern .add_subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--primary-500, #059669);
  margin-bottom: var(--space-6, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
}

.add_wrap_modern .add_description {
  font-size: 1.0625rem;
  color: var(--text-secondary, #44403c);
  line-height: 1.75;
  margin-top: var(--space-4, 1rem);
}

/* Staggered cards */
.add_wrap_modern .add_staggered_cards {
  margin-top: var(--space-10, 2.5rem);
}

.add_wrap_modern .stagger_card {
  position: relative;
  background: #ffffff;
  padding: var(--space-6, 1.5rem);
  border-radius: var(--radius-lg, 12px);
  border: 2px solid var(--primary-100, #d1fae5);
  box-shadow: var(--shadow-sm, 0 1px 2px 0 rgba(0, 0, 0, 0.05));
  transition: all 0.4s ease;
}

.add_wrap_modern .stagger_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(5, 150, 105, 0.15);
  border-color: var(--primary-500, #059669);
}

/* Card leaf accent */
.add_wrap_modern .card_leaf_accent {
  position: absolute;
  top: var(--space-4, 1rem);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-50, #ecfdf5);
  color: var(--primary-500, #059669);
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.add_wrap_modern .card_right .card_leaf_accent {
  right: var(--space-4, 1rem);
}

.add_wrap_modern .card_left .card_leaf_accent {
  left: var(--space-4, 1rem);
}

.add_wrap_modern .stagger_card:hover .card_leaf_accent {
  background: var(--primary-500, #059669);
  color: #ffffff;
  transform: scale(1.1) rotate(15deg);
}

/* Card content */
.add_wrap_modern .card_content_wrapper {
  padding-top: var(--space-8, 2rem);
}

.add_wrap_modern .add_elem_title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--text-primary, #1c1c1e);
  margin-bottom: var(--space-3, 0.75rem);
  line-height: 1.3;
}

.add_wrap_modern .add_elem_desc {
  font-size: 1rem;
  color: var(--text-secondary, #44403c);
  line-height: 1.65;
  margin: 0;
}

/* Highlight card (5th element) */
.add_wrap_modern .card_highlight {
  background: linear-gradient(135deg, var(--primary-50, #ecfdf5) 0%, #ffffff 100%);
  border: 3px solid var(--primary-300, #6ee7b7);
  padding: var(--space-8, 2rem);
  text-align: center;
}

.add_wrap_modern .card_highlight:hover {
  background: linear-gradient(135deg, var(--primary-100, #d1fae5) 0%, #ffffff 100%);
}

.add_wrap_modern .highlight_icon_cluster {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, var(--primary-500, #059669) 0%, var(--primary-700, #047857) 100%);
  color: #ffffff;
  border-radius: 50%;
  font-size: 2.25rem;
  margin-bottom: var(--space-6, 1.5rem);
  box-shadow: 0 12px 32px rgba(5, 150, 105, 0.3);
}

.add_wrap_modern .icon_pulse {
  position: absolute;
  width: 110px;
  height: 110px;
  border: 3px solid var(--primary-300, #6ee7b7);
  border-radius: 50%;
  animation: pulse-expand 2s ease-out infinite;
}

@keyframes pulse-expand {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.add_wrap_modern .card_center {
  margin: 0 auto;
}

.add_wrap_modern .card_center .card_content_wrapper {
  padding-top: 0;
}

.add_wrap_modern .card_center .add_elem_title {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .add_wrap_modern .organic_shape {
    display: none;
  }
  
  .add_wrap_modern .stagger_card {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  .add_wrap_modern .card_left .card_leaf_accent,
  .add_wrap_modern .card_right .card_leaf_accent {
    right: var(--space-4, 1rem);
    left: auto;
  }
}

@media (max-width: 767.98px) {
  .add_wrap_modern {
    padding: var(--space-10, 2.5rem) 0;
  }
  
  .add_wrap_modern .add_header_organic {
    padding: var(--space-4, 1rem);
    margin-bottom: var(--space-8, 2rem);
  }
  
  .add_wrap_modern .eco_badge {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
  
  .add_wrap_modern .stagger_card {
    padding: var(--space-4, 1rem);
  }
  
  .add_wrap_modern .card_highlight {
    padding: var(--space-6, 1.5rem);
  }
  
  .add_wrap_modern .card_leaf_accent {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  
  .add_wrap_modern .card_content_wrapper {
    padding-top: var(--space-6, 1.5rem);
  }
  
  .add_wrap_modern .highlight_icon_cluster {
    width: 72px;
    height: 72px;
    font-size: 1.75rem;
  }
  
  .add_wrap_modern .icon_pulse {
    width: 90px;
    height: 90px;
  }
}



.additional-universal-bold {
  background: var(--surface-primary);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.additional-universal-bold .header-line {
  width: 80px;
  height: 3px;
  background: var(--primary-500);
  margin: 0 auto 1.5rem;
}

.additional-universal-bold .section-header h1 {
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.additional-universal-bold .section-header h2 {
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 1px;
}

.additional-universal-bold .section-header p {
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto;
}

/* Features Grid */
.additional-universal-bold .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

/* Feature Box */
.additional-universal-bold .feature-box {
  transition: transform 0.3s ease;
}

.additional-universal-bold .feature-box:hover {
  transform: translateY(-8px);
}

/* Feature Frame */
.additional-universal-bold .feature-frame {
  background: var(--surface-secondary);
  border: 2px solid var(--neutral-300);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.4s ease;
}

.additional-universal-bold .feature-box:hover .feature-frame {
  border-color: var(--primary-500);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Corner Accents */
.additional-universal-bold .corner-accent {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 3px solid var(--primary-500);
  transition: all 0.4s ease;
}

.additional-universal-bold .corner-accent.top-left {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
}

.additional-universal-bold .corner-accent.top-right {
  top: -2px;
  right: -2px;
  border-left: none;
  border-bottom: none;
}

.additional-universal-bold .corner-accent.bottom-left {
  bottom: -2px;
  left: -2px;
  border-right: none;
  border-top: none;
}

.additional-universal-bold .corner-accent.bottom-right {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
}

.additional-universal-bold .feature-box:hover .corner-accent {
  width: 24px;
  height: 24px;
  border-color: var(--primary-700);
}

/* Feature Icon */
.additional-universal-bold .feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  transition: all 0.4s ease;
}

.additional-universal-bold .feature-box:hover .feature-icon {
  transform: rotate(45deg) scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Feature Content */
.additional-universal-bold .feature-content {
  text-align: center;
}

.additional-universal-bold .feature-content h3 {
  color: var(--text-primary);
  line-height: 1.4;
  letter-spacing: 0.5px;
}

.additional-universal-bold .feature-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Grid Pattern Background */
.additional-universal-bold .grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(var(--neutral-300) 1px, transparent 1px),
    linear-gradient(90deg, var(--neutral-300) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 991px) {
  .additional-universal-bold .section-header h1 {
    font-size: 2rem;
  }

  .additional-universal-bold .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .additional-universal-bold .feature-frame {
    padding: 2rem 1.5rem;
  }

  .additional-universal-bold .feature-icon {
    width: 64px;
    height: 64px;
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .additional-universal-bold .section-header h1 {
    font-size: 1.75rem;
  }

  .additional-universal-bold .section-header h2 {
    font-size: 1.1rem;
  }

  .additional-universal-bold .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .additional-universal-bold .feature-frame {
    padding: 1.75rem 1.25rem;
  }

  .additional-universal-bold .feature-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .additional-universal-bold .feature-content h3 {
    font-size: 1.1rem;
  }

  .additional-universal-bold .corner-accent {
    width: 12px;
    height: 12px;
  }

  .additional-universal-bold .feature-box:hover .corner-accent {
    width: 16px;
    height: 16px;
  }
}





/* Universal section */

.additional-universal-primary {
  position: relative;
  padding: 6rem 0;
  background: radial-gradient(ellipse at top, var(--primary-50) 0%, var(--neutral-0) 40%, var(--accent-50) 100%);
  overflow: hidden;
}

/* Section Header */
.additional-universal-primary .section-title {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.additional-universal-primary .section-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--primary-700);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.additional-universal-primary .section-description {
  font-size: 1.125rem;
  color: var(--neutral-700);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

/* Creative Line Divider */
.additional-universal-primary .creative-line-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 3.5rem 0 4rem;
}

.additional-universal-primary .line-segment {
  flex: 1;
  max-width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-400) 50%, transparent 100%);
}

.additional-universal-primary .center-diamond {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.additional-universal-primary .center-diamond i {
  font-size: 1.25rem;
  color: var(--neutral-0);
  transform: rotate(-45deg);
}

/* Mixed Content Grid */
.additional-universal-primary .mixed-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.additional-universal-primary .content-box.box-featured {
  grid-column: 1 / -1;
  grid-row: 1;
}

.additional-universal-primary .content-box.box-wide {
  grid-column: 1 / -1;
}

/* Content Box Base */
.additional-universal-primary .content-box {
  position: relative;
  background: var(--neutral-0);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--neutral-100);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.additional-universal-primary .content-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-300);
}

/* Featured Box */
.additional-universal-primary .box-featured {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--neutral-0) 100%);
  border: 3px solid var(--primary-200);
  padding: 3rem;
  text-align: center;
}

.additional-universal-primary .highlight-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
  color: var(--neutral-0);
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.additional-universal-primary .box-decoration {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0.1;
}

.additional-universal-primary .deco-top-left {
  top: 15px;
  left: 15px;
  border-top: 4px solid var(--primary-500);
  border-left: 4px solid var(--primary-500);
}

.additional-universal-primary .deco-bottom-right {
  bottom: 15px;
  right: 15px;
  border-bottom: 4px solid var(--accent-500);
  border-right: 4px solid var(--accent-500);
}

/* Featured Alt Box */
.additional-universal-primary .box-featured-alt {
  background: linear-gradient(135deg, var(--accent-50) 0%, var(--neutral-0) 100%);
  border: 2px solid var(--accent-200);
  grid-column: 1 / -1;
}

.additional-universal-primary .split-highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--accent-500) 100%);
}

/* Wide Box Layout */
.additional-universal-primary .wide-layout {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.additional-universal-primary .wide-icon {
  flex-shrink: 0;
}

.additional-universal-primary .wide-content {
  flex: 1;
}

.additional-universal-primary .wave-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-400), var(--accent-400), var(--primary-400));
  opacity: 0.3;
}

/* Icon Circles */
.additional-universal-primary .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.additional-universal-primary .icon-circle i {
  font-size: 2.25rem;
  color: var(--neutral-0);
}

.additional-universal-primary .circle-primary {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
}

.additional-universal-primary .circle-accent {
  background: linear-gradient(135deg, var(--accent-500), var(--accent-700));
}

.additional-universal-primary .circle-secondary {
  background: linear-gradient(135deg, var(--primary-600), var(--accent-600));
}

.additional-universal-primary .circle-gradient {
  background: linear-gradient(135deg, var(--accent-400), var(--primary-600));
}

.additional-universal-primary .box-standard .icon-circle {
  margin: 0 0 1.5rem 0;
}

.additional-universal-primary .box-wide .icon-circle {
  margin: 0;
}

/* Corner Accents */
.additional-universal-primary .corner-accent {
  position: absolute;
  width: 30px;
  height: 30px;
  opacity: 0.15;
}

.additional-universal-primary .accent-tl {
  top: 12px;
  left: 12px;
  border-top: 3px solid var(--primary-500);
  border-left: 3px solid var(--primary-500);
}

.additional-universal-primary .accent-br {
  bottom: 12px;
  right: 12px;
  border-bottom: 3px solid var(--accent-500);
  border-right: 3px solid var(--accent-500);
}

/* Content Typography */
.additional-universal-primary .content-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.additional-universal-primary .box-standard .content-title {
  font-size: 1.35rem;
}

.additional-universal-primary .content-description {
  font-size: 1rem;
  color: var(--neutral-700);
  line-height: 1.7;
  margin: 0;
}

/* Glow and Pulse Effects */
.additional-universal-primary .glow-effect {
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-200) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.additional-universal-primary .box-featured:hover .glow-effect {
  opacity: 0.3;
}

.additional-universal-primary .pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 3px solid var(--accent-300);
  border-radius: 50%;
  opacity: 0;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/* Abstract Shapes */
.additional-universal-primary .abstract-shape {
  position: absolute;
  opacity: 0.05;
  pointer-events: none;
}

.additional-universal-primary .shape-1 {
  width: 250px;
  height: 250px;
  background: var(--primary-400);
  border-radius: 35% 65% 70% 30% / 60% 40% 60% 40%;
  top: 10%;
  left: 5%;
  filter: blur(40px);
}

.additional-universal-primary .shape-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-400);
  border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
  top: 50%;
  right: 8%;
  filter: blur(50px);
}

.additional-universal-primary .shape-3 {
  width: 200px;
  height: 200px;
  background: var(--primary-300);
  border-radius: 45% 55% 55% 45% / 55% 45% 55% 45%;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(35px);
}

/* Dot Patterns */
.additional-universal-primary .dot-pattern {
  position: absolute;
  width: 120px;
  height: 120px;
  opacity: 0.08;
  pointer-events: none;
  background: radial-gradient(circle, var(--primary-500) 2px, transparent 2px);
  background-size: 18px 18px;
}

.additional-universal-primary .pattern-1 {
  top: 25%;
  right: 10%;
}

.additional-universal-primary .pattern-2 {
  bottom: 20%;
  left: 8%;
}

/* Responsive Design - Tablet */
@media (max-width: 991px) {
  .additional-universal-primary {
    padding: 4rem 0;
  }

  .additional-universal-primary .mixed-content-grid {
    gap: 1.5rem;
  }

  .additional-universal-primary .content-box {
    padding: 2rem;
  }

  .additional-universal-primary .box-featured {
    padding: 2.5rem;
  }

  .additional-universal-primary .wide-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .additional-universal-primary .box-wide .icon-circle {
    margin: 0 auto 1.5rem;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 767px) {
  .additional-universal-primary {
    padding: 3rem 0;
  }

  .additional-universal-primary .section-title {
    font-size: 1.75rem;
  }

  .additional-universal-primary .section-subtitle {
    font-size: 1.25rem;
  }

  .additional-universal-primary .section-description {
    font-size: 1rem;
  }

  .additional-universal-primary .creative-line-wrapper {
    gap: 1rem;
  }

  .additional-universal-primary .line-segment {
    max-width: 60px;
  }

  .additional-universal-primary .center-diamond {
    width: 45px;
    height: 45px;
  }

  .additional-universal-primary .center-diamond i {
    font-size: 1.1rem;
  }

  .additional-universal-primary .mixed-content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .additional-universal-primary .content-box.box-featured,
  .additional-universal-primary .content-box.box-wide,
  .additional-universal-primary .content-box.box-featured-alt {
    grid-column: 1;
  }

  .additional-universal-primary .content-box {
    padding: 1.75rem;
  }

  .additional-universal-primary .box-featured {
    padding: 2rem;
  }

  .additional-universal-primary .icon-circle {
    width: 70px;
    height: 70px;
  }

  .additional-universal-primary .icon-circle i {
    font-size: 2rem;
  }

  .additional-universal-primary .content-title {
    font-size: 1.35rem;
  }

  .additional-universal-primary .box-standard .content-title {
    font-size: 1.25rem;
  }

  .additional-universal-primary .content-description {
    font-size: 0.95rem;
  }

  .additional-universal-primary .abstract-shape,
  .additional-universal-primary .dot-pattern {
    display: none;
  }
}







/* Universal section */
/* Card grid layout with icon emphasis */

.add_wrap_secondary {
  position: relative;
  padding: var(--space-section-y, 5rem) 0;
  background: var(--surface-primary, #f8fafc);
  overflow: hidden;
}

/* Decorative elements */
.add_wrap_secondary .decorative-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.add_wrap_secondary .blob-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-500, #2563eb);
  top: -100px;
  right: -100px;
  filter: blur(60px);
}

.add_wrap_secondary .blob-2 {
  width: 500px;
  height: 500px;
  background: var(--primary-300, #93c5fd);
  bottom: -150px;
  left: -150px;
  filter: blur(80px);
}

.add_wrap_secondary .container {
  position: relative;
  z-index: 1;
}

/* Section header */
.add_wrap_secondary .add_header {
  margin-bottom: var(--space-12, 3rem);
}

.add_wrap_secondary .add_title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary, #0f172a);
  margin-bottom: var(--space-4, 1rem);
  line-height: 1.2;
}

.add_wrap_secondary .add_subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--text-accent, #2563eb);
  margin-bottom: var(--space-3, 0.75rem);
  font-weight: 600;
  line-height: 1.4;
}

.add_wrap_secondary .add_description {
  font-size: 1.0625rem;
  color: var(--text-secondary, #334155);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* Feature cards grid */
.add_wrap_secondary .add_features_grid {
  margin-top: var(--space-8, 2rem);
}

.add_wrap_secondary .add_feature_card {
  display: flex;
  gap: var(--space-4, 1rem);
  padding: var(--space-6, 1.5rem);
  background: #ffffff;
  border-radius: var(--radius-lg, 12px);
  border: 1px solid var(--border-light, #cbd5e1);
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: var(--shadow-sm, 0 1px 2px 0 rgba(0, 0, 0, 0.05));
}

.add_wrap_secondary .add_feature_card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
  border-color: var(--primary-300, #93c5fd);
}

/* Highlight card (5th element) */
.add_wrap_secondary .add_feature_card_highlight {
  background: linear-gradient(135deg, var(--primary-50, #eff6ff) 0%, #ffffff 100%);
  border: 2px solid var(--primary-300, #93c5fd);
}

.add_wrap_secondary .add_feature_card_highlight:hover {
  background: linear-gradient(135deg, var(--primary-100, #dbeafe) 0%, #ffffff 100%);
  border-color: var(--primary-500, #2563eb);
}

/* Icon wrapper */
.add_wrap_secondary .card_icon_wrapper {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-50, #eff6ff);
  border-radius: var(--radius-md, 10px);
  color: var(--primary-500, #2563eb);
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.add_wrap_secondary .add_feature_card:hover .card_icon_wrapper {
  background: var(--primary-500, #2563eb);
  color: #ffffff;
  transform: scale(1.1);
}

.add_wrap_secondary .add_feature_card_highlight .card_icon_wrapper {
  width: 80px;
  height: 80px;
  font-size: 2rem;
  background: var(--primary-100, #dbeafe);
}

/* Card content */
.add_wrap_secondary .card_content {
  flex: 1;
}

.add_wrap_secondary .add_elem_title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--text-primary, #0f172a);
  margin-bottom: var(--space-3, 0.75rem);
  line-height: 1.3;
}

.add_wrap_secondary .add_elem_desc {
  font-size: 1rem;
  color: var(--text-secondary, #334155);
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .add_wrap_secondary {
    padding: var(--space-10, 2.5rem) 0;
  }
  
  .add_wrap_secondary .add_feature_card {
    flex-direction: column;
    text-align: center;
  }
  
  .add_wrap_secondary .card_icon_wrapper {
    margin: 0 auto;
  }
  
  .add_wrap_secondary .add_header {
    margin-bottom: var(--space-8, 2rem);
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .add_wrap_secondary .add_feature_card {
    flex-direction: column;
    text-align: center;
  }
  
  .add_wrap_secondary .card_icon_wrapper {
    margin: 0 auto;
  }
}



.additional-universal-section {
  position: relative;
  background: var(--surface-primary);
  overflow: hidden;
}

/* Header Styles */
.header-decoration {
  margin-bottom: 1.5rem;
}

.decoration-line {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-300), var(--primary-500));
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--primary-500);
  line-height: 1.4;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Content Items */
.content-wrapper {
  position: relative;
  z-index: 2;
}

.content-row {
  position: relative;
}

.content-text {
  padding: 1rem 0;
}

.item-badge {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-300), var(--primary-500));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.content-row:hover .item-badge {
  transform: rotate(10deg) scale(1.1);
}

.item-badge i {
  font-size: 1.75rem;
  color: var(--light);
}

.item-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.item-description {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Image Placeholders */
.image-placeholder {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.content-row:hover .image-placeholder {
  transform: scale(1.02);
}

.placeholder-1 {
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--primary-300) 30%, var(--surface-secondary)), 
    color-mix(in srgb, var(--primary-500) 20%, var(--surface-secondary)));
}

.placeholder-2 {
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--primary-500) 25%, var(--surface-secondary)), 
    color-mix(in srgb, var(--primary-300) 35%, var(--surface-secondary)));
}

.placeholder-3 {
  background: linear-gradient(135deg, 
    var(--neutral-100), 
    color-mix(in srgb, var(--primary-300) 20%, var(--surface-secondary)));
}

.placeholder-4 {
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--primary-300) 20%, var(--surface-secondary)), 
    var(--neutral-100));
}

.placeholder-5 {
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--primary-500) 30%, var(--surface-secondary)), 
    color-mix(in srgb, var(--primary-300) 25%, var(--surface-secondary)));
}

.image-placeholder::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--light) 60%, transparent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Decorations */
.bg-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.decoration-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, color-mix(in srgb, var(--primary-300) 12%, transparent), transparent);
  top: 10%;
  right: -150px;
}

.decoration-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, color-mix(in srgb, var(--primary-500) 10%, transparent), transparent);
  top: 50%;
  left: -120px;
}

.decoration-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, color-mix(in srgb, var(--primary-300) 15%, transparent), transparent);
  bottom: 10%;
  right: -100px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.25rem;
  }
  
  .item-title {
    font-size: 1.5rem;
  }
  
  .image-placeholder {
    height: 300px;
    margin-bottom: 2rem;
  }
  
  .content-text {
    text-align: center;
  }
  
  .item-badge {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767.98px) {
  .additional-universal-section {
    padding: 3rem 0;
  }
  
  .image-placeholder {
    height: 250px;
  }
  
  .item-title {
    font-size: 1.375rem;
  }
}





/* Universal section */

.additional-universal-section.v-059 {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--surface-primary) 0%, color-mix(in srgb, var(--neutral-100) 50%, var(--surface-primary) 50%) 100%);
  overflow: hidden;
}

/* Section Header */
.v-059 .section-header {
  position: relative;
  z-index: 2;
}

.v-059 .header-line-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.v-059 .header-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--primary-500), var(--primary-700));
}

.v-059 .header-square {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
  box-shadow: 0 6px 24px color-mix(in srgb, var(--primary-500) 40%, transparent 60%);
}

.v-059 .header-square i {
  font-size: 36px;
  color: var(--light);
}

.v-059 .section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.v-059 .section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-500);
  margin-bottom: 20px;
  line-height: 1.4;
}

.v-059 .section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto;
}

/* List Container */
.v-059 .list-container {
  position: relative;
  z-index: 2;
}

/* List Item */
.v-059 .list-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 36px 0;
  transition: all 0.3s ease;
}

.v-059 .list-item:hover {
  transform: translateX(8px);
}

/* Item Number */
.v-059 .item-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--primary-500) 30%, transparent 70%);
  line-height: 1;
  min-width: 80px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.v-059 .item-number.large {
  font-size: 3rem;
  color: color-mix(in srgb, var(--primary-500) 50%, transparent 50%);
}

/* Item Icon */
.v-059 .item-icon {
  width: 72px;
  height: 72px;
  background: var(--light);
  border: 3px solid var(--primary-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.v-059 .list-item:hover .item-icon {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-color: var(--primary-700);
  transform: rotate(45deg);
}

.v-059 .item-icon i {
  font-size: 32px;
  color: var(--primary-500);
  transition: all 0.3s ease;
}

.v-059 .list-item:hover .item-icon i {
  color: var(--light);
  transform: rotate(-45deg);
}

.v-059 .item-icon.large {
  width: 88px;
  height: 88px;
}

.v-059 .item-icon.large i {
  font-size: 40px;
}

/* Item Content */
.v-059 .item-content {
  flex: 1;
  padding-top: 8px;
}

.v-059 .item-title {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.3;
}

.v-059 .item-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Item Separator */
.v-059 .item-separator {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--neutral-300), transparent);
}

/* Featured Item */
.v-059 .list-item.featured {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 20px;
  padding: 48px 40px;
  margin: 20px 0;
  position: relative;
}

.v-059 .list-item.featured:hover {
  transform: translateX(12px) scale(1.02);
}

.v-059 .list-item.featured .item-number {
  color: color-mix(in srgb, var(--light) 50%, transparent 50%);
}

.v-059 .list-item.featured .item-icon {
  background: color-mix(in srgb, var(--light) 25%, transparent 75%);
  border-color: var(--light);
  backdrop-filter: blur(10px);
}

.v-059 .list-item.featured .item-icon i {
  color: var(--light);
}

.v-059 .list-item.featured:hover .item-icon {
  background: var(--light);
  border-color: var(--light);
}

.v-059 .list-item.featured:hover .item-icon i {
  color: var(--primary-500);
}

.v-059 .list-item.featured .item-title {
  color: var(--light);
  font-size: 1.875rem;
}

.v-059 .list-item.featured .item-description {
  color: color-mix(in srgb, var(--light) 95%, transparent 5%);
  font-size: 1.0625rem;
}

.v-059 .featured-badge {
  position: absolute;
  top: -15px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.v-059 .featured-badge i {
  font-size: 24px;
  color: var(--primary-500);
}

.v-059 .item-separator.featured-sep {
  background: linear-gradient(to right, color-mix(in srgb, var(--light) 50%, transparent 50%), transparent);
}

/* Background Decorations */
.v-059 .bg-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.v-059 .deco-grid {
  position: absolute;
  width: 250px;
  height: 250px;
  background-image: 
    linear-gradient(to right, color-mix(in srgb, var(--neutral-300) 30%, transparent 70%) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--neutral-300) 30%, transparent 70%) 1px, transparent 1px);
  background-size: 25px 25px;
  opacity: 0.5;
}

.v-059 .deco-grid.grid-1 {
  top: 10%;
  left: 5%;
}

.v-059 .deco-grid.grid-2 {
  bottom: 15%;
  right: 5%;
}

.v-059 .deco-line {
  position: absolute;
  width: 3px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--primary-300), transparent);
  opacity: 0.3;
}

.v-059 .deco-line.line-v1 {
  top: 25%;
  left: 10%;
}

.v-059 .deco-line.line-v2 {
  bottom: 20%;
  right: 15%;
}

/* Responsive Design */
@media (max-width: 991px) {
  .v-059 {
    padding: 80px 0;
  }

  .v-059 .section-title {
    font-size: 2.25rem;
  }

  .v-059 .section-subtitle {
    font-size: 1.25rem;
  }

  .v-059 .list-item {
    gap: 24px;
    padding: 32px 0;
  }

  .v-059 .list-item.featured {
    padding: 40px 32px;
  }

  .v-059 .item-number {
    font-size: 2rem;
    min-width: 60px;
  }

  .v-059 .item-number.large {
    font-size: 2.5rem;
  }

  .v-059 .item-icon {
    width: 64px;
    height: 64px;
  }

  .v-059 .item-icon i {
    font-size: 28px;
  }

  .v-059 .item-icon.large {
    width: 76px;
    height: 76px;
  }

  .v-059 .item-icon.large i {
    font-size: 34px;
  }

  .v-059 .item-title {
    font-size: 1.5rem;
  }

  .v-059 .list-item.featured .item-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .v-059 {
    padding: 60px 0;
  }

  .v-059 .section-title {
    font-size: 1.875rem;
  }

  .v-059 .section-subtitle {
    font-size: 1.125rem;
  }

  .v-059 .section-description {
    font-size: 1rem;
  }

  .v-059 .header-line-group {
    gap: 20px;
  }

  .v-059 .header-line {
    width: 50px;
  }

  .v-059 .header-square {
    width: 64px;
    height: 64px;
  }

  .v-059 .header-square i {
    font-size: 28px;
  }

  .v-059 .list-item {
    flex-direction: column;
    gap: 20px;
    padding: 28px 0;
    align-items: center;
    text-align: center;
  }

  .v-059 .list-item.featured {
    padding: 32px 24px;
  }

  .v-059 .item-number {
    min-width: auto;
  }

  .v-059 .item-icon {
    width: 56px;
    height: 56px;
  }

  .v-059 .item-icon i {
    font-size: 24px;
  }

  .v-059 .item-icon.large {
    width: 64px;
    height: 64px;
  }

  .v-059 .item-icon.large i {
    font-size: 28px;
  }

  .v-059 .item-title {
    font-size: 1.25rem;
  }

  .v-059 .list-item.featured .item-title {
    font-size: 1.5rem;
  }

  .v-059 .featured-badge {
    right: 24px;
  }
}





/* Universal section */
/* Theme: professional-blue-01 */

.add_wrap {
  padding: var(--section-py) 0;
  background: var(--neutral-50);
  position: relative;
}

/* Header Styles */
.add_header {
  margin-bottom: var(--space-8);
}

.add_title {
  font-family: var(--app_section_title);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.add_subtitle {
  font-family: var(--style_body_large);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--primary-500);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

.add_description {
  font-family: var(--unique_body_base);
  font-size: 1rem;
  color: var(--text-body);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Elements List */
.add_elements_list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.add_element {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-5);
  background: white;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary-500);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.add_element:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.add_elem_number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600, var(--primary-500)));
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
}

.add_elem_content {
  flex: 1;
}

.add_elem_title {
  font-family: var(--style_body_large);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.add_elem_desc {
  font-family: var(--unique_body_base);
  font-size: 0.9375rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .add_wrap {
    padding: var(--space-8) 0;
  }
  
  .add_element {
    flex-direction: column;
    gap: var(--space-3);
    padding: var(--space-4);
  }
  
  .add_element:hover {
    transform: translateY(-4px);
  }
  
  .add_elem_number {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
  }
  
  .add_elem_title {
    font-size: 1.125rem;
  }
}








/* Universal section */
/* Theme: modern-green-01 */

.additional-universal-section {
  position: relative;
  background: var(--light);
  overflow: hidden;
}

/* Section Header */
.section-header {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
}

.header-accent-line {
  width: 80px;
  height: 4px;
  background: var(--primary-500);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-500);
  line-height: 1.4;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 750px;
}

/* Content Items */
.content-wrapper {
  position: relative;
  z-index: 1;
}

.content-item {
  position: relative;
  padding: 1.5rem 0;
}

.content-text {
  position: relative;
  padding: 2rem;
  background: var(--surface-primary);
  border-radius: 12px;
  border-left: 4px solid var(--primary-500);
  transition: all 0.3s ease;
}

.content-item:hover .content-text {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.item-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-100);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.content-item:hover .item-number {
  color: var(--primary-300);
}

.item-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.item-description {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Visual Placeholder */
.content-visual {
  position: relative;
  padding: 1rem;
}

.visual-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--surface-secondary) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-100);
  transition: all 0.3s ease;
}

.content-item:hover .visual-placeholder {
  transform: scale(1.05);
  border-color: var(--primary-300);
}

.visual-placeholder i {
  font-size: 4rem;
  color: var(--primary-500);
  opacity: 0.7;
}

/* Decorative Elements */
.decorative-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--primary-100);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: 3%;
}

.decorative-line {
  position: absolute;
  background: var(--primary-100);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.line-1 {
  width: 2px;
  height: 60%;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 2.25rem;
  }

  .section-subtitle {
    font-size: 1.25rem;
  }

  .item-title {
    font-size: 1.5rem;
  }

  .content-text {
    padding: 1.5rem;
  }

  .item-number {
    font-size: 2.5rem;
  }

  .visual-placeholder i {
    font-size: 3rem;
  }

  .line-1 {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.125rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .content-item {
    padding: 1rem 0;
  }

  .content-text {
    padding: 1.25rem;
  }

  .item-title {
    font-size: 1.375rem;
  }

  .item-description {
    font-size: 1rem;
  }

  .decorative-circle {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .additional-universal-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .section-header {
    margin-bottom: 2rem !important;
  }

  .item-number {
    font-size: 2rem;
  }

  .visual-placeholder {
    aspect-ratio: 16/9;
  }

  .visual-placeholder i {
    font-size: 2.5rem;
  }
}





/* Universal section */

.additional-universal-section.v-044 {
  padding: 80px 0;
  background: var(--surface-primary);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.additional-universal-section.v-044 .section-header {
  position: relative;
  z-index: 2;
}

.additional-universal-section.v-044 .header-badge {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--primary-500) 30%, transparent 70%);
}

.additional-universal-section.v-044 .header-badge i {
  font-size: 36px;
  color: var(--light);
}

.additional-universal-section.v-044 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.additional-universal-section.v-044 .section-subtitle {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--primary-500);
  margin-bottom: 20px;
  line-height: 1.3;
}

.additional-universal-section.v-044 .section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Timeline Wrapper */
.additional-universal-section.v-044 .timeline-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.additional-universal-section.v-044 .timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-300), var(--primary-500), var(--primary-300));
  transform: translateX(-50%);
  z-index: 1;
}

/* Timeline Items */
.additional-universal-section.v-044 .timeline-item {
  position: relative;
  margin-bottom: 60px;
  z-index: 2;
}

.additional-universal-section.v-044 .timeline-item:last-child {
  margin-bottom: 0;
}

.additional-universal-section.v-044 .timeline-marker {
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  z-index: 3;
}

.additional-universal-section.v-044 .marker-dot {
  width: 20px;
  height: 20px;
  background: var(--primary-500);
  border: 4px solid var(--surface-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary-300) 30%, transparent 70%);
  position: relative;
  z-index: 2;
}

.additional-universal-section.v-044 .marker-dot.final {
  background: var(--primary-700);
  width: 24px;
  height: 24px;
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--primary-500) 40%, transparent 60%);
}

.additional-universal-section.v-044 .marker-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary-300);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

/* Timeline Content */
.additional-universal-section.v-044 .timeline-content {
  position: relative;
}

.additional-universal-section.v-044 .content-wrapper {
  width: calc(50% - 40px);
  padding: 28px;
  background: var(--surface-primary);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid color-mix(in srgb, var(--primary-300) 25%, transparent 75%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.additional-universal-section.v-044 .content-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-500);
}

.additional-universal-section.v-044 .content-wrapper.left {
  margin-right: auto;
}

.additional-universal-section.v-044 .content-wrapper.right {
  margin-left: auto;
}

.additional-universal-section.v-044 .content-wrapper.featured {
  background: linear-gradient(135deg, var(--primary-50), var(--surface-primary));
  border-color: var(--primary-500);
}

.additional-universal-section.v-044 .icon-badge {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.additional-universal-section.v-044 .content-wrapper:hover .icon-badge {
  transform: rotate(5deg) scale(1.05);
}

.additional-universal-section.v-044 .icon-badge.featured {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
}

.additional-universal-section.v-044 .icon-badge i {
  font-size: 28px;
  color: var(--light);
}

.additional-universal-section.v-044 .icon-badge.featured i {
  font-size: 32px;
}

.additional-universal-section.v-044 .timeline-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.additional-universal-section.v-044 .timeline-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Decorative Elements */
.additional-universal-section.v-044 .decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.additional-universal-section.v-044 .floating-shape {
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary-300) 8%, transparent 92%), transparent);
}

.additional-universal-section.v-044 .floating-shape.shape-1 {
  width: 250px;
  height: 250px;
  top: 10%;
  right: 5%;
  animation: float 20s ease-in-out infinite;
}

.additional-universal-section.v-044 .floating-shape.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: 8%;
  animation: float 25s ease-in-out infinite reverse;
}

.additional-universal-section.v-044 .floating-shape.shape-3 {
  width: 180px;
  height: 180px;
  top: 50%;
  left: 10%;
  animation: float 30s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .additional-universal-section.v-044 {
    padding: 60px 0;
  }

  .additional-universal-section.v-044 .section-title {
    font-size: 2rem;
  }

  .additional-universal-section.v-044 .section-subtitle {
    font-size: 1.25rem;
  }

  .additional-universal-section.v-044 .timeline-line {
    left: 30px;
  }

  .additional-universal-section.v-044 .timeline-marker {
    left: 30px;
  }

  .additional-universal-section.v-044 .content-wrapper {
    width: calc(100% - 80px);
    margin-left: 80px !important;
  }
}

@media (max-width: 767.98px) {
  .additional-universal-section.v-044 {
    padding: 40px 0;
  }

  .additional-universal-section.v-044 .section-title {
    font-size: 1.75rem;
  }

  .additional-universal-section.v-044 .section-subtitle {
    font-size: 1.125rem;
  }

  .additional-universal-section.v-044 .header-badge {
    width: 64px;
    height: 64px;
  }

  .additional-universal-section.v-044 .header-badge i {
    font-size: 32px;
  }

  .additional-universal-section.v-044 .content-wrapper {
    padding: 20px;
  }

  .additional-universal-section.v-044 .icon-badge {
    width: 48px;
    height: 48px;
  }

  .additional-universal-section.v-044 .icon-badge i {
    font-size: 24px;
  }
}








/* Live Chat FAQ Widget - Rounded Style - Enhanced Specificity */
div.website-livechat-widget,
.website-livechat-widget {
    position: fixed !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 320px !important;
    background: #2c3e50 !important;
    border-radius: 25px !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.2) !important;
    z-index: 999999 !important;
    color: #ffffff !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    text-align: left !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(255,255,255,0.1) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

div.website-livechat-widget div.website-livechat-header,
.website-livechat-widget .website-livechat-header {
    padding: 18px 22px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-radius: 25px 25px 0 0 !important;
    background: transparent !important;
    color: #ffffff !important;
    margin: 0 !important;
}

div.website-livechat-widget h5.website-livechat-title,
div.website-livechat-widget .website-livechat-title,
.website-livechat-widget .website-livechat-title,
.website-livechat-title {
    font-size: 17px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    background: transparent !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    text-shadow: none !important;
    line-height: 1.2 !important;
    font-family: inherit !important;
}

div.website-livechat-widget button.website-livechat-toggle,
div.website-livechat-widget .website-livechat-toggle,
.website-livechat-widget .website-livechat-toggle {
    background: none !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 20px !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    padding: 8px !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    margin: 0 !important;
    text-decoration: none !important;
    min-width: 36px !important;
    min-height: 36px !important;
}

div.website-livechat-widget button.website-livechat-toggle:hover,
.website-livechat-widget .website-livechat-toggle:hover {
    background: rgba(255,255,255,0.1) !important;
    transform: scale(1.1) !important;
    color: #ffffff !important;
}

div.website-livechat-widget button.website-livechat-toggle i,
div.website-livechat-widget .website-livechat-toggle i,
.website-livechat-widget .website-livechat-toggle i {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    font-family: "Font Awesome 6 Free" !important;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

div.website-livechat-widget div.website-livechat-content,
.website-livechat-widget .website-livechat-content {
    padding: 18px 22px 22px !important;
    max-height: 420px !important;
    overflow-y: auto !important;
    background: transparent !important;
    color: #ffffff !important;
    margin: 0 !important;
}

div.website-livechat-widget div.website-livechat-content.hidden,
.website-livechat-widget .website-livechat-content.hidden {
    display: none !important;
}

div.website-livechat-widget div.website-faq-item,
.website-livechat-widget .website-faq-item {
    margin-bottom: 8px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    padding: 12px !important;
    border-radius: 10px !important;
    background: rgba(255,255,255,0.05) !important;
    color: #ffffff !important;
    padding-bottom: 14px !important;
}

div.website-livechat-widget div.website-faq-item:last-child,
.website-livechat-widget .website-faq-item:last-child {
    margin-bottom: 0 !important;
}

div.website-livechat-widget div.website-faq-question,
.website-livechat-widget .website-faq-question {
    font-size: 15px !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
    margin-top: 0 !important;
    color: #ffffff !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    text-align: left !important;
    line-height: 1.4 !important;
    font-family: inherit !important;
    text-decoration: none !important;
}

div.website-livechat-widget div.website-faq-question:hover,
.website-livechat-widget .website-faq-question:hover {
    color: #74b9ff !important;
    background: transparent !important;
}

div.website-livechat-widget div.website-faq-question span,
.website-livechat-widget .website-faq-question span {
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

div.website-livechat-widget div.website-faq-answer,
.website-livechat-widget .website-faq-answer {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: rgba(255,255,255,0.85) !important;
    display: none !important;
    padding-top: 8px !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    text-align: left !important;
    font-family: inherit !important;
}

div.website-livechat-widget div.website-faq-answer.show,
.website-livechat-widget .website-faq-answer.show {
    display: block !important;
    color: rgba(255,255,255,0.85) !important;
}

div.website-livechat-widget i.website-faq-icon,
.website-livechat-widget .website-faq-icon {
    transition: transform 0.3s ease !important;
    font-size: 14px !important;
    color: #74b9ff !important;
    font-weight: 900 !important;
    font-family: "Font Awesome 6 Free" !important;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

div.website-livechat-widget i.website-faq-icon.rotated,
.website-livechat-widget .website-faq-icon.rotated {
    transform: rotate(180deg) !important;
    color: #74b9ff !important;
}

@media (max-width: 768px) {
    div.website-livechat-widget,
    .website-livechat-widget {
        display: none !important;
    }
}



/* Google Maps Section - Dark Style */
.website-google-maps-section {
    padding: 60px 0 !important;
    background: #1a1a1a !important;
    margin: 0 !important;
    border-top: 1px solid #333333 !important;
    border-bottom: 1px solid #333333 !important;
    position: relative !important;
    z-index: 1 !important;
    pointer-events: auto !important;
}

.website-maps-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

.website-maps-title {
    text-align: center !important;
    font-size: 30px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    color: #ffffff !important;
    font-family: inherit !important;
}

.website-maps-subtitle {
    text-align: center !important;
    font-size: 16px !important;
    color: #cccccc !important;
    margin-bottom: 40px !important;
    font-family: inherit !important;
}

.website-google-map {
    width: 100% !important;
    height: 420px !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5) !important;
    border: 2px solid #333333 !important;
}

@media (max-width: 768px) {
    .website-google-maps-section {
        padding: 40px 0 !important;
    }
    
    .website-maps-title {
        font-size: 24px !important;
    }
    
    .website-google-map {
        height: 300px !important;
    }
}



/* CTA Section - Soft Pastel Style */
.website-cta-section {
    padding: 55px 0 !important;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%) !important;
    color: #5d4037 !important;
    text-align: center !important;
    margin: 0 !important;
    position: relative !important;
    z-index: 1 !important;
    pointer-events: auto !important;
}

.website-cta-container {
    max-width: 700px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.website-cta-title {
    font-size: 28px !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    color: #5d4037 !important;
    font-family: inherit !important;
}

.website-cta-subtitle {
    font-size: 16px !important;
    margin-bottom: 32px !important;
    color: #6d4c41 !important;
    font-family: inherit !important;
}

.website-cta-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 16px 32px !important;
    background: rgba(255,255,255,0.7) !important;
    color: #5d4037 !important;
    text-decoration: none !important;
    border-radius: 30px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(93,64,55,0.2) !important;
}

.website-cta-button:hover {
    background: rgba(255,255,255,0.9) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(93,64,55,0.3) !important;
    color: #5d4037 !important;
    text-decoration: none !important;
}

.website-cta-phone-icon {
    font-size: 18px !important;
}

@media (max-width: 768px) {
    .website-cta-section {
        padding: 45px 0 !important;
    }
    
    .website-cta-title {
        font-size: 24px !important;
    }
}



/* Security Badges - Bold Style */
.website-security-badges {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 30px 0 !important;
    flex-wrap: wrap !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-top: none !important;
    border-bottom: none !important;
}

.website-security-badge {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 18px !important;
    background: rgba(255,255,255,0.95) !important;
    border-radius: 25px !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    text-decoration: none !important;
    color: #333333 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
}

.website-security-badge:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25) !important;
    color: #333333 !important;
    text-decoration: none !important;
    background: white !important;
}

.website-security-badge-icon {
    font-size: 18px !important;
    color: #28a745 !important;
}

.website-security-badge.ssl .website-security-badge-icon {
    color: #28a745 !important;
}

.website-security-badge.payment .website-security-badge-icon {
    color: #007bff !important;
}

.website-security-badge.privacy .website-security-badge-icon {
    color: #6c757d !important;
}

.website-security-badge.support .website-security-badge-icon {
    color: #17a2b8 !important;
}

@media (max-width: 768px) {
    .website-security-badges {
        gap: 12px !important;
        padding: 25px 10px !important;
    }
    
    .website-security-badge {
        font-size: 12px !important;
        padding: 10px 15px !important;
    }
}



/* Floating Decorative Icons - Pulse Animation */
.website-floating-icons {
    position: relative !important;
    overflow: hidden !important;
}

.website-floating-icon {
    position: absolute !important;
    font-size: 22px !important;
    color: rgba(0,0,0,0.06) !important;
    z-index: 1 !important;
    pointer-events: none !important;
    animation: websiteFloatAnimationPulse 6s ease-in-out infinite !important;
}

.website-floating-icon.variant-1 {
    top: 15% !important;
    right: 8% !important;
    animation-delay: 0s !important;
}

.website-floating-icon.variant-2 {
    top: 55% !important;
    right: 5% !important;
    animation-delay: 2s !important;
    font-size: 18px !important;
}

.website-floating-icon.variant-3 {
    top: 35% !important;
    left: 6% !important;
    animation-delay: 4s !important;
    font-size: 26px !important;
}

@keyframes websiteFloatAnimationPulse {
    0%, 100% {
        transform: scale(1) !important;
        opacity: 0.25 !important;
    }
    50% {
        transform: scale(1.15) !important;
        opacity: 0.55 !important;
    }
}

@media (max-width: 768px) {
    .website-floating-icon {
        display: none !important;
    }
}



/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}



/* Organization Social Links */
.org-social-links {
    margin: 25px 0;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.org-social-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary, #333);
}

.org-social-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.org-social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.org-social-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: white;
    text-decoration: none;
}

/* Organization Social Networks Colors */
.org-facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.org-instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.org-linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.org-x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.org-x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.org-x-link i {
    display: none;
}

.org-youtube-link {
    background: linear-gradient(135deg, #ff0000, #ff4444);
}

.org-medium-link {
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

.org-tiktok-link {
    background: linear-gradient(135deg, #fe2c55, #25f4ee);
}

.org-pinterest-link {
    background: linear-gradient(135deg, #bd081c, #e60023);
}

.org-telegram-link {
    background: linear-gradient(135deg, #0088cc, #229ed9);
}

.org-discord-link {
    background: linear-gradient(135deg, #5865f2, #7289da);
}

@media (max-width: 768px) {
    .org-social-grid {
        gap: 8px;
    }
    
    .org-social-link {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .org-social-title {
        font-size: 16px;
    }
}



/* Newsletter Form - Card Style */
.newsletter-section {
    margin: 30px 0;
    padding: 0;
}

.newsletter-card {
    max-width: 450px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.newsletter-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px;
    text-align: center;
    color: white;
}

.newsletter-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
}

.newsletter-subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
}

.newsletter-body {
    padding: 25px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.newsletter-button {
    padding: 12px 20px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.newsletter-button:hover {
    background: #5a6fd8;
    transform: translateY(-1px);
}

.newsletter-success {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background: #d1f2eb;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
    color: #065f46;
    text-align: center;
    font-size: 14px;
}

.newsletter-success.show {
    display: block;
}

@media (max-width: 768px) {
    .newsletter-header {
        padding: 20px;
    }
    
    .newsletter-body {
        padding: 20px;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
}


/* Cookie Manager theme (auto-injected) */
/**
 * САЙТ-СПЕЦИФИЧНЫЕ СТИЛИ
 * Тема: rounded
 * Toggle: 8
 * Содержит только стили для выбранной темы
 * Сгенерировано автоматически - НЕ РЕДАКТИРОВАТЬ ВРУЧНУЮ
 */

/**
 * OptimizedCookieManager Styles
 * Уникальные классы с префиксом ocm- для избежания конфликтов
 * Все стили с !important для гарантированного применения
 */

/* ===== БАЗОВЫЕ СТИЛИ ===== */
.ocm-banner {
    position: fixed !important;
    z-index: 999999 !important;
    max-width: 400px !important;
    min-width: 320px !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #333333 !important;
    transform: translateY(100px) !important;
    opacity: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid #e5e5e5 !important;
    overflow: hidden !important;
}

.ocm-banner.ocm-show {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* ===== ПОЗИЦИОНИРОВАНИЕ ===== */
.ocm-position-bottom-right {
    bottom: 20px !important;
    right: 20px !important;
}

.ocm-position-bottom-left {
    bottom: 20px !important;
    left: 20px !important;
}

.ocm-position-bottom-center {
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(100px) !important;
}

.ocm-position-bottom-center.ocm-show {
    transform: translateX(-50%) translateY(0) !important;
}

.ocm-position-top-right {
    top: 20px !important;
    right: 20px !important;
    transform: translateY(-100px) !important;
}

.ocm-position-top-right.ocm-show {
    transform: translateY(0) !important;
}

/* ===== СОДЕРЖИМОЕ БАННЕРА ===== */
.ocm-banner-content,
.ocm-settings {
    padding: 24px !important;
}

.ocm-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 16px !important;
}

.ocm-title {
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
}

.ocm-close {
    background: none !important;
    border: none !important;
    font-size: 24px !important;
    color: #666666 !important;
    cursor: pointer !important;
    padding: 0 !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
}

.ocm-close:hover {
    background: #f5f5f5 !important;
    color: #333333 !important;
}

.ocm-description {
    margin: 0 0 20px 0 !important;
    color: #666666 !important;
    line-height: 1.6 !important;
}

.ocm-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.ocm-btn {
    padding: 12px 20px !important;
    border-radius: 8px !important;
    border: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-align: center !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-family: inherit !important;
}

.ocm-btn-accept {
    background: #007bff !important;
    color: #ffffff !important;
}

.ocm-btn-accept:hover {
    background: #0056b3 !important;
    transform: translateY(-1px) !important;
}

.ocm-btn-reject {
    background: #6c757d !important;
    color: #ffffff !important;
}

.ocm-btn-reject:hover {
    background: #545b62 !important;
    transform: translateY(-1px) !important;
}

.ocm-btn-customize {
    background: transparent !important;
    color: #007bff !important;
    border: 2px solid #007bff !important;
}

.ocm-btn-customize:hover {
    background: #007bff !important;
    color: #ffffff !important;
}

.ocm-btn-save {
    background: #28a745 !important;
    color: #ffffff !important;
}

.ocm-btn-save:hover {
    background: #1e7e34 !important;
    transform: translateY(-1px) !important;
}

.ocm-back {
    background: none !important;
    border: none !important;
    color: #007bff !important;
    cursor: pointer !important;
    font-size: 14px !important;
    padding: 5px 10px !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
    font-family: inherit !important;
}

.ocm-back:hover {
    background: #f8f9fa !important;
}

/* ===== НАСТРОЙКИ COOKIE ===== */
.ocm-category {
    margin-bottom: 20px !important;
    padding: 16px !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
    border: 1px solid #e9ecef !important;
}

.ocm-category-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 8px !important;
}

.ocm-category-title {
    font-weight: 500 !important;
    color: #1a1a1a !important;
    font-size: 15px !important;
}

.ocm-category-desc {
    margin: 0 !important;
    color: #666666 !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
}

/* ===== ПЕРЕКЛЮЧАТЕЛИ ===== */
.ocm-switch {
    position: relative !important;
    display: inline-block !important;
    width: 50px !important;
    height: 24px !important;
}

.ocm-switch input {
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

.ocm-slider {
    position: absolute !important;
    cursor: pointer !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-color: #ccc !important;
    border-radius: 24px !important;
    transition: all 0.3s ease !important;
}

.ocm-slider:before {
    position: absolute !important;
    content: "" !important;
    height: 18px !important;
    width: 18px !important;
    left: 3px !important;
    bottom: 3px !important;
    background-color: white !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

input:checked + .ocm-slider {
    background-color: #007bff !important;
}

input:checked + .ocm-slider:before {
    transform: translateX(26px) !important;
}

input:disabled + .ocm-slider {
    background-color: #28a745 !important;
    opacity: 0.7 !important;
    cursor: not-allowed !important;
}

/* ===== КНОПКА ПЕРЕКЛЮЧЕНИЯ - БАЗОВЫЕ СТИЛИ ===== */
.ocm-toggle {
    position: fixed !important;
    width: 50px !important;
    height: 50px !important;
    border: none !important;
    color: white !important;
    font-size: 20px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    z-index: 999998 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: inherit !important;
}

/* ===== ПОЗИЦИОНИРОВАНИЕ TOGGLE КНОПКИ ===== */
.ocm-toggle.ocm-toggle-position-bottom-right {
    bottom: 20px !important;
    right: 20px !important;
}

.ocm-toggle.ocm-toggle-position-bottom-left {
    bottom: 20px !important;
    left: 20px !important;
}

.ocm-toggle.ocm-toggle-position-top-right {
    top: 20px !important;
    right: 20px !important;
}

.ocm-toggle.ocm-toggle-position-top-left {
    top: 20px !important;
    left: 20px !important;
}

.ocm-toggle.ocm-toggle-position-center-left {
    top: 50% !important;
    left: 20px !important;
    transform: translateY(-50%) !important;
}

.ocm-toggle.ocm-toggle-position-center-right {
    top: 50% !important;
    right: 20px !important;
    transform: translateY(-50%) !important;
}

/* ===== TOGGLE СТИЛЬ 8: КОРПОРАТИВНЫЙ ===== */
.ocm-toggle.ocm-toggle-style-8 {
    border-radius: 6px !important;
    background: #2c3e50 !important;
    border: 2px solid #34495e !important;
    width: 48px !important;
    height: 48px !important;
    font-weight: bold !important;
}

.ocm-toggle.ocm-toggle-style-8:hover {
    background: #34495e !important;
    border-color: #3498db !important;
    transform: translateY(-1px) !important;
}

/* ===== ДОПОЛНИТЕЛЬНЫЕ ЭЛЕМЕНТЫ ===== */
.ocm-settings-buttons {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 20px !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.ocm-policy-link {
    color: #007bff !important;
    text-decoration: none !important;
    font-size: 13px !important;
    border-bottom: 1px solid transparent !important;
    transition: border-color 0.2s ease !important;
}

.ocm-policy-link:hover {
    border-bottom-color: #007bff !important;
}

/* ===== ТЕМА: ROUNDED ===== */
.ocm-theme-rounded {
    border-radius: 24px !important;
    background: #ffffff !important;
    border: 2px solid #f0f0f0 !important;
}

.ocm-theme-rounded .ocm-btn {
    border-radius: 20px !important;
    padding: 14px 24px !important;
}

.ocm-theme-rounded .ocm-btn-accept {
    background: #ff6b6b !important;
}

.ocm-theme-rounded .ocm-btn-accept:hover {
    background: #ff5252 !important;
}

.ocm-theme-rounded .ocm-category {
    border-radius: 16px !important;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 480px) {
    .ocm-banner {
        max-width: calc(100vw - 40px) !important;
        min-width: calc(100vw - 40px) !important;
    }
    
    .ocm-buttons {
        flex-direction: column !important;
    }
    
    .ocm-settings-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    .ocm-category-header {
        flex-wrap: wrap !important;
    }
}

/* ===== АНИМАЦИИ ===== */
@keyframes ocm-slideUp {
    from {
        transform: translateY(100%) !important;
        opacity: 0 !important;
    }
    to {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
}

@keyframes ocm-fadeIn {
    from {
        opacity: 0 !important;
    }
    to {
        opacity: 1 !important;
    }
}

/* ===== ТЕМНАЯ ТЕМА (медиазапрос) ===== */
@media (prefers-color-scheme: dark) {
    .ocm-banner:not(
    
    .ocm-banner:not(
    
    .ocm-banner:not(
    
    .ocm-banner:not(
    
    .ocm-banner:not(
}


/**
 * Cookie Manager - Additional Theme Variations
 * Extended themes compatible with existing site designs
 * NO conflicts with site styles - all classes prefixed with ocm-
 */

/* ===== ТЕМА: MINIMAL VARIATIONS ===== */

/* Minimal v-002: Corporate Clean */














/* Minimal v-003: Monochrome Elegant */














/* ===== ТЕМА: MODERN VARIATIONS ===== */

/* Modern v-002: Vivid Gradient */


















/* Modern v-003: Cool Blue Gradient */










/* ===== ТЕМА: ROUNDED VARIATIONS ===== */

/* Rounded v-002: Soft Pastel */














/* Rounded v-003: Bubble Style */










/* ===== ТЕМА: GLASS VARIATIONS ===== */

/* Glass v-002: Dark Glass */














/* Glass v-003: Frosted Glass */










/* ===== ТЕМА: GRADIENT VARIATIONS ===== */

/* Gradient v-002: Sunset Gradient */














/* Gradient v-003: Ocean Gradient */














/* ===== ADDITIONAL TOGGLE STYLES (9-16) ===== */

/* Toggle Style 9: Hexagon */
.ocm-toggle.ocm-toggle-style-9 {
    width: 52px !important;
    height: 52px !important;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%) !important;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) !important;
    border-radius: 0 !important;
    box-shadow: 0 8px 24px rgba(67, 233, 123, 0.3) !important;
}

.ocm-toggle.ocm-toggle-style-9:hover {
    transform: scale(1.1) rotate(15deg) !important;
    box-shadow: 0 12px 32px rgba(67, 233, 123, 0.4) !important;
}

/* Toggle Style 10: Diamond */
.ocm-toggle.ocm-toggle-style-10 {
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%) !important;
    transform: rotate(45deg) !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 24px rgba(250, 112, 154, 0.3) !important;
}

.ocm-toggle.ocm-toggle-style-10:hover {
    transform: rotate(45deg) scale(1.15) !important;
    box-shadow: 0 12px 32px rgba(250, 112, 154, 0.4) !important;
}

.ocm-toggle.ocm-toggle-style-10::before {
    content: "🍪" !important;
    transform: rotate(-45deg) !important;
    display: block !important;
    font-size: 20px !important;
}

/* Toggle Style 11: Soft Shadow */
.ocm-toggle.ocm-toggle-style-11 {
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #667eea !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 1px 8px rgba(0, 0, 0, 0.06) !important;
    border: 2px solid #f0f0f0 !important;
}

.ocm-toggle.ocm-toggle-style-11:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 3px 12px rgba(0, 0, 0, 0.08) !important;
}

/* Toggle Style 12: Neon Glow */
.ocm-toggle.ocm-toggle-style-12 {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: #000000 !important;
    color: #00ff88 !important;
    border: 2px solid #00ff88 !important;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5), inset 0 0 10px rgba(0, 255, 136, 0.2) !important;
}

.ocm-toggle.ocm-toggle-style-12:hover {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.7), inset 0 0 15px rgba(0, 255, 136, 0.3) !important;
    transform: scale(1.1) !important;
}

/* Toggle Style 13: Outlined Circle */
.ocm-toggle.ocm-toggle-style-13 {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: transparent !important;
    color: #667eea !important;
    border: 3px solid #667eea !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2) !important;
}

.ocm-toggle.ocm-toggle-style-13:hover {
    background: #667eea !important;
    color: #ffffff !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3) !important;
}

/* Toggle Style 14: Gradient Border */
.ocm-toggle.ocm-toggle-style-14 {
    width: 54px !important;
    height: 54px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #667eea !important;
    border: 3px solid transparent !important;
    background-clip: padding-box !important;
    position: relative !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
}

.ocm-toggle.ocm-toggle-style-14::before {
    content: '' !important;
    position: absolute !important;
    top: -3px !important;
    left: -3px !important;
    right: -3px !important;
    bottom: -3px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 50% !important;
    z-index: -1 !important;
}

.ocm-toggle.ocm-toggle-style-14:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3) !important;
}

/* Toggle Style 15: Material Design */
.ocm-toggle.ocm-toggle-style-15 {
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    background: #4285f4 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.ocm-toggle.ocm-toggle-style-15:hover {
    box-shadow: 0 8px 17px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-2px) !important;
}

.ocm-toggle.ocm-toggle-style-15:active {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(0) !important;
}

/* Toggle Style 16: Animated Gradient */
.ocm-toggle.ocm-toggle-style-16 {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4) !important;
    background-size: 300% 300% !important;
    animation: ocm-gradient-shift 6s ease infinite !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3) !important;
}

.ocm-toggle.ocm-toggle-style-16:hover {
    animation-duration: 3s !important;
    transform: scale(1.1) !important;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4) !important;
}

@keyframes ocm-gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== COMPATIBILITY ADJUSTMENTS ===== */

/* Ensure all variations work with existing positioning */
[class*="ocm-theme-"][class*="-v00"] {
    max-width: 400px !important;
    min-width: 320px !important;
}

/* Ensure all new toggle styles support all positions */
.ocm-toggle[class*="-style-"]:not([class*="-position-"]) {
    bottom: 20px !important;
    right: 20px !important;
}

/* Responsive adjustments for new variations */
@media (max-width: 480px) {
    [class*="ocm-theme-"][class*="-v00"] {
        max-width: calc(100vw - 40px) !important;
        min-width: calc(100vw - 40px) !important;
    }
    
    .ocm-toggle[class*="-style-"] {
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
    }
    
    .ocm-toggle.ocm-toggle-style-14 {
        width: 48px !important;
        height: 48px !important;
    }
}


