:root {
  --primary-50: #f8f9fa;
  --primary-50-rgb: 248, 249, 250;
  --primary-100: #e9ecef;
  --primary-100-rgb: 233, 236, 239;
  --primary-300: #adb5bd;
  --primary-300-rgb: 173, 181, 189;
  --primary-500: #495057;
  --primary-500-rgb: 73, 80, 87;
  --primary-700: #212529;
  --primary-700-rgb: 33, 37, 41;
  --primary-200: #cbd1d6;
  --primary-200-rgb: 203, 209, 214;
  --primary-400: #7b838a;
  --primary-400-rgb: 123, 131, 138;
  --primary-600: #353b40;
  --primary-600-rgb: 53, 59, 64;
  --primary-800: #1c1f23;
  --primary-800-rgb: 28, 31, 35;
  --primary-900: #171a1d;
  --primary-900-rgb: 23, 26, 29;
  --primary-950: #0f1113;
  --primary-950-rgb: 15, 17, 19;

  --primary-rgb: 73, 80, 87;
  --neutral-50: #f9fafb;
  --neutral-50-rgb: 249, 250, 251;
  --neutral-100: #f3f4f6;
  --neutral-100-rgb: 243, 244, 246;
  --neutral-300: #d1d5db;
  --neutral-300-rgb: 209, 213, 219;
  --neutral-500: #6b7280;
  --neutral-500-rgb: 107, 114, 128;
  --neutral-700: #374151;
  --neutral-700-rgb: 55, 65, 81;
  --neutral-900: #111827;
  --neutral-900-rgb: 17, 24, 39;
  --neutral-200: #e2e5e9;
  --neutral-200-rgb: 226, 229, 233;
  --neutral-400: #9ea4ae;
  --neutral-400-rgb: 158, 164, 174;
  --neutral-600: #515a69;
  --neutral-600-rgb: 81, 90, 105;
  --neutral-800: #2f3745;
  --neutral-800-rgb: 47, 55, 69;
  --neutral-950: #191e25;
  --neutral-950-rgb: 25, 30, 37;

  --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-primary-text-rgb: 255, 255, 255;
  --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(73, 80, 87, 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;
  --white-rgb: 255, 255, 255;
  --black-rgb: 0, 0, 0;
  --transparent-rgb: 0, 0, 0;
  --overlay-light-rgb: 255, 255, 255;
  --overlay-dark-rgb: 0, 0, 0;
  --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 ===== */
.base_font_primary {
  font-family: var(--font-primary);
}

.theme_font_secondary {
  font-family: var(--font-secondary);
}

.modern_font_mono {
  font-family: var(--font-mono);
}

/* ===== SEMANTIC TYPOGRAPHY CLASSES ===== */

/* Display Styles - For major headings and hero text */
.fresh_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);
}

.elite_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);
}

.main_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 */
.agency_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);
}

.studio_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);
}

.top_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);
}

.creative_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);
}

.core_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);
}

.bold_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 */
.layout_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);
}

.best_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);
}

.minimal_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 */
.unique_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);
}

.container_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 */
.dark_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);
}

.bright_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 */
.web_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);
}

.section_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 */
.pro_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);
}

.clean_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);
}

.digital_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 */
.site_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);
}

.business_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 */
.light_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);
}

.light_nav_link:hover,
.light_nav_link:focus {
  color: var(--text-link);
  text-decoration: none;
}

/* Button Typography */
.company_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 */
.premium_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) {
  .web_hero_title {
    font-size: var(--text-4xl);
  }
  
  .pro_section_title {
    font-size: var(--text-3xl);
  }
  
  .fresh_display_1 {
    font-size: var(--text-5xl);
  }
  
  .elite_display_2 {
    font-size: var(--text-4xl);
  }
}

@media (max-width: 480px) {
  .web_hero_title {
    font-size: var(--text-3xl);
  }
  
  .pro_section_title {
    font-size: var(--text-2xl);
  }
  
  .fresh_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 ===== */
.style_text_gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.custom_text_shadow_sm {
  text-shadow: var(--shadow-xs);
}

.design_text_shadow_md {
  text-shadow: var(--shadow-sm);
}

.content_text_balance {
  text-wrap: balance;
}

.page_text_pretty {
  text-wrap: pretty;
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
  .light_nav_link,
  a:not([class]) {
    transition: none;
  }
}

@media (prefers-contrast: high) {
  .unique_caption,
  .container_overline,
  .premium_footer_text {
    color: var(--text-secondary);
  }
  
  .section_hero_subtitle,
  .clean_section_subtitle {
    color: var(--text-primary);
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .web_hero_title,
  .pro_section_title,
  .agency_heading_1,
  .studio_heading_2 {
    break-after: avoid;
    page-break-after: avoid;
  }
  
  .style_text_gradient {
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
  }
}

/* ===== LAYOUT UTILITIES ===== */
.brand_section_wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.smart_content_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.prime_content_start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.new_content_end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.app_stack {
  display: flex;
  flex-direction: column;
}

.best40_stack_center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clean48_full_height {
  min-height: 100vh;
}

.digital27_section_height {
  min-height: 80vh;
}

.prime33_hero_height {
  min-height: 90vh;
}

/* ===== SPACING UTILITIES ===== */

/* Margin utilities */
.theme5_m_0 { margin: 0; }
.premium48_m_1 { margin: var(--space-1); }
.theme33_m_2 { margin: var(--space-2); }
.studio37_m_3 { margin: var(--space-3); }
.base65_m_4 { margin: var(--space-4); }
.studio81_m_6 { margin: var(--space-6); }
.smart5_m_8 { margin: var(--space-8); }
.light66_m_12 { margin: var(--space-12); }
.site62_m_16 { margin: var(--space-16); }

.core28_mx_auto { margin-left: auto; margin-right: auto; }
.smart80_my_auto { margin-top: auto; margin-bottom: auto; }

.layout30_mt_0 { margin-top: 0; }
.modern67_mt_4 { margin-top: var(--space-4); }
.light68_mt_8 { margin-top: var(--space-8); }
.core7_mt_12 { margin-top: var(--space-12); }

.digital73_mb_0 { margin-bottom: 0; }
.minimal12_mb_4 { margin-bottom: var(--space-4); }
.creative66_mb_8 { margin-bottom: var(--space-8); }
.layout17_mb_12 { margin-bottom: var(--space-12); }

/* Padding utilities */
.business71_p_0 { padding: 0; }
.custom77_p_1 { padding: var(--space-1); }
.web89_p_2 { padding: var(--space-2); }
.minimal34_p_3 { padding: var(--space-3); }
.layout77_p_4 { padding: var(--space-4); }
.custom85_p_6 { padding: var(--space-6); }
.bright56_p_8 { padding: var(--space-8); }

.elite21_px_4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.section69_px_6 { padding-left: var(--space-6); padding-right: var(--space-6); }
.custom56_px_8 { padding-left: var(--space-8); padding-right: var(--space-8); }

.premium4_py_4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.best48_py_6 { padding-top: var(--space-6); padding-bottom: var(--space-6); }
.brand22_py_8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }

/* Gap utilities for flex/grid */
.custom85_gap_1 { gap: var(--space-1); }
.main63_gap_2 { gap: var(--space-2); }
.fresh2_gap_3 { gap: var(--space-3); }
.business23_gap_4 { gap: var(--space-4); }
.agency20_gap_6 { gap: var(--space-6); }
.page76_gap_8 { gap: var(--space-8); }

/* ===== VISUAL EFFECTS ===== */

/* Shadow utilities */
.ui75_shadow_none { box-shadow: var(--shadow-none); }
.custom34_shadow_xs { box-shadow: var(--shadow-xs); }
.elite67_shadow_sm { box-shadow: var(--shadow-sm); }
.creative23_shadow_md { box-shadow: var(--shadow-md); }
.prime72_shadow_lg { box-shadow: var(--shadow-lg); }
.minimal55_shadow_xl { box-shadow: var(--shadow-xl); }
.elite33_shadow_2xl { box-shadow: var(--shadow-2xl); }
.ui29_shadow_inner { box-shadow: var(--shadow-inner); }
.site55_shadow_colored { box-shadow: var(--shadow-colored); }

/* Border radius utilities */
.light54_radius_none { border-radius: var(--radius-none); }
.light47_radius_xs { border-radius: var(--radius-xs); }
.company63_radius_sm { border-radius: var(--radius-sm); }
.dark8_radius_md { border-radius: var(--radius-md); }
.base94_radius_lg { border-radius: var(--radius-lg); }
.modern1_radius_xl { border-radius: var(--radius-xl); }
.fresh56_radius_2xl { border-radius: var(--radius-2xl); }
.digital48_radius_3xl { border-radius: var(--radius-3xl); }
.container30_radius_full { border-radius: var(--radius-full); }

/* Gradient utilities */
.section58_gradient_primary {
  background: var(--gradient-primary);
}

.digital79_gradient_secondary {
  background: var(--gradient-secondary);
}

.layout68_gradient_hero {
  background: var(--gradient-hero);
}

.pro69_gradient_card {
  background: var(--gradient-card);
}

.main5_gradient_overlay {
  position: relative;
}

.main5_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;
}

.main5_gradient_overlay > * {
  position: relative;
  z-index: 2;
}

/* ===== INTERACTIVE STATES ===== */

/* Hover effects */
.theme3_hover_lift {
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.studio86_hover_scale {
  transition: transform var(--transition-normal);
}

.studio86_hover_scale:hover {
  transform: scale(1.02);
}

.minimal38_hover_shadow {
  transition: box-shadow var(--transition-normal);
}

.minimal38_hover_shadow:hover {
  box-shadow: var(--shadow-xl);
}

.theme44_hover_fade {
  transition: opacity var(--transition-normal);
}

.theme44_hover_fade:hover {
  opacity: var(--opacity-loading);
}

/* Focus states */
.bold47_focus_ring {
  transition: box-shadow var(--transition-fast);
}

.bold47_focus_ring:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--state-focus);
}

/* ===== SECTION-SPECIFIC UTILITIES ===== */

/* Hero section utilities */
.modern95_hero_background {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.creative47_hero_content {
  position: relative;
  z-index: 2;
}

/* Services grid */
.digital56_services_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

/* Team grid */
.top59_team_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-4);
}

/* Features grid */
.minimal56_features_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

/* Gallery grid */
.studio58_gallery_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-3);
}

/* Pricing grid */
.smart91_pricing_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-6);
}

/* Timeline layout */
.section88_timeline {
  position: relative;
}

.section88_timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-light);
  transform: translateX(-50%);
}

.content55_timeline_item {
  position: relative;
  width: 50%;
  padding: var(--space-4);
}

.content55_timeline_item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: var(--space-8);
}

.content55_timeline_item:nth-child(even) {
  left: 50%;
  text-align: left;
  padding-left: var(--space-8);
}

/* ===== ANIMATION UTILITIES ===== */
.premium32_fade_in {
  opacity: 0;
  animation: tc-fadeIn var(--transition-slow) ease-out forwards;
}

@keyframes tc-fadeIn {
  to {
    opacity: 1;
  }
}

.main24_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;
  }
}

.style7_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;
  }
}

.studio3_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 */
.web72_transition_all {
  transition: var(--transition-all);
}

.site27_transition_fast {
  transition: all var(--transition-fast);
}

.prime79_transition_normal {
  transition: all var(--transition-normal);
}

.top61_transition_slow {
  transition: all var(--transition-slow);
}

/* ===== COLOR UTILITIES ===== */
.base97_bg_primary { background-color: var(--bg-primary); }
.layout53_bg_secondary { background-color: var(--bg-secondary); }
.best93_bg_muted { background-color: var(--bg-muted); }
.layout36_bg_glass { background-color: var(--bg-glass); }

.design61_text_primary { color: var(--text-primary); }
.new45_text_secondary { color: var(--text-secondary); }
.content60_text_muted { color: var(--text-muted); }
.pro59_text_inverse { color: var(--text-inverse); }
.agency71_text_link { color: var(--text-link); }

.layout95_border_light { border-color: var(--border-light); }
.business87_border_medium { border-color: var(--border-medium); }
.minimal41_border_strong { border-color: var(--border-strong); }
.main28_border_interactive { border-color: var(--border-interactive); }

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 768px) {
  .digital56_services_grid,
  .minimal56_features_grid,
  .top59_team_grid,
  .smart91_pricing_grid {
    grid-template-columns: 1fr;
  }
  
  .studio58_gallery_grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .section88_timeline::before {
    left: 30px;
  }
  
  .content55_timeline_item {
    width: 100%;
    left: 0 !important;
    text-align: left;
    padding-left: var(--space-16) !important;
    padding-right: var(--space-4) !important;
  }
  
  .digital27_section_height {
    min-height: 60vh;
  }
  
  .prime33_hero_height {
    min-height: 70vh;
  }
}

@media (max-width: 480px) {
  .studio58_gallery_grid {
    grid-template-columns: 1fr;
  }
  
  .content55_timeline_item {
    padding-left: var(--space-12) !important;
  }
}

/* ===== ACCESSIBILITY UTILITIES ===== */
.site96_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;
}

.base60_not_sr_only {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.prime23_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);
}

.prime23_skip_link:focus {
  top: 6px;
}

/* ===== PRINT UTILITIES ===== */
@media print {
  .business95_no_print {
    display: none !important;
  }
  
  .page13_print_only {
    display: block !important;
  }
  
  .custom34_shadow_xs,
  .elite67_shadow_sm,
  .creative23_shadow_md,
  .prime72_shadow_lg,
  .minimal55_shadow_xl,
  .elite33_shadow_2xl {
    box-shadow: none !important;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .premium32_fade_in,
  .main24_slide_up,
  .style7_slide_in_left,
  .studio3_scale_in {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .theme3_hover_lift,
  .studio86_hover_scale,
  .minimal38_hover_shadow,
  .theme44_hover_fade,
  .web72_transition_all,
  .site27_transition_fast,
  .prime79_transition_normal,
  .top61_transition_slow {
    transition: none;
  }
}

.header-secondary {
  background: var(--surface-primary);
  padding: 1.25rem 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid color-mix(in srgb, var(--primary-500) 10%, transparent);
}

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

/* Brand */
.header-secondary .brand-wrapper {
  z-index: 10004;
}

.header-secondary .brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.header-secondary .brand-link:hover {
  transform: scale(1.05);
}

.header-secondary .brand-icon {
  font-size: 1.75rem;
  color: var(--primary-500);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-secondary #sitename {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

/* Desktop Navigation */
.header-secondary .nav-desktop {
  display: none;
  gap: 2.5rem;
  align-items: center;
}

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

.header-secondary .nav-desktop a::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--primary-500);
  border-radius: 3px;
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.header-secondary .nav-desktop a:hover {
  color: var(--primary-500);
}

.header-secondary .nav-desktop a:hover::before {
  width: 100%;
}

/* Hamburger Toggle */
.header-secondary .menu-toggle {
  display: none;
}

.header-secondary .hamburger-wrapper {
  cursor: pointer;
  padding: 8px;
  z-index: 10003;
  position: relative;
}

.header-secondary .hamburger-morph {
  width: 32px;
  height: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.header-secondary .morph-line {
  width: 100%;
  height: 3px;
  background: #334155;
  border-radius: 3px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

.header-secondary .morph-circle {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 3px solid #334155;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Morphing Animation */
.header-secondary .menu-toggle:checked ~ .hamburger-wrapper .morph-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  width: 70%;
}

.header-secondary .menu-toggle:checked ~ .hamburger-wrapper .morph-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header-secondary .menu-toggle:checked ~ .hamburger-wrapper .morph-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  width: 70%;
}

.header-secondary .menu-toggle:checked ~ .hamburger-wrapper .morph-circle {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* Mobile Navigation */
.header-secondary .nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 10;
}

.header-secondary .menu-toggle:checked ~ .nav-mobile {
  pointer-events: auto;
}

.header-secondary .mobile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.header-secondary .menu-toggle:checked ~ .nav-mobile .mobile-overlay {
  opacity: 1;
}

.header-secondary .mobile-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 100%;
  background: var(--surface-primary);
  padding: 5rem 2rem 2rem;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

.header-secondary .menu-toggle:checked ~ .nav-mobile .mobile-panel {
  transform: translateX(0);
}

.header-secondary .mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.header-secondary .mobile-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: color-mix(in srgb, var(--primary-500) 5%, transparent);
  border-left: 4px solid transparent;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  opacity: 0;
  transform: translateX(-30px);
}

.header-secondary .menu-toggle:checked ~ .nav-mobile .mobile-links a {
  opacity: 1;
  transform: translateX(0);
}

.header-secondary .mobile-links a:nth-child(1) {
  transition-delay: 0.1s;
}

.header-secondary .mobile-links a:nth-child(2) {
  transition-delay: 0.15s;
}

.header-secondary .mobile-links a:nth-child(3) {
  transition-delay: 0.2s;
}

.header-secondary .mobile-links a:nth-child(4) {
  transition-delay: 0.25s;
}

.header-secondary .mobile-links a:hover {
  background: color-mix(in srgb, var(--primary-500) 15%, transparent);
  border-left-color: var(--primary-500);
  transform: translateX(8px);
}

/* Mobile Decoration */
.header-secondary .mobile-decoration {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
}

.header-secondary .deco-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary-500) 10%, transparent);
  opacity: 0;
  transition: opacity 0.5s ease 0.3s;
}

.header-secondary .menu-toggle:checked ~ .nav-mobile .deco-circle {
  opacity: 1;
}

.header-secondary .deco-wave {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border: 3px solid var(--primary-300);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s;
}

.header-secondary .menu-toggle:checked ~ .nav-mobile .deco-wave {
  opacity: 1;
  transform: scale(1);
}

/* Header Shapes */
.header-secondary .header-shapes {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  pointer-events: none;
  display: none;
}

.header-secondary .shape-blob {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--primary-500) 15%, transparent);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  animation: blob-morph 8s infinite ease-in-out;
}

.header-secondary .shape-ring {
  position: absolute;
  top: 10px;
  right: -20px;
  width: 30px;
  height: 30px;
  border: 2px solid var(--primary-300);
  border-radius: 50%;
  animation: ring-pulse 3s infinite ease-in-out;
}

@keyframes blob-morph {
  0%, 100% {
    border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  }
  25% {
    border-radius: 55% 45% 45% 55% / 60% 50% 50% 40%;
  }
  50% {
    border-radius: 50% 50% 40% 60% / 45% 60% 40% 55%;
  }
  75% {
    border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  }
}

@keyframes ring-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}

/* Responsive */
@media (min-width: 992px) {
  .header-secondary .nav-desktop {
    display: flex;
  }
  
  .header-secondary .hamburger-wrapper {
    display: none;
  }
  
  .header-secondary .nav-mobile {
    display: none;
  }
  
  .header-secondary .header-shapes {
    display: block;
  }
}

@media (max-width: 991.98px) {
  .header-secondary #sitename {
    font-size: 1.25rem;
  }
  
  .header-secondary .brand-icon {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .header-secondary .mobile-panel {
    width: 280px;
  }
}


/* Hero section */
.hero-secondary {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

/* Full Width Background Image */
.hero-secondary .hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-secondary .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(1.2);
}

.hero-secondary .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--primary-700) 70%, transparent),
    color-mix(in srgb, var(--primary-500) 60%, transparent),
    color-mix(in srgb, var(--primary-300) 50%, transparent)
  );
  mix-blend-mode: multiply;
}

.hero-secondary .container {
  position: relative;
  z-index: 2;
}

/* Text Overlay Styles */
.hero-secondary .hero-text-overlay {
  text-align: center;
  background: color-mix(in srgb, var(--surface-primary) 95%, transparent);
  backdrop-filter: blur(10px);
  border-radius: 32px;
  padding: 60px 50px;
  box-shadow: 0 30px 80px color-mix(in srgb, var(--neutral-900) 40%, transparent);
  border: 3px solid color-mix(in srgb, var(--primary-300) 30%, transparent);
}

.hero-secondary .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-secondary .hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--primary-700);
  margin-bottom: 1.75rem;
}

.hero-secondary .hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

/* Nature Icons Decoration */
.hero-secondary .nature-icons-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-secondary .nature-icon {
  position: absolute;
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--surface-primary) 90%, transparent);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--primary-700) 30%, transparent);
  border: 3px solid color-mix(in srgb, var(--primary-300) 50%, transparent);
  animation: nature-icon-drift 12s ease-in-out infinite;
}

.hero-secondary .nature-icon i {
  font-size: 32px;
  color: var(--primary-700);
}

.hero-secondary .icon-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.hero-secondary .icon-2 {
  top: 25%;
  right: 12%;
  animation-delay: 3s;
}

.hero-secondary .icon-3 {
  bottom: 20%;
  left: 8%;
  animation-delay: 6s;
}

.hero-secondary .icon-4 {
  bottom: 25%;
  right: 15%;
  animation-delay: 9s;
}

@keyframes nature-icon-drift {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(10px, -15px);
  }
  50% {
    transform: translate(-5px, -25px);
  }
  75% {
    transform: translate(15px, -10px);
  }
}

/* Organic Shapes */
.hero-secondary .organic-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-secondary .organic-blob {
  position: absolute;
  background: color-mix(in srgb, var(--primary-100) 40%, transparent);
  backdrop-filter: blur(30px);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: organic-morph 18s ease-in-out infinite;
}

.hero-secondary .blob-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -50px;
  animation-delay: 0s;
}

.hero-secondary .blob-2 {
  width: 350px;
  height: 350px;
  bottom: -80px;
  left: -30px;
  animation-delay: 9s;
}

@keyframes organic-morph {
  0%, 100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: rotate(0deg) scale(1);
  }
  33% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(120deg) scale(1.1);
  }
  66% {
    border-radius: 30% 70% 50% 50% / 50% 60% 40% 60%;
    transform: rotate(240deg) scale(0.95);
  }
}

/* Accessibility - Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-secondary .nature-icon,
  .hero-secondary .organic-blob {
    animation: none;
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-secondary {
    padding: 60px 0;
  }
  
  .hero-secondary .hero-text-overlay {
    padding: 50px 40px;
  }
  
  .hero-secondary .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-secondary .hero-subtitle {
    font-size: 1.35rem;
  }
  
  .hero-secondary .hero-description {
    font-size: 1.05rem;
  }
  
  .hero-secondary .nature-icon {
    width: 60px;
    height: 60px;
  }
  
  .hero-secondary .nature-icon i {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .hero-secondary .hero-text-overlay {
    padding: 40px 30px;
  }
  
  .hero-secondary .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-secondary .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-secondary .hero-description {
    font-size: 1rem;
  }
  
  .hero-secondary .nature-icon {
    width: 55px;
    height: 55px;
  }
  
  .hero-secondary .nature-icon i {
    font-size: 24px;
  }
  
  .hero-secondary .icon-3,
  .hero-secondary .icon-4 {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-secondary .hero-text-overlay {
    padding: 35px 25px;
    border-radius: 24px;
  }
  
  .hero-secondary .hero-title {
    font-size: 1.875rem;
  }
  
  .hero-secondary .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-secondary .nature-icon {
    width: 50px;
    height: 50px;
  }
  
  .hero-secondary .nature-icon i {
    font-size: 22px;
  }
  
  .hero-secondary .organic-blob {
    display: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero-secondary .hero-text-overlay {
    background: color-mix(in srgb, var(--surface-primary) 98%, transparent);
    border-width: 4px;
    border-color: var(--primary-500);
  }
  
  .hero-secondary .bg-image {
    filter: brightness(0.4) saturate(1.5);
  }
}





.about-section {
  position: relative;
  background: linear-gradient(180deg, var(--surface-primary) 0%, var(--neutral-50) 100%);
  overflow: hidden;
}

/* Typography */
#about-title {
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}

#about-subtitle {
  color: var(--primary-700);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.25rem;
}

#about-desc {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Images Stack */
.images-stack {
  position: relative;
  height: 600px;
}

.stack-item {
  position: absolute;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stack-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.stack-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.stack-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.primary-img {
  width: 70%;
  height: 400px;
  top: 0;
  left: 0;
  z-index: 3;
}

.secondary-img-1 {
  width: 50%;
  height: 250px;
  bottom: 50px;
  right: 0;
  z-index: 2;
}

.secondary-img-2 {
  width: 40%;
  height: 180px;
  bottom: 0;
  left: 50px;
  z-index: 1;
}

.img-border {
  position: absolute;
  inset: -2px;
  border: 3px solid var(--primary-500);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.stack-item:hover .img-border {
  opacity: 1;
}

/* Technical Decorations */
.tech-grid {
  position: absolute;
  top: 50px;
  right: -20px;
  width: 120px;
  height: 120px;
  background-image: 
    linear-gradient(var(--primary-300) 1px, transparent 1px),
    linear-gradient(90deg, var(--primary-300) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  z-index: 0;
}

.corner-accent {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid var(--primary-500);
  z-index: 0;
}

.accent-tl {
  top: -10px;
  left: -10px;
  border-right: none;
  border-bottom: none;
}

.accent-br {
  bottom: -10px;
  right: -10px;
  border-left: none;
  border-top: none;
}

/* Features Container */
.features-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--surface-primary);
  border-left: 4px solid var(--neutral-300);
  transition: all 0.3s ease;
}

.feature-row:hover {
  border-left-color: var(--primary-500);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}

.feature-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--neutral-300);
  line-height: 1;
  min-width: 80px;
  transition: color 0.3s ease;
}

.feature-row:hover .feature-number {
  color: var(--primary-500);
}

.feature-content {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  flex: 1;
}

.feature-icon-wrap {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-100);
  color: var(--primary-700);
  border-radius: 8px;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.feature-row:hover .feature-icon-wrap {
  background: var(--primary-500);
  color: var(--light);
  transform: rotate(-5deg);
}

.feature-text h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

.feature-line {
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--primary-500), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-row:hover .feature-line {
  opacity: 0.3;
}

/* Technical Background */
.tech-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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.02;
  pointer-events: none;
}

.bg-gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.04;
  pointer-events: none;
}

.gradient-1 {
  width: 600px;
  height: 600px;
  background: var(--primary-700);
  top: -300px;
  right: -300px;
}

.gradient-2 {
  width: 500px;
  height: 500px;
  background: var(--primary-500);
  bottom: -250px;
  left: -250px;
}

/* Responsive */
@media (max-width: 991px) {
  .images-stack {
    height: 500px;
    margin-bottom: 3rem;
  }

  .primary-img {
    width: 65%;
    height: 350px;
  }

  .secondary-img-1 {
    width: 55%;
    height: 220px;
  }

  .secondary-img-2 {
    width: 45%;
    height: 160px;
  }
}

@media (max-width: 768px) {
  #about-title {
    font-size: 2.5rem;
  }

  #about-subtitle {
    font-size: 1.1rem;
  }

  .images-stack {
    height: 400px;
  }

  .primary-img {
    width: 70%;
    height: 280px;
  }

  .secondary-img-1 {
    width: 50%;
    height: 180px;
  }

  .secondary-img-2 {
    width: 40%;
    height: 140px;
  }

  .feature-row {
    padding: 1.5rem;
    gap: 1rem;
  }

  .feature-number {
    font-size: 2rem;
    min-width: 50px;
  }

  .feature-content {
    gap: 1rem;
  }

  .feature-icon-wrap {
    width: 45px;
    height: 45px;
    min-width: 45px;
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  #about-title {
    font-size: 2rem;
  }

  .images-stack {
    height: 350px;
  }

  .feature-row {
    flex-direction: column;
    gap: 1rem;
  }

  .feature-number {
    font-size: 2.5rem;
  }
}





.features-variant {
  position: relative;
  background: var(--surface-primary);
  overflow: hidden;
}

/* Minimal Accent Dot */
.features-variant .minimal-accent-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-500);
  border-radius: 50%;
  margin: 0 auto 2rem;
}

/* Header */
.features-variant .display-4 {
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.features-variant .h5 {
  color: var(--text-secondary);
  letter-spacing: 0.15em;
}

.features-variant .fs-6 {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Minimal Feature */
.features-variant .minimal-feature {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--neutral-300);
  transition: all 0.3s ease;
}

.features-variant .minimal-feature:hover {
  padding-left: 1rem;
  border-top-color: var(--primary-500);
}

/* Minimal Number */
.features-variant .minimal-number {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 5rem;
  font-weight: 100;
  color: color-mix(in srgb, var(--neutral-300) 40%, transparent);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  transition: all 0.3s ease;
}

.features-variant .minimal-feature:hover .minimal-number {
  color: color-mix(in srgb, var(--primary-300) 30%, transparent);
  transform: translateX(10px);
}

/* Minimal Icon */
.features-variant .minimal-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-secondary);
  border: 2px solid var(--neutral-300);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}

.features-variant .minimal-feature:hover .minimal-icon {
  background: var(--primary-500);
  border-color: var(--primary-500);
  transform: scale(1.15) rotate(5deg);
}

.features-variant .minimal-icon i {
  font-size: 1.5rem;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.features-variant .minimal-feature:hover .minimal-icon i {
  color: var(--light);
}

/* Minimal Content */
.features-variant .minimal-content {
  flex: 1;
  position: relative;
  z-index: 1;
  padding-top: 0.25rem;
}

.features-variant .minimal-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.features-variant .minimal-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Minimal Background Lines */
.features-variant .minimal-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
}

.features-variant .line-vertical {
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, 
    transparent, 
    var(--neutral-500) 20%, 
    var(--neutral-500) 80%, 
    transparent);
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.features-variant .line-horizontal {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--neutral-500) 20%, 
    var(--neutral-500) 80%, 
    transparent);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* Responsive */
@media (max-width: 767.98px) {
  .features-variant .display-4 {
    font-size: 2.25rem;
  }
  
  .features-variant .minimal-feature {
    gap: 1rem;
    padding: 1.5rem 0;
  }
  
  .features-variant .minimal-feature:hover {
    padding-left: 0.5rem;
  }
  
  .features-variant .minimal-number {
    font-size: 3.5rem;
    opacity: 0.5;
  }
  
  .features-variant .minimal-icon {
    width: 48px;
    height: 48px;
  }
  
  .features-variant .minimal-icon i {
    font-size: 1.25rem;
  }
  
  .features-variant .minimal-title {
    font-size: 1.15rem;
  }
  
  .features-variant .minimal-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .features-variant .minimal-number {
    font-size: 2.5rem;
    opacity: 0.3;
  }
  
  .features-variant .minimal-feature {
    flex-direction: column;
    gap: 1rem;
  }
  
  .features-variant .minimal-icon {
    align-self: flex-start;
  }
}





.services-section-style {
  background: linear-gradient(to bottom, var(--surface-primary), var(--surface-secondary));
  position: relative;
  overflow: hidden;
}

.services-section-style .container {
  position: relative;
  z-index: 2;
}

/* Timeline Container */
.services-section-style .services-timeline {
  position: relative;
  padding: 3rem 0;
  max-width: 900px;
  margin: 0 auto;
}

/* Timeline Line */
.services-section-style .timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-300), var(--primary-700));
  transform: translateX(-50%);
  z-index: 0;
}

/* Timeline Item */
.services-section-style .timeline-item {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
}

.services-section-style .timeline-item:last-child {
  margin-bottom: 0;
}

.services-section-style .timeline-item:nth-child(odd) {
  flex-direction: row;
}

.services-section-style .timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

/* Timeline Marker */
.services-section-style .timeline-marker {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}

.services-section-style .marker-dot {
  width: 24px;
  height: 24px;
  background: var(--light);
  border: 4px solid var(--primary-500);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.services-section-style .marker-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
}

.services-section-style .timeline-item:hover .marker-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.services-section-style .marker-icon i {
  font-size: 2rem;
  color: var(--light);
}

/* Timeline Content */
.services-section-style .timeline-content {
  flex: 1;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

.services-section-style .timeline-item:nth-child(odd) .timeline-content {
  text-align: left;
}

.services-section-style .timeline-item:nth-child(even) .timeline-content {
  text-align: right;
}

/* Content Card */
.services-section-style .content-card {
  background: var(--light);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--neutral-100);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.services-section-style .timeline-item:hover .content-card {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
  border-color: var(--primary-300);
}

.services-section-style .service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.services-section-style .service-description {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.services-section-style .service-details {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  padding: 1rem;
  background: color-mix(in srgb, var(--primary-50) 40%, transparent);
  border-radius: 8px;
  margin-bottom: 1.25rem;
}

/* Pricing Info */
.services-section-style .pricing-info {
  border-top: 2px solid var(--neutral-100);
  padding-top: 1rem;
}

.services-section-style .service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-700);
  margin: 0;
}

/* Decorative Circles */
.services-section-style .decorative-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--primary-300);
  opacity: 0.2;
  pointer-events: none;
}

.services-section-style .circle-1 {
  width: 250px;
  height: 250px;
  top: 10%;
  right: 5%;
}

.services-section-style .circle-2 {
  width: 350px;
  height: 350px;
  bottom: 10%;
  left: -100px;
}

/* Responsive */
@media (max-width: 768px) {
  .services-section-style .timeline-line {
    left: 40px;
  }

  .services-section-style .timeline-item,
  .services-section-style .timeline-item:nth-child(even) {
    flex-direction: row;
  }

  .services-section-style .timeline-marker {
    position: absolute;
    left: 0;
  }

  .services-section-style .marker-icon {
    width: 64px;
    height: 64px;
  }

  .services-section-style .marker-icon i {
    font-size: 1.5rem;
  }

  .services-section-style .timeline-content {
    padding-left: 100px;
    padding-right: 0;
    text-align: left !important;
  }

  .services-section-style .content-card {
    padding: 1.5rem;
  }

  .services-section-style .service-title {
    font-size: 1.25rem;
  }

  .services-section-style .decorative-circle {
    width: 150px !important;
    height: 150px !important;
  }
}





.priceplan-section-clean {
  position: relative;
  background: var(--light);
  overflow: hidden;
}

.priceplan-section-clean .header-wrapper {
  text-align: center;
  position: relative;
}

.priceplan-section-clean .icon-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.priceplan-section-clean .icon-group i {
  font-size: 2rem;
  color: var(--primary-500);
  opacity: 0.7;
}

.priceplan-section-clean .section-title {
  color: var(--text-primary);
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.priceplan-section-clean .section-subtitle {
  color: var(--primary-700);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.priceplan-section-clean .section-description {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.priceplan-section-clean .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.priceplan-section-clean .pricing-item {
  background: var(--surface-primary);
  border: 2px solid var(--neutral-300);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s ease;
}

.priceplan-section-clean .pricing-item:hover {
  border-color: var(--primary-500);
  transform: scale(1.03);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--primary-500) 15%, transparent);
}

.priceplan-section-clean .featured-plan {
  border: 3px solid var(--primary-500);
  background: color-mix(in srgb, var(--primary-50) 30%, var(--light));
  box-shadow: 0 8px 20px color-mix(in srgb, var(--primary-500) 20%, transparent);
}

.priceplan-section-clean .popular-ribbon {
  position: absolute;
  top: -12px;
  right: 30px;
  background: var(--primary-500);
  color: var(--light);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--primary-700) 30%, transparent);
}

.priceplan-section-clean .plan-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--neutral-100);
}

.priceplan-section-clean .icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  background: color-mix(in srgb, var(--primary-100) 50%, var(--light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-700);
  border: 3px solid var(--primary-300);
}

.priceplan-section-clean .plan-title {
  color: var(--text-primary);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}

.priceplan-section-clean .plan-content {
  margin-bottom: 1.5rem;
}

.priceplan-section-clean .plan-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.priceplan-section-clean .features-list {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.9;
  padding: 1.5rem;
  background: var(--surface-secondary);
  border-radius: 12px;
  border-left: 5px solid var(--primary-500);
  margin-bottom: 2rem;
}

.priceplan-section-clean .price-display {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--primary-100) 60%, var(--light)) 0%, 
    color-mix(in srgb, var(--primary-50) 40%, var(--light)) 100%);
  border-radius: 16px;
  position: relative;
}

.priceplan-section-clean .price-amount {
  color: var(--primary-700);
  font-size: 2.75rem;
  font-weight: 900;
  display: block;
  letter-spacing: -1px;
}

.priceplan-section-clean .decorative-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, 
    var(--primary-300) 0%, 
    var(--primary-500) 50%, 
    var(--primary-300) 100%);
  border-radius: 0 0 18px 18px;
}

/* Background Decorations */
.priceplan-section-clean .bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.priceplan-section-clean .shape-a {
  width: 400px;
  height: 400px;
  background: var(--primary-500);
  top: -100px;
  right: -100px;
}

.priceplan-section-clean .shape-b {
  width: 300px;
  height: 300px;
  background: var(--primary-700);
  bottom: -80px;
  left: -80px;
}

.priceplan-section-clean .bg-grid {
  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;
}

/* Responsive */
@media (max-width: 991px) {
  .priceplan-section-clean .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .priceplan-section-clean .section-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 767px) {
  .priceplan-section-clean .section-title {
    font-size: 1.875rem;
  }
  
  .priceplan-section-clean .pricing-item {
    padding: 2rem;
  }
  
  .priceplan-section-clean .price-amount {
    font-size: 2.25rem;
  }
}





.team-section-bold {
  position: relative;
  background: var(--surface-primary);
  overflow: hidden;
}

.team-section-bold .section-subtitle {
  color: var(--primary-500);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.team-section-bold .section-title {
  color: var(--text-primary);
  font-weight: 800;
  line-height: 1.2;
}

.team-section-bold .section-description {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Team Card */
.team-section-bold .team-card {
  background: var(--surface-secondary);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.team-section-bold .team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.team-section-bold .team-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.team-section-bold .team-member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-section-bold .team-card:hover .team-member-photo {
  transform: scale(1.1);
}

.team-section-bold .team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-section-bold .team-card:hover .team-overlay {
  opacity: 1;
}

.team-section-bold .team-info {
  padding: 1.5rem;
  text-align: center;
  background: var(--surface-secondary);
}

.team-section-bold .member-name {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.team-section-bold .member-role {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Decorative Elements */
.team-section-bold .decorative-circle-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--primary-50);
  top: -100px;
  right: -100px;
  opacity: 0.5;
  z-index: 0;
}

.team-section-bold .decorative-circle-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary-300) 40%, transparent);
  bottom: -50px;
  left: -50px;
  opacity: 0.6;
  z-index: 0;
}

.team-section-bold .container {
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 767px) {
  .team-section-bold .section-title {
    font-size: 2rem;
  }
  
  .team-section-bold .col-lg-4.offset-lg-2 {
    margin-left: 0;
  }
}





.reviews-section-classic {
  padding: 100px 0;
  background: var(--surface-secondary);
  position: relative;
  overflow: hidden;
}

.reviews-section-classic .header-decoration {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-500), transparent);
  margin: 0 auto 1.5rem;
}

.reviews-section-classic .section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.reviews-section-classic .section-subtitle {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--primary-700);
  margin-bottom: 1.25rem;
}

.reviews-section-classic .section-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.reviews-section-classic .review-bordered {
  background: var(--light);
  border: 3px solid var(--neutral-100);
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.reviews-section-classic .review-bordered:hover {
  border-color: var(--primary-500);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.reviews-section-classic .review-bordered.compact {
  padding: 2rem;
}

.reviews-section-classic .border-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-500);
  border-radius: 0 0 4px 0;
}

.reviews-section-classic .review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.reviews-section-classic .quote-symbol {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--primary-500) 12%, transparent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-section-classic .quote-symbol.small {
  width: 40px;
  height: 40px;
}

.reviews-section-classic .quote-symbol i {
  font-size: 1.5rem;
  color: var(--primary-500);
}

.reviews-section-classic .quote-symbol.small i {
  font-size: 1.25rem;
}

.reviews-section-classic .author-initial {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light);
}

.reviews-section-classic .author-initial.small {
  width: 45px;
  height: 45px;
  font-size: 1.25rem;
}

.reviews-section-classic .review-text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.reviews-section-classic .reviewer-footer {
  padding-top: 1rem;
  position: relative;
}

.reviews-section-classic .footer-line {
  width: 50px;
  height: 3px;
  background: var(--primary-300);
  margin-bottom: 1rem;
}

.reviews-section-classic .reviewer-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.5;
}

.reviews-section-classic .organic-shape {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.04;
  pointer-events: none;
}

.reviews-section-classic .shape-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-500);
  top: -100px;
  right: -150px;
}

.reviews-section-classic .shape-2 {
  width: 400px;
  height: 400px;
  background: var(--primary-700);
  bottom: -80px;
  left: -120px;
}

.reviews-section-classic .pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.02;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg,
    var(--primary-500) 0px,
    var(--primary-500) 1px,
    transparent 1px,
    transparent 20px
  );
}

@media (max-width: 991px) {
  .reviews-section-classic {
    padding: 80px 0;
  }

  .reviews-section-classic .section-title {
    font-size: 2.25rem;
  }

  .reviews-section-classic .section-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .reviews-section-classic {
    padding: 60px 0;
  }

  .reviews-section-classic .section-title {
    font-size: 1.875rem;
  }

  .reviews-section-classic .review-bordered,
  .reviews-section-classic .review-bordered.compact {
    padding: 1.75rem;
  }
}


/* Casestudy section */

.casestudy-section-secondary {
  position: relative;
  background: var(--surface-primary);
  overflow: hidden;
}

/* Sidebar Header */
.casestudy-section-secondary .sidebar-header {
  position: relative;
  padding: 2rem;
  background: var(--light);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  top: 100px;
}

.casestudy-section-secondary .header-decoration {
  position: relative;
  margin-bottom: 2rem;
}

.casestudy-section-secondary .deco-line-vertical {
  width: 4px;
  height: 60px;
  background: linear-gradient(180deg, var(--primary-500), var(--primary-300));
  border-radius: 2px;
}

.casestudy-section-secondary .deco-circle-top {
  width: 16px;
  height: 16px;
  background: var(--primary-500);
  border-radius: 50%;
  position: absolute;
  top: -8px;
  left: -6px;
}

.casestudy-section-secondary .section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.casestudy-section-secondary .section-subtitle {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-700);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.casestudy-section-secondary .section-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.casestudy-section-secondary .sidebar-visual {
  position: relative;
  margin-top: 2rem;
}

.casestudy-section-secondary .visual-element {
  width: 100%;
  height: 150px;
  background: linear-gradient(135deg, 
    var(--primary-50) 0%, 
    var(--primary-100) 100%
  );
  border-radius: 12px;
  margin-bottom: 1rem;
}

.casestudy-section-secondary .visual-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.casestudy-section-secondary .visual-icons i {
  font-size: 1.5rem;
  color: var(--primary-500);
}

/* Timeline */
.casestudy-section-secondary .cases-timeline {
  position: relative;
}

.casestudy-section-secondary .timeline-item {
  position: relative;
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.casestudy-section-secondary .timeline-item:last-child {
  margin-bottom: 0;
}

.casestudy-section-secondary .timeline-marker {
  position: relative;
  flex-shrink: 0;
}

.casestudy-section-secondary .marker-outer {
  width: 24px;
  height: 24px;
  background: var(--light);
  border: 4px solid var(--primary-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px color-mix(in srgb, var(--primary-100) 50%, transparent);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.casestudy-section-secondary .timeline-item:hover .marker-outer {
  transform: scale(1.3);
  border-color: var(--primary-700);
}

.casestudy-section-secondary .marker-inner {
  width: 8px;
  height: 8px;
  background: var(--primary-500);
  border-radius: 50%;
  transition: background 0.4s ease;
}

.casestudy-section-secondary .timeline-item:hover .marker-inner {
  background: var(--primary-700);
}

.casestudy-section-secondary .marker-line {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 3rem);
  background: linear-gradient(180deg, 
    var(--primary-300) 0%, 
    var(--neutral-100) 100%
  );
  z-index: 1;
}

.casestudy-section-secondary .timeline-item:last-child .marker-line {
  display: none;
}

/* Timeline Content */
.casestudy-section-secondary .timeline-content {
  flex: 1;
}

.casestudy-section-secondary .content-card {
  background: var(--light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.casestudy-section-secondary .timeline-item:hover .content-card {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-300);
}

.casestudy-section-secondary .card-image-area {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.casestudy-section-secondary .image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    var(--primary-100) 0%, 
    color-mix(in srgb, var(--primary-300) 70%, var(--primary-100) 30%) 100%
  );
  transition: transform 0.6s ease;
}

.casestudy-section-secondary .timeline-item:hover .image-placeholder {
  transform: scale(1.1);
}

.casestudy-section-secondary .card-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 56px;
  height: 56px;
  background: var(--light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.casestudy-section-secondary .timeline-item:hover .card-badge {
  transform: rotate(360deg) scale(1.1);
  background: var(--primary-500);
}

.casestudy-section-secondary .card-badge i {
  font-size: 1.5rem;
  color: var(--primary-500);
  transition: color 0.4s ease;
}

.casestudy-section-secondary .timeline-item:hover .card-badge i {
  color: var(--light);
}

.casestudy-section-secondary .card-body {
  padding: 2rem;
}

.casestudy-section-secondary .card-title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.casestudy-section-secondary .timeline-item:hover .card-title {
  color: var(--primary-700);
}

.casestudy-section-secondary .card-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.casestudy-section-secondary .card-meta {
  padding-top: 1.25rem;
  border-top: 1px solid var(--neutral-100);
}

.casestudy-section-secondary .meta-icons {
  display: flex;
  gap: 0.75rem;
}

.casestudy-section-secondary .meta-icons i {
  font-size: 1.125rem;
  color: var(--primary-500);
  padding: 0.5rem;
  background: var(--primary-50);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.casestudy-section-secondary .timeline-item:hover .meta-icons i {
  transform: translateY(-3px);
  background: var(--primary-100);
}

/* Background Texture */
.casestudy-section-secondary .background-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, var(--neutral-50) 25%, transparent 25%),
    linear-gradient(-45deg, var(--neutral-50) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--neutral-50) 75%),
    linear-gradient(-45deg, transparent 75%, var(--neutral-50) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
  .casestudy-section-secondary .sidebar-header {
    position: relative;
    top: 0;
    margin-bottom: 3rem;
  }
  
  .casestudy-section-secondary .timeline-item {
    gap: 1.5rem;
  }
  
  .casestudy-section-secondary .card-image-area {
    height: 180px;
  }
}

@media (max-width: 767px) {
  .casestudy-section-secondary .sidebar-header {
    padding: 1.5rem;
  }
  
  .casestudy-section-secondary .timeline-item {
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  
  .casestudy-section-secondary .marker-outer {
    width: 20px;
    height: 20px;
    border-width: 3px;
  }
  
  .casestudy-section-secondary .marker-inner {
    width: 6px;
    height: 6px;
  }
  
  .casestudy-section-secondary .card-body {
    padding: 1.5rem;
  }
  
  .casestudy-section-secondary .card-image-area {
    height: 160px;
  }
}





/* Process section */
.process_section_variant {
  position: relative;
  background: var(--surface-primary);
  padding: 100px 0;
  overflow: hidden;
}

/* Leaf Pattern Background */
.leaf_pattern_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.leaf_item {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--primary-300);
  opacity: 0.08;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: leaf_drift 15s ease-in-out infinite;
}

.leaf_1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.leaf_2 {
  top: 40%;
  right: 8%;
  animation-delay: 5s;
}

.leaf_3 {
  bottom: 20%;
  left: 15%;
  animation-delay: 10s;
}

.leaf_4 {
  top: 60%;
  right: 20%;
  animation-delay: 3s;
}

@keyframes leaf_drift {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -20px) rotate(90deg);
  }
  50% {
    transform: translate(-10px, 10px) rotate(180deg);
  }
  75% {
    transform: translate(15px, 5px) rotate(270deg);
  }
}

/* Header Styling */
.eco_process_header {
  position: relative;
  z-index: 1;
}

.eco_icon_circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 85px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 50%;
  margin-bottom: 1.75rem;
  box-shadow: 0 15px 40px rgba(5, 150, 105, 0.25);
  position: relative;
}

.eco_icon_circle::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 3px dashed var(--primary-300);
  opacity: 0.5;
  animation: circle_rotate 20s linear infinite;
}

@keyframes circle_rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.eco_icon_circle i {
  font-size: 2.5rem;
  color: white;
  position: relative;
  z-index: 1;
}

.eco_main_title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.eco_main_subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-500);
  margin-bottom: 1.5rem;
}

.eco_main_description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

/* Step Cards */
.eco_flow_container {
  position: relative;
  z-index: 1;
}

.eco_step_card {
  position: relative;
  height: 100%;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 24px;
  border: 2px solid var(--border-light);
  overflow: hidden;
  transition: all 0.4s ease;
}

.eco_step_card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-300);
  box-shadow: 0 20px 50px rgba(5, 150, 105, 0.15);
}

/* Leaf Accent */
.step_leaf_accent {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-accent);
  border-radius: 50%;
  transition: all 0.4s ease;
  z-index: 2;
}

.step_leaf_accent i {
  font-size: 1.25rem;
  color: var(--primary-500);
  transition: all 0.3s ease;
}

.eco_step_card:hover .step_leaf_accent {
  background: var(--primary-500);
  transform: rotate(180deg);
}

.eco_step_card:hover .step_leaf_accent i {
  color: white;
}

.accent_featured,
.accent_finale {
  width: 50px;
  height: 50px;
  background: var(--primary-500);
}

.accent_featured i,
.accent_finale i {
  font-size: 1.5rem;
  color: white;
}

/* Wave Decorations */
.step_wave_decoration {
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--primary-100) 50%, 
    transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wave_top {
  top: 0;
  clip-path: polygon(0 100%, 100% 100%, 100% 30%, 90% 20%, 80% 30%, 70% 20%, 60% 30%, 50% 20%, 40% 30%, 30% 20%, 20% 30%, 10% 20%, 0 30%);
}

.wave_bottom {
  bottom: 0;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 80%, 80% 70%, 70% 80%, 60% 70%, 50% 80%, 40% 70%, 30% 80%, 20% 70%, 10% 80%, 0 70%);
}

.eco_step_card:hover .step_wave_decoration {
  opacity: 1;
}

/* Number Badge */
.step_number_badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--surface-accent);
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-500);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.eco_step_card:hover .step_number_badge {
  background: var(--primary-500);
  color: white;
  transform: scale(1.1);
}

.badge_featured,
.badge_finale {
  font-size: 1.25rem;
  padding: 0.6rem 1.25rem;
}

/* Step Icon */
.step_eco_icon {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-50);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.step_eco_icon i {
  font-size: 2rem;
  color: var(--primary-500);
  transition: color 0.3s ease;
}

.eco_step_card:hover .step_eco_icon {
  background: var(--primary-500);
  transform: scale(1.1);
}

.eco_step_card:hover .step_eco_icon i {
  color: white;
}

/* Step Content */
.eco_step_title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.eco_step_description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Featured Card */
.card_featured {
  background: linear-gradient(135deg, 
    var(--surface-primary) 0%, 
    var(--surface-accent) 100%);
}

.featured_flex_wrapper {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.icon_featured {
  width: 85px;
  height: 85px;
  flex-shrink: 0;
}

.icon_featured i {
  font-size: 2.25rem;
}

.featured_text_wrapper {
  flex: 1;
}

.title_featured {
  font-size: 1.65rem;
}

.desc_featured {
  font-size: 1.05rem;
}

/* Finale Card */
.card_finale {
  background: linear-gradient(135deg, 
    var(--primary-100) 0%, 
    var(--surface-accent) 50%,
    var(--primary-50) 100%);
  border: 3px solid var(--primary-300);
}

.finale_wave_pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
}

.wave_layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--primary-500));
  clip-path: polygon(0 40%, 10% 30%, 20% 40%, 30% 30%, 40% 40%, 50% 30%, 60% 40%, 70% 30%, 80% 40%, 90% 30%, 100% 40%, 100% 100%, 0 100%);
}

.layer_1 {
  animation: wave_move 8s ease-in-out infinite;
}

.layer_2 {
  opacity: 0.7;
  animation: wave_move 10s ease-in-out infinite reverse;
}

.layer_3 {
  opacity: 0.5;
  animation: wave_move 12s ease-in-out infinite;
}

@keyframes wave_move {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-20px);
  }
}

.finale_flex_wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.icon_finale {
  width: 95px;
  height: 95px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
}

.icon_finale i {
  font-size: 2.75rem;
  color: white;
}

.card_finale:hover .icon_finale {
  transform: scale(1.15) rotate(10deg);
}

.finale_text_wrapper {
  flex: 1;
}

.title_finale {
  font-size: 1.75rem;
  color: var(--primary-700);
}

.desc_finale {
  font-size: 1.1rem;
  color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .eco_main_title {
    font-size: 2.25rem;
  }

  .featured_flex_wrapper,
  .finale_flex_wrapper {
    flex-direction: column;
  }

  .icon_featured,
  .icon_finale {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767.98px) {
  .process_section_variant {
    padding: 60px 0;
  }

  .eco_main_title {
    font-size: 2rem;
  }

  .eco_main_subtitle {
    font-size: 1.2rem;
  }

  .eco_icon_circle {
    width: 75px;
    height: 75px;
  }

  .eco_icon_circle i {
    font-size: 2.25rem;
  }

  .eco_step_card {
    padding: 2rem 1.5rem;
  }

  .eco_step_title {
    font-size: 1.35rem;
  }

  .eco_step_description {
    font-size: 0.95rem;
  }

  .step_eco_icon {
    width: 65px;
    height: 65px;
  }

  .step_eco_icon i {
    font-size: 1.75rem;
  }

  .icon_featured {
    width: 75px;
    height: 75px;
  }

  .icon_finale {
    width: 80px;
    height: 80px;
  }

  .title_featured,
  .title_finale {
    font-size: 1.5rem;
  }

  .desc_featured,
  .desc_finale {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .eco_main_title {
    font-size: 1.75rem;
  }

  .eco_main_description {
    font-size: 1rem;
  }

  .eco_step_card {
    padding: 1.75rem 1.25rem;
  }

  .step_number_badge {
    font-size: 0.9rem;
    padding: 0.4rem 0.85rem;
  }
}



.timeline-section-minimal {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(to bottom, 
    var(--surface-primary), 
    color-mix(in srgb, var(--primary-50) 15%, var(--surface-primary))
  );
  overflow: hidden;
}

/* Header Styles */
.timeline-section-minimal .section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.timeline-section-minimal .section-subtitle {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-500);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.timeline-section-minimal .section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* Flowing Timeline */
.flowing-timeline {
  position: relative;
  max-width: 1100px;
  margin: 70px auto 0;
  padding: 40px 20px;
}

/* River Path */
.river-path {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.river-stroke {
  fill: none;
  stroke: var(--primary-300);
  stroke-width: 4;
  opacity: 0.3;
  stroke-linecap: round;
}

/* Flow Item Positioning */
.flow-item {
  position: relative;
  margin-bottom: 100px;
  z-index: 1;
  display: flex;
}

.flow-right {
  justify-content: flex-end;
  padding-right: 5%;
}

.flow-left {
  justify-content: flex-start;
  padding-left: 5%;
}

.flow-center {
  justify-content: center;
}

/* Flow Card */
.flow-card {
  position: relative;
  background: white;
  border-radius: 30px;
  padding: 38px;
  max-width: 480px;
  box-shadow: 0 10px 35px color-mix(in srgb, var(--neutral-900) 8%, transparent);
  border: 3px solid var(--neutral-100);
  transition: all 0.5s ease;
  overflow: hidden;
}

.flow-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    transparent 0%, 
    color-mix(in srgb, var(--primary-50) 40%, transparent) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

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

.flow-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 45px color-mix(in srgb, var(--primary-500) 18%, transparent);
  border-color: var(--primary-300);
}

/* Organic Icon */
.organic-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-300));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--primary-500) 25%, transparent);
  transition: all 0.5s ease;
}

.flow-card:hover .organic-icon {
  transform: rotate(15deg) scale(1.1);
}

.organic-icon i {
  font-size: 2.2rem;
  color: var(--primary-700);
}

/* Phase Label */
.phase-label {
  display: inline-block;
  background: var(--primary-50);
  color: var(--primary-700);
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

/* Flow Title */
.flow-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

/* Flow Description */
.flow-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

/* Organic Accents */
.organic-accent {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
  z-index: -1;
}

.accent-leaf {
  width: 100px;
  height: 100px;
  background: var(--primary-500);
  border-radius: 0 100% 0 100%;
  top: -20px;
  right: -20px;
  transform: rotate(45deg);
}

.accent-circle {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--primary-500), transparent);
  bottom: -30px;
  left: -30px;
}

.accent-wave {
  width: 150px;
  height: 80px;
  background: var(--primary-700);
  border-radius: 50%;
  bottom: -40px;
  right: -50px;
  transform: rotate(-20deg);
}

.accent-petal {
  width: 90px;
  height: 90px;
  background: var(--primary-300);
  border-radius: 100% 0;
  top: -25px;
  left: -25px;
  transform: rotate(-45deg);
}

.accent-spiral {
  width: 110px;
  height: 110px;
  border: 20px solid var(--primary-500);
  border-radius: 50%;
  bottom: -30px;
  right: -30px;
}

/* Nature Elements */
.nature-element {
  position: absolute;
  pointer-events: none;
  opacity: 0.04;
  z-index: 0;
}

.element-sun {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--primary-500), var(--primary-300), transparent);
  border-radius: 50%;
  top: 8%;
  right: 5%;
  animation: sun-pulse 8s ease-in-out infinite;
}

.element-cloud-1 {
  width: 180px;
  height: 60px;
  background: var(--neutral-300);
  border-radius: 100px;
  top: 15%;
  left: 10%;
  animation: cloud-drift 20s linear infinite;
}

.element-cloud-1::before,
.element-cloud-1::after {
  content: '';
  position: absolute;
  background: var(--neutral-300);
  border-radius: 50%;
}

.element-cloud-1::before {
  width: 80px;
  height: 80px;
  top: -30px;
  left: 30px;
}

.element-cloud-1::after {
  width: 100px;
  height: 100px;
  top: -40px;
  right: 30px;
}

.element-cloud-2 {
  width: 150px;
  height: 50px;
  background: var(--neutral-300);
  border-radius: 100px;
  bottom: 20%;
  right: 15%;
  animation: cloud-drift 25s linear infinite reverse;
}

.element-cloud-2::before {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  background: var(--neutral-300);
  border-radius: 50%;
  top: -25px;
  left: 40px;
}

@keyframes sun-pulse {
  0%, 100% { transform: scale(1); opacity: 0.04; }
  50% { transform: scale(1.1); opacity: 0.06; }
}

@keyframes cloud-drift {
  0% { transform: translateX(0); }
  100% { transform: translateX(100px); }
}

/* Responsive Design */
@media (max-width: 991px) {
  .flow-right,
  .flow-left,
  .flow-center {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }

  .flow-card {
    max-width: 100%;
  }

  .river-path {
    display: none;
  }
}

@media (max-width: 767px) {
  .timeline-section-minimal {
    padding: 70px 0;
  }

  .timeline-section-minimal .section-title {
    font-size: 2.2rem;
  }

  .timeline-section-minimal .section-subtitle {
    font-size: 1.15rem;
  }

  .timeline-section-minimal .section-description {
    font-size: 1rem;
  }

  .flowing-timeline {
    margin: 50px auto 0;
    padding: 20px 15px;
  }

  .flow-item {
    margin-bottom: 60px;
  }

  .flow-card {
    padding: 30px;
  }

  .organic-icon {
    width: 70px;
    height: 70px;
  }

  .organic-icon i {
    font-size: 1.9rem;
  }

  .flow-title {
    font-size: 1.3rem;
  }

  .flow-description {
    font-size: 0.95rem;
  }
}





.career-section-featured {
  padding: 100px 0;
  background: linear-gradient(180deg, 
    var(--surface-primary) 0%, 
    color-mix(in srgb, var(--primary-50) 30%, var(--surface-primary)) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Header Decoration */
.career-section-featured .header-decoration {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-300), var(--primary-500));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transform: rotate(-5deg);
}

.career-section-featured .header-decoration i {
  font-size: 40px;
  color: var(--light);
  transform: rotate(5deg);
}

/* Typography */
.career-section-featured #career-title {
  color: var(--text-primary);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.career-section-featured #career-subtitle {
  color: var(--primary-700);
  font-weight: 600;
}

.career-section-featured #career-desc {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Timeline */
.career-section-featured .career-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 40px;
}

.career-section-featured .timeline-line {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, 
    var(--primary-300), 
    var(--primary-500), 
    var(--primary-700)
  );
  border-radius: 2px;
}

/* Timeline Items */
.career-section-featured .timeline-item {
  position: relative;
  padding-left: 120px;
  margin-bottom: 60px;
}

.career-section-featured .timeline-item:last-child {
  margin-bottom: 0;
}

.career-section-featured .timeline-dot {
  position: absolute;
  left: 15px;
  top: 0;
  width: 50px;
  height: 50px;
  background: var(--light);
  border: 4px solid var(--primary-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
}

.career-section-featured .timeline-dot i {
  font-size: 22px;
  color: var(--primary-700);
  transition: all 0.3s ease;
}

.career-section-featured .timeline-item:hover .timeline-dot {
  transform: scale(1.2);
  background: var(--primary-500);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.career-section-featured .timeline-item:hover .timeline-dot i {
  color: var(--light);
}

/* Timeline Content */
.career-section-featured .timeline-content {
  background: var(--light);
  border: 1px solid color-mix(in srgb, var(--primary-300) 30%, transparent);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.career-section-featured .timeline-content::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 20px solid var(--light);
}

.career-section-featured .timeline-item:hover .timeline-content {
  transform: translateX(10px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-500);
}

/* Timeline Header */
.career-section-featured .timeline-header {
  margin-bottom: 16px;
}

.career-section-featured .timeline-header h3 {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 8px;
}

.career-section-featured .position-type {
  display: inline-flex;
  padding: 6px 16px;
  background: color-mix(in srgb, var(--primary-100) 70%, var(--primary-50));
  color: var(--primary-700);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* Timeline Description */
.career-section-featured .timeline-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Timeline Icon Group */
.career-section-featured .timeline-icon-group {
  display: flex;
  gap: 12px;
}

.career-section-featured .timeline-icon-group i {
  width: 36px;
  height: 36px;
  background: var(--surface-secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary-500);
  transition: all 0.2s ease;
}

.career-section-featured .timeline-icon-group i:hover {
  background: var(--primary-100);
  transform: translateY(-2px);
}

/* Floating Leaves */
.career-section-featured .floating-leaf {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--primary-300);
  opacity: 0.06;
  border-radius: 50% 0 50% 50%;
  pointer-events: none;
  animation: float 20s infinite ease-in-out;
}

.career-section-featured .leaf-1 {
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.career-section-featured .leaf-2 {
  top: 50%;
  left: 3%;
  animation-delay: 5s;
  width: 80px;
  height: 80px;
}

.career-section-featured .leaf-3 {
  bottom: 15%;
  right: 8%;
  animation-delay: 10s;
  width: 120px;
  height: 120px;
}

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

/* Responsive */
@media (max-width: 991px) {
  .career-section-featured {
    padding: 80px 0;
  }

  .career-section-featured .timeline-item {
    padding-left: 100px;
  }

  .career-section-featured .timeline-content {
    padding: 28px;
  }
}

@media (max-width: 767px) {
  .career-section-featured {
    padding: 60px 0;
  }

  .career-section-featured #career-title {
    font-size: 2rem;
  }

  .career-section-featured .timeline-line {
    left: 30px;
  }

  .career-section-featured .timeline-dot {
    left: 10px;
    width: 40px;
    height: 40px;
  }

  .career-section-featured .timeline-dot i {
    font-size: 18px;
  }

  .career-section-featured .timeline-item {
    padding-left: 80px;
    margin-bottom: 50px;
  }

  .career-section-featured .timeline-content {
    padding: 24px;
  }

  .career-section-featured .timeline-content::before {
    left: -15px;
    border-right-width: 15px;
  }
}





.coreinfo_standard_wrap {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, 
    var(--neutral-50) 0%, 
    var(--primary-50) 40%,
    var(--secondary-50) 100%);
  overflow: hidden;
}

.coreinfo_standard_bg_orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(60px);
  z-index: 0;
  animation: coreinfo_v041_float 10s ease-in-out infinite;
}

.coreinfo_standard_orb_1 {
  top: 10%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: var(--primary-500);
}

.coreinfo_standard_orb_2 {
  bottom: 15%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: var(--secondary-400);
  animation-delay: 3s;
}

.coreinfo_standard_orb_3 {
  top: 50%;
  left: 50%;
  width: 250px;
  height: 250px;
  background: var(--primary-300);
  animation-delay: 6s;
}

@keyframes coreinfo_v041_float {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(30px, -30px);
  }
  66% {
    transform: translate(-20px, 20px);
  }
}

.coreinfo_standard_header {
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.coreinfo_standard_badge_cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.coreinfo_standard_badge_dot {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
  border-radius: 50%;
  animation: coreinfo_v041_bounce 1s ease-in-out infinite;
}

.coreinfo_standard_badge_dot:nth-child(1) {
  animation-delay: 0s;
}

.coreinfo_standard_badge_dot:nth-child(2) {
  animation-delay: 0.2s;
  width: 16px;
  height: 16px;
}

.coreinfo_standard_badge_dot:nth-child(3) {
  animation-delay: 0.4s;
}

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

.coreinfo_standard_title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 16px;
  line-height: 1.2;
}

.coreinfo_standard_subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-700);
  margin-bottom: 20px;
  font-style: italic;
}

.coreinfo_standard_desc {
  font-size: 1.125rem;
  color: var(--neutral-700);
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto;
}

/* Staggered Card Stack */
.coreinfo_standard_stack {
  position: relative;
  z-index: 1;
}

.coreinfo_standard_card {
  position: relative;
  background: var(--neutral-50);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  border: 2px solid var(--primary-300);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.coreinfo_standard_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-500);
}

/* Stagger effect */
.coreinfo_standard_stagger_1 { margin-left: 0; }
.coreinfo_standard_stagger_2 { margin-left: 40px; }
.coreinfo_standard_stagger_3 { margin-left: 80px; }
.coreinfo_standard_stagger_4 { margin-left: 40px; }
.coreinfo_standard_stagger_5 { margin-left: 80px; }
.coreinfo_standard_stagger_6 { margin-left: 0; }

.coreinfo_standard_card_accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at center, var(--primary-300), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.coreinfo_standard_card:hover .coreinfo_standard_card_accent {
  opacity: 0.5;
}

.coreinfo_standard_card_header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.coreinfo_standard_icon_circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
  border-radius: 50%;
  color: var(--neutral-50);
  font-size: 26px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.coreinfo_standard_card:hover .coreinfo_standard_icon_circle {
  transform: rotate(360deg) scale(1.1);
}

.coreinfo_standard_card_title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin: 0;
  line-height: 1.3;
}

.coreinfo_standard_card_desc {
  font-size: 1rem;
  color: var(--neutral-700);
  line-height: 1.7;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
  .coreinfo_standard_wrap {
    padding: 80px 0;
  }

  .coreinfo_standard_title {
    font-size: 2rem;
  }

  .coreinfo_standard_subtitle {
    font-size: 1.125rem;
  }

  .coreinfo_standard_desc {
    font-size: 1rem;
  }

  .coreinfo_standard_stagger_2,
  .coreinfo_standard_stagger_3,
  .coreinfo_standard_stagger_4,
  .coreinfo_standard_stagger_5 {
    margin-left: 20px;
  }
}

@media (max-width: 767px) {
  .coreinfo_standard_wrap {
    padding: 60px 0;
  }

  .coreinfo_standard_header {
    margin-bottom: 50px;
  }

  .coreinfo_standard_title {
    font-size: 1.75rem;
  }

  .coreinfo_standard_subtitle {
    font-size: 1rem;
  }

  .coreinfo_standard_card {
    padding: 24px;
    margin-bottom: 20px;
  }

  .coreinfo_standard_stagger_1,
  .coreinfo_standard_stagger_2,
  .coreinfo_standard_stagger_3,
  .coreinfo_standard_stagger_4,
  .coreinfo_standard_stagger_5,
  .coreinfo_standard_stagger_6 {
    margin-left: 0;
  }

  .coreinfo_standard_card_header {
    gap: 16px;
  }

  .coreinfo_standard_icon_circle {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .coreinfo_standard_card_title {
    font-size: 1.25rem;
  }
}







/* Contact section */

.contact-section-080 {
  position: relative;
  background: var(--surface-primary);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
}

/* Industrial Panel (Left Side) */
.industrial-panel {
  background: linear-gradient(135deg, var(--neutral-900), color-mix(in srgb, var(--neutral-900) 90%, var(--primary-700)));
  min-height: 100vh;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.panel-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.industrial-badge {
  width: 70px;
  height: 70px;
  background: var(--primary-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.industrial-badge i {
  font-size: 2rem;
  color: #ffffff;
}

.panel-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.panel-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-300);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.panel-description {
  font-size: 1rem;
  line-height: 1.8;
  color: color-mix(in srgb, #ffffff 80%, transparent);
  margin-bottom: 3rem;
}

/* Contact Methods */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.method-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid color-mix(in srgb, #ffffff 15%, transparent);
}

.method-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.method-icon {
  width: 45px;
  height: 45px;
  background: color-mix(in srgb, #ffffff 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid color-mix(in srgb, #ffffff 20%, transparent);
}

.method-icon i {
  font-size: 1.25rem;
  color: var(--primary-300);
}

.method-value {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5;
}

/* Grid Overlay */
.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(color-mix(in srgb, #ffffff 5%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, #ffffff 5%, transparent) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  z-index: 1;
}

/* Form Area (Right Side) */
.form-area {
  min-height: 100vh;
  padding: 4rem 3rem;
  background: var(--surface-primary);
  display: flex;
  align-items: center;
  position: relative;
}

.form-inner {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Industrial Form */
.input-wrapper {
  position: relative;
  margin-bottom: 1rem;
}

.industrial-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.industrial-input {
  width: 100%;
  padding: 0.875rem 0;
  border: none;
  border-bottom: 2px solid var(--neutral-300);
  background: transparent;
  font-size: 1rem;
  color: var(--text-primary);
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.industrial-input::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

.industrial-input:focus {
  border-bottom-color: transparent;
}

.industrial-input:focus ~ .input-line {
  transform: scaleX(1);
}

.industrial-textarea {
  resize: vertical;
  min-height: 150px;
  padding-top: 0.875rem;
}

.input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* Industrial Checkbox */
.industrial-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  margin-bottom: 2rem;
}

.industrial-checkbox {
  display: none;
}

.checkbox-mark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--neutral-500);
  background: transparent;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  background: var(--primary-500);
  transition: transform 0.3s ease;
}

.industrial-checkbox:checked + .checkbox-mark {
  border-color: var(--primary-500);
}

.industrial-checkbox:checked + .checkbox-mark::after {
  transform: translate(-50%, -50%) scale(1);
}

.checkbox-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Industrial Button - CRITICAL: Protected with !important */
.industrial-btn {
  background: linear-gradient(135deg, #0f172a, #1e293b) !important;
  color: #ffffff !important;
  border: 2px solid var(--primary-500);
  padding: 1rem 3rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
}

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

.industrial-btn:hover::before {
  left: 0;
}

.industrial-btn:hover {
  border-color: var(--primary-300);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--primary-500) 30%, transparent);
}

.btn-arrow {
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.industrial-btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* Geometric Elements */
.geometric-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

.geo-square {
  position: absolute;
  border: 2px solid var(--primary-100);
}

.square-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  right: 10%;
  opacity: 0.3;
}

.square-2 {
  width: 60px;
  height: 60px;
  bottom: 15%;
  left: 5%;
  opacity: 0.3;
}

.geo-line {
  position: absolute;
  height: 2px;
  background: var(--primary-100);
  opacity: 0.3;
}

.line-1 {
  width: 150px;
  top: 20%;
  left: 10%;
  transform: rotate(-45deg);
}

.line-2 {
  width: 120px;
  bottom: 25%;
  right: 8%;
  transform: rotate(30deg);
}

/* Responsive */
@media (max-width: 991px) {
  .contact-section-080 {
    min-height: auto;
  }

  .industrial-panel,
  .form-area {
    min-height: auto;
    padding: 3rem 2rem;
  }

  .panel-title {
    font-size: 2.25rem;
  }

  .panel-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .industrial-panel,
  .form-area {
    padding: 2rem 1.5rem;
  }

  .panel-title {
    font-size: 1.875rem;
  }

  .industrial-btn {
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
  }

  .industrial-badge {
    width: 60px;
    height: 60px;
  }

  .industrial-badge i {
    font-size: 1.75rem;
  }
}





.blog-section-049 {
  padding: 100px 0;
  background: var(--surface-primary);
  position: relative;
  overflow: hidden;
}

.blog-section-049 .title-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.blog-section-049 .decorative-blob {
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-300), var(--primary-500));
  opacity: 0.15;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: blobMorph 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes blobMorph {
  0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
}

.blog-section-049 .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.blog-section-049 .section-subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary-500);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.blog-section-049 .section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* Blog Cards */
.blog-section-049 .blog-card {
  height: 100%;
  perspective: 1000px;
}

.blog-section-049 .card-inner {
  background: var(--surface-secondary);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.blog-section-049 .blog-card:hover .card-inner {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.blog-section-049 .blog-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog-section-049 .blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.blog-section-049 .blog-card:hover .blog-image {
  transform: scale(1.15) rotate(2deg);
}

.blog-section-049 .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary-500) 70%, transparent 30%) 0%,
    color-mix(in srgb, var(--primary-700) 70%, transparent 30%) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.blog-section-049 .blog-card:hover .gradient-overlay {
  opacity: 0.7;
}

.blog-section-049 .icon-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: var(--surface-secondary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-500);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  z-index: 2;
}

.blog-section-049 .blog-card:hover .icon-badge {
  transform: rotate(360deg) scale(1.1);
  background: var(--primary-500);
  color: var(--light);
}

.blog-section-049 .blog-content {
  padding: 35px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-section-049 .meta-line {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.blog-section-049 .meta-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-300);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.blog-section-049 .blog-card:hover .meta-dot:nth-child(1) {
  transform: translateX(-5px);
  background: var(--primary-500);
}

.blog-section-049 .blog-card:hover .meta-dot:nth-child(2) {
  background: var(--primary-500);
}

.blog-section-049 .blog-card:hover .meta-dot:nth-child(3) {
  transform: translateX(5px);
  background: var(--primary-500);
}

.blog-section-049 .blog-title {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-section-049 .blog-card:hover .blog-title {
  color: var(--primary-500);
}

.blog-section-049 .blog-excerpt {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 25px;
  flex: 1;
}

.blog-section-049 .blog-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-500);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.blog-section-049 .link-icon {
  width: 35px;
  height: 35px;
  background: color-mix(in srgb, var(--primary-500) 10%, transparent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.blog-section-049 .blog-link:hover {
  color: var(--primary-700);
  transform: translateX(5px);
}

.blog-section-049 .blog-link:hover .link-icon {
  background: var(--primary-500);
  color: var(--light);
  transform: rotate(45deg);
}

/* Floating Shapes */
.blog-section-049 .floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.blog-section-049 .shape-1 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-300));
  top: 10%;
  right: 5%;
  animation: floatRotate 15s ease-in-out infinite;
}

.blog-section-049 .shape-2 {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
  bottom: 20%;
  left: 8%;
  animation: floatRotate 12s ease-in-out infinite reverse;
}

.blog-section-049 .shape-3 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-300), var(--primary-500));
  top: 50%;
  left: 50%;
  animation: floatRotate 10s ease-in-out infinite;
}

@keyframes floatRotate {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .blog-section-049 {
    padding: 80px 0;
  }

  .blog-section-049 .section-title {
    font-size: 2.3rem;
  }

  .blog-section-049 .floating-shape {
    display: none;
  }
}

@media (max-width: 767px) {
  .blog-section-049 {
    padding: 60px 0;
  }

  .blog-section-049 .section-title {
    font-size: 1.9rem;
  }

  .blog-section-049 .blog-image-wrapper {
    height: 200px;
  }

  .blog-section-049 .blog-content {
    padding: 25px;
  }

  .blog-section-049 .blog-title {
    font-size: 1.3rem;
  }
}


.faq-section {
  background: var(--surface-primary);
  position: relative;
  overflow: hidden;
}

.faq-section .decorative-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-300), transparent);
  opacity: 0.3;
  z-index: 0;
}

.faq-section .line-1 {
  width: 60%;
  top: 15%;
  right: 0;
}

.faq-section .line-2 {
  width: 50%;
  bottom: 25%;
  left: 0;
}

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

.faq-section .tracking-wide {
  letter-spacing: 0.15em;
}

.faq-section .faq-card {
  border: none;
  border-radius: 0;
  border-left: 3px solid var(--neutral-300);
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.faq-section .faq-card:hover {
  border-left-color: var(--primary-500);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transform: translateX(8px);
}

.faq-section .card-body {
  padding: 2rem 2.5rem;
  position: relative;
}

.faq-section .faq-number {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 3rem;
  font-weight: 700;
  color: var(--neutral-100);
  line-height: 1;
  user-select: none;
}

.faq-section .card-body h3 {
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.4;
  margin-right: 4rem;
}

.faq-section .card-body p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-right: 4rem;
}

/* Header styles */
.faq-section #faq-title {
  color: var(--text-primary);
}

.faq-section #faq-subtitle {
  color: var(--primary-500);
  font-weight: 700;
  font-size: 0.875rem;
}

.faq-section #faq-desc {
  color: var(--text-secondary);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .faq-section .card-body {
    padding: 1.75rem 2rem;
  }

  .faq-section .faq-number {
    font-size: 2.5rem;
    right: 1.5rem;
  }

  .faq-section .card-body h3,
  .faq-section .card-body p {
    margin-right: 3rem;
  }
}

@media (max-width: 768px) {
  .faq-section .card-body {
    padding: 1.5rem;
  }

  .faq-section .faq-number {
    font-size: 2rem;
    top: 1.25rem;
    right: 1.25rem;
  }

  .faq-section .card-body h3 {
    font-size: 1rem;
    margin-right: 2.5rem;
  }

  .faq-section .card-body p {
    margin-right: 0;
    font-size: 0.95rem;
  }

  .faq-section .faq-card:hover {
    transform: translateX(4px);
  }
}





/* Gallery section */

.gallery-section-bold {
  background: var(--background-primary);
  position: relative;
  overflow: hidden;
}

/* Motion Lines */
.gallery-section-bold .motion-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.05;
}

.gallery-section-bold .motion-line {
  position: absolute;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary-500) 50%,
    transparent 100%
  );
  animation: motion-slide 8s linear infinite;
}

.gallery-section-bold .line-1 {
  top: 25%;
  animation-delay: 0s;
}

.gallery-section-bold .line-2 {
  top: 50%;
  animation-delay: 2s;
  animation-direction: reverse;
}

.gallery-section-bold .line-3 {
  top: 75%;
  animation-delay: 4s;
}

@keyframes motion-slide {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

/* Carousel Strips Container */
.gallery-section-bold .carousel-strips {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
}

/* Strip Rows */
.gallery-section-bold .strip-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 1rem 0;
  transition: transform 0.3s ease;
}

.gallery-section-bold .strip-rtl {
  justify-content: flex-end;
  animation: strip-slide-rtl 30s linear infinite;
}

.gallery-section-bold .strip-ltr {
  justify-content: flex-start;
  animation: strip-slide-ltr 30s linear infinite;
}

.gallery-section-bold .strip-row:hover {
  animation-play-state: paused;
}

@keyframes strip-slide-rtl {
  0% { transform: translateX(0); }
  100% { transform: translateX(-10%); }
}

@keyframes strip-slide-ltr {
  0% { transform: translateX(0); }
  100% { transform: translateX(10%); }
}

/* Strip Cards */
.gallery-section-bold .strip-card {
  flex: 0 0 auto;
  width: 380px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-section-bold .strip-card:hover {
  transform: translateY(-20px) scale(1.08);
  z-index: 10;
}

/* Card Wrapper */
.gallery-section-bold .card-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.4s ease;
  background: var(--background-secondary);
}

.gallery-section-bold .strip-card:hover .card-wrapper {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
}

/* Strip Images */
.gallery-section-bold .strip-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.4s ease;
}

.gallery-section-bold .strip-card:hover .strip-image {
  transform: scale(1.2);
  filter: brightness(0.85) contrast(1.15);
}

/* Card Shine Effect */
.gallery-section-bold .card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 70%
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.8s ease;
}

.gallery-section-bold .strip-card:hover .card-shine {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Card Hover Overlay */
.gallery-section-bold .card-hover {
  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;
}

.gallery-section-bold .strip-card:hover .card-hover {
  opacity: 1;
}

.gallery-section-bold .card-hover i {
  font-size: 4.5rem;
  color: #ffffff;
  transform: scale(0) rotateZ(-180deg);
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gallery-section-bold .strip-card:hover .card-hover i {
  transform: scale(1) rotateZ(0deg);
}

/* Speed Icons */
.gallery-section-bold .speed-icons {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  opacity: 0.1;
}

.gallery-section-bold .speed-icons i {
  font-size: 3rem;
  color: var(--primary-500);
  animation: speed-pulse 2s ease-in-out infinite;
}

.gallery-section-bold .speed-icons i:nth-child(1) {
  animation-delay: 0s;
}

.gallery-section-bold .speed-icons i:nth-child(2) {
  animation-delay: 0.4s;
}

.gallery-section-bold .speed-icons i:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes speed-pulse {
  0%, 100% { transform: scale(1); opacity: 0.1; }
  50% { transform: scale(1.3); opacity: 0.3; }
}

/* Responsive Adjustments */
@media (max-width: 1400px) {
  .gallery-section-bold .strip-card {
    width: 350px;
  }
  
  .gallery-section-bold .card-wrapper {
    height: 260px;
  }
}

@media (max-width: 1200px) {
  .gallery-section-bold .strip-card {
    width: 320px;
  }
  
  .gallery-section-bold .card-wrapper {
    height: 240px;
  }
  
  .gallery-section-bold .strip-row {
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .gallery-section-bold .strip-rtl,
  .gallery-section-bold .strip-ltr {
    animation: none;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .gallery-section-bold .strip-card {
    width: 300px;
  }
  
  .gallery-section-bold .card-wrapper {
    height: 220px;
  }
  
  .gallery-section-bold .motion-lines {
    display: none;
  }
}

@media (max-width: 768px) {
  .gallery-section-bold .strip-row {
    gap: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .gallery-section-bold .strip-card {
    width: 280px;
  }
  
  .gallery-section-bold .card-wrapper {
    height: 200px;
  }
  
  .gallery-section-bold .card-hover i {
    font-size: 3.5rem;
  }
  
  .gallery-section-bold .speed-icons {
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .gallery-section-bold .speed-icons i {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .gallery-section-bold .strip-row {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .gallery-section-bold .strip-card {
    width: 100%;
    max-width: 350px;
  }
  
  .gallery-section-bold .card-wrapper {
    height: 240px;
  }
  
  .gallery-section-bold .strip-card:hover {
    transform: scale(1.03);
  }
  
  .gallery-section-bold .speed-icons {
    display: none;
  }
}







﻿/* Footer section */

.footer-custom {
  position: relative;
  color: var(--text-inverse);
  overflow: hidden;
}

/* Top Border Animation */
.footer-custom .footer-top-border {
  position: relative;
  height: 4px;
  overflow: hidden;
}

.footer-custom .border-animated-line {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: slideLineBorder 3s ease-in-out infinite;
}

/* Content Wrapper */
.footer-custom .footer-content-wrap {
  position: relative;
  z-index: 2;
}

/* Brand Showcase Box */
.footer-custom .brand-showcase-box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
}

@media (min-width: 768px) {
  .footer-custom .brand-showcase-box {
    flex-direction: row;
    align-items: center;
  }
}

.footer-custom .showcase-left {
  flex-shrink: 0;
}

.footer-custom .brand-emblem {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-custom .emblem-outer {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: rotateEmblem 20s linear infinite;
}

.footer-custom .emblem-inner {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.footer-custom .emblem-inner i {
  font-size: 2rem;
  color: var(--text-inverse);
}

.footer-custom .showcase-right {
  flex: 1;
}

.footer-custom .showcase-brand-name {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-inverse);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.footer-custom .showcase-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-custom .icon-badges-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-custom .badge-item {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.footer-custom .badge-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px) scale(1.1);
}

.footer-custom .badge-item i {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Information Panels */
.footer-custom .info-panel {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  height: 100%;
  transition: all 0.4s ease;
}

.footer-custom .info-panel:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

.footer-custom .panel-top {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-custom .panel-icon-circle {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-custom .panel-icon-circle i {
  font-size: 1.4rem;
  color: var(--text-inverse);
}

.footer-custom .panel-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-inverse);
  margin: 0;
}

/* Panel Links Wrapper */
.footer-custom .panel-links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-custom .links-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.footer-custom .link-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-custom .link-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.footer-custom .link-card i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.footer-custom .link-card:hover i {
  color: var(--text-inverse);
  transform: scale(1.3);
}

.footer-custom .link-card span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-custom .link-card:hover span {
  color: var(--text-inverse);
}

/* Contact Details Stack */
.footer-custom .contact-details-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-custom .contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.footer-custom .contact-detail-row:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(8px);
}

.footer-custom .detail-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-custom .contact-detail-row:hover .detail-icon-box {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(10deg) scale(1.1);
}

.footer-custom .detail-icon-box i {
  font-size: 1.25rem;
  color: var(--text-inverse);
}

.footer-custom .detail-content {
  flex: 1;
  padding-top: 0.5rem;
}

.footer-custom .detail-value {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.7;
  display: block;
}

/* Content Divider */
.footer-custom .content-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.footer-custom .divider-part {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-custom .divider-icon-box {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseDivider 3s ease-in-out infinite;
}

.footer-custom .divider-icon-box i {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Footer Meta Row */
.footer-custom .footer-meta-row {
  position: relative;
  z-index: 2;
}

.footer-custom .disclaimer-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-custom .disclaimer-text-content {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.75;
  margin: 0;
}

.footer-custom .copyright-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.125rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  height: 100%;
  justify-content: center;
}

.footer-custom .copyright-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-custom .copyright-icon-wrap i {
  font-size: 1.35rem;
  color: var(--text-inverse);
}

.footer-custom .copyright-text-content {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
}

/* Animated Background */
.footer-custom .footer-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.footer-custom .animated-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  filter: blur(50px);
}

.footer-custom .circle-a {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation: floatCircleAnim 22s ease-in-out infinite;
}

.footer-custom .circle-b {
  width: 350px;
  height: 350px;
  bottom: -80px;
  left: -80px;
  animation: floatCircleAnim 28s ease-in-out infinite reverse;
}

.footer-custom .circle-c {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: floatCircleAnim 35s ease-in-out infinite;
}

.footer-custom .animated-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 150px;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.02) 50px,
    transparent 100px
  );
  animation: waveMove 20s linear infinite;
}

/* Animations */
@keyframes slideLineBorder {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes rotateEmblem {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulseDivider {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes floatCircleAnim {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -40px) scale(1.1);
  }
}

@keyframes waveMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .footer-custom .showcase-brand-name {
    font-size: 1.75rem;
  }
  
  .footer-custom .panel-heading {
    font-size: 1.2rem;
  }
}

@media (max-width: 767.98px) {
  .footer-custom {
    background-attachment: scroll !important;
  }
  
  .footer-custom .brand-showcase-box {
    padding: 2rem;
  }
  
  .footer-custom .showcase-brand-name {
    font-size: 1.6rem;
  }
  
  .footer-custom .brand-emblem {
    width: 75px;
    height: 75px;
  }
  
  .footer-custom .emblem-inner {
    width: 60px;
    height: 60px;
  }
  
  .footer-custom .emblem-inner i {
    font-size: 1.65rem;
  }
  
  .footer-custom .info-panel {
    padding: 1.5rem;
  }
  
  .footer-custom .links-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .footer-custom .showcase-brand-name {
    font-size: 1.5rem;
  }
  
  .footer-custom .showcase-description,
  .footer-custom .link-card span,
  .footer-custom .detail-value {
    font-size: 0.9rem;
  }
  
  .footer-custom .badge-item {
    width: 40px;
    height: 40px;
  }
  
  .footer-custom .disclaimer-text-content,
  .footer-custom .copyright-text-content {
    font-size: 0.8rem;
  }
}







.add_wrap {
  padding: var(--section-py) 0;
  background-color: var(--neutral-100);
}

.add_wrap .add_header {
  margin-bottom: var(--space-12);
}

.add_wrap .add_title {
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.add_wrap .add_subtitle {
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

.add_wrap .add_description {
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
}

.add_wrap .add_process_container {
  max-width: 800px;
  margin: 0 auto;
}

.add_wrap .add_process_step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
  position: relative;
}

.add_wrap .add_process_step:last-child {
  margin-bottom: 0;
}

.add_wrap .add_step_number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-100);
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.add_wrap .add_step_content {
  flex-grow: 1;
  background-color: var(--neutral-50);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-200);
  position: relative;
  top: var(--space-2);
}

.add_wrap .add_step_content:before {
  content: '';
  position: absolute;
  left: -12px;
  top: var(--space-6);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 12px solid var(--neutral-200);
}

.add_wrap .add_step_content:after {
  content: '';
  position: absolute;
  left: -11px;
  top: calc(var(--space-6) + 1px);
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-right: 11px solid var(--neutral-50);
}

.add_wrap .add_step_title {
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  font-size: 1.25rem;
  font-weight: 600;
}

.add_wrap .add_step_desc {
  color: var(--text-body);
  margin-bottom: 0;
  line-height: 1.6;
}

.add_wrap .add_step_connector {
  position: absolute;
  left: 39px;
  top: 80px;
  bottom: -40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-300), var(--primary-200));
  z-index: 1;
}

.add_wrap .add_process_step:last-child .add_step_connector {
  display: none;
}

.add_wrap .add_process_step:nth-child(even) .add_step_number {
  background: linear-gradient(135deg, var(--primary-400), var(--primary-300));
}

.add_wrap .add_process_step:nth-child(even) .add_step_content {
  background: linear-gradient(135deg, var(--neutral-50), var(--primary-50));
}

@media (max-width: 768px) {
  .add_wrap .add_process_step {
    gap: var(--space-4);
    margin-bottom: var(--space-8);
  }
  
  .add_wrap .add_step_number {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }
  
  .add_wrap .add_step_content {
    padding: var(--space-4);
  }
  
  .add_wrap .add_step_content:before {
    left: -8px;
    border-right-width: 8px;
    border-top-width: 8px;
    border-bottom-width: 8px;
  }
  
  .add_wrap .add_step_content:after {
    left: -7px;
    border-right-width: 7px;
    border-top-width: 7px;
    border-bottom-width: 7px;
  }
  
  .add_wrap .add_step_connector {
    left: 29px;
    top: 60px;
    bottom: -32px;
  }
}


.add_wrap {
  padding: var(--section-py) 0;
  background-color: var(--neutral-50);
}

.add_wrap .add_header {
  margin-bottom: var(--space-12);
}

.add_wrap .add_title {
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.add_wrap .add_subtitle {
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

.add_wrap .add_description {
  color: var(--text-body);
  max-width: 700px;
  margin: 0 auto;
}

.add_wrap .add_card {
  background-color: var(--neutral-100);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--neutral-200);
  position: relative;
  overflow: hidden;
}

.add_wrap .add_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.add_wrap .add_card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-400));
}

.add_wrap .add_card_icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
  position: relative;
}

.add_wrap .add_card_icon:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background-color: var(--neutral-100);
  border-radius: 50%;
}

.add_wrap .add_card_content {
  flex-grow: 1;
}

.add_wrap .add_card_title {
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  font-size: 1.25rem;
  font-weight: 600;
}

.add_wrap .add_card_desc {
  color: var(--text-body);
  margin-bottom: 0;
  line-height: 1.6;
}

.add_wrap .add_card_large {
  background: linear-gradient(135deg, var(--neutral-100), var(--neutral-50));
}

.add_wrap .add_card_large .add_card_icon {
  width: 80px;
  height: 80px;
}

.add_wrap .add_card_large .add_card_icon:after {
  width: 32px;
  height: 32px;
}

.add_wrap .add_card_large .add_card_title {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .add_wrap .add_card {
    padding: var(--space-6);
  }
  
  .add_wrap .add_card_icon {
    width: 50px;
    height: 50px;
  }
  
  .add_wrap .add_card_icon:after {
    width: 20px;
    height: 20px;
  }
  
  .add_wrap .add_card_large .add_card_icon {
    width: 60px;
    height: 60px;
  }
  
  .add_wrap .add_card_large .add_card_icon:after {
    width: 24px;
    height: 24px;
  }
}


/* Universal section */

.additional-universal-section.v-063 {
  padding: 100px 0;
  background: linear-gradient(180deg, 
    var(--surface-primary), 
    color-mix(in srgb, var(--primary-300) 3%, var(--surface-primary)));
  position: relative;
  overflow: hidden;
}

/* Section Header */
.v-063 .section-header {
  max-width: 800px;
  margin: 0 auto 80px;
}

.v-063 .header-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.v-063 .accent-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-500);
  animation: dotPulse 2s ease-in-out infinite;
}

.v-063 .accent-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-300));
}

.v-063 .section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.v-063 .section-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-500);
  line-height: 1.4;
}

.v-063 .section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
}

/* Timeline Wrapper */
.v-063 .timeline-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.v-063 .timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, 
    transparent, 
    var(--primary-300) 10%, 
    var(--primary-300) 90%, 
    transparent);
  transform: translateX(-50%);
  z-index: 1;
}

/* Timeline Item */
.v-063 .timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  z-index: 2;
}

.v-063 .timeline-item:last-child {
  margin-bottom: 0;
}

.v-063 .timeline-item:nth-child(odd) {
  flex-direction: row;
}

.v-063 .timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

/* Timeline Marker */
.v-063 .timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.v-063 .marker-dot {
  width: 24px;
  height: 24px;
  background: white;
  border: 4px solid var(--primary-500);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary-500) 15%, white);
}

.v-063 .marker-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 2px solid var(--primary-500);
  border-radius: 50%;
  opacity: 0;
  animation: markerPulse 2s ease-out infinite;
}

/* Timeline Content */
.v-063 .timeline-content {
  width: calc(50% - 60px);
  background: white;
  border: 1px solid var(--neutral-100);
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.v-063 .timeline-content::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--primary-300);
}

.v-063 .timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  text-align: right;
}

.v-063 .timeline-item:nth-child(odd) .timeline-content::before {
  right: -30px;
  transform: translateY(-50%);
}

.v-063 .timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  text-align: left;
}

.v-063 .timeline-item:nth-child(even) .timeline-content::before {
  left: -30px;
  transform: translateY(-50%);
}

.v-063 .timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-300);
}

/* Timeline Icon */
.v-063 .timeline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--primary-500) 15%, white),
    color-mix(in srgb, var(--primary-300) 10%, white));
  border-radius: 14px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.v-063 .timeline-icon i {
  font-size: 28px;
  color: var(--primary-500);
  transition: transform 0.3s ease;
}

.v-063 .timeline-content:hover .timeline-icon {
  background: var(--primary-500);
}

.v-063 .timeline-content:hover .timeline-icon i {
  color: white;
  transform: scale(1.1) rotate(5deg);
}

/* Timeline Text */
.v-063 .timeline-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 15px;
}

.v-063 .timeline-description {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Decorative Elements */
.v-063 .decorative-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.v-063 .deco-shape {
  position: absolute;
  opacity: 0.08;
}

.v-063 .shape-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-500), transparent 60%);
  top: 5%;
  right: 5%;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: morphShape 20s ease-in-out infinite;
}

.v-063 .shape-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--primary-700), transparent 60%);
  bottom: 10%;
  left: 5%;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morphShape 25s ease-in-out infinite reverse;
}

.v-063 .shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--primary-300), transparent 60%);
  top: 50%;
  right: 10%;
  border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  animation: float 18s ease-in-out infinite;
}

/* Animations */
@keyframes dotPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

@keyframes markerPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@keyframes morphShape {
  0%, 100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: rotate(0deg);
  }
  25% {
    border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
    transform: rotate(90deg);
  }
  50% {
    border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%;
    transform: rotate(180deg);
  }
  75% {
    border-radius: 30% 70% 60% 40% / 50% 50% 30% 70%;
    transform: rotate(270deg);
  }
}

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

/* Responsive Design */
@media (max-width: 991px) {
  .v-063 {
    padding: 80px 0;
  }

  .v-063 .section-title {
    font-size: 2.25rem;
  }

  .v-063 .section-subtitle {
    font-size: 1.25rem;
  }

  .v-063 .timeline-title {
    font-size: 1.375rem;
  }
}

@media (max-width: 767px) {
  .v-063 {
    padding: 60px 0;
  }

  .v-063 .section-title {
    font-size: 1.875rem;
  }

  .v-063 .section-subtitle {
    font-size: 1.125rem;
  }

  .v-063 .section-header {
    margin-bottom: 60px;
  }

  /* Mobile Timeline */
  .v-063 .timeline-line {
    left: 30px;
  }

  .v-063 .timeline-item,
  .v-063 .timeline-item:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 70px;
  }

  .v-063 .timeline-marker {
    left: 30px;
    top: 20px;
    transform: translateX(-50%);
  }

  .v-063 .timeline-content,
  .v-063 .timeline-item:nth-child(odd) .timeline-content,
  .v-063 .timeline-item:nth-child(even) .timeline-content {
    width: 100%;
    text-align: left;
    margin: 0;
  }

  .v-063 .timeline-content::before {
    display: none;
  }

  .v-063 .timeline-title {
    font-size: 1.25rem;
  }
}





/* Universal section */

.additional-universal-section.v-055 {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--surface-primary) 0%, color-mix(in srgb, var(--primary-50) 30%, var(--surface-primary) 70%) 100%);
  overflow: hidden;
}

/* Section Header */
.v-055 .section-header {
  position: relative;
  z-index: 2;
}

.v-055 .header-accent {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-700));
  margin: 0 auto 30px;
  border-radius: 2px;
}

.v-055 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.v-055 .section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-500);
  margin-bottom: 20px;
  line-height: 1.4;
}

.v-055 .section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* Content Grid */
.v-055 .content-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.v-055 .grid-item {
  position: relative;
}

.v-055 .grid-item.item-1 {
  grid-column: span 6;
}

.v-055 .grid-item.item-2 {
  grid-column: span 6;
}

.v-055 .grid-item.item-3.featured {
  grid-column: span 12;
}

.v-055 .grid-item.item-4 {
  grid-column: span 6;
}

.v-055 .grid-item.item-5 {
  grid-column: span 6;
}

.v-055 .item-inner {
  height: 100%;
  background: var(--light);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.v-055 .item-inner:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Icon Wrapper */
.v-055 .icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.v-055 .icon-wrapper i {
  font-size: 28px;
  color: var(--light);
}

.v-055 .icon-wrapper.large {
  width: 80px;
  height: 80px;
}

.v-055 .icon-wrapper.large i {
  font-size: 36px;
}

/* Item Content */
.v-055 .item-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.v-055 .item-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Featured Item Styling */
.v-055 .grid-item.featured .item-inner {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
  padding: 50px;
}

.v-055 .grid-item.featured .item-title {
  color: var(--light);
  font-size: 2rem;
}

.v-055 .grid-item.featured .item-description {
  color: color-mix(in srgb, var(--light) 90%, transparent 10%);
  font-size: 1.125rem;
}

.v-055 .grid-item.featured .icon-wrapper {
  background: color-mix(in srgb, var(--light) 20%, transparent 80%);
  backdrop-filter: blur(10px);
}

/* Item Decorations */
.v-055 .item-decoration {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: color-mix(in srgb, var(--primary-300) 15%, transparent 85%);
  border-radius: 50%;
  z-index: 0;
}

.v-055 .featured-decoration {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--light) 10%, transparent 90%);
  border-radius: 50%;
  z-index: 0;
}

/* Background Decorations */
.v-055 .bg-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.v-055 .deco-circle {
  position: absolute;
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary-300) 10%, transparent 90%);
}

.v-055 .deco-circle.circle-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -100px;
}

.v-055 .deco-circle.circle-2 {
  width: 250px;
  height: 250px;
  bottom: 15%;
  right: -80px;
}

.v-055 .deco-blob {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: color-mix(in srgb, var(--primary-500) 8%, transparent 92%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: blob-float 20s ease-in-out infinite;
}

@keyframes blob-float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.v-055 .deco-line {
  position: absolute;
  width: 2px;
  height: 150px;
  background: linear-gradient(to bottom, transparent, var(--primary-300), transparent);
  opacity: 0.3;
}

.v-055 .deco-line.line-1 {
  top: 20%;
  left: 15%;
}

.v-055 .deco-line.line-2 {
  bottom: 25%;
  right: 20%;
}

/* Responsive Design */
@media (max-width: 991px) {
  .v-055 {
    padding: 80px 0;
  }

  .v-055 .section-title {
    font-size: 2rem;
  }

  .v-055 .section-subtitle {
    font-size: 1.25rem;
  }

  .v-055 .content-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .v-055 .grid-item {
    grid-column: span 1 !important;
  }

  .v-055 .item-inner {
    padding: 30px;
  }

  .v-055 .grid-item.featured .item-inner {
    padding: 40px;
  }

  .v-055 .grid-item.featured .item-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .v-055 {
    padding: 60px 0;
  }

  .v-055 .section-title {
    font-size: 1.75rem;
  }

  .v-055 .section-subtitle {
    font-size: 1.125rem;
  }

  .v-055 .section-description {
    font-size: 1rem;
  }

  .v-055 .item-inner {
    padding: 24px;
  }

  .v-055 .grid-item.featured .item-inner {
    padding: 32px;
  }

  .v-055 .icon-wrapper {
    width: 56px;
    height: 56px;
  }

  .v-055 .icon-wrapper i {
    font-size: 24px;
  }

  .v-055 .icon-wrapper.large {
    width: 64px;
    height: 64px;
  }

  .v-055 .icon-wrapper.large i {
    font-size: 28px;
  }

  .v-055 .item-title {
    font-size: 1.25rem;
  }

  .v-055 .grid-item.featured .item-title {
    font-size: 1.5rem;
  }
}





/* Universal section */

.additional-universal-featured {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--neutral-50) 0%, var(--primary-50) 100%);
  overflow: hidden;
}

/* Section Header */
.additional-universal-featured .section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.additional-universal-featured .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-featured .section-description {
  font-size: 1.125rem;
  color: var(--neutral-700);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Decorative Line Accent */
.additional-universal-featured .decorative-line-accent {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
  margin: 3rem auto;
  border-radius: 2px;
}

/* Feature Cards */
.additional-universal-featured .feature-card {
  position: relative;
  background: var(--neutral-0);
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid var(--neutral-200);
}

.additional-universal-featured .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-300);
}

.additional-universal-featured .feature-card.featured {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--neutral-0) 100%);
  border: 2px solid var(--primary-200);
}

/* Card Icons */
.additional-universal-featured .card-icon-wrapper,
.additional-universal-featured .icon-holder {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.additional-universal-featured .card-icon-wrapper i,
.additional-universal-featured .icon-holder i {
  font-size: 2rem;
  color: var(--neutral-0);
}

.additional-universal-featured .feature-card.standard .icon-holder {
  width: 60px;
  height: 60px;
}

.additional-universal-featured .feature-card.standard .icon-holder i {
  font-size: 1.75rem;
}

/* Card Content */
.additional-universal-featured .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.additional-universal-featured .feature-card.standard .card-title {
  font-size: 1.35rem;
}

.additional-universal-featured .card-description {
  font-size: 1rem;
  color: var(--neutral-700);
  line-height: 1.6;
  margin: 0;
}

/* Card Decorative Shape */
.additional-universal-featured .card-decorative-shape {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: var(--primary-100);
  border-radius: 50%;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.additional-universal-featured .feature-card:hover .card-decorative-shape {
  transform: scale(1.2);
  opacity: 0.5;
}

/* Decorative Blobs */
.additional-universal-featured .decorative-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.additional-universal-featured .blob-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-300);
  top: -100px;
  left: -100px;
  filter: blur(60px);
}

.additional-universal-featured .blob-2 {
  width: 350px;
  height: 350px;
  background: var(--accent-300);
  bottom: -80px;
  right: -80px;
  filter: blur(50px);
}

.additional-universal-featured .decorative-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px dashed var(--primary-200);
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
}

.additional-universal-featured .circle-1 {
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

/* Responsive Design */
@media (max-width: 991px) {
  .additional-universal-featured {
    padding: 4rem 0;
  }

  .additional-universal-featured .section-title {
    font-size: 2rem;
  }

  .additional-universal-featured .section-subtitle {
    font-size: 1.35rem;
  }

  .additional-universal-featured .feature-card {
    padding: 2rem;
  }
}

@media (max-width: 767px) {
  .additional-universal-featured {
    padding: 3rem 0;
  }

  .additional-universal-featured .section-title {
    font-size: 1.75rem;
  }

  .additional-universal-featured .section-subtitle {
    font-size: 1.25rem;
  }

  .additional-universal-featured .section-description {
    font-size: 1rem;
  }

  .additional-universal-featured .feature-card {
    padding: 1.75rem;
  }

  .additional-universal-featured .card-title {
    font-size: 1.35rem;
  }

  .additional-universal-featured .decorative-blob {
    display: none;
  }
}




/* Universal section */

.additional-universal-classic {
  position: relative;
  padding: 6rem 0 0;
  background: var(--neutral-0);
  overflow: hidden;
}

/* Section Header */
.additional-universal-classic .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-classic .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-classic .section-description {
  font-size: 1.125rem;
  color: var(--neutral-700);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 4rem;
}

/* Split Items Wrapper */
.additional-universal-classic .split-items-wrapper {
  position: relative;
}

/* Split Item */
.additional-universal-classic .split-item {
  padding: 4rem 0;
  position: relative;
}

.additional-universal-classic .split-item:nth-child(odd) {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--neutral-0) 100%);
}

.additional-universal-classic .split-item:nth-child(even) {
  background: linear-gradient(135deg, var(--accent-50) 0%, var(--neutral-0) 100%);
}

/* Visual Column */
.additional-universal-classic .visual-column {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Visual Block */
.additional-universal-classic .visual-block {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 350px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.4s ease;
}

.additional-universal-classic .split-item:hover .visual-block {
  transform: scale(1.05);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.25);
}

.additional-universal-classic .block-2 {
  background: linear-gradient(135deg, var(--accent-500), var(--accent-700));
}

.additional-universal-classic .block-3 {
  background: linear-gradient(135deg, var(--primary-600), var(--accent-600));
}

.additional-universal-classic .block-4 {
  background: linear-gradient(135deg, var(--accent-600), var(--primary-700));
}

.additional-universal-classic .block-5 {
  background: linear-gradient(135deg, var(--primary-700), var(--accent-500));
}

/* Visual Icon */
.additional-universal-classic .visual-icon {
  position: relative;
  z-index: 2;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.additional-universal-classic .visual-icon i {
  font-size: 4rem;
  color: var(--neutral-0);
}

/* Visual Patterns */
.additional-universal-classic .visual-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
}

.additional-universal-classic .pattern-circles {
  background: radial-gradient(circle, var(--neutral-0) 2px, transparent 2px);
  background-size: 30px 30px;
}

.additional-universal-classic .pattern-grid {
  background-image: linear-gradient(var(--neutral-0) 2px, transparent 2px), linear-gradient(90deg, var(--neutral-0) 2px, transparent 2px);
  background-size: 40px 40px;
}

.additional-universal-classic .pattern-waves {
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, var(--neutral-0) 20px, var(--neutral-0) 22px);
}

.additional-universal-classic .pattern-dots {
  background: radial-gradient(circle, var(--neutral-0) 1px, transparent 1px);
  background-size: 20px 20px;
}

.additional-universal-classic .pattern-hexagon {
  background-image: repeating-linear-gradient(60deg, transparent, transparent 15px, var(--neutral-0) 15px, var(--neutral-0) 17px);
}

/* Content Column */
.additional-universal-classic .content-column {
  padding: 2rem 3rem;
}

/* Content Wrapper */
.additional-universal-classic .content-wrapper {
  max-width: 550px;
}

.additional-universal-classic .item-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: var(--neutral-0);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.additional-universal-classic .content-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.additional-universal-classic .content-description {
  font-size: 1rem;
  color: var(--neutral-700);
  line-height: 1.8;
  margin: 0;
}

/* Responsive Design - Tablet */
@media (max-width: 991px) {
  .additional-universal-classic {
    padding: 4rem 0 0;
  }

  .additional-universal-classic .split-item {
    padding: 3rem 0;
  }

  .additional-universal-classic .visual-block {
    height: 300px;
    max-width: 400px;
  }

  .additional-universal-classic .visual-icon {
    width: 120px;
    height: 120px;
  }

  .additional-universal-classic .visual-icon i {
    font-size: 3.5rem;
  }

  .additional-universal-classic .content-column {
    padding: 2rem;
  }

  .additional-universal-classic .content-title {
    font-size: 1.5rem;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 767px) {
  .additional-universal-classic {
    padding: 3rem 0 0;
  }

  .additional-universal-classic .section-title {
    font-size: 1.75rem;
  }

  .additional-universal-classic .section-subtitle {
    font-size: 1.25rem;
  }

  .additional-universal-classic .section-description {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .additional-universal-classic .split-item {
    padding: 2.5rem 0;
  }

  .additional-universal-classic .visual-column {
    padding: 2rem 1rem;
  }

  .additional-universal-classic .visual-block {
    height: 250px;
    max-width: 100%;
  }

  .additional-universal-classic .visual-icon {
    width: 100px;
    height: 100px;
  }

  .additional-universal-classic .visual-icon i {
    font-size: 3rem;
  }

  .additional-universal-classic .content-column {
    padding: 2rem 1rem;
  }

  .additional-universal-classic .content-wrapper {
    max-width: 100%;
  }

  .additional-universal-classic .item-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .additional-universal-classic .content-title {
    font-size: 1.35rem;
  }

  .additional-universal-classic .content-description {
    font-size: 0.95rem;
  }
}







/* Universal section */
/* Theme: creative-purple-01 */

.additional-universal-section {
  position: relative;
  background: var(--surface-primary);
  overflow: hidden;
}

/* Section Header */
.section-header {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--primary-500);
  line-height: 1.4;
}

.section-description {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
}

/* Timeline Container */
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
  z-index: 2;
}

/* Timeline Line */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--primary-300) 10%,
    var(--primary-300) 90%,
    transparent
  );
  transform: translateX(-50%);
  z-index: 0;
}

/* Timeline Item */
.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: calc(50% + 50px);
}

.timeline-item:nth-child(even) {
  padding-left: 0;
  padding-right: calc(50% + 50px);
}

.timeline-item:last-of-type {
  margin-bottom: 0;
}

/* Timeline Marker */
.timeline-marker {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 3;
}

.marker-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: var(--surface-primary);
  border: 4px solid var(--primary-500);
  border-radius: 50%;
  z-index: 1;
}

.marker-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-500),
    color-mix(in srgb, var(--primary-500) 80%, var(--primary-700) 20%)
  );
  border-radius: 50%;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--primary-500) 35%, transparent 65%);
  z-index: 2;
}

.marker-icon i {
  font-size: 1.5rem;
  color: var(--light);
}

/* Timeline Content */
.timeline-content {
  position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: right;
}

/* Content Card */
.content-card {
  position: relative;
  padding: 2rem;
  background: var(--surface-secondary);
  border: 1px solid color-mix(in srgb, var(--primary-300) 30%, transparent 70%);
  border-radius: 16px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--neutral-500) 8%, transparent 92%);
  transition: all 0.3s ease;
  overflow: hidden;
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--primary-500) 15%, transparent 85%);
  border-color: color-mix(in srgb, var(--primary-500) 50%, transparent 50%);
}

/* Step Badge */
.step-badge {
  display: inline-flex;
  margin-bottom: 1rem;
}

.step-badge i {
  font-size: 2rem;
  color: var(--primary-500);
}

.timeline-item:nth-child(even) .step-badge {
  float: right;
}

/* Timeline Title */
.timeline-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  clear: both;
}

/* Timeline Description */
.timeline-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Card Decoration */
.card-decoration {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--primary-300) 10%, transparent 90%),
    transparent
  );
  border-radius: 50%;
  pointer-events: none;
}

.timeline-item:nth-child(odd) .card-decoration {
  bottom: -30px;
  right: -30px;
}

.timeline-item:nth-child(even) .card-decoration {
  bottom: -30px;
  left: -30px;
}

/* Background Shapes */
.background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--primary-300) 15%, transparent 85%),
    transparent
  );
  top: 10%;
  right: 5%;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--primary-500) 12%, transparent 88%),
    transparent
  );
  bottom: 15%;
  left: 5%;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .timeline-line {
    left: 30px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(even) {
    padding-left: 80px;
    padding-right: 0;
  }
  
  .timeline-marker {
    left: 30px;
  }
  
  .marker-icon {
    width: 50px;
    height: 50px;
  }
  
  .marker-icon i {
    font-size: 1.25rem;
  }
  
  .marker-dot {
    width: 20px;
    height: 20px;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
  }
  
  .timeline-item:nth-child(even) .step-badge {
    float: none;
  }
  
  .timeline-item:nth-child(even) .card-decoration {
    left: auto;
    right: -30px;
  }
}

@media (max-width: 767.98px) {
  .additional-universal-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .section-header {
    margin-bottom: 2.5rem !important;
  }
  
  .timeline-container {
    padding: 1rem 0;
  }
  
  .timeline-item,
  .timeline-item:nth-child(even) {
    padding-left: 60px;
    margin-bottom: 2rem;
  }
  
  .content-card {
    padding: 1.5rem;
  }
  
  .step-badge i {
    font-size: 1.5rem;
  }
}





/* Universal section */

.additional-universal-special {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--neutral-0) 0%, var(--neutral-50) 100%);
  overflow: hidden;
}

/* Section Header */
.additional-universal-special .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-special .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-special .section-description {
  font-size: 1.125rem;
  color: var(--neutral-700);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

/* Content Rows */
.additional-universal-special .content-rows {
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

.additional-universal-special .content-row {
  margin-bottom: 4rem;
}

.additional-universal-special .content-row:last-child {
  margin-bottom: 0;
}

/* Text Content */
.additional-universal-special .text-wrapper {
  position: relative;
  padding: 2rem;
  background: var(--neutral-0);
  border-radius: 16px;
  border-left: 4px solid var(--primary-500);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.additional-universal-special .text-wrapper:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-left-color: var(--accent-500);
}

.additional-universal-special .content-row .order-lg-2 .text-wrapper {
  border-left: none;
  border-right: 4px solid var(--primary-500);
}

.additional-universal-special .content-row .order-lg-2 .text-wrapper:hover {
  transform: translateX(-8px);
  border-right-color: var(--accent-500);
}

.additional-universal-special .item-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: var(--neutral-0);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.additional-universal-special .item-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.additional-universal-special .item-description {
  font-size: 1rem;
  color: var(--neutral-700);
  line-height: 1.7;
  margin: 0;
}

/* Decorative Accent */
.additional-universal-special .decorative-accent {
  position: absolute;
  width: 60px;
  height: 60px;
  opacity: 0.1;
  pointer-events: none;
}

.additional-universal-special .accent-left {
  bottom: 15px;
  left: 15px;
  border-bottom: 3px solid var(--primary-500);
  border-left: 3px solid var(--primary-500);
}

.additional-universal-special .accent-right {
  bottom: 15px;
  right: 15px;
  border-bottom: 3px solid var(--primary-500);
  border-right: 3px solid var(--primary-500);
}

/* Visual Content */
.additional-universal-special .visual-container {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.additional-universal-special .image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.additional-universal-special .placeholder-1 {
  background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
}

.additional-universal-special .placeholder-2 {
  background: linear-gradient(135deg, var(--accent-100) 0%, var(--accent-200) 100%);
}

.additional-universal-special .placeholder-3 {
  background: linear-gradient(135deg, var(--primary-200) 0%, var(--accent-200) 100%);
}

.additional-universal-special .placeholder-4 {
  background: linear-gradient(135deg, var(--accent-200) 0%, var(--primary-100) 100%);
}

.additional-universal-special .placeholder-5 {
  background: linear-gradient(135deg, var(--primary-100) 0%, var(--accent-100) 100%);
}

.additional-universal-special .content-row:hover .image-placeholder {
  transform: scale(1.02);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Floating Icon */
.additional-universal-special .floating-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  animation: float-gentle 3s ease-in-out infinite;
}

.additional-universal-special .floating-icon i {
  font-size: 2rem;
  color: var(--neutral-0);
}

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

/* Background Shapes */
.additional-universal-special .bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
  pointer-events: none;
  filter: blur(60px);
}

.additional-universal-special .shape-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-300);
  top: 10%;
  left: -150px;
}

.additional-universal-special .shape-2 {
  width: 450px;
  height: 450px;
  background: var(--accent-300);
  bottom: 15%;
  right: -150px;
}

/* Responsive Design - Tablet */
@media (max-width: 991px) {
  .additional-universal-special {
    padding: 4rem 0;
  }

  .additional-universal-special .content-row {
    margin-bottom: 3rem;
  }

  .additional-universal-special .visual-container {
    height: 300px;
    margin-bottom: 2rem;
  }

  .additional-universal-special .content-row .order-2 .visual-container {
    margin-bottom: 0;
    margin-top: 2rem;
  }

  .additional-universal-special .text-wrapper {
    padding: 1.75rem;
  }

  .additional-universal-special .content-row .order-lg-2 .text-wrapper {
    border-left: 4px solid var(--primary-500);
    border-right: none;
  }

  .additional-universal-special .content-row .order-lg-2 .text-wrapper:hover {
    transform: translateX(8px);
  }
}

/* Responsive Design - Mobile */
@media (max-width: 767px) {
  .additional-universal-special {
    padding: 3rem 0;
  }

  .additional-universal-special .section-title {
    font-size: 1.75rem;
  }

  .additional-universal-special .section-subtitle {
    font-size: 1.25rem;
  }

  .additional-universal-special .section-description {
    font-size: 1rem;
  }

  .additional-universal-special .content-row {
    margin-bottom: 2.5rem;
  }

  .additional-universal-special .text-wrapper {
    padding: 1.5rem;
  }

  .additional-universal-special .item-number {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .additional-universal-special .item-title {
    font-size: 1.35rem;
  }

  .additional-universal-special .item-description {
    font-size: 0.95rem;
  }

  .additional-universal-special .visual-container {
    height: 250px;
  }

  .additional-universal-special .floating-icon {
    width: 60px;
    height: 60px;
  }

  .additional-universal-special .floating-icon i {
    font-size: 1.75rem;
  }

  .additional-universal-special .bg-shape {
    display: none;
  }
}







/* Universal section */
/* Theme: professional-blue-01 */

.additional-universal-section {
  position: relative;
  background: var(--surface-primary);
  overflow: hidden;
}

/* Section Header */
.section-header {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--primary-500);
  line-height: 1.4;
}

.section-description {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 800px;
}

/* Decorative Divider */
.decorative-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-500),
    color-mix(in srgb, var(--primary-500) 60%, var(--primary-300) 40%)
  );
  border-radius: 2px;
}

/* Feature Cards */
.feature-card {
  position: relative;
  padding: 2rem;
  background: var(--surface-secondary);
  border: 1px solid color-mix(in srgb, var(--neutral-300) 50%, transparent 50%);
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--primary-500) 15%, transparent 85%);
  border-color: color-mix(in srgb, var(--primary-500) 30%, transparent 70%);
}

.feature-card.featured {
  background: color-mix(in srgb, var(--primary-50) 80%, var(--surface-secondary) 20%);
  border-color: color-mix(in srgb, var(--primary-300) 40%, transparent 60%);
}

/* Card Icon */
.card-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    var(--primary-500),
    color-mix(in srgb, var(--primary-500) 70%, var(--primary-700) 30%)
  );
  border-radius: 12px;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--primary-500) 25%, transparent 75%);
}

.card-icon-wrapper i {
  font-size: 1.75rem;
  color: var(--light);
}

/* Card Content */
.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.card-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Card Decoration */
.card-decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--primary-300) 10%, transparent 90%),
    transparent
  );
  border-radius: 50%;
  pointer-events: none;
}

/* Background Shapes */
.background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--primary-300) 15%, transparent 85%),
    transparent
  );
  top: -100px;
  left: -100px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--primary-500) 10%, transparent 90%),
    transparent
  );
  bottom: 100px;
  right: -50px;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--primary-300) 12%, transparent 88%),
    transparent
  );
  top: 50%;
  left: 10%;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .feature-card {
    padding: 1.75rem;
  }
  
  .card-icon-wrapper {
    width: 56px;
    height: 56px;
  }
  
  .card-icon-wrapper i {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .additional-universal-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .section-header {
    margin-bottom: 2.5rem !important;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
}





/* Universal section */

.additional-universal-variant {
  position: relative;
  padding: 6rem 0;
  background: radial-gradient(ellipse at center, var(--primary-50) 0%, var(--neutral-0) 40%, var(--accent-50) 100%);
  overflow: hidden;
}

/* Section Header */
.additional-universal-variant .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-variant .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-variant .section-description {
  font-size: 1.125rem;
  color: var(--neutral-700);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

/* Comparison Grid */
.additional-universal-variant .comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

/* Comparison Card */
.additional-universal-variant .comparison-card {
  position: relative;
  background: var(--neutral-0);
  border-radius: 24px;
  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-variant .comparison-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-300);
}

/* Emphasis Card */
.additional-universal-variant .card-emphasis {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--neutral-0) 100%);
  border: 3px solid var(--primary-400);
}

.additional-universal-variant .card-emphasis:hover {
  border-color: var(--accent-500);
}

/* Special Card */
.additional-universal-variant .card-special {
  background: linear-gradient(135deg, var(--accent-50) 0%, var(--neutral-0) 100%);
  border: 2px solid var(--accent-300);
}

/* Card Ribbon */
.additional-universal-variant .card-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
  color: var(--neutral-0);
  padding: 0.5rem 3rem;
  transform: rotate(45deg);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}

/* Card Header */
.additional-universal-variant .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.additional-universal-variant .card-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.additional-universal-variant .card-icon i {
  font-size: 2.25rem;
  color: var(--neutral-0);
}

.additional-universal-variant .comparison-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.additional-universal-variant .icon-primary {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
}

.additional-universal-variant .icon-accent {
  background: linear-gradient(135deg, var(--accent-500), var(--accent-700));
}

.additional-universal-variant .icon-secondary {
  background: linear-gradient(135deg, var(--primary-600), var(--accent-600));
}

.additional-universal-variant .icon-gradient {
  background: linear-gradient(135deg, var(--accent-400), var(--primary-600));
}

.additional-universal-variant .icon-special {
  background: linear-gradient(135deg, var(--accent-600), var(--primary-700));
}

/* Tier Badges */
.additional-universal-variant .tier-badge {
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.additional-universal-variant .badge-gold {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #5A3600;
}

.additional-universal-variant .badge-silver {
  background: linear-gradient(135deg, var(--neutral-300), var(--neutral-400));
  color: var(--neutral-900);
}

.additional-universal-variant .badge-bronze {
  background: linear-gradient(135deg, var(--accent-200), var(--accent-300));
  color: var(--accent-900);
}

.additional-universal-variant .badge-tech {
  background: linear-gradient(135deg, var(--primary-200), var(--primary-300));
  color: var(--primary-900);
}

.additional-universal-variant .badge-special {
  background: linear-gradient(135deg, var(--accent-400), var(--accent-500));
  color: var(--neutral-0);
}

/* Card Content */
.additional-universal-variant .card-content {
  margin-bottom: 2rem;
}

.additional-universal-variant .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.additional-universal-variant .card-description {
  font-size: 1rem;
  color: var(--neutral-700);
  line-height: 1.7;
  margin: 0;
}

/* Card Features */
.additional-universal-variant .card-features {
  padding-top: 2rem;
  border-top: 2px solid var(--neutral-100);
}

.additional-universal-variant .feature-icon-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
}

.additional-universal-variant .feature-icon-row i {
  font-size: 1.75rem;
  color: var(--primary-500);
  transition: all 0.3s ease;
}

.additional-universal-variant .comparison-card:hover .feature-icon-row i {
  color: var(--accent-600);
  transform: scale(1.2);
}

/* Special Glow */
.additional-universal-variant .special-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, var(--accent-200) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.additional-universal-variant .card-special:hover .special-glow {
  opacity: 0.3;
}

/* Abstract Backgrounds */
.additional-universal-variant .abstract-bg {
  position: absolute;
  opacity: 0.05;
  pointer-events: none;
}

.additional-universal-variant .bg-1 {
  width: 350px;
  height: 350px;
  background: var(--primary-400);
  border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
  top: 10%;
  left: 5%;
  filter: blur(60px);
}

.additional-universal-variant .bg-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-400);
  border-radius: 60% 40% 40% 60% / 60% 40% 60% 40%;
  top: 50%;
  right: 8%;
  filter: blur(70px);
}

.additional-universal-variant .bg-3 {
  width: 300px;
  height: 300px;
  background: var(--primary-300);
  border-radius: 50% 50% 50% 50% / 40% 60% 40% 60%;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(50px);
}

/* Grid Pattern */
.additional-universal-variant .grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.02;
  pointer-events: none;
  background-image: 
    linear-gradient(var(--primary-300) 1px, transparent 1px),
    linear-gradient(90deg, var(--primary-300) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Responsive Design - Tablet */
@media (max-width: 991px) {
  .additional-universal-variant {
    padding: 4rem 0;
  }

  .additional-universal-variant .comparison-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
  }

  .additional-universal-variant .comparison-card {
    padding: 2rem;
  }

  .additional-universal-variant .card-icon {
    width: 70px;
    height: 70px;
  }

  .additional-universal-variant .card-icon i {
    font-size: 2rem;
  }

  .additional-universal-variant .card-title {
    font-size: 1.35rem;
  }

  .additional-universal-variant .feature-icon-row i {
    font-size: 1.5rem;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 767px) {
  .additional-universal-variant {
    padding: 3rem 0;
  }

  .additional-universal-variant .section-title {
    font-size: 1.75rem;
  }

  .additional-universal-variant .section-subtitle {
    font-size: 1.25rem;
  }

  .additional-universal-variant .section-description {
    font-size: 1rem;
  }

  .additional-universal-variant .comparison-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .additional-universal-variant .comparison-card {
    padding: 1.75rem;
  }

  .additional-universal-variant .card-ribbon {
    font-size: 0.75rem;
    padding: 0.4rem 2.5rem;
  }

  .additional-universal-variant .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .additional-universal-variant .card-icon {
    width: 65px;
    height: 65px;
  }

  .additional-universal-variant .card-icon i {
    font-size: 1.75rem;
  }

  .additional-universal-variant .tier-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .additional-universal-variant .card-title {
    font-size: 1.25rem;
  }

  .additional-universal-variant .card-description {
    font-size: 0.95rem;
  }

  .additional-universal-variant .card-features {
    padding-top: 1.5rem;
  }

  .additional-universal-variant .feature-icon-row {
    gap: 0.75rem;
  }

  .additional-universal-variant .feature-icon-row i {
    font-size: 1.35rem;
  }

  .additional-universal-variant .abstract-bg,
  .additional-universal-variant .grid-pattern {
    display: none;
  }
}







/* Universal section */
/* Theme: industrial-01*/

.additional-universal-section {
  position: relative;
  background: var(--surface-primary);
  overflow: hidden;
}

/* Section Header */
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--primary-500);
  line-height: 1.4;
}

.title-decoration {
  width: 60px;
  height: 3px;
  background: var(--primary-500);
}

.section-description {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
}

/* Steps Grid */
.steps-grid {
  position: relative;
  z-index: 2;
}

/* Step Number Wrapper */
.step-number-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-500),
    color-mix(in srgb, var(--primary-500) 75%, var(--primary-700) 25%)
  );
  border-radius: 50%;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--primary-500) 30%, transparent 70%);
  transition: all 0.3s ease;
}

.step-number span {
  font-size: 2rem;
  font-weight: 700;
  color: var(--light);
  line-height: 1;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--surface-secondary);
  border: 2px solid var(--primary-500);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step-icon i {
  font-size: 1.25rem;
  color: var(--primary-500);
}

/* Hover Effect */
.row:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 6px 30px color-mix(in srgb, var(--primary-500) 40%, transparent 60%);
}

.row:hover .step-icon {
  background: var(--primary-500);
  transform: translateY(-4px);
}

.row:hover .step-icon i {
  color: var(--light);
}

/* Step Content */
.step-content {
  position: relative;
  padding: 1.5rem;
  background: var(--surface-secondary);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--neutral-300) 40%, transparent 60%);
  transition: all 0.3s ease;
}

.row:hover .step-content {
  border-color: color-mix(in srgb, var(--primary-500) 50%, transparent 50%);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--primary-500) 12%, transparent 88%);
}

.step-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.step-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Step Connector */
.step-connector {
  position: absolute;
  left: 50%;
  bottom: -2.5rem;
  transform: translateX(-50%);
  width: 2px;
  height: 2.5rem;
  background: linear-gradient(
    180deg,
    var(--primary-300),
    transparent
  );
}

/* Background Grid */
.background-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(color-mix(in srgb, var(--neutral-300) 8%, transparent 92%) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--neutral-300) 8%, transparent 92%) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
  z-index: 0;
}

/* Decorative Elements */
.decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.element {
  position: absolute;
  opacity: 0.2;
}

.element-1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary-500) 20%, transparent 80%),
    transparent
  );
  border-radius: 50%;
  top: 10%;
  right: 5%;
  filter: blur(40px);
}

.element-2 {
  width: 250px;
  height: 250px;
  background: linear-gradient(
    225deg,
    color-mix(in srgb, var(--primary-300) 20%, transparent 80%),
    transparent
  );
  border-radius: 50%;
  bottom: 15%;
  left: 5%;
  filter: blur(50px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .step-number {
    width: 70px;
    height: 70px;
  }
  
  .step-number span {
    font-size: 1.75rem;
  }
  
  .step-icon {
    width: 44px;
    height: 44px;
  }
  
  .step-icon i {
    font-size: 1.125rem;
  }
  
  .step-content {
    padding: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .additional-universal-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .steps-grid .row {
    margin-bottom: 3rem !important;
  }
  
  .steps-grid .row:last-child {
    margin-bottom: 0 !important;
  }
  
  .step-number-wrapper {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
  }
  
  .step-number span {
    font-size: 1.5rem;
  }
  
  .step-icon {
    width: 40px;
    height: 40px;
  }
  
  .step-icon i {
    font-size: 1rem;
  }
  
  .step-content {
    padding: 1rem;
  }
  
  .step-title {
    font-size: 1.25rem;
  }
  
  .step-connector {
    display: none;
  }
}









div.website-livechat-widget div.website-livechat-header,
.website-livechat-widget .website-livechat-header {
    padding: 16px 20px !important;
    border-bottom: 2px solid #34495e !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: #34495e !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: 0.3px !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: transparent !important;
    border: 1px solid rgba(255,255,255,0.5) !important;
    color: #ffffff !important;
    font-size: 16px !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    padding: 6px 8px !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    text-decoration: none !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;
    border-color: #ffffff !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: 16px !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: 16px 20px 20px !important;
    max-height: 380px !important;
    overflow-y: auto !important;
    background: #ffffff !important;
    color: #2c3e50 !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: 14px !important;
    padding-bottom: 14px !important;
    border-bottom: 1px solid #e0e0e0 !important;
    background: transparent !important;
    color: #2c3e50 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
}

div.website-livechat-widget div.website-faq-item:last-child,
.website-livechat-widget .website-faq-item:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

div.website-livechat-widget div.website-faq-question,
.website-livechat-widget .website-faq-question {
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 6px !important;
    margin-top: 0 !important;
    color: #34495e !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-transform: none !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    text-align: left !important;
    line-height: 1.5 !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: #007bff !important;
    background: transparent !important;
}

div.website-livechat-widget div.website-faq-question span,
.website-livechat-widget .website-faq-question span {
    color: #34495e !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.5 !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.6 !important;
    color: #666666 !important;
    display: none !important;
    padding-top: 6px !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: #666666 !important;
}

div.website-livechat-widget i.website-faq-icon,
.website-livechat-widget .website-faq-icon {
    transition: transform 0.3s ease !important;
    font-size: 12px !important;
    color: #7f8c8d !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: #007bff !important;
}

@media (max-width: 768px) {
    div.website-livechat-widget,
    .website-livechat-widget {
        display: none !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: 28px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    color: #333333 !important;
    font-family: inherit !important;
}

.website-maps-subtitle {
    text-align: center !important;
    font-size: 16px !important;
    color: #666666 !important;
    margin-bottom: 40px !important;
    font-family: inherit !important;
}

.website-google-map {
    width: 100% !important;
    height: 400px !important;
    border: none !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1) !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;
    }
}




.website-cta-container {
    max-width: 750px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.website-cta-title {
    font-size: 30px !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    color: #00ffff !important;
    font-family: inherit !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    text-shadow: 0 0 10px rgba(0,255,255,0.5) !important;
}

.website-cta-subtitle {
    font-size: 16px !important;
    margin-bottom: 30px !important;
    color: #ffffff !important;
    font-family: inherit !important;
}

.website-cta-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 15px 35px !important;
    background: transparent !important;
    color: #00ffff !important;
    text-decoration: none !important;
    border-radius: 0 !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: 3px solid #00ffff !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 0 20px rgba(0,255,255,0.3) !important;
}

.website-cta-button:hover {
    background: #00ffff !important;
    color: #1a1a1a !important;
    text-decoration: none !important;
    box-shadow: 0 0 30px rgba(0,255,255,0.6) !important;
}

.website-cta-phone-icon {
    font-size: 20px !important;
}

@media (max-width: 768px) {
    .website-cta-section {
        padding: 40px 0 !important;
    }
    
    .website-cta-title {
        font-size: 24px !important;
    }
}




.website-security-badge {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 15px !important;
    background: white !important;
    border-radius: 8px !important;
    border: 1px solid #e0e0e0 !important;
    text-decoration: none !important;
    color: #333333 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
}

.website-security-badge:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
    color: #333333 !important;
    text-decoration: none !important;
}

.website-security-badge-icon {
    font-size: 16px !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: 10px !important;
        padding: 20px 10px !important;
    }
    
    .website-security-badge {
        font-size: 12px !important;
        padding: 8px 12px !important;
    }
}




.website-floating-icon {
    position: absolute !important;
    font-size: 20px !important;
    color: rgba(0,0,0,0.05) !important;
    z-index: 1 !important;
    pointer-events: none !important;
    animation: websiteFloatAnimationGentle 8s ease-in-out infinite !important;
}

.website-floating-icon.variant-1 {
    top: 10% !important;
    right: 5% !important;
    animation-delay: 0s !important;
}

.website-floating-icon.variant-2 {
    top: 60% !important;
    right: 3% !important;
    animation-delay: 2s !important;
    font-size: 16px !important;
}

.website-floating-icon.variant-3 {
    top: 30% !important;
    left: 3% !important;
    animation-delay: 4s !important;
    font-size: 24px !important;
}

@keyframes websiteFloatAnimationGentle {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) !important;
        opacity: 0.3 !important;
    }
    25% {
        transform: translateY(-10px) rotate(5deg) !important;
        opacity: 0.5 !important;
    }
    50% {
        transform: translateY(-20px) rotate(0deg) !important;
        opacity: 0.3 !important;
    }
    75% {
        transform: translateY(-10px) rotate(-5deg) !important;
        opacity: 0.5 !important;
    }
}

@media (max-width: 768px) {
    .website-floating-icon {
        display: none !important;
    }
}



/* Live Chat FAQ Widget - Classic Style - Enhanced Specificity */
div.website-livechat-widget,
.website-livechat-widget {
    position: fixed !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 310px !important;
    background: #f5f5f5 !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    z-index: 999999 !important;
    color: #2c3e50 !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    text-align: left !important;
    transition: all 0.3s ease !important;
    border: 1px solid #d0d0d0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

div.website-livechat-widget div.website-livechat-header,
.website-livechat-widget .website-livechat-header {
    padding: 16px 20px !important;
    border-bottom: 2px solid #34495e !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: #34495e !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: 0.3px !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: transparent !important;
    border: 1px solid rgba(255,255,255,0.5) !important;
    color: #ffffff !important;
    font-size: 16px !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    padding: 6px 8px !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    text-decoration: none !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;
    border-color: #ffffff !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: 16px !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: 16px 20px 20px !important;
    max-height: 380px !important;
    overflow-y: auto !important;
    background: #ffffff !important;
    color: #2c3e50 !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: 14px !important;
    padding-bottom: 14px !important;
    border-bottom: 1px solid #e0e0e0 !important;
    background: transparent !important;
    color: #2c3e50 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
}

div.website-livechat-widget div.website-faq-item:last-child,
.website-livechat-widget .website-faq-item:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

div.website-livechat-widget div.website-faq-question,
.website-livechat-widget .website-faq-question {
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 6px !important;
    margin-top: 0 !important;
    color: #34495e !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-transform: none !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    text-align: left !important;
    line-height: 1.5 !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: #007bff !important;
    background: transparent !important;
}

div.website-livechat-widget div.website-faq-question span,
.website-livechat-widget .website-faq-question span {
    color: #34495e !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.5 !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.6 !important;
    color: #666666 !important;
    display: none !important;
    padding-top: 6px !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: #666666 !important;
}

div.website-livechat-widget i.website-faq-icon,
.website-livechat-widget .website-faq-icon {
    transition: transform 0.3s ease !important;
    font-size: 12px !important;
    color: #7f8c8d !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: #007bff !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 - Minimal Style */
.website-cta-section {
    padding: 40px 0 !important;
    background: #ffffff !important;
    color: #333333 !important;
    text-align: center !important;
    margin: 0 !important;
    border-top: 1px solid #e0e0e0 !important;
    border-bottom: 1px solid #e0e0e0 !important;
    position: relative !important;
    z-index: 1 !important;
    pointer-events: auto !important;
}

.website-cta-container {
    max-width: 600px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.website-cta-title {
    font-size: 24px !important;
    font-weight: 400 !important;
    margin-bottom: 10px !important;
    color: #333333 !important;
    font-family: inherit !important;
}

.website-cta-subtitle {
    font-size: 15px !important;
    margin-bottom: 25px !important;
    color: #666666 !important;
    font-family: inherit !important;
}

.website-cta-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 24px !important;
    background: #333333 !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 3px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.website-cta-button:hover {
    background: #555555 !important;
    color: white !important;
    text-decoration: none !important;
}

.website-cta-phone-icon {
    font-size: 16px !important;
}

@media (max-width: 768px) {
    .website-cta-section {
        padding: 30px 0 !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 - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}



/* 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 - Classic Style */
.newsletter-section {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.newsletter-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    color: #333333 !important;
    text-align: center !important;
    background: transparent !important;
}

.newsletter-subtitle {
    font-size: 14px !important;
    color: #666666 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    line-height: 1.4 !important;
    background: transparent !important;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1 !important;
    padding: 12px 15px !important;
    border: 2px solid #ddd !important;
    border-radius: 5px !important;
    font-size: 14px !important;
    outline: none !important;
    transition: border-color 0.3s ease !important;
    background: #ffffff !important;
    color: #333333 !important;
}

.newsletter-input:focus {
    border-color: #007bff !important;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25) !important;
}

.newsletter-button {
    padding: 12px 20px !important;
    background: #007bff !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 5px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
    width: 100% !important;
}

.newsletter-button:hover {
    background: #0056b3 !important;
    color: #ffffff !important;
}

.newsletter-success {
    display: none !important;
    margin-top: 15px !important;
    padding: 15px !important;
    background: #d4edda !important;
    border: 1px solid #c3e6cb !important;
    border-radius: 5px !important;
    color: #155724 !important;
    text-align: center !important;
    font-size: 14px !important;
}

.newsletter-success.show {
    display: block;
}

@media (max-width: 768px) {
    .newsletter-section {
        margin: 20px 0;
        padding: 20px 15px;
    }
    
    .newsletter-form {
        max-width: 300px;
    }
}


/* Cookie Manager theme (auto-injected) */
/**
 * САЙТ-СПЕЦИФИЧНЫЕ СТИЛИ
 * Тема: minimal-v003
 * Toggle: 4
 * Содержит только стили для выбранной темы
 * Сгенерировано автоматически - НЕ РЕДАКТИРОВАТЬ ВРУЧНУЮ
 */

/**
 * 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 СТИЛЬ 4: МИНИМАЛИСТИЧНЫЙ ===== */
.ocm-toggle.ocm-toggle-style-4 {
    border-radius: 8px !important;
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    width: 45px !important;
    height: 45px !important;
    font-size: 18px !important;
}

.ocm-toggle.ocm-toggle-style-4:hover {
    background: rgba(0, 0, 0, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    transform: translateY(-2px) !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;
}

/* ===== АДАПТИВНОСТЬ ===== */
@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;
    }
}


