:root {
  --primary-50: #fef3f2;
  --primary-50-rgb: 254, 243, 242;
  --primary-100: #fee2e2;
  --primary-100-rgb: 254, 226, 226;
  --primary-300: #fca5a5;
  --primary-300-rgb: 252, 165, 165;
  --primary-500: #dc2626;
  --primary-500-rgb: 220, 38, 38;
  --primary-700: #991b1b;
  --primary-900: #7a1515;
  --primary-900-rgb: 122, 21, 21;
  --primary-950: #550e0e;
  --primary-950-rgb: 85, 14, 14;
  --primary-700-rgb: 153, 27, 27;
  --primary-rgb: 220, 38, 38;
  --neutral-50: #fafaf9;
  --neutral-50-rgb: 250, 250, 249;
  --neutral-100: #f5f5f4;
  --neutral-100-rgb: 245, 245, 244;
  --neutral-300: #d6d3d1;
  --neutral-300-rgb: 214, 211, 209;
  --neutral-500: #78716c;
  --neutral-500-rgb: 120, 113, 108;
  --neutral-700: #44403c;
  --neutral-700-rgb: 68, 64, 60;
  --neutral-900: #1c1917;
  --neutral-900-rgb: 28, 25, 23;
  --neutral-950: #100f0d;
  --neutral-950-rgb: 16, 15, 13;
  --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(220, 38, 38, 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 ===== */
.new_font_primary {
  font-family: var(--font-primary);
}

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

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

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

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

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

.premium_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 */
.style_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);
}

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

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

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

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

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

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

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

.content_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 */
.company_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);
}

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

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

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

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

.page_card_text {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
  color: var(--text-primary);
}

/* Navigation Typography */
.dark_nav_link {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* Button Typography */
.app_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 */
.bold_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) {
  .business_hero_title {
    font-size: var(--text-4xl);
  }
  
  .custom_section_title {
    font-size: var(--text-3xl);
  }
  
  .minimal_display_1 {
    font-size: var(--text-5xl);
  }
  
  .smart_display_2 {
    font-size: var(--text-4xl);
  }
}

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

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

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

.digital_text_balance {
  text-wrap: balance;
}

.agency_text_pretty {
  text-wrap: pretty;
}

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

@media (prefers-contrast: high) {
  .web_caption,
  .content_overline,
  .bold_footer_text {
    color: var(--text-secondary);
  }
  
  .bright_hero_subtitle,
  .design_section_subtitle {
    color: var(--text-primary);
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .business_hero_title,
  .custom_section_title,
  .style_heading_1,
  .fresh_heading_2 {
    break-after: avoid;
    page-break-after: avoid;
  }
  
  .light_text_gradient {
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
  }
}

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

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

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

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

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

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

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

.style95_full_height {
  min-height: 100vh;
}

.web32_section_height {
  min-height: 80vh;
}

.prime17_hero_height {
  min-height: 90vh;
}

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

/* Margin utilities */
.pro23_m_0 { margin: 0; }
.style18_m_1 { margin: var(--space-1); }
.page90_m_2 { margin: var(--space-2); }
.bright64_m_3 { margin: var(--space-3); }
.light50_m_4 { margin: var(--space-4); }
.dark60_m_6 { margin: var(--space-6); }
.modern70_m_8 { margin: var(--space-8); }
.main28_m_12 { margin: var(--space-12); }
.custom49_m_16 { margin: var(--space-16); }

.unique65_mx_auto { margin-left: auto; margin-right: auto; }
.design96_my_auto { margin-top: auto; margin-bottom: auto; }

.modern88_mt_0 { margin-top: 0; }
.custom66_mt_4 { margin-top: var(--space-4); }
.site58_mt_8 { margin-top: var(--space-8); }
.dark93_mt_12 { margin-top: var(--space-12); }

.bold86_mb_0 { margin-bottom: 0; }
.prime82_mb_4 { margin-bottom: var(--space-4); }
.modern14_mb_8 { margin-bottom: var(--space-8); }
.layout61_mb_12 { margin-bottom: var(--space-12); }

/* Padding utilities */
.page49_p_0 { padding: 0; }
.digital95_p_1 { padding: var(--space-1); }
.site70_p_2 { padding: var(--space-2); }
.studio65_p_3 { padding: var(--space-3); }
.design51_p_4 { padding: var(--space-4); }
.dark35_p_6 { padding: var(--space-6); }
.light43_p_8 { padding: var(--space-8); }

.digital52_px_4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.main60_px_6 { padding-left: var(--space-6); padding-right: var(--space-6); }
.studio74_px_8 { padding-left: var(--space-8); padding-right: var(--space-8); }

.modern84_py_4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.light84_py_6 { padding-top: var(--space-6); padding-bottom: var(--space-6); }
.base43_py_8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }

/* Gap utilities for flex/grid */
.brand92_gap_1 { gap: var(--space-1); }
.web21_gap_2 { gap: var(--space-2); }
.base4_gap_3 { gap: var(--space-3); }
.dark19_gap_4 { gap: var(--space-4); }
.main26_gap_6 { gap: var(--space-6); }
.web53_gap_8 { gap: var(--space-8); }

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

/* Shadow utilities */
.main52_shadow_none { box-shadow: var(--shadow-none); }
.business71_shadow_xs { box-shadow: var(--shadow-xs); }
.bold61_shadow_sm { box-shadow: var(--shadow-sm); }
.fresh17_shadow_md { box-shadow: var(--shadow-md); }
.style38_shadow_lg { box-shadow: var(--shadow-lg); }
.container54_shadow_xl { box-shadow: var(--shadow-xl); }
.premium83_shadow_2xl { box-shadow: var(--shadow-2xl); }
.new4_shadow_inner { box-shadow: var(--shadow-inner); }
.section87_shadow_colored { box-shadow: var(--shadow-colored); }

/* Border radius utilities */
.dark25_radius_none { border-radius: var(--radius-none); }
.layout47_radius_xs { border-radius: var(--radius-xs); }
.theme45_radius_sm { border-radius: var(--radius-sm); }
.base75_radius_md { border-radius: var(--radius-md); }
.elite33_radius_lg { border-radius: var(--radius-lg); }
.premium77_radius_xl { border-radius: var(--radius-xl); }
.main51_radius_2xl { border-radius: var(--radius-2xl); }
.ui28_radius_3xl { border-radius: var(--radius-3xl); }
.app93_radius_full { border-radius: var(--radius-full); }

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

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

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

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

.studio9_gradient_overlay {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===== COLOR UTILITIES ===== */
.core90_bg_primary { background-color: var(--bg-primary); }
.brand77_bg_secondary { background-color: var(--bg-secondary); }
.creative62_bg_muted { background-color: var(--bg-muted); }
.ui37_bg_glass { background-color: var(--bg-glass); }

.best34_text_primary { color: var(--text-primary); }
.light10_text_secondary { color: var(--text-secondary); }
.best32_text_muted { color: var(--text-muted); }
.fresh78_text_inverse { color: var(--text-inverse); }
.premium48_text_link { color: var(--text-link); }

.bright87_border_light { border-color: var(--border-light); }
.business14_border_medium { border-color: var(--border-medium); }
.container49_border_strong { border-color: var(--border-strong); }
.base11_border_interactive { border-color: var(--border-interactive); }

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 768px) {
  .clean25_services_grid,
  .creative82_features_grid,
  .core64_team_grid,
  .modern93_pricing_grid {
    grid-template-columns: 1fr;
  }
  
  .bold37_gallery_grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .page64_timeline::before {
    left: 30px;
  }
  
  .custom83_timeline_item {
    width: 100%;
    left: 0 !important;
    text-align: left;
    padding-left: var(--space-16) !important;
    padding-right: var(--space-4) !important;
  }
  
  .web32_section_height {
    min-height: 60vh;
  }
  
  .prime17_hero_height {
    min-height: 70vh;
  }
}

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

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

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

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

.studio14_skip_link:focus {
  top: 6px;
}

/* ===== PRINT UTILITIES ===== */
@media print {
  .fresh33_no_print {
    display: none !important;
  }
  
  .bold89_print_only {
    display: block !important;
  }
  
  .business71_shadow_xs,
  .bold61_shadow_sm,
  .fresh17_shadow_md,
  .style38_shadow_lg,
  .container54_shadow_xl,
  .premium83_shadow_2xl {
    box-shadow: none !important;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .light62_fade_in,
  .bright53_slide_up,
  .brand31_slide_in_left,
  .clean26_scale_in {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .content42_hover_lift,
  .company37_hover_scale,
  .dark49_hover_shadow,
  .elite51_hover_fade,
  .prime2_transition_all,
  .unique58_transition_fast,
  .best22_transition_normal,
  .creative35_transition_slow {
    transition: none;
  }
}

.header-custom {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--surface-primary);
  border-bottom: 1px solid var(--neutral-100);
  transition: all 0.3s ease;
}

.header-custom .navbar {
  padding: 1.5rem 0;
}

.header-custom .navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
  z-index: 10002;
}

.header-custom .navbar-brand:hover {
  color: var(--primary-700);
}

.header-custom .nav-link {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  margin: 0;
  transition: color 0.3s ease;
  position: relative;
}

.header-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--primary-700);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.header-custom .nav-link:hover::after {
  opacity: 1;
}

/* Minimal Custom Hamburger Toggle */
.header-custom .menu-toggle-input {
  display: none;
}

.header-custom .hamburger-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 10003;
  position: relative;
  background: transparent;
  border: none;
}

.header-custom .line {
  width: 24px;
  height: 2px;
  background: #334155;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Simple Minimal Hamburger Animation */
.header-custom .menu-toggle-input:checked ~ .hamburger-toggle .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header-custom .menu-toggle-input:checked ~ .hamburger-toggle .line:nth-child(2) {
  opacity: 0;
}

.header-custom .menu-toggle-input:checked ~ .hamburger-toggle .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Minimal Decorative Element */
.header-custom .minimal-accent {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-500);
  transition: width 0.3s ease;
}

.header-custom:hover .minimal-accent {
  width: 60px;
}

/* Mobile Styles */
@media (max-width: 991.98px) {
  .header-custom .hamburger-toggle {
    display: flex;
  }

  .header-custom .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-primary);
    padding: 5rem 2rem 2rem;
    transition: right 0.4s ease;
    z-index: 10;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.08);
  }

  .header-custom .menu-toggle-input:checked ~ .navbar-collapse {
    right: 0;
  }

  .header-custom .backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: -1;
  }

  .header-custom .menu-toggle-input:checked ~ .navbar-collapse .backdrop {
    opacity: 1;
    visibility: visible;
  }

  .header-custom .navbar-nav {
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
  }

  .header-custom .nav-link {
    padding: 1rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    border-bottom: 1px solid var(--neutral-100);
  }

  .header-custom .nav-link::after {
    left: 0;
    transform: translateX(0);
    bottom: 50%;
    right: auto;
    width: 3px;
    height: 20px;
    border-radius: 0 2px 2px 0;
  }

  .header-custom .nav-link:hover::after {
    opacity: 1;
  }
}

@media (min-width: 992px) {
  .header-custom .navbar-nav {
    flex-direction: row;
    gap: 0.5rem;
  }

  .header-custom .backdrop {
    display: none;
  }
}





/* Hero section */
.hero_wrap {
  position: relative;
  background: linear-gradient(135deg, var(--neutral-50) 0%, var(--primary-50) 50%, var(--neutral-100) 100%);
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero_wrap .hero_cosmic_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero_wrap .cosmic_gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 40%, var(--primary-300) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 60%, var(--primary-100) 0%, transparent 50%);
  opacity: 0.4;
  animation: hero_cosmic_pulse 25s ease-in-out infinite;
}

.hero_wrap .cosmic_stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, var(--primary-500), transparent),
    radial-gradient(2px 2px at 60% 70%, var(--primary-300), transparent),
    radial-gradient(1px 1px at 50% 50%, var(--primary-500), transparent),
    radial-gradient(1px 1px at 80% 10%, var(--primary-500), transparent),
    radial-gradient(2px 2px at 90% 60%, var(--primary-300), transparent);
  background-size: 200% 200%;
  background-position: 0% 0%;
  animation: hero_stars_twinkle 20s linear infinite;
  opacity: 0.3;
}

.hero_wrap .container {
  position: relative;
  z-index: 3;
}

.hero_wrap .hero_overlapping_layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
  position: relative;
}

.hero_wrap .overlap_section {
  position: relative;
}

.hero_wrap .image_section {
  z-index: 2;
}

.hero_wrap .content_section {
  z-index: 3;
  margin-left: -60px;
}

.hero_wrap .image_overlap_wrapper {
  position: relative;
  border-radius: var(--border-radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero_wrap .overlap_image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-2xl);
}

.hero_wrap .image_creative_border {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 5px solid var(--primary-500);
  border-radius: var(--border-radius-2xl);
  pointer-events: none;
  animation: hero_border_rotate 20s linear infinite;
  border-style: dashed;
}

.hero_wrap .image_shine_effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  animation: hero_shine_sweep 8s ease-in-out infinite;
  pointer-events: none;
}

.hero_wrap .image_creative_elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero_wrap .creative_element {
  position: absolute;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--surface-primary);
  animation: hero_creative_orbit 10s ease-in-out infinite;
}

.hero_wrap .creative_element i {
  font-size: 32px;
  color: var(--button-primary-text);
}

.hero_wrap .element_1 {
  top: -25px;
  right: 10%;
  animation-delay: 0s;
}

.hero_wrap .element_2 {
  bottom: -25px;
  left: 8%;
  animation-delay: 3.33s;
}

.hero_wrap .element_3 {
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  animation-delay: 6.66s;
}

.hero_wrap .content_overlap_wrapper {
  background: var(--surface-primary);
  padding: var(--space-8);
  border-radius: var(--border-radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  position: relative;
}

.hero_wrap .content_overlap_wrapper::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, var(--primary-500), var(--primary-700));
  border-radius: var(--border-radius-2xl);
  z-index: -1;
  opacity: 0.5;
}

.hero_wrap .hero_creative_title {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  line-height: var(--line-height-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-5);
  letter-spacing: -0.03em;
}

.hero_wrap .hero_creative_subtitle {
  font-size: var(--font-size-xl);
  font-weight: 600;
  line-height: var(--line-height-snug);
  color: var(--text-accent);
  margin-bottom: var(--space-5);
}

.hero_wrap .hero_creative_body {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
  margin-bottom: 0;
}

.hero_wrap .hero_artistic_shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero_wrap .artistic_shape {
  position: absolute;
  background: radial-gradient(circle, var(--primary-300), var(--primary-300));
  opacity: 0.15;
  animation: hero_fluid_morph 30s ease-in-out infinite;
  filter: blur(30px);
}

.hero_wrap .shape_fluid_1 {
  width: 400px;
  height: 400px;
  top: 5%;
  left: 5%;
  border-radius: 40% 60% 50% 70% / 60% 40% 60% 40%;
  animation-delay: 0s;
}

.hero_wrap .shape_fluid_2 {
  width: 350px;
  height: 350px;
  bottom: 10%;
  right: 8%;
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  animation-delay: 10s;
}

.hero_wrap .shape_fluid_3 {
  width: 300px;
  height: 300px;
  top: 50%;
  right: 20%;
  border-radius: 50% 50% 60% 40% / 70% 30% 50% 50%;
  animation-delay: 20s;
}

.hero_wrap .hero_spark_elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero_wrap .spark {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary-500);
  border-radius: 50%;
  opacity: 0;
  animation: hero_spark_flash 5s ease-in-out infinite;
}

.hero_wrap .spark_1 {
  top: 15%;
  left: 18%;
  animation-delay: 0s;
}

.hero_wrap .spark_2 {
  top: 28%;
  right: 22%;
  animation-delay: 0.71s;
}

.hero_wrap .spark_3 {
  top: 45%;
  left: 12%;
  animation-delay: 1.42s;
}

.hero_wrap .spark_4 {
  bottom: 30%;
  right: 15%;
  animation-delay: 2.13s;
}

.hero_wrap .spark_5 {
  bottom: 18%;
  left: 25%;
  animation-delay: 2.84s;
}

.hero_wrap .spark_6 {
  top: 70%;
  right: 10%;
  animation-delay: 3.55s;
}

.hero_wrap .spark_7 {
  top: 35%;
  left: 8%;
  animation-delay: 4.26s;
}

.hero_wrap .hero_creative_accents {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero_wrap .accent_item {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--surface-accent);
  border: 2px solid var(--primary-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  animation: hero_accent_wiggle 8s ease-in-out infinite;
}

.hero_wrap .accent_item i {
  font-size: 26px;
  color: var(--primary-500);
}

.hero_wrap .accent_a {
  top: 18%;
  left: 15%;
  animation-delay: 0s;
}

.hero_wrap .accent_b {
  top: 60%;
  left: 10%;
  animation-delay: 2s;
}

.hero_wrap .accent_c {
  bottom: 22%;
  right: 18%;
  animation-delay: 4s;
}

.hero_wrap .accent_d {
  top: 25%;
  right: 12%;
  animation-delay: 6s;
}

@keyframes hero_cosmic_pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

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

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

@keyframes hero_shine_sweep {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }
  100% {
    transform: translateX(100%) translateY(100%);
  }
}

@keyframes hero_creative_orbit {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(180deg);
  }
}

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

@keyframes hero_spark_flash {
  0%, 90%, 100% {
    opacity: 0;
    transform: scale(1);
  }
  45% {
    opacity: 1;
    transform: scale(1.5);
  }
}

@keyframes hero_accent_wiggle {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(10deg) scale(1.1);
  }
  50% {
    transform: rotate(-10deg) scale(0.95);
  }
  75% {
    transform: rotate(5deg) scale(1.05);
  }
}

/* Accessibility - Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero_wrap .cosmic_gradient,
  .hero_wrap .cosmic_stars,
  .hero_wrap .image_creative_border,
  .hero_wrap .image_shine_effect,
  .hero_wrap .creative_element,
  .hero_wrap .artistic_shape,
  .hero_wrap .spark,
  .hero_wrap .accent_item {
    animation: none;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero_wrap .hero_overlapping_layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .hero_wrap .content_section {
    margin-left: 0;
  }
  
  .hero_wrap .hero_creative_title {
    font-size: var(--font-size-3xl);
  }
  
  .hero_wrap .hero_creative_subtitle {
    font-size: var(--font-size-lg);
  }
  
  .hero_wrap .creative_element {
    width: 64px;
    height: 64px;
  }
  
  .hero_wrap .creative_element i {
    font-size: 28px;
  }
  
  .hero_wrap .artistic_shape {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero_wrap .hero_creative_title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-4);
  }
  
  .hero_wrap .hero_creative_subtitle {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-4);
  }
  
  .hero_wrap .content_overlap_wrapper {
    padding: var(--space-6);
  }
  
  .hero_wrap .creative_element {
    width: 58px;
    height: 58px;
  }
  
  .hero_wrap .creative_element i {
    font-size: 24px;
  }
  
  .hero_wrap .element_3 {
    display: none;
  }
  
  .hero_wrap .spark {
    display: none;
  }
  
  .hero_wrap .accent_c,
  .hero_wrap .accent_d {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero_wrap .hero_creative_title {
    font-size: var(--font-size-xl);
  }
  
  .hero_wrap .content_overlap_wrapper {
    padding: var(--space-5);
  }
  
  .hero_wrap .creative_element {
    width: 52px;
    height: 52px;
  }
  
  .hero_wrap .creative_element i {
    font-size: 20px;
  }
  
  .hero_wrap .image_creative_border {
    display: none;
  }
  
  .hero_wrap .hero_creative_accents {
    display: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero_wrap .content_overlap_wrapper {
    border-width: 2px;
    border-color: var(--primary-500);
  }
  
  .hero_wrap .cosmic_gradient,
  .hero_wrap .cosmic_stars {
    opacity: 0.6;
  }
}

/* FALLBACK: Force show all AOS elements when AOS is not initialized */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
}



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

/* Images */
.image-wrapper {
  position: relative;
  overflow: hidden;
}

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

.image-wrapper:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.main-image {
  position: relative;
  height: 500px;
}

.secondary-image {
  height: 240px;
}

/* Decorative Blob */
.decorative-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-500);
  bottom: -100px;
  right: -100px;
  filter: blur(60px);
}

/* Feature Cards */
.feature-card {
  padding: 2rem;
  background: var(--surface-primary);
  border-radius: 1rem;
  border: 1px solid color-mix(in srgb, var(--primary-300) 20%, transparent);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-300);
}

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

.icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
  border-radius: 12px;
  font-size: 1.75rem;
  color: var(--primary-700);
  transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-300));
  color: var(--light);
  transform: rotate(5deg) scale(1.1);
}

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

.feature-card:hover .decorative-line {
  opacity: 1;
}

/* Decorative Circles */
.decorative-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-300);
  opacity: 0.05;
  pointer-events: none;
}

.circle-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
}

.circle-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
}

/* Typography */
#about-title {
  color: var(--text-primary);
  line-height: 1.2;
}

#about-subtitle {
  color: var(--primary-700);
  font-weight: 500;
}

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

.feature-card h4 {
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .main-image {
    height: 350px;
  }
  
  .secondary-image {
    height: 200px;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  #about-title {
    font-size: 2rem;
  }
}





/* Features section */
/* Card Flip Reveal Layout */

.features-secondary-wrap {
  position: relative;
  padding: 100px 0;
  background: var(--surface-primary);
  overflow: hidden;
}

/* Header Styles */
.features-secondary-header {
  margin-bottom: 5rem;
  position: relative;
}

.features-secondary-diamond {
  width: 40px;
  height: 40px;
  background: var(--primary-500);
  margin: 0 auto 2rem;
  transform: rotate(45deg);
  position: relative;
}

.features-secondary-diamond::before {
  content: '';
  position: absolute;
  inset: 8px;
  background: var(--surface-primary);
  transform: rotate(45deg);
}

.features-secondary-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.features-secondary-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-accent);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

/* Flip Card Container */
.features-secondary-flip-card {
  perspective: 1500px;
  height: 100%;
  min-height: 320px;
}

/* Feature Cards */
.features-secondary-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  border: 2px solid var(--border-light);
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  box-shadow: var(--shadow-sm);
}

.features-secondary-flip-card:hover .features-secondary-card {
  transform: rotateY(5deg);
  border-color: var(--primary-500);
  box-shadow: var(--shadow-lg);
}

/* Icon Frame */
.features-secondary-icon-frame {
  position: relative;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.5s ease;
  box-shadow: 0 10px 30px -10px var(--primary-500);
}

.features-secondary-icon-frame::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--primary-300);
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.features-secondary-flip-card:hover .features-secondary-icon-frame {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 40px -10px var(--primary-500);
}

.features-secondary-flip-card:hover .features-secondary-icon-frame::before {
  opacity: 1;
}

.features-secondary-icon-frame i {
  font-size: 2rem;
  color: #ffffff;
  transition: transform 0.5s ease;
}

.features-secondary-flip-card:hover .features-secondary-icon-frame i {
  transform: scale(1.15);
}

/* Content */
.features-secondary-content {
  flex: 1;
}

.features-secondary-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.features-secondary-flip-card:hover .features-secondary-card-title {
  color: var(--primary-500);
}

.features-secondary-card-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

/* Corner Frame Decoration */
.features-secondary-corner-frame {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-top: 3px solid var(--primary-300);
  border-right: 3px solid var(--primary-300);
  opacity: 0;
  transition: all 0.5s ease;
  pointer-events: none;
}

.features-secondary-flip-card:hover .features-secondary-corner-frame {
  opacity: 1;
  top: 10px;
  right: 10px;
}

/* Background Crosshatch */
.features-secondary-bg-crosshatch {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, var(--border-light) 35px, var(--border-light) 36px),
    repeating-linear-gradient(-45deg, transparent, transparent 35px, var(--border-light) 35px, var(--border-light) 36px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

/* Background Frames */
.features-secondary-bg-frame {
  position: absolute;
  border: 3px solid var(--primary-300);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  animation: features-v046-frame-pulse 8s infinite ease-in-out;
}

.features-secondary-frame-1 {
  width: 200px;
  height: 200px;
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.features-secondary-frame-2 {
  width: 160px;
  height: 160px;
  bottom: 20%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes features-v046-frame-pulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.1) rotate(5deg);
    opacity: 0.3;
  }
}

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

  .features-secondary-title {
    font-size: 2.5rem;
  }

  .features-secondary-flip-card {
    min-height: 280px;
  }

  .features-secondary-card {
    padding: 2rem;
  }
}

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

  .features-secondary-title {
    font-size: 1.875rem;
  }

  .features-secondary-subtitle {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .features-secondary-desc {
    font-size: 1rem;
  }

  .features-secondary-card {
    padding: 1.75rem;
  }

  .features-secondary-icon-frame {
    width: 60px;
    height: 60px;
  }

  .features-secondary-icon-frame i {
    font-size: 1.75rem;
  }

  .features-secondary-card-title {
    font-size: 1.25rem;
  }

  .features-secondary-flip-card:hover .features-secondary-card {
    transform: none;
  }
}







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

/* Header Styles */
.services-section-minimal .creative-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-300), var(--primary-500));
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.services-section-minimal .creative-badge i {
  font-size: 2rem;
  color: var(--light);
}

.services-section-minimal #services-title {
  color: var(--text-primary);
  font-weight: 800;
  line-height: 1.1;
}

.services-section-minimal #services-subtitle {
  color: var(--primary-700);
  font-weight: 600;
  font-style: italic;
}

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

.services-section-minimal .decorative-artwork {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.services-section-minimal .decorative-artwork i {
  font-size: 15rem;
  color: var(--primary-100);
  opacity: 0.3;
}

/* Asymmetric Grid */
.services-section-minimal .services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.services-section-minimal .service-item {
  background: var(--surface-secondary);
  border: 2px solid var(--neutral-100);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.services-section-minimal .service-item:hover {
  border-color: var(--primary-500);
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Grid Layout Positions */
.services-section-minimal .service-item.large-card {
  grid-column: span 7;
}

.services-section-minimal .service-item.medium-card {
  grid-column: span 6;
}

.services-section-minimal .service-item.small-card {
  grid-column: span 5;
}

.services-section-minimal .service-item:nth-child(1) {
  grid-column: 1 / span 7;
}

.services-section-minimal .service-item:nth-child(2) {
  grid-column: 8 / span 5;
}

.services-section-minimal .service-item:nth-child(3) {
  grid-column: 2 / span 6;
}

.services-section-minimal .service-item:nth-child(4) {
  grid-column: 6 / span 7;
}

.services-section-minimal .service-item:nth-child(5) {
  grid-column: 1 / span 5;
}

.services-section-minimal .service-item:nth-child(6) {
  grid-column: 7 / span 6;
}

/* Card Elements */
.services-section-minimal .card-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, transparent, var(--primary-50));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.services-section-minimal .service-item:hover .card-background {
  opacity: 1;
}

.services-section-minimal .icon-wrapper {
  width: 65px;
  height: 65px;
  background: var(--primary-100);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.services-section-minimal .service-item:hover .icon-wrapper {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  transform: scale(1.15) rotate(-10deg);
}

.services-section-minimal .icon-wrapper i {
  font-size: 1.8rem;
  color: var(--primary-700);
  transition: color 0.3s ease;
}

.services-section-minimal .service-item:hover .icon-wrapper i {
  color: var(--light);
}

.services-section-minimal .service-title {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.services-section-minimal .service-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.services-section-minimal .feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.services-section-minimal .tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--primary-50);
  color: var(--primary-700);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services-section-minimal .service-item:hover .tag {
  background: var(--primary-100);
}

.services-section-minimal .price-section {
  padding-top: 1.25rem;
  border-top: 2px solid var(--neutral-100);
}

.services-section-minimal .price-value {
  color: var(--primary-700);
  font-weight: 700;
  font-size: 1.3rem;
}

/* Decorative Elements */
.services-section-minimal .floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.services-section-minimal .shape-1 {
  top: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: var(--primary-300);
  animation: float-rotate 10s ease-in-out infinite;
}

.services-section-minimal .shape-2 {
  top: 60%;
  right: 8%;
  width: 100px;
  height: 100px;
  background: var(--primary-500);
  animation: float-rotate 8s ease-in-out infinite reverse;
}

.services-section-minimal .shape-3 {
  bottom: 15%;
  left: 10%;
  width: 120px;
  height: 120px;
  background: var(--primary-700);
  animation: float-rotate 12s ease-in-out infinite;
}

.services-section-minimal .gradient-orb {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.2;
}

.services-section-minimal .orb-1 {
  top: 10%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-300), transparent);
}

.services-section-minimal .orb-2 {
  bottom: 20%;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--primary-500), transparent);
}

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

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

/* Responsive Design */
@media (max-width: 1199.98px) {
  .services-section-minimal .services-grid {
    grid-template-columns: repeat(8, 1fr);
  }
  
  .services-section-minimal .service-item.large-card,
  .services-section-minimal .service-item.medium-card {
    grid-column: span 8 !important;
  }
  
  .services-section-minimal .service-item.small-card {
    grid-column: span 4 !important;
  }
}

@media (max-width: 991.98px) {
  .services-section-minimal .decorative-artwork {
    display: none;
  }
  
  .services-section-minimal .services-grid {
    grid-template-columns: 1fr;
  }
  
  .services-section-minimal .service-item {
    grid-column: 1 !important;
  }
}

@media (max-width: 767.98px) {
  .services-section-minimal #services-title {
    font-size: 2rem;
  }
  
  .services-section-minimal .service-item {
    padding: 2rem 1.5rem;
  }
  
  .services-section-minimal .icon-wrapper {
    width: 55px;
    height: 55px;
  }
  
  .services-section-minimal .icon-wrapper i {
    font-size: 1.5rem;
  }
  
  .services-section-minimal .service-title {
    font-size: 1.2rem;
  }
}





.priceplan-section-alt {
  padding: 100px 0 120px;
  background: linear-gradient(160deg, 
    var(--surface-primary) 0%, 
    color-mix(in srgb, var(--primary-50) 20%, var(--surface-primary)) 50%,
    var(--surface-primary) 100%);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.priceplan-section-alt .section-header {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
  position: relative;
}

.priceplan-section-alt .icon-cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.priceplan-section-alt .icon-cluster i {
  font-size: 2rem;
  color: var(--primary-500);
  animation: float 3s ease-in-out infinite;
}

.priceplan-section-alt .icon-cluster i:nth-child(2) {
  animation-delay: 0.5s;
  font-size: 2.5rem;
}

.priceplan-section-alt .icon-cluster i:nth-child(3) {
  animation-delay: 1s;
}

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

.priceplan-section-alt .section-title {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.priceplan-section-alt .section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-500);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.priceplan-section-alt .section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Header Decoration */
.priceplan-section-alt .header-decoration {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  pointer-events: none;
}

.priceplan-section-alt .deco-blob {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, 
    color-mix(in srgb, var(--primary-300) 20%, transparent) 0%, 
    transparent 70%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: blobmorph 8s ease-in-out infinite;
}

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

/* Pricing Wrapper */
.priceplan-section-alt .pricing-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Pricing Card */
.priceplan-section-alt .pricing-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.priceplan-section-alt .pricing-card:hover {
  transform: translateY(-16px) scale(1.02);
}

.priceplan-section-alt .card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--light);
  border: 2px solid color-mix(in srgb, var(--neutral-300) 40%, transparent);
  border-radius: 28px;
  transition: all 0.5s ease;
}

.priceplan-section-alt .pricing-card:hover .card-background {
  background: linear-gradient(135deg, 
    var(--light) 0%, 
    color-mix(in srgb, var(--primary-50) 15%, var(--light)) 100%);
  border-color: var(--primary-500);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
}

/* Featured Card */
.priceplan-section-alt .pricing-card.featured {
  transform: scale(1.05);
}

.priceplan-section-alt .pricing-card.featured .card-background {
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--primary-50) 20%, var(--light)) 0%, 
    var(--light) 100%);
  border-color: var(--primary-500);
  border-width: 3px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.priceplan-section-alt .featured-ribbon {
  position: absolute;
  top: 24px;
  right: -8px;
  background: var(--primary-500);
  color: var(--light);
  padding: 8px 24px 8px 16px;
  border-radius: 20px 0 0 20px;
  font-weight: 600;
  z-index: 2;
  box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.15);
}

.priceplan-section-alt .featured-ribbon i {
  font-size: 1.125rem;
}

/* Card Inner */
.priceplan-section-alt .card-inner {
  position: relative;
  padding: 48px 36px;
  z-index: 1;
}

/* Icon Holder */
.priceplan-section-alt .icon-holder {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--primary-500) 30%, transparent);
  transition: all 0.4s ease;
}

.priceplan-section-alt .pricing-card:hover .icon-holder {
  transform: rotate(10deg) scale(1.1);
}

.priceplan-section-alt .icon-holder i {
  font-size: 2.25rem;
  color: var(--light);
}

/* Plan Header */
.priceplan-section-alt .plan-header {
  margin-bottom: 20px;
}

.priceplan-section-alt .plan-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.priceplan-section-alt .plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-700);
  display: block;
  line-height: 1;
}

/* Plan Description */
.priceplan-section-alt .plan-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  min-height: 65px;
}

/* Divider */
.priceplan-section-alt .divider-line {
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--primary-500) 50%, 
    transparent 100%);
  margin-bottom: 24px;
  opacity: 0.3;
}

/* Plan Features */
.priceplan-section-alt .plan-features {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

/* Floating Shapes */
.priceplan-section-alt .floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.priceplan-section-alt .shape {
  position: absolute;
  opacity: 0.15;
}

.priceplan-section-alt .shape-circle {
  width: 250px;
  height: 250px;
  background: var(--primary-300);
  border-radius: 50%;
  top: 10%;
  left: 5%;
  animation: floatShape 15s ease-in-out infinite;
}

.priceplan-section-alt .shape-square {
  width: 180px;
  height: 180px;
  background: var(--primary-500);
  transform: rotate(45deg);
  bottom: 15%;
  right: 8%;
  animation: floatShape 12s ease-in-out infinite reverse;
}

.priceplan-section-alt .shape-triangle {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 180px solid var(--primary-700);
  top: 60%;
  left: 50%;
  animation: floatShape 18s ease-in-out infinite;
}

@keyframes floatShape {
  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) {
  .priceplan-section-alt {
    padding: 80px 0 100px;
  }

  .priceplan-section-alt .section-title {
    font-size: 2.5rem;
  }

  .priceplan-section-alt .section-subtitle {
    font-size: 1.25rem;
  }

  .priceplan-section-alt .pricing-wrapper {
    grid-template-columns: 1fr;
    max-width: 550px;
    gap: 40px;
  }

  .priceplan-section-alt .pricing-card.featured {
    transform: scale(1);
  }

  .priceplan-section-alt .plan-name {
    font-size: 1.75rem;
  }

  .priceplan-section-alt .plan-price {
    font-size: 2.125rem;
  }
}

@media (max-width: 767px) {
  .priceplan-section-alt {
    padding: 60px 0 80px;
  }

  .priceplan-section-alt .section-title {
    font-size: 2rem;
  }

  .priceplan-section-alt .card-inner {
    padding: 36px 28px;
  }

  .priceplan-section-alt .shape {
    opacity: 0.08;
  }

  .priceplan-section-alt .icon-cluster i {
    font-size: 1.5rem;
  }

  .priceplan-section-alt .icon-cluster i:nth-child(2) {
    font-size: 2rem;
  }
}





/* Team section */
.team-section-bold {
  background: linear-gradient(
    180deg,
    var(--surface-primary) 0%,
    color-mix(in srgb, var(--primary-50) 30%, var(--surface-primary)) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Section Header */
.team-section-bold .header-content {
  position: relative;
  padding-left: 2rem;
  border-left: 4px solid var(--primary-500);
}

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

.team-section-bold .section-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-700);
  line-height: 1.4;
}

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

/* Decorative Elements */
.team-section-bold .decorative-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--primary-300);
  opacity: 0.15;
  pointer-events: none;
}

.team-section-bold .circle-1 {
  width: 350px;
  height: 350px;
  top: 5%;
  right: 5%;
}

.team-section-bold .circle-2 {
  width: 250px;
  height: 250px;
  bottom: 10%;
  left: 8%;
}

.team-section-bold .decorative-leaf {
  position: absolute;
  font-size: 3rem;
  color: var(--primary-500);
  opacity: 0.1;
  pointer-events: none;
}

.team-section-bold .leaf-1 {
  top: 15%;
  left: 10%;
  transform: rotate(-15deg);
}

.team-section-bold .leaf-2 {
  bottom: 20%;
  right: 15%;
  transform: rotate(25deg);
}

/* Organic Layout */
.team-section-bold .team-organic-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Team Member Organic */
.team-section-bold .team-member-organic {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Member Circle */
.team-section-bold .member-circle {
  position: relative;
  width: 220px;
  height: 220px;
  margin-bottom: 1.5rem;
}

.team-section-bold .circle-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  border: 3px solid var(--primary-300);
  opacity: 0;
  transition: all 0.4s ease;
}

.team-section-bold .team-member-organic:hover .circle-ring {
  opacity: 1;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
}

.team-section-bold .team-member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--light);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.team-section-bold .team-member-organic:hover .team-member-photo {
  transform: scale(1.05);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

/* Member Details */
.team-section-bold .member-details {
  max-width: 280px;
}

.team-section-bold .member-name {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.team-section-bold .team-member-organic:hover .member-name {
  color: var(--primary-700);
}

.team-section-bold .member-role {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 992px) {
  .team-section-bold .team-organic-layout {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
  }

  .team-section-bold .member-circle {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .team-section-bold .section-title {
    font-size: 2rem;
  }

  .team-section-bold .section-subtitle {
    font-size: 1.125rem;
  }

  .team-section-bold .section-description {
    font-size: 1rem;
  }

  .team-section-bold .header-content {
    padding-left: 1.5rem;
  }

  .team-section-bold .team-organic-layout {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }

  .team-section-bold .member-circle {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 576px) {
  .team-section-bold .section-title {
    font-size: 1.75rem;
  }

  .team-section-bold .team-organic-layout {
    grid-template-columns: 1fr;
  }

  .team-section-bold .member-circle {
    width: 200px;
    height: 200px;
  }
}





/* Reviews section */
.reviews-section-style {
  position: relative;
  background: linear-gradient(180deg, var(--surface-primary) 0%, var(--surface-secondary) 100%);
  overflow: hidden;
}

/* Section Header */
.reviews-section-style .decorative-line {
  width: 80px;
  height: 5px;
  background: var(--primary-500);
  border-radius: 3px;
}

.reviews-section-style #reviews-title {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

.reviews-section-style #reviews-subtitle {
  color: var(--primary-500);
  font-weight: 600;
}

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

/* Carousel Wrapper */
.reviews-section-style .reviews-carousel-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.reviews-section-style .reviews-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 2rem;
  padding: 2rem 0.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.reviews-section-style .reviews-carousel::-webkit-scrollbar {
  display: none;
}

/* Review Cards */
.reviews-section-style .carousel-review-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--neutral-50);
  transition: all 0.3s ease;
}

.reviews-section-style .carousel-review-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-300);
}

/* Quote Decoration */
.reviews-section-style .quote-decoration {
  font-size: 3rem;
  color: var(--primary-500);
  opacity: 0.2;
  margin-bottom: 1.5rem;
}

/* Testimonial Text */
.reviews-section-style .testimonial-text {
  color: var(--text-primary);
  font-size: 1.15rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
}

/* Reviewer Profile */
.reviews-section-style .reviewer-profile {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 2px solid var(--neutral-50);
}

.reviews-section-style .profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--primary-500) 30%, transparent);
}

.reviews-section-style .avatar-text {
  color: white;
  font-weight: 700;
  font-size: 1.4rem;
}

.reviews-section-style .profile-name {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.reviews-section-style .profile-decoration {
  width: 40px;
  height: 3px;
  background: var(--primary-500);
  border-radius: 2px;
}

/* Carousel Dots */
.reviews-section-style .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.reviews-section-style .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neutral-300);
  cursor: pointer;
  transition: all 0.3s ease;
}

.reviews-section-style .dot:hover,
.reviews-section-style .dot:first-child {
  background: var(--primary-500);
  transform: scale(1.2);
}

/* Floating Shapes */
.reviews-section-style .floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}

.reviews-section-style .shape-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-500);
  top: 10%;
  right: 5%;
  animation: float 6s ease-in-out infinite;
}

.reviews-section-style .shape-2 {
  width: 150px;
  height: 150px;
  background: var(--primary-700);
  bottom: 15%;
  left: 8%;
  animation: float 8s ease-in-out infinite reverse;
}

.reviews-section-style .shape-3 {
  width: 100px;
  height: 100px;
  background: var(--primary-300);
  top: 50%;
  left: 15%;
  animation: float 7s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 991px) {
  .reviews-section-style .carousel-review-card {
    padding: 2rem;
  }
}

@media (max-width: 767px) {
  .reviews-section-style #reviews-title {
    font-size: 2rem;
  }
  
  .reviews-section-style #reviews-subtitle {
    font-size: 1.25rem;
  }
  
  .reviews-section-style .carousel-review-card {
    padding: 1.5rem;
  }
  
  .reviews-section-style .testimonial-text {
    font-size: 1rem;
  }
  
  .reviews-section-style .profile-avatar {
    width: 56px;
    height: 56px;
  }
  
  .reviews-section-style .avatar-text {
    font-size: 1.2rem;
  }
}





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

/* Section Header */
.casestudy-section-minimal .section-header {
  position: relative;
  z-index: 2;
}

.casestudy-section-minimal .header-decoration {
  display: flex;
  align-items: center;
  gap: 8px;
}

.casestudy-section-minimal .deco-line {
  width: 40px;
  height: 3px;
  background: var(--primary-500);
  border-radius: 2px;
}

.casestudy-section-minimal .deco-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-700);
  border-radius: 50%;
}

.casestudy-section-minimal #casestudy-title {
  color: var(--text-primary);
  line-height: 1.1;
}

.casestudy-section-minimal #casestudy-subtitle {
  color: var(--primary-500);
  font-weight: 600;
}

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

/* Header Visual Stack */
.casestudy-section-minimal .header-visual {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.casestudy-section-minimal .visual-stack {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 280px;
}

.casestudy-section-minimal .stack-item {
  position: absolute;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.casestudy-section-minimal .stack-1 {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--primary-300), var(--primary-500));
  top: 0;
  left: 0;
  transform: rotate(-5deg);
}

.casestudy-section-minimal .stack-2 {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  top: 40px;
  right: 0;
  transform: rotate(8deg);
}

.casestudy-section-minimal .stack-3 {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--primary-700), var(--neutral-700));
  bottom: 0;
  left: 60px;
  transform: rotate(-3deg);
}

.casestudy-section-minimal .header-visual:hover .stack-1 {
  transform: rotate(-8deg) translateY(-5px);
}

.casestudy-section-minimal .header-visual:hover .stack-2 {
  transform: rotate(12deg) translateY(-8px);
}

.casestudy-section-minimal .header-visual:hover .stack-3 {
  transform: rotate(-6deg) translateY(-3px);
}

/* Asymmetric Grid */
.casestudy-section-minimal .casestudy-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.casestudy-section-minimal .grid-item-large {
  grid-column: span 7;
}

.casestudy-section-minimal .grid-item-medium {
  grid-column: span 5;
}

.casestudy-section-minimal .grid-item-medium:last-child {
  grid-column: 8 / span 5;
}

/* Case Study Block */
.casestudy-section-minimal .casestudy-block {
  position: relative;
  background: var(--surface-secondary);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--neutral-100);
  transition: all 0.4s ease;
}

.casestudy-section-minimal .casestudy-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px color-mix(in srgb, var(--primary-500) 20%, transparent);
  border-color: var(--primary-300);
}

/* Block Visual */
.casestudy-section-minimal .block-visual {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.casestudy-section-minimal .block-visual-compact {
  height: 180px;
}

.casestudy-section-minimal .visual-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-50), var(--neutral-100));
}

.casestudy-section-minimal .visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 60%, color-mix(in srgb, var(--dark) 90%, transparent));
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.casestudy-section-minimal .casestudy-block:hover .visual-overlay {
  opacity: 1;
}

.casestudy-section-minimal .overlay-icon {
  width: 48px;
  height: 48px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.casestudy-section-minimal .casestudy-block:hover .overlay-icon {
  transform: translateY(0);
}

.casestudy-section-minimal .overlay-icon i {
  font-size: 1.5rem;
  color: var(--primary-500);
}

/* Visual Icon Large */
.casestudy-section-minimal .visual-icon-large {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 64px;
  height: 64px;
  background: color-mix(in srgb, var(--light) 95%, transparent);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.casestudy-section-minimal .visual-icon-large i {
  font-size: 2rem;
  color: var(--primary-500);
}

/* Block Content */
.casestudy-section-minimal .block-content {
  padding: 2rem;
}

.casestudy-section-minimal .content-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 12px;
}

.casestudy-section-minimal .content-icon i {
  font-size: 1.5rem;
  color: var(--light);
}

.casestudy-section-minimal .block-content h4 {
  color: var(--text-primary);
  font-size: 1.4rem;
}

.casestudy-section-minimal .block-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Block Accent */
.casestudy-section-minimal .block-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-500), var(--primary-700));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.casestudy-section-minimal .casestudy-block:hover .block-accent {
  opacity: 1;
}

/* Background Patterns */
.casestudy-section-minimal .background-pattern {
  position: absolute;
  width: 300px;
  height: 300px;
  opacity: 0.04;
  z-index: 1;
}

.casestudy-section-minimal .pattern-1 {
  top: 15%;
  right: -50px;
  background: repeating-linear-gradient(
    45deg,
    var(--primary-500),
    var(--primary-500) 10px,
    transparent 10px,
    transparent 20px
  );
  transform: rotate(15deg);
}

.casestudy-section-minimal .pattern-2 {
  bottom: 10%;
  left: -80px;
  background: repeating-linear-gradient(
    -45deg,
    var(--primary-700),
    var(--primary-700) 8px,
    transparent 8px,
    transparent 16px
  );
  transform: rotate(-20deg);
}

.casestudy-section-minimal .background-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--primary-300);
  opacity: 0.08;
  z-index: 1;
}

.casestudy-section-minimal .circle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
}

.casestudy-section-minimal .circle-2 {
  width: 280px;
  height: 280px;
  bottom: -60px;
  right: -60px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .casestudy-section-minimal #casestudy-title {
    font-size: 2.5rem;
  }
  
  .casestudy-section-minimal .casestudy-grid {
    grid-template-columns: 1fr;
  }
  
  .casestudy-section-minimal .grid-item-large,
  .casestudy-section-minimal .grid-item-medium,
  .casestudy-section-minimal .grid-item-medium:last-child {
    grid-column: span 1;
  }
  
  .casestudy-section-minimal .header-visual {
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .casestudy-section-minimal #casestudy-title {
    font-size: 2rem;
  }
  
  .casestudy-section-minimal .block-content {
    padding: 1.5rem;
  }
  
  .casestudy-section-minimal .block-visual {
    height: 200px;
  }
  
  .casestudy-section-minimal .block-visual-compact {
    height: 160px;
  }
}





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

.process #process-title {
  color: var(--text-primary);
}

.process #process-subtitle {
  color: var(--primary-500);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.process #process-desc {
  color: var(--text-secondary);
  line-height: 1.7;
}

.process .process-card {
  background: var(--surface-secondary);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.process .process-card:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-300);
}

.process .card-number-badge {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--primary-500) 40%, transparent);
  z-index: 2;
}

.process .process-icon-wrapper {
  width: 120px;
  height: 120px;
  background: color-mix(in srgb, var(--primary-500) 10%, var(--surface-primary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.process .process-card:hover .process-icon-wrapper {
  transform: scale(1.05);
  background: color-mix(in srgb, var(--primary-500) 15%, var(--surface-primary));
}

.process .process-icon-wrapper i {
  font-size: 3rem;
  color: var(--primary-500);
}

.process .process-card-content h4 {
  color: var(--text-primary);
}

.process .process-card-content p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Decorative Elements */
.process .decorative-shape {
  position: absolute;
  opacity: 0.04;
  pointer-events: none;
}

.process .shape-1 {
  width: 350px;
  height: 350px;
  background: var(--primary-500);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 5%;
  right: -100px;
  animation: morphShape 10s ease-in-out infinite;
}

.process .shape-2 {
  width: 250px;
  height: 250px;
  background: var(--primary-700);
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  bottom: 15%;
  left: -80px;
  animation: morphShape 12s ease-in-out infinite;
}

.process .shape-3 {
  width: 180px;
  height: 180px;
  background: var(--primary-300);
  border-radius: 50%;
  top: 50%;
  left: 5%;
  animation: float 8s ease-in-out infinite;
}

@keyframes morphShape {
  0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
}

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

/* Tablet Styles */
@media (min-width: 768px) {
  .process .process-card {
    padding: 2.5rem;
  }

  .process .card-number-badge {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
    top: -20px;
    left: 30px;
  }
}

/* Desktop Styles */
@media (min-width: 992px) {
  .process .process-card {
    padding: 3rem;
  }

  .process .process-icon-wrapper {
    width: 140px;
    height: 140px;
  }

  .process .process-icon-wrapper i {
    font-size: 3.5rem;
  }
}

/* Large Desktop */
@media (min-width: 1400px) {
  .process .process-card {
    padding: 3.5rem;
  }
}


.timeline-section-secondary {
  position: relative;
  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 */
.timeline-section-secondary .section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.timeline-section-secondary .section-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 600;
  color: var(--primary-500);
  line-height: 1.4;
}

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

/* Timeline Container */
.timeline-container {
  position: relative;
  padding-left: 3rem;
}

.timeline-track {
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 4px;
  background: linear-gradient(to bottom,
    var(--primary-300),
    var(--primary-500),
    var(--primary-700)
  );
  border-radius: 2px;
}

/* Timeline Entry */
.timeline-entry {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 2rem;
}

.timeline-entry:last-child {
  margin-bottom: 0;
}

/* Timeline Dot */
.timeline-dot {
  position: absolute;
  left: 0;
  top: 8px;
  width: 42px;
  height: 42px;
  z-index: 2;
}

.dot-icon {
  position: relative;
  width: 42px;
  height: 42px;
  background: var(--primary-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px var(--surface-primary);
  transition: all 0.3s ease;
  z-index: 2;
}

.dot-icon i {
  font-size: 1.25rem;
  color: var(--light);
}

.dot-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 3px solid var(--primary-300);
  opacity: 0;
  animation: pulse-animation 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.timeline-entry:hover .dot-icon {
  transform: scale(1.15);
  background: var(--primary-700);
}

.timeline-entry:hover .dot-pulse {
  animation-duration: 1.5s;
}

@keyframes pulse-animation {
  0%, 100% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.4;
  }
}

/* Timeline Card */
.timeline-card {
  position: relative;
  background: var(--surface-secondary);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--neutral-100);
  transition: all 0.3s ease;
  overflow: hidden;
}

.timeline-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-300);
}

.card-decorative-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, 
    transparent 50%, 
    color-mix(in srgb, var(--primary-300) 20%, transparent 80%) 50%
  );
  pointer-events: none;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.card-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.card-accent-bar {
  height: 4px;
  width: 60px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-300));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.timeline-card:hover .card-accent-bar {
  width: 100px;
}

/* Decorative Background Elements */
.bg-pattern {
  position: absolute;
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
}

.pattern-1 {
  top: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: repeating-linear-gradient(
    45deg,
    var(--primary-500),
    var(--primary-500) 10px,
    transparent 10px,
    transparent 20px
  );
  transform: rotate(30deg);
}

.pattern-2 {
  bottom: 15%;
  right: 8%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--primary-700) 2px, transparent 2px);
  background-size: 20px 20px;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

.shape-1 {
  width: 120px;
  height: 120px;
  background: var(--primary-300);
  top: 20%;
  right: 10%;
}

.shape-2 {
  width: 90px;
  height: 90px;
  background: var(--primary-500);
  bottom: 30%;
  left: 15%;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--primary-700);
  top: 60%;
  right: 5%;
}

/* Tablet Responsive */
@media (max-width: 991px) {
  .timeline-container {
    padding-left: 2.5rem;
  }

  .timeline-track {
    left: 17px;
  }

  .timeline-entry {
    padding-left: 1.5rem;
  }

  .dot-icon {
    width: 38px;
    height: 38px;
  }

  .dot-icon i {
    font-size: 1.125rem;
  }
}

/* Mobile Responsive */
@media (max-width: 575px) {
  .timeline-section-secondary {
    padding: 3rem 0;
  }

  .timeline-container {
    padding-left: 2rem;
  }

  .timeline-track {
    left: 15px;
    width: 3px;
  }

  .timeline-entry {
    padding-left: 1.25rem;
    margin-bottom: 2rem;
  }

  .timeline-dot {
    width: 34px;
    height: 34px;
  }

  .dot-icon {
    width: 34px;
    height: 34px;
    box-shadow: 0 0 0 4px var(--surface-primary);
  }

  .dot-icon i {
    font-size: 1rem;
  }

  .timeline-card {
    padding: 1.5rem;
  }

  .card-title {
    font-size: 1.25rem;
  }

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

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





.career-section-secondary {
  position: relative;
  padding: 90px 0;
  background: var(--surface-primary);
  overflow: hidden;
}

/* Header */
.career-section-secondary .section-number {
  font-size: 5rem;
  font-weight: 900;
  color: var(--neutral-100);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.05em;
}

.career-section-secondary .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.career-section-secondary .section-subtitle {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary-500);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.career-section-secondary .section-description {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 24px;
}

/* Career Grid */
.career-section-secondary .career-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Career Box */
.career-section-secondary .career-box {
  position: relative;
  background: var(--light);
  border: 2px solid var(--neutral-100);
  padding: 32px;
  transition: all 0.3s ease;
}

.career-section-secondary .career-box:hover {
  border-color: var(--primary-500);
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--primary-500);
}

/* Box Header */
.career-section-secondary .box-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--neutral-100);
}

.career-section-secondary .box-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--neutral-100);
  line-height: 1;
}

.career-section-secondary .career-box:hover .box-number {
  color: var(--primary-300);
}

.career-section-secondary .box-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--neutral-50);
  border: 2px solid var(--neutral-100);
  transition: all 0.3s ease;
}

.career-section-secondary .career-box:hover .box-icon {
  background: var(--primary-500);
  border-color: var(--primary-500);
  transform: rotate(90deg);
}

.career-section-secondary .box-icon i {
  font-size: 24px;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.career-section-secondary .career-box:hover .box-icon i {
  color: var(--light);
}

/* Box Content */
.career-section-secondary .box-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.career-section-secondary .box-role {
  font-size: 0.875rem;
  color: var(--primary-500);
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.career-section-secondary .box-description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Box Border Accent */
.career-section-secondary .box-border {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-top: 3px solid var(--neutral-100);
  border-right: 3px solid var(--neutral-100);
  transition: all 0.3s ease;
}

.career-section-secondary .career-box:hover .box-border {
  border-color: var(--primary-500);
  width: 60px;
  height: 60px;
}

/* Industrial Grid Background */
.career-section-secondary .industrial-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(var(--neutral-100) 1px, transparent 1px),
    linear-gradient(90deg, var(--neutral-100) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  pointer-events: none;
}

/* Corner Accents */
.career-section-secondary .corner-accent {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 3px solid var(--primary-500);
  opacity: 0.2;
  pointer-events: none;
}

.career-section-secondary .accent-tl {
  top: 20px;
  left: 20px;
  border-bottom: none;
  border-right: none;
}

.career-section-secondary .accent-br {
  bottom: 20px;
  right: 20px;
  border-top: none;
  border-left: none;
}

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

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

  .career-section-secondary .section-subtitle {
    font-size: 1.125rem;
  }

  .career-section-secondary .career-grid {
    gap: 24px;
  }
}

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

  .career-section-secondary .section-number {
    font-size: 3.5rem;
  }

  .career-section-secondary .section-title {
    font-size: 1.75rem;
  }

  .career-section-secondary .section-subtitle {
    font-size: 1rem;
  }

  .career-section-secondary .career-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .career-section-secondary .career-box {
    padding: 24px;
  }

  .career-section-secondary .career-box:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--primary-500);
  }

  .career-section-secondary .box-number {
    font-size: 2rem;
  }

  .career-section-secondary .box-title {
    font-size: 1.25rem;
  }
}


.coreinfo-section-alt {
  padding: 95px 0;
  background: var(--surface-primary);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.coreinfo-section-alt .section-header {
  max-width: 850px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 1;
}

.coreinfo-section-alt .elegant-divider {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.coreinfo-section-alt .divider-ornament {
  width: 80px;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--primary-500), transparent);
  border-radius: 3px;
  position: relative;
}

.coreinfo-section-alt .divider-ornament::before,
.coreinfo-section-alt .divider-ornament::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--primary-500);
  border-radius: 50%;
  transform: translateY(-50%);
}

.coreinfo-section-alt .divider-ornament::before {
  left: -4px;
}

.coreinfo-section-alt .divider-ornament::after {
  right: -4px;
}

.coreinfo-section-alt .section-title {
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.8px;
}

.coreinfo-section-alt .section-subtitle {
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--primary-700);
  line-height: 1.3;
  font-style: italic;
}

.coreinfo-section-alt .section-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 780px;
}

/* Elegant Container */
.coreinfo-section-alt .elegant-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Elegant Card */
.coreinfo-section-alt .elegant-card {
  background: var(--light);
  border-radius: 12px;
  padding: 38px 34px;
  height: 100%;
  position: relative;
  border: 1px solid var(--neutral-100);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  overflow: hidden;
}

.coreinfo-section-alt .elegant-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
  border-color: var(--primary-300);
}

/* Card Ornament */
.coreinfo-section-alt .card-ornament {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, var(--primary-50), transparent);
  opacity: 0.6;
  transition: all 0.4s ease;
}

.coreinfo-section-alt .elegant-card:hover .card-ornament {
  width: 120px;
  height: 120px;
  opacity: 0.8;
}

/* Card Icon Elegant */
.coreinfo-section-alt .card-icon-elegant {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--primary-500) 30%, transparent);
  transition: all 0.4s ease;
}

.coreinfo-section-alt .elegant-card:hover .card-icon-elegant {
  transform: scale(1.1);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--primary-500) 40%, transparent);
}

.coreinfo-section-alt .card-icon-elegant i {
  font-size: 2rem;
  color: var(--light);
}

/* Card Content Elegant */
.coreinfo-section-alt .card-content-elegant {
  position: relative;
  z-index: 2;
}

.coreinfo-section-alt .elegant-title {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.coreinfo-section-alt .elegant-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Card Footer Line */
.coreinfo-section-alt .card-footer-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-300), var(--primary-500), var(--primary-300));
  border-radius: 3px 3px 0 0;
  transition: width 0.4s ease;
}

.coreinfo-section-alt .elegant-card:hover .card-footer-line {
  width: 100%;
}

/* Elegant Background */
.coreinfo-section-alt .elegant-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.coreinfo-section-alt .elegant-shape {
  position: absolute;
  background: var(--primary-50);
  opacity: 0.25;
  border-radius: 50%;
}

.coreinfo-section-alt .shape-1 {
  top: 12%;
  left: 5%;
  width: 220px;
  height: 220px;
  filter: blur(50px);
}

.coreinfo-section-alt .shape-2 {
  bottom: 18%;
  right: 8%;
  width: 280px;
  height: 280px;
  filter: blur(60px);
}

.coreinfo-section-alt .elegant-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-50), transparent);
  opacity: 0.15;
}

/* Responsive Design */
@media (max-width: 991px) {
  .coreinfo-section-alt {
    padding: 75px 0;
  }

  .coreinfo-section-alt .section-title {
    font-size: 2.4rem;
  }

  .coreinfo-section-alt .section-subtitle {
    font-size: 1.5rem;
  }

  .coreinfo-section-alt .elegant-card {
    padding: 32px 28px;
  }

  .coreinfo-section-alt .card-icon-elegant {
    width: 64px;
    height: 64px;
  }

  .coreinfo-section-alt .card-icon-elegant i {
    font-size: 1.85rem;
  }
}

@media (max-width: 767px) {
  .coreinfo-section-alt {
    padding: 65px 0;
  }

  .coreinfo-section-alt .section-title {
    font-size: 2rem;
  }

  .coreinfo-section-alt .section-subtitle {
    font-size: 1.3rem;
  }

  .coreinfo-section-alt .section-description {
    font-size: 1.05rem;
  }

  .coreinfo-section-alt .divider-ornament {
    width: 60px;
    height: 5px;
  }

  .coreinfo-section-alt .elegant-card {
    padding: 28px 24px;
  }

  .coreinfo-section-alt .card-icon-elegant {
    width: 60px;
    height: 60px;
  }

  .coreinfo-section-alt .card-icon-elegant i {
    font-size: 1.75rem;
  }

  .coreinfo-section-alt .elegant-title {
    font-size: 1.3rem;
  }

  .coreinfo-section-alt .elegant-description {
    font-size: 1rem;
  }

  .coreinfo-section-alt .elegant-shape {
    display: none;
  }
}





/* ========================================
   CONTACT SECTION V-028 - Magazine Blue
   Theme: professional-blue-01
   ======================================== */

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

/* ========================================
   EDITORIAL HEADER
   ======================================== */

.editorial-header-block {
  padding: 2rem 0;
}

.editorial-label-strip {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.strip-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-500);
  border-radius: 50%;
}

.title-editorial {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.subtitle-editorial {
  color: var(--primary-500);
  font-weight: 500;
  line-height: 1.5;
  border-left: 4px solid var(--primary-500);
  padding-left: 1rem;
}

.desc-editorial {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  column-count: 1;
}

/* ========================================
   MAGAZINE FORM BLOCK
   ======================================== */

.magazine-form-block {
  position: relative;
  background: var(--surface-primary);
  border: 2px solid var(--border-light);
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Corner Brackets */
.corner-bracket {
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--primary-500);
  border-style: solid;
}

.corner-bracket.bracket-tl {
  top: 10px;
  left: 10px;
  border-width: 2px 0 0 2px;
}

.corner-bracket.bracket-tr {
  top: 10px;
  right: 10px;
  border-width: 2px 2px 0 0;
}

.corner-bracket.bracket-bl {
  bottom: 10px;
  left: 10px;
  border-width: 0 0 2px 2px;
}

.corner-bracket.bracket-br {
  bottom: 10px;
  right: 10px;
  border-width: 0 2px 2px 0;
}

/* ========================================
   MAGAZINE FORM GRID
   ======================================== */

.magazine-form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.magazine-field.field-col-2 {
  grid-column: span 2;
}

.magazine-field.field-col-4 {
  grid-column: span 4;
}

.magazine-label {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.magazine-input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--surface-secondary);
  border: none;
  border-bottom: 2px solid var(--border-light);
  transition: all 0.3s ease;
}

.magazine-input:focus {
  outline: none;
  border-bottom-color: var(--primary-500);
  background: #ffffff;
}

.magazine-textarea {
  resize: vertical;
  min-height: 100px;
}

/* ========================================
   MAGAZINE CHECKBOX
   ======================================== */

.magazine-action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.magazine-checkbox {
  display: none;
}

.magazine-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.magazine-check-square {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.magazine-check-square i {
  color: #ffffff;
  font-size: 0.875rem;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}

.magazine-checkbox:checked + .magazine-checkbox-label .magazine-check-square {
  background: var(--primary-500);
  border-color: var(--primary-500);
}

.magazine-checkbox:checked + .magazine-checkbox-label .magazine-check-square i {
  opacity: 1;
  transform: scale(1);
}

.magazine-check-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ========================================
   MAGAZINE SUBMIT BUTTON
   ======================================== */

.btn-magazine-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--button-primary-text);
  background: var(--primary-500);
  border: 2px solid var(--primary-500);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  overflow: hidden;
}

.btn-magazine-submit:hover {
  background: var(--primary-700);
  border-color: var(--primary-700);
  transform: translateX(5px);
}

.btn-magazine-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-700);
}

.btn-magazine-text,
.btn-magazine-submit i {
  position: relative;
  z-index: 1;
}

/* ========================================
   MAGAZINE SIDEBAR
   ======================================== */

.magazine-sidebar {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-title-strip {
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--primary-500);
}

.title-accent-line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-300);
}

/* ========================================
   MAGAZINE INFO STACK
   ======================================== */

.magazine-info-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.magazine-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--surface-secondary);
  border-left: 3px solid var(--primary-500);
  transition: all 0.3s ease;
}

.magazine-info-item:hover {
  background: var(--surface-primary);
  border-left-width: 5px;
  transform: translateX(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-icon-magazine {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-50);
  color: var(--primary-500);
  font-size: 1.25rem;
}

.info-text-magazine {
  margin: 0;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}

/* ========================================
   ICON ARRAY
   ======================================== */

.icon-array-magazine {
  display: flex;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.array-item {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-secondary);
  border: 2px solid var(--border-light);
  color: var(--primary-500);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.array-item:hover {
  background: var(--primary-50);
  border-color: var(--primary-300);
  transform: translateY(-3px);
}

/* ========================================
   EDITORIAL BACKGROUND
   ======================================== */

.editorial-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 50px,
      var(--border-light) 50px,
      var(--border-light) 51px
    );
  opacity: 0.15;
  pointer-events: none;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 991.98px) {
  .contact-section-special {
    padding: 60px 0;
  }

  .magazine-form-block {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .magazine-form-grid {
    grid-template-columns: 1fr;
  }

  .magazine-field.field-col-2,
  .magazine-field.field-col-4 {
    grid-column: span 1;
  }

  .desc-editorial {
    column-count: 1;
  }
}

@media (max-width: 767.98px) {
  .magazine-form-block {
    padding: 1.5rem;
  }

  .magazine-action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-magazine-submit {
    width: 100%;
    justify-content: center;
  }

  .icon-array-magazine {
    justify-content: space-between;
  }

  .array-item {
    width: 55px;
    height: 55px;
    font-size: 1.25rem;
  }
}



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

/* Header Styles */
.blog-section-pro .blog-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.blog-section-pro .blog-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.blog-section-pro .blog-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-500);
  margin-bottom: 20px;
  line-height: 1.4;
}

.blog-section-pro .blog-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Blog Grid */
.blog-section-pro .blog-grid {
  position: relative;
  z-index: 2;
}

/* Blog Card */
.blog-section-pro .blog-card {
  background: var(--light);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.blog-section-pro .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper */
.blog-section-pro .blog-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-section-pro .blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-section-pro .blog-card:hover .blog-image {
  transform: scale(1.08);
}

.blog-section-pro .blog-category-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: var(--primary-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Card Body */
.blog-section-pro .blog-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-section-pro .blog-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

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

.blog-section-pro .blog-card-excerpt {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Card Footer */
.blog-section-pro .blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--neutral-100);
  margin-top: auto;
}

.blog-section-pro .blog-meta {
  display: flex;
  gap: 12px;
  color: var(--neutral-500);
  font-size: 1.1rem;
}

.blog-section-pro .blog-read-more {
  color: var(--primary-500);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.blog-section-pro .blog-read-more:hover {
  color: var(--primary-700);
  gap: 8px;
}

.blog-section-pro .blog-read-more i {
  transition: transform 0.3s ease;
}

.blog-section-pro .blog-read-more:hover i {
  transform: translateX(4px);
}

/* Decorative Elements */
.blog-section-pro .decorative-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
}

.blog-section-pro .shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-500);
  top: -100px;
  left: -100px;
}

.blog-section-pro .shape-2 {
  width: 300px;
  height: 300px;
  background: var(--primary-700);
  bottom: -80px;
  right: -80px;
}

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

  .blog-section-pro .blog-main-title {
    font-size: 2rem;
  }

  .blog-section-pro .blog-subtitle {
    font-size: 1.1rem;
  }

  .blog-section-pro .blog-header {
    margin-bottom: 40px;
  }
}

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

  .blog-section-pro .blog-main-title {
    font-size: 1.75rem;
  }

  .blog-section-pro .blog-subtitle {
    font-size: 1rem;
  }

  .blog-section-pro .blog-description {
    font-size: 0.95rem;
  }

  .blog-section-pro .blog-card-title {
    font-size: 1.15rem;
  }

  .blog-section-pro .blog-card-footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}





/* Faq section */

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

/* Section Header */
.faq-section-076 .pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-500);
  animation: pulse-fade 2s ease-in-out infinite;
}

.faq-section-076 .pulse-dot.delay-1 {
  animation-delay: 0.3s;
}

.faq-section-076 .pulse-dot.delay-2 {
  animation-delay: 0.6s;
}

@keyframes pulse-fade {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.4);
    opacity: 1;
  }
}

.faq-section-076 #faq-title {
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

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

/* FAQ Container */
.faq-section-076 .faq-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.faq-section-076 .faq-block {
  position: relative;
}

.faq-section-076 .card {
  border: 1px solid color-mix(in srgb, var(--neutral-300) 25%, transparent);
  border-radius: 20px;
  background: var(--surface-primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
}

.faq-section-076 .card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-300));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.faq-section-076 .card:hover::before {
  opacity: 1;
}

.faq-section-076 .card:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

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

.faq-section-076 .faq-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--primary-500) 12%, transparent);
  line-height: 1;
  transition: color 0.3s ease;
}

.faq-section-076 .card:hover .faq-number {
  color: color-mix(in srgb, var(--primary-500) 20%, transparent);
}

.faq-section-076 .icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--primary-500) 12%, var(--surface-primary)),
    color-mix(in srgb, var(--primary-300) 8%, var(--surface-primary))
  );
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-section-076 .card:hover .icon-badge {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  transform: scale(1.1) rotate(5deg);
}

.faq-section-076 .icon-badge i {
  color: var(--primary-700);
  font-size: 1.75rem;
  transition: color 0.3s ease;
}

.faq-section-076 .card:hover .icon-badge i {
  color: var(--light);
}

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

.faq-section-076 .card-body p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Floating Circles */
.faq-section-076 .floating-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle,
    color-mix(in srgb, var(--primary-500) 10%, transparent) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  animation: floatCircle 20s ease-in-out infinite;
}

.faq-section-076 .floating-circle.circle-1 {
  width: 300px;
  height: 300px;
  top: 50px;
  right: -100px;
  opacity: 0.6;
}

.faq-section-076 .floating-circle.circle-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -150px;
  opacity: 0.4;
  animation-delay: -7s;
}

.faq-section-076 .floating-circle.circle-3 {
  width: 250px;
  height: 250px;
  top: 40%;
  left: 50%;
  opacity: 0.3;
  animation-delay: -14s;
}

@keyframes floatCircle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 20px) scale(0.9);
  }
}

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

/* Responsive Design */
@media (max-width: 1199.98px) {
  .faq-section-076 .faq-container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 991.98px) {
  .faq-section-076 {
    padding: 80px 0;
  }

  .faq-section-076 #faq-title {
    font-size: 2.5rem;
  }

  .faq-section-076 .faq-container {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }

  .faq-section-076 .card-body {
    padding: 1.75rem;
  }
}

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

  .faq-section-076 #faq-title {
    font-size: 2rem;
  }

  .faq-section-076 #faq-subtitle {
    font-size: 1.25rem;
  }

  .faq-section-076 .faq-container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .faq-section-076 .card-body {
    padding: 1.5rem;
  }

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

  .faq-section-076 .icon-badge {
    width: 48px;
    height: 48px;
  }

  .faq-section-076 .icon-badge i {
    font-size: 1.5rem;
  }

  .faq-section-076 .card-body h3 {
    font-size: 1.05rem;
    padding-right: 2.5rem;
  }

  .faq-section-076 .floating-circle {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .faq-section-076 {
    padding: 50px 0;
  }

  .faq-section-076 .card-body {
    padding: 1.25rem;
  }

  .faq-section-076 .faq-number {
    font-size: 1.75rem;
    top: 1rem;
    right: 1rem;
  }

  .faq-section-076 .icon-badge {
    width: 44px;
    height: 44px;
  }

  .faq-section-076 .icon-badge i {
    font-size: 1.375rem;
  }

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





/* Gallery section */
.gallery-section-standard {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary-50) 0%, #ffffff 30%, var(--secondary-50) 70%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative Background Elements */
.gallery-section-standard .decorative-gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, var(--accent-100) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, var(--primary-100) 0%, transparent 50%);
  opacity: 0.4;
  z-index: 1;
}

.gallery-section-standard .decorative-mesh-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(var(--primary-300) 1px, transparent 1px),
    linear-gradient(90deg, var(--primary-300) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.05;
  z-index: 1;
}

.gallery-section-standard .decorative-floating-circle-1 {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--primary-300), var(--primary-100));
  border-radius: 50%;
  opacity: 0.2;
  z-index: 1;
  animation: float-rotate 10s ease-in-out infinite;
}

.gallery-section-standard .decorative-floating-circle-2 {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--accent-300), var(--accent-100));
  border-radius: 50%;
  opacity: 0.25;
  z-index: 1;
  animation: float-rotate 12s ease-in-out infinite reverse;
}

.gallery-section-standard .decorative-floating-circle-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--secondary-200), transparent);
  border-radius: 50%;
  opacity: 0.15;
  z-index: 1;
  animation: pulse-scale 8s ease-in-out infinite;
}

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

@keyframes pulse-scale {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.15; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.25; }
}

/* Decorative Floating Icons */
.gallery-section-standard .decorative-icon-float {
  position: absolute;
  font-size: 2rem;
  color: var(--primary-500);
  opacity: 0.15;
  z-index: 1;
  animation: float-gentle 6s ease-in-out infinite;
}

.gallery-section-standard .decorative-icon-1 {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.gallery-section-standard .decorative-icon-2 {
  top: 60%;
  right: 12%;
  animation-delay: 2s;
}

.gallery-section-standard .decorative-icon-3 {
  bottom: 20%;
  right: 25%;
  animation-delay: 4s;
}

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

/* Gallery Floating Container */
.gallery-section-standard .gallery-floating-container {
  position: relative;
  z-index: 2;
}

.gallery-section-standard .gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.gallery-section-standard .gallery-row:last-child {
  margin-bottom: 0;
}

/* Gallery Floating Cards */
.gallery-section-standard .gallery-floating-card {
  position: relative;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-section-standard .gallery-card-offset-1 {
  transform: translateY(0);
}

.gallery-section-standard .gallery-card-offset-2 {
  transform: translateY(20px);
}

.gallery-section-standard .gallery-card-offset-3 {
  transform: translateY(40px);
}

.gallery-section-standard .gallery-card-content {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-section-standard .gallery-badge-accent {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  border-radius: 50%;
  opacity: 0;
  z-index: 3;
  transition: all 0.4s ease;
}

.gallery-section-standard .gallery-floating-card:hover .gallery-badge-accent {
  opacity: 0.8;
  transform: scale(1.2) rotate(90deg);
}

.gallery-section-standard .gallery-floating-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
  display: block;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
}

/* Hover Effects with Tilt */
.gallery-section-standard .gallery-floating-card:hover {
  transform: translateY(-15px) scale(1.05) rotate(-2deg);
  z-index: 10;
}

.gallery-section-standard .gallery-card-offset-2:hover {
  transform: translateY(5px) scale(1.05) rotate(2deg);
}

.gallery-section-standard .gallery-card-offset-3:hover {
  transform: translateY(25px) scale(1.05) rotate(-1deg);
}

.gallery-section-standard .gallery-floating-card:hover .gallery-card-content {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.gallery-section-standard .gallery-floating-card:hover .gallery-floating-img {
  transform: scale(1.2);
  filter: brightness(0.7) saturate(1.3);
}

/* Hover Overlay */
.gallery-section-standard .gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(var(--primary-rgb), 0.85) 0%, 
    rgba(var(--accent-rgb), 0.85) 100%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.gallery-section-standard .gallery-floating-card:hover .gallery-hover-overlay {
  opacity: 1;
}

.gallery-section-standard .hover-icon-wrapper {
  transform: scale(0.3) rotate(-180deg);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gallery-section-standard .gallery-floating-card:hover .hover-icon-wrapper {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

.gallery-section-standard .hover-icon-wrapper i {
  font-size: 4rem;
  color: #ffffff;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
}

/* Responsive Design */
@media (max-width: 991px) {
  .gallery-section-standard {
    padding: 80px 0;
  }
  
  .gallery-section-standard .gallery-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
  }
  
  .gallery-section-standard .gallery-floating-img {
    min-height: 250px;
  }
  
  .gallery-section-standard .hover-icon-wrapper i {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .gallery-section-standard {
    padding: 60px 0;
  }
  
  .gallery-section-standard .gallery-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .gallery-section-standard .gallery-card-offset-1,
  .gallery-section-standard .gallery-card-offset-2,
  .gallery-section-standard .gallery-card-offset-3 {
    transform: translateY(0);
  }
  
  .gallery-section-standard .gallery-floating-card:hover {
    transform: translateY(-10px) scale(1.02) rotate(0deg);
  }
  
  .gallery-section-standard .gallery-card-content {
    border-radius: 15px;
  }
  
  .gallery-section-standard .gallery-floating-img {
    min-height: 250px;
  }
  
  .gallery-section-standard .hover-icon-wrapper i {
    font-size: 2.5rem;
  }
}

@media (max-width: 575px) {
  .gallery-section-standard {
    padding: 50px 0;
  }
  
  .gallery-section-standard .gallery-row {
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .gallery-section-standard .gallery-floating-img {
    min-height: 220px;
  }
  
  .gallery-section-standard .hover-icon-wrapper i {
    font-size: 2rem;
  }
  
  .gallery-section-standard .decorative-icon-float {
    font-size: 1.5rem;
  }
}



.footer-clean {
  position: relative;
  padding: 90px 0 50px;
  background: linear-gradient(150deg, 
    color-mix(in srgb, var(--primary-700) 93%, transparent) 0%, 
    color-mix(in srgb, var(--primary-500) 88%, transparent) 100%), 
    url('RUV_assets/RUV_images/footer_bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  overflow: hidden;
}

.footer-background-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--neutral-900) 3%, transparent);
  pointer-events: none;
}

/* Brand Section */
.footer-brand-section {
  max-width: 700px;
  margin: 0 auto;
}

.footer-brand-name {
  font-size: 2rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.footer-brand-description {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

/* Section Cards */
.footer-section-card {
  padding: 1.5rem;
  background: color-mix(in srgb, #ffffff 8%, transparent);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, #ffffff 15%, transparent);
  transition: all 0.3s ease;
  height: 100%;
}

.footer-section-card:hover {
  background: color-mix(in srgb, #ffffff 12%, transparent);
  transform: translateY(-5px);
}

.footer-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Navigation Links */
.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-nav-link::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-nav-link:hover {
  color: #ffffff;
  padding-left: 20px;
}

.footer-nav-link:hover::before {
  opacity: 1;
  left: 0;
}

/* Contact Info */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-info-item i {
  font-size: 1.1rem;
  color: #ffffff;
  margin-top: 3px;
  flex-shrink: 0;
}

.info-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Decorative Badges */
.decorative-badges {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-start;
}

.badge-dot {
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0.6;
}

.footer-disclaimer-content {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Copyright Section */
.footer-bottom-bar {
  margin-top: 3rem;
  padding-top: 2rem;
}

.separator-line {
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.25), 
    transparent);
  margin-bottom: 1.5rem;
}

.footer-copyright-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin: 0;
}

/* Minimal Shapes */
.minimal-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent);
  pointer-events: none;
}

.shape-top-left {
  top: -200px;
  left: -200px;
}

.shape-bottom-right {
  bottom: -200px;
  right: -200px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .footer-clean {
    padding: 70px 0 40px;
  }

  .footer-brand-name {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .footer-clean {
    padding: 60px 0 35px;
    background-attachment: scroll;
  }

  .footer-brand-name {
    font-size: 1.5rem;
  }

  .footer-section-card {
    padding: 1.25rem;
  }

  .decorative-badges {
    justify-content: center;
  }

  .footer-disclaimer-content {
    text-align: center;
  }
}


/* 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 */
/* Theme: earth-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: 750px;
}

/* Features List */
.features-list {
  position: relative;
  z-index: 2;
}

/* Feature Item */
.feature-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  background: var(--surface-secondary);
  border-left: 4px solid var(--primary-500);
  border-radius: 12px;
  box-shadow: 0 2px 12px color-mix(in srgb, var(--neutral-500) 8%, transparent 92%);
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 24px color-mix(in srgb, var(--primary-500) 15%, transparent 85%);
  border-left-width: 6px;
}

/* Feature Icon Wrapper */
.feature-icon-wrapper {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
}

.icon-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--primary-50),
    color-mix(in srgb, var(--primary-100) 70%, var(--primary-50) 30%)
  );
  border-radius: 16px;
  transition: all 0.3s ease;
}

.feature-item:hover .icon-background {
  transform: rotate(8deg) scale(1.05);
  background: linear-gradient(
    135deg,
    var(--primary-100),
    color-mix(in srgb, var(--primary-300) 60%, var(--primary-100) 40%)
  );
}

.feature-icon-wrapper i {
  position: relative;
  font-size: 2rem;
  color: var(--primary-500);
  z-index: 1;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper i {
  transform: scale(1.1);
  color: color-mix(in srgb, var(--primary-500) 90%, var(--primary-700) 10%);
}

/* Feature Content */
.feature-content {
  flex: 1;
  min-width: 0;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.feature-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Feature Decoration */
.feature-decoration {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--primary-300) 8%, transparent 92%),
    transparent
  );
  border-radius: 50%;
  pointer-events: none;
}

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

.decorative-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
}

.blob-1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--primary-300) 20%, transparent 80%),
    transparent
  );
  top: -100px;
  left: -100px;
  animation: float-blob 15s ease-in-out infinite;
}

.blob-2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--primary-500) 15%, transparent 85%),
    transparent
  );
  bottom: -80px;
  right: -80px;
  animation: float-blob 18s ease-in-out infinite 3s;
}

.decorative-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid color-mix(in srgb, var(--primary-300) 15%, transparent 85%);
  border-radius: 50%;
  top: 40%;
  right: 5%;
  animation: rotate-circle 20s linear infinite;
}

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

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

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .feature-item {
    gap: 1.25rem;
    padding: 1.75rem;
  }
  
  .feature-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon-wrapper i {
    font-size: 1.75rem;
  }
}

@media (max-width: 767.98px) {
  .additional-universal-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .section-header {
    margin-bottom: 2.5rem !important;
  }
  
  .feature-item {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .feature-item:hover {
    transform: translateY(-4px) translateX(0);
  }
  
  .feature-icon-wrapper {
    width: 56px;
    height: 56px;
  }
  
  .feature-icon-wrapper i {
    font-size: 1.5rem;
  }
  
  .feature-title {
    font-size: 1.125rem;
  }
}





.additional-universal-style {
  position: relative;
  background: var(--surface-primary);
  overflow: hidden;
}

/* Header Styles */
.additional-universal-style #add_page_1_sec_1_title {
  color: var(--text-primary);
  line-height: 1.2;
}

.additional-universal-style #add_page_1_sec_1_subtitle {
  color: var(--text-secondary);
  font-weight: 500;
}

.additional-universal-style #add_page_1_sec_1_desc {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Content Sections */
.additional-universal-style .content-sections {
  position: relative;
  z-index: 1;
}

.additional-universal-style .decorative-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--primary-500) 10%, transparent);
  color: var(--primary-500);
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.additional-universal-style .content-sections h3 {
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.additional-universal-style .content-sections p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Visual Placeholder */
.additional-universal-style .visual-placeholder {
  position: relative;
  height: 350px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--primary-500) 5%, var(--neutral-50));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.additional-universal-style .visual-placeholder:hover {
  transform: translateY(-5px);
}

.additional-universal-style .placeholder-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary-500) 15%, transparent);
  filter: blur(40px);
  animation: float-v079 6s ease-in-out infinite;
}

.additional-universal-style .visual-placeholder > i {
  position: relative;
  z-index: 2;
  font-size: 5rem;
  color: var(--primary-500);
  opacity: 0.3;
}

/* Background Decorations */
.additional-universal-style .bg-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}

.additional-universal-style .decoration-1 {
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: color-mix(in srgb, var(--primary-300) 40%, transparent);
  animation: float-v079 10s ease-in-out infinite;
}

.additional-universal-style .decoration-2 {
  bottom: 10%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: color-mix(in srgb, var(--primary-500) 30%, transparent);
  animation: float-v079 12s ease-in-out infinite reverse;
}

/* Animations */
@keyframes float-v079 {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(20px);
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .additional-universal-style .visual-placeholder {
    height: 280px;
  }

  .additional-universal-style .visual-placeholder > i {
    font-size: 4rem;
  }

  .additional-universal-style .decorative-accent {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .additional-universal-style #add_page_1_sec_1_title {
    font-size: 2rem;
  }

  .additional-universal-style .visual-placeholder {
    height: 220px;
  }

  .additional-universal-style .visual-placeholder > i {
    font-size: 3rem;
  }
}





.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_content {
  padding-right: var(--space-6);
}

.add_wrap .add_elem_item {
  margin-bottom: var(--space-8);
}

.add_wrap .add_elem_item:last-child {
  margin-bottom: 0;
}

.add_wrap .add_elem_title {
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  padding-left: var(--space-6);
}

.add_wrap .add_elem_title:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: var(--space-4);
  height: var(--space-4);
  background-color: var(--primary-500);
  border-radius: 50%;
}

.add_wrap .add_elem_desc {
  color: var(--text-body);
  margin-bottom: 0;
  padding-left: var(--space-6);
}

.add_wrap .add_image_container {
  position: relative;
}

.add_wrap .add_main_image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: var(--space-6);
}

.add_wrap .add_extra_content {
  background-color: var(--neutral-50);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-300);
}

.add_wrap .add_extra_content .add_elem_item {
  margin-bottom: var(--space-6);
}

.add_wrap .add_extra_content .add_elem_item:last-child {
  margin-bottom: 0;
}

.add_wrap .add_extra_content .add_elem_title {
  font-size: 1.1rem;
  padding-left: var(--space-5);
}

.add_wrap .add_extra_content .add_elem_title:before {
  width: var(--space-3);
  height: var(--space-3);
  background-color: var(--primary-500);
}

.add_wrap .add_extra_content .add_elem_desc {
  padding-left: var(--space-5);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .add_wrap .add_content {
    padding-right: 0;
    margin-bottom: var(--space-8);
  }
  
  .add_wrap .add_elem_item {
    margin-bottom: var(--space-6);
  }
  
  .add_wrap .add_extra_content {
    padding: var(--space-4);
  }
}


/* Universal section */

.additional-universal-section.v-056 {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--surface-primary) 0%, color-mix(in srgb, var(--primary-50) 20%, var(--surface-primary) 80%) 100%);
  overflow: hidden;
}

/* Section Header */
.v-056 .section-header {
  position: relative;
  z-index: 2;
}

.v-056 .header-badge {
  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;
  margin: 0 auto 30px;
}

.v-056 .header-badge i {
  font-size: 32px;
  color: var(--light);
}

.v-056 .section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.v-056 .section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-500);
  margin-bottom: 20px;
  line-height: 1.4;
}

.v-056 .section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

/* Timeline Wrapper */
.v-056 .timeline-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 40px 0;
  z-index: 2;
}

.v-056 .timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-300), var(--primary-500), var(--primary-300));
  border-radius: 2px;
}

/* Timeline Items */
.v-056 .timeline-item {
  position: relative;
  margin-bottom: 80px;
  display: flex;
}

.v-056 .timeline-item:last-child {
  margin-bottom: 0;
}

.v-056 .timeline-item.left {
  justify-content: flex-start;
  padding-right: calc(50% + 50px);
}

.v-056 .timeline-item.right {
  justify-content: flex-end;
  padding-left: calc(50% + 50px);
}

.v-056 .timeline-content {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.v-056 .timeline-item.left .timeline-content {
  flex-direction: row;
}

.v-056 .timeline-item.right .timeline-content {
  flex-direction: row-reverse;
}

/* Timeline Icon */
.v-056 .timeline-icon {
  width: 64px;
  height: 64px;
  background: var(--light);
  border: 4px solid var(--primary-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.v-056 .timeline-icon i {
  font-size: 28px;
  color: var(--primary-500);
}

.v-056 .timeline-icon.large {
  width: 80px;
  height: 80px;
  border-width: 5px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-color: var(--primary-700);
}

.v-056 .timeline-icon.large i {
  font-size: 36px;
  color: var(--light);
}

/* Content Box */
.v-056 .content-box {
  flex: 1;
  background: var(--light);
  padding: 32px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.v-056 .content-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.v-056 .content-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-700));
}

/* Timeline Content */
.v-056 .timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.v-056 .timeline-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Featured Item */
.v-056 .timeline-item.featured .content-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary-500) 95%, var(--light) 5%), color-mix(in srgb, var(--primary-700) 95%, var(--light) 5%));
  padding: 40px;
}

.v-056 .timeline-item.featured .timeline-title {
  color: var(--light);
  font-size: 1.75rem;
}

.v-056 .timeline-item.featured .timeline-description {
  color: color-mix(in srgb, var(--light) 95%, transparent 5%);
  font-size: 1.0625rem;
}

.v-056 .timeline-item.featured .content-box::before {
  background: color-mix(in srgb, var(--light) 30%, transparent 70%);
}

/* Timeline Decorations */
.v-056 .timeline-decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: color-mix(in srgb, var(--primary-300) 10%, transparent 90%);
  border-radius: 50%;
  pointer-events: none;
}

.v-056 .timeline-decoration.featured-deco {
  background: color-mix(in srgb, var(--light) 15%, transparent 85%);
}

/* Background Decorations */
.v-056 .bg-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.v-056 .deco-leaf {
  position: absolute;
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--primary-300) 8%, transparent 92%);
  border-radius: 0 80% 0 80%;
  animation: leaf-sway 15s ease-in-out infinite;
}

.v-056 .deco-leaf.leaf-1 {
  top: 15%;
  left: 5%;
}

.v-056 .deco-leaf.leaf-2 {
  bottom: 20%;
  right: 8%;
  transform: rotate(180deg);
}

@keyframes leaf-sway {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
}

.v-056 .deco-circle {
  position: absolute;
  top: 40%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: color-mix(in srgb, var(--primary-500) 5%, transparent 95%);
  border-radius: 50%;
}

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

  .v-056 .section-title {
    font-size: 2.25rem;
  }

  .v-056 .section-subtitle {
    font-size: 1.25rem;
  }

  .v-056 .timeline-wrapper {
    padding: 20px 0;
  }

  .v-056 .timeline-line {
    left: 32px;
  }

  .v-056 .timeline-item.left,
  .v-056 .timeline-item.right {
    padding-left: 80px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .v-056 .timeline-item.left .timeline-content,
  .v-056 .timeline-item.right .timeline-content {
    flex-direction: row;
  }

  .v-056 .timeline-item {
    margin-bottom: 60px;
  }

  .v-056 .content-box {
    padding: 28px;
  }

  .v-056 .timeline-item.featured .content-box {
    padding: 32px;
  }
}

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

  .v-056 .section-title {
    font-size: 1.875rem;
  }

  .v-056 .section-subtitle {
    font-size: 1.125rem;
  }

  .v-056 .section-description {
    font-size: 1rem;
  }

  .v-056 .header-badge {
    width: 64px;
    height: 64px;
  }

  .v-056 .header-badge i {
    font-size: 24px;
  }

  .v-056 .timeline-item {
    margin-bottom: 40px;
  }

  .v-056 .timeline-icon {
    width: 56px;
    height: 56px;
  }

  .v-056 .timeline-icon i {
    font-size: 24px;
  }

  .v-056 .timeline-icon.large {
    width: 64px;
    height: 64px;
  }

  .v-056 .timeline-icon.large i {
    font-size: 28px;
  }

  .v-056 .content-box {
    padding: 24px;
  }

  .v-056 .timeline-item.featured .content-box {
    padding: 28px;
  }

  .v-056 .timeline-title {
    font-size: 1.25rem;
  }

  .v-056 .timeline-item.featured .timeline-title {
    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-700));
  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-300) 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-300) 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 */

.additional-universal-custom {
  position: relative;
  padding: 6rem 0;
  background: radial-gradient(circle at top right, var(--primary-50) 0%, var(--neutral-50) 40%, var(--accent-50) 100%);
  overflow: hidden;
}

/* Section Header */
.additional-universal-custom .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-custom .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-custom .section-description {
  font-size: 1.125rem;
  color: var(--neutral-700);
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto;
}

/* Creative Divider */
.additional-universal-custom .creative-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
}

.additional-universal-custom .divider-line {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-500) 50%, transparent 100%);
}

.additional-universal-custom .divider-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-500);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--primary-300);
}

/* Features Grid */
.additional-universal-custom .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.additional-universal-custom .features-grid .feature-box:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

/* Feature Box */
.additional-universal-custom .feature-box {
  position: relative;
  background: var(--neutral-0);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 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-custom .feature-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-300);
}

/* Feature Visual */
.additional-universal-custom .feature-visual {
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.additional-universal-custom .icon-wrapper {
  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);
  position: relative;
  z-index: 2;
}

.additional-universal-custom .icon-wrapper i {
  font-size: 2.25rem;
  color: var(--neutral-0);
}

/* Gradient Variations */
.additional-universal-custom .gradient-1 {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
}

.additional-universal-custom .gradient-2 {
  background: linear-gradient(135deg, var(--accent-500), var(--accent-700));
}

.additional-universal-custom .gradient-3 {
  background: linear-gradient(135deg, var(--primary-700), var(--accent-600));
}

.additional-universal-custom .gradient-4 {
  background: linear-gradient(135deg, var(--accent-400), var(--primary-700));
}

.additional-universal-custom .gradient-5 {
  background: linear-gradient(135deg, var(--primary-700), var(--accent-500));
}

/* Visual Accent */
.additional-universal-custom .visual-accent {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  opacity: 0.4;
}

.additional-universal-custom .accent-1 { background: linear-gradient(90deg, var(--primary-500), transparent); }
.additional-universal-custom .accent-2 { background: linear-gradient(90deg, var(--accent-500), transparent); }
.additional-universal-custom .accent-3 { background: linear-gradient(90deg, var(--primary-700), transparent); }
.additional-universal-custom .accent-4 { background: linear-gradient(90deg, var(--accent-400), transparent); }
.additional-universal-custom .accent-5 { background: linear-gradient(90deg, var(--primary-700), transparent); }

/* Feature Text */
.additional-universal-custom .feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.additional-universal-custom .feature-description {
  font-size: 1rem;
  color: var(--neutral-700);
  line-height: 1.7;
  margin: 0;
}

/* Feature Glow Effect */
.additional-universal-custom .feature-glow {
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--primary-300) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.additional-universal-custom .feature-box:hover .feature-glow {
  opacity: 0.3;
}

/* Floating Orbs */
.additional-universal-custom .floating-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
  filter: blur(40px);
}

.additional-universal-custom .orb-1 {
  width: 350px;
  height: 350px;
  background: var(--primary-500);
  top: 10%;
  left: -100px;
}

.additional-universal-custom .orb-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-400);
  top: 50%;
  right: -80px;
}

.additional-universal-custom .orb-3 {
  width: 250px;
  height: 250px;
  background: var(--primary-300);
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

/* Geometric Patterns */
.additional-universal-custom .geometric-pattern {
  position: absolute;
  width: 150px;
  height: 150px;
  opacity: 0.03;
  pointer-events: none;
}

.additional-universal-custom .pattern-1 {
  top: 15%;
  right: 10%;
  background: repeating-linear-gradient(
    45deg,
    var(--primary-500),
    var(--primary-500) 10px,
    transparent 10px,
    transparent 20px
  );
}

.additional-universal-custom .pattern-2 {
  bottom: 20%;
  left: 8%;
  background: repeating-linear-gradient(
    -45deg,
    var(--accent-500),
    var(--accent-500) 10px,
    transparent 10px,
    transparent 20px
  );
}

/* Responsive Design - Tablet */
@media (max-width: 991px) {
  .additional-universal-custom {
    padding: 4rem 0;
  }

  .additional-universal-custom .features-grid {
    gap: 1.5rem;
  }

  .additional-universal-custom .feature-box {
    padding: 2rem;
  }

  .additional-universal-custom .icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .additional-universal-custom .icon-wrapper i {
    font-size: 2rem;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 767px) {
  .additional-universal-custom {
    padding: 3rem 0;
  }

  .additional-universal-custom .section-title {
    font-size: 1.75rem;
  }

  .additional-universal-custom .section-subtitle {
    font-size: 1.25rem;
  }

  .additional-universal-custom .section-description {
    font-size: 1rem;
  }

  .additional-universal-custom .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .additional-universal-custom .features-grid .feature-box:nth-child(3) {
    grid-column: 1;
    max-width: 100%;
  }

  .additional-universal-custom .feature-box {
    padding: 1.75rem;
  }

  .additional-universal-custom .icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .additional-universal-custom .icon-wrapper i {
    font-size: 1.75rem;
  }

  .additional-universal-custom .feature-title {
    font-size: 1.35rem;
  }

  .additional-universal-custom .feature-description {
    font-size: 0.95rem;
  }

  .additional-universal-custom .floating-orb,
  .additional-universal-custom .geometric-pattern {
    display: none;
  }
}







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

.add_wrap .add_card_icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-500));
  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 */
/* Theme: earth-01 */

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

/* Section Header */
.section-header {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  z-index: 1;
}

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

.header-icon-group i {
  font-size: 2rem;
  color: var(--primary-500);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.header-icon-group i:hover {
  transform: scale(1.2) rotate(10deg);
  opacity: 1;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-500);
  line-height: 1.4;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 750px;
}

/* Accordion */
.content-accordion {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.accordion-item {
  background: var(--surface-primary);
  border: 2px solid var(--neutral-100);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--primary-300);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transform: translateX(8px);
}

.accordion-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  cursor: default;
}

.header-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.accordion-item:hover .header-icon {
  transform: rotate(10deg) scale(1.1);
}

.header-icon i {
  font-size: 1.75rem;
  color: var(--light);
}

.header-content {
  flex: 1;
}

.accordion-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0;
  line-height: 1.3;
}

.header-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-500);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.accordion-item:hover .header-accent {
  opacity: 1;
}

.accordion-body {
  padding: 0 2rem 1.75rem 2rem;
  padding-left: calc(60px + 3.25rem);
}

.accordion-description {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Decorative Elements */
.decorative-leaf {
  position: absolute;
  font-size: 4rem;
  color: var(--primary-300);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.leaf-1 {
  top: 10%;
  left: 5%;
  transform: rotate(-20deg);
}

.leaf-2 {
  bottom: 15%;
  right: 8%;
  transform: rotate(30deg);
}

.decorative-pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-50) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

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

  .section-subtitle {
    font-size: 1.25rem;
  }

  .accordion-header {
    padding: 1.5rem 1.5rem;
    gap: 1rem;
  }

  .accordion-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    padding-left: calc(60px + 2.5rem);
  }

  .header-icon {
    width: 55px;
    height: 55px;
  }

  .header-icon i {
    font-size: 1.5rem;
  }

  .accordion-title {
    font-size: 1.375rem;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1.125rem;
  }

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

  .accordion-header {
    padding: 1.25rem;
    gap: 0.875rem;
  }

  .accordion-body {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }

  .header-icon {
    width: 50px;
    height: 50px;
  }

  .header-icon i {
    font-size: 1.375rem;
  }

  .accordion-title {
    font-size: 1.25rem;
  }

  .accordion-description {
    font-size: 1rem;
  }

  .decorative-leaf {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .additional-universal-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .section-header {
    margin-bottom: 2rem !important;
  }

  .header-icon-group {
    gap: 0.75rem;
  }

  .header-icon-group i {
    font-size: 1.5rem;
  }

  .accordion-item {
    margin-bottom: 1rem;
  }

  .accordion-item:hover {
    transform: translateX(4px);
  }

  .accordion-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .accordion-body {
    padding-left: 1.25rem;
  }
}





/* Universal section */

.additional-universal-modern {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--neutral-0) 0%, var(--primary-50) 100%);
  overflow: hidden;
}

/* Section Header */
.additional-universal-modern .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-modern .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-modern .section-description {
  font-size: 1.125rem;
  color: var(--neutral-700);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

/* Masonry Grid */
.additional-universal-modern .masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  grid-auto-rows: 250px;
  position: relative;
  z-index: 2;
}

/* Grid Items */
.additional-universal-modern .grid-item {
  position: relative;
  background: var(--neutral-0);
  border-radius: 20px;
  padding: 2rem;
  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;
  display: flex;
  flex-direction: column;
}

.additional-universal-modern .grid-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-300);
}

/* Grid Item Sizes */
.additional-universal-modern .item-large {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--neutral-0) 100%);
  border: 3px solid var(--primary-300);
}

.additional-universal-modern .item-medium {
  grid-row: span 2;
}

.additional-universal-modern .item-standard {
  grid-row: span 2;
}

/* Item Overlay */
.additional-universal-modern .item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-300) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.additional-universal-modern .item-large:hover .item-overlay {
  opacity: 0.2;
}

/* Item Icon */
.additional-universal-modern .item-icon {
  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;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.additional-universal-modern .item-icon i {
  font-size: 2rem;
  color: var(--neutral-0);
}

.additional-universal-modern .grid-item:hover .item-icon {
  transform: scale(1.1) rotate(10deg);
}

/* Item Content */
.additional-universal-modern .item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.additional-universal-modern .item-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.additional-universal-modern .item-large .item-title {
  font-size: 1.75rem;
}

.additional-universal-modern .item-description {
  font-size: 0.95rem;
  color: var(--neutral-700);
  line-height: 1.7;
  margin: 0;
}

.additional-universal-modern .item-large .item-description {
  font-size: 1rem;
}

/* Corner Accents */
.additional-universal-modern .corner-accent {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.15;
  pointer-events: none;
}

.additional-universal-modern .corner-accent.top-left {
  top: 15px;
  left: 15px;
  border-top: 4px solid var(--primary-500);
  border-left: 4px solid var(--primary-500);
}

.additional-universal-modern .corner-accent.bottom-right {
  bottom: 15px;
  right: 15px;
  border-bottom: 4px solid var(--accent-500);
  border-right: 4px solid var(--accent-500);
}

/* Shine Effect */
.additional-universal-modern .shine-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}

.additional-universal-modern .grid-item:hover .shine-effect {
  left: 100%;
}

/* Background Gradients */
.additional-universal-modern .bg-gradient {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
  filter: blur(80px);
}

.additional-universal-modern .grad-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-500);
  top: 10%;
  left: -150px;
}

.additional-universal-modern .grad-2 {
  width: 450px;
  height: 450px;
  background: var(--accent-400);
  bottom: 15%;
  right: -130px;
}

/* Floating Shapes */
.additional-universal-modern .floating-shape {
  position: absolute;
  opacity: 0.04;
  pointer-events: none;
}

.additional-universal-modern .shape-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-300);
  border-radius: 30% 70% 70% 30% / 40% 60% 40% 60%;
  top: 25%;
  right: 10%;
  filter: blur(40px);
}

.additional-universal-modern .shape-2 {
  width: 180px;
  height: 180px;
  background: var(--accent-300);
  border-radius: 60% 40% 40% 60% / 50% 50% 50% 50%;
  bottom: 20%;
  left: 12%;
  filter: blur(35px);
}

/* Responsive Design - Tablet */
@media (max-width: 991px) {
  .additional-universal-modern {
    padding: 4rem 0;
  }

  .additional-universal-modern .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    grid-auto-rows: 280px;
  }

  .additional-universal-modern .item-large {
    grid-column: span 2;
  }

  .additional-universal-modern .item-medium {
    grid-column: span 1;
  }

  .additional-universal-modern .grid-item {
    padding: 1.75rem;
  }

  .additional-universal-modern .item-icon {
    width: 65px;
    height: 65px;
  }

  .additional-universal-modern .item-icon i {
    font-size: 1.75rem;
  }

  .additional-universal-modern .item-title {
    font-size: 1.25rem;
  }

  .additional-universal-modern .item-large .item-title {
    font-size: 1.5rem;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 767px) {
  .additional-universal-modern {
    padding: 3rem 0;
  }

  .additional-universal-modern .section-title {
    font-size: 1.75rem;
  }

  .additional-universal-modern .section-subtitle {
    font-size: 1.25rem;
  }

  .additional-universal-modern .section-description {
    font-size: 1rem;
  }

  .additional-universal-modern .masonry-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    grid-auto-rows: auto;
  }

  .additional-universal-modern .item-large,
  .additional-universal-modern .item-medium,
  .additional-universal-modern .item-standard {
    grid-column: span 1;
    grid-row: span 1;
  }

  .additional-universal-modern .grid-item {
    padding: 1.5rem;
  }

  .additional-universal-modern .item-icon {
    width: 60px;
    height: 60px;
  }

  .additional-universal-modern .item-icon i {
    font-size: 1.5rem;
  }

  .additional-universal-modern .item-title {
    font-size: 1.2rem;
  }

  .additional-universal-modern .item-large .item-title {
    font-size: 1.35rem;
  }

  .additional-universal-modern .item-description {
    font-size: 0.9rem;
  }

  .additional-universal-modern .bg-gradient,
  .additional-universal-modern .floating-shape {
    display: none;
  }
}







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

/* Header Styles */
.organic-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.leaf-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-300), var(--primary-500));
  border-radius: 50% 0 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
}

.leaf-icon i {
  font-size: 1.5rem;
  color: var(--light);
  transform: rotate(45deg);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--primary-500);
  line-height: 1.4;
}

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

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.feature-item {
  grid-column: span 4;
  background: var(--surface-secondary);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid var(--neutral-100);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-large {
  grid-column: span 6;
  padding: 2.5rem;
}

.feature-wide {
  grid-column: span 6;
}

.feature-item:hover {
  transform: translateY(-8px);
  border-color: var(--primary-300);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, color-mix(in srgb, var(--primary-300) 10%, transparent), transparent);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.feature-item:hover::before {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, color-mix(in srgb, var(--primary-300) 20%, transparent), transparent);
}

/* Feature Visual */
.feature-visual {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.feature-large .feature-visual {
  width: 100px;
  height: 100px;
}

.visual-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-50);
}

.circle-1 {
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary-300);
}

.circle-2 {
  width: 60%;
  height: 60%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--primary-300), var(--primary-500));
  opacity: 0.2;
}

.feature-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.25rem;
  color: var(--primary-500);
  z-index: 2;
  transition: all 0.3s ease;
}

.feature-large .feature-icon {
  font-size: 2.75rem;
}

.feature-item:hover .feature-icon {
  transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
}

/* Feature Content */
.feature-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.feature-large .feature-title {
  font-size: 1.625rem;
}

.feature-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

.feature-large .feature-description,
.feature-wide .feature-description {
  font-size: 1.0625rem;
}

/* Organic Shapes */
.organic-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.4;
  z-index: 1;
}

.shape-1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--primary-300) 18%, transparent), transparent);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  top: 10%;
  left: -100px;
  animation: organic-float 20s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--primary-500) 15%, transparent), transparent);
  border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
  bottom: 15%;
  right: -80px;
  animation: organic-float 18s ease-in-out infinite reverse;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--primary-300) 20%, transparent), transparent);
  border-radius: 70% 30% 50% 50% / 30% 70% 30% 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: organic-float 15s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 991.98px) {
  .features-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .feature-item,
  .feature-large,
  .feature-wide {
    grid-column: span 6;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .additional-universal-section {
    padding: 3rem 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .feature-item,
  .feature-large,
  .feature-wide {
    grid-column: span 1;
    padding: 1.5rem;
  }
  
  .feature-visual {
    width: 70px;
    height: 70px;
  }
  
  .feature-icon {
    font-size: 2rem;
  }
}









div.website-livechat-widget div.website-livechat-header,
.website-livechat-widget .website-livechat-header {
    padding: 18px 22px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-radius: 25px 25px 0 0 !important;
    background: transparent !important;
    color: #ffffff !important;
    margin: 0 !important;
}

div.website-livechat-widget h5.website-livechat-title,
div.website-livechat-widget .website-livechat-title,
.website-livechat-widget .website-livechat-title,
.website-livechat-title {
    font-size: 17px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    background: transparent !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    text-shadow: none !important;
    line-height: 1.2 !important;
    font-family: inherit !important;
}

div.website-livechat-widget button.website-livechat-toggle,
div.website-livechat-widget .website-livechat-toggle,
.website-livechat-widget .website-livechat-toggle {
    background: none !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 20px !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    padding: 8px !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    margin: 0 !important;
    text-decoration: none !important;
    min-width: 36px !important;
    min-height: 36px !important;
}

div.website-livechat-widget button.website-livechat-toggle:hover,
.website-livechat-widget .website-livechat-toggle:hover {
    background: rgba(255,255,255,0.1) !important;
    transform: scale(1.1) !important;
    color: #ffffff !important;
}

div.website-livechat-widget button.website-livechat-toggle i,
div.website-livechat-widget .website-livechat-toggle i,
.website-livechat-widget .website-livechat-toggle i {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    font-family: "Font Awesome 6 Free" !important;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

div.website-livechat-widget div.website-livechat-content,
.website-livechat-widget .website-livechat-content {
    padding: 18px 22px 22px !important;
    max-height: 420px !important;
    overflow-y: auto !important;
    background: transparent !important;
    color: #ffffff !important;
    margin: 0 !important;
}

div.website-livechat-widget div.website-livechat-content.hidden,
.website-livechat-widget .website-livechat-content.hidden {
    display: none !important;
}

div.website-livechat-widget div.website-faq-item,
.website-livechat-widget .website-faq-item {
    margin-bottom: 8px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    padding: 12px !important;
    border-radius: 10px !important;
    background: rgba(255,255,255,0.05) !important;
    color: #ffffff !important;
    padding-bottom: 14px !important;
}

div.website-livechat-widget div.website-faq-item:last-child,
.website-livechat-widget .website-faq-item:last-child {
    margin-bottom: 0 !important;
}

div.website-livechat-widget div.website-faq-question,
.website-livechat-widget .website-faq-question {
    font-size: 15px !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
    margin-top: 0 !important;
    color: #ffffff !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    text-align: left !important;
    line-height: 1.4 !important;
    font-family: inherit !important;
    text-decoration: none !important;
}

div.website-livechat-widget div.website-faq-question:hover,
.website-livechat-widget .website-faq-question:hover {
    color: #74b9ff !important;
    background: transparent !important;
}

div.website-livechat-widget div.website-faq-question span,
.website-livechat-widget .website-faq-question span {
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

div.website-livechat-widget div.website-faq-answer,
.website-livechat-widget .website-faq-answer {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: rgba(255,255,255,0.85) !important;
    display: none !important;
    padding-top: 8px !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    text-align: left !important;
    font-family: inherit !important;
}

div.website-livechat-widget div.website-faq-answer.show,
.website-livechat-widget .website-faq-answer.show {
    display: block !important;
    color: rgba(255,255,255,0.85) !important;
}

div.website-livechat-widget i.website-faq-icon,
.website-livechat-widget .website-faq-icon {
    transition: transform 0.3s ease !important;
    font-size: 14px !important;
    color: #74b9ff !important;
    font-weight: 900 !important;
    font-family: "Font Awesome 6 Free" !important;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

div.website-livechat-widget i.website-faq-icon.rotated,
.website-livechat-widget .website-faq-icon.rotated {
    transform: rotate(180deg) !important;
    color: #74b9ff !important;
}

@media (max-width: 768px) {
    div.website-livechat-widget,
    .website-livechat-widget {
        display: none !important;
    }
}




.website-maps-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

.website-maps-title {
    text-align: center !important;
    font-size: 32px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    color: #ffffff !important;
    font-family: inherit !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
}

.website-maps-subtitle {
    text-align: center !important;
    font-size: 17px !important;
    color: rgba(255,255,255,0.9) !important;
    margin-bottom: 45px !important;
    font-family: inherit !important;
}

.website-google-map {
    width: 100% !important;
    height: 450px !important;
    border: none !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3) !important;
    border: 3px solid rgba(255,255,255,0.2) !important;
}

@media (max-width: 768px) {
    .website-google-maps-section {
        padding: 45px 0 !important;
    }
    
    .website-maps-title {
        font-size: 26px !important;
    }
    
    .website-google-map {
        height: 320px !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: 6px !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    border: none !important;
    text-decoration: none !important;
    color: #666666 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

.website-security-badge:hover {
    transform: none !important;
    box-shadow: none !important;
    color: #333333 !important;
    text-decoration: none !important;
}

.website-security-badge-icon {
    font-size: 14px !important;
    color: #999999 !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: 20px !important;
        padding: 15px 10px !important;
    }
    
    .website-security-badge {
        font-size: 11px !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;
    }
}



/* Live Chat FAQ Widget - Rounded Style - Enhanced Specificity */
div.website-livechat-widget,
.website-livechat-widget {
    position: fixed !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 320px !important;
    background: #2c3e50 !important;
    border-radius: 25px !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.2) !important;
    z-index: 999999 !important;
    color: #ffffff !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    text-align: left !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(255,255,255,0.1) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

div.website-livechat-widget div.website-livechat-header,
.website-livechat-widget .website-livechat-header {
    padding: 18px 22px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-radius: 25px 25px 0 0 !important;
    background: transparent !important;
    color: #ffffff !important;
    margin: 0 !important;
}

div.website-livechat-widget h5.website-livechat-title,
div.website-livechat-widget .website-livechat-title,
.website-livechat-widget .website-livechat-title,
.website-livechat-title {
    font-size: 17px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    background: transparent !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    text-shadow: none !important;
    line-height: 1.2 !important;
    font-family: inherit !important;
}

div.website-livechat-widget button.website-livechat-toggle,
div.website-livechat-widget .website-livechat-toggle,
.website-livechat-widget .website-livechat-toggle {
    background: none !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 20px !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    padding: 8px !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    margin: 0 !important;
    text-decoration: none !important;
    min-width: 36px !important;
    min-height: 36px !important;
}

div.website-livechat-widget button.website-livechat-toggle:hover,
.website-livechat-widget .website-livechat-toggle:hover {
    background: rgba(255,255,255,0.1) !important;
    transform: scale(1.1) !important;
    color: #ffffff !important;
}

div.website-livechat-widget button.website-livechat-toggle i,
div.website-livechat-widget .website-livechat-toggle i,
.website-livechat-widget .website-livechat-toggle i {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    font-family: "Font Awesome 6 Free" !important;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

div.website-livechat-widget div.website-livechat-content,
.website-livechat-widget .website-livechat-content {
    padding: 18px 22px 22px !important;
    max-height: 420px !important;
    overflow-y: auto !important;
    background: transparent !important;
    color: #ffffff !important;
    margin: 0 !important;
}

div.website-livechat-widget div.website-livechat-content.hidden,
.website-livechat-widget .website-livechat-content.hidden {
    display: none !important;
}

div.website-livechat-widget div.website-faq-item,
.website-livechat-widget .website-faq-item {
    margin-bottom: 8px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    padding: 12px !important;
    border-radius: 10px !important;
    background: rgba(255,255,255,0.05) !important;
    color: #ffffff !important;
    padding-bottom: 14px !important;
}

div.website-livechat-widget div.website-faq-item:last-child,
.website-livechat-widget .website-faq-item:last-child {
    margin-bottom: 0 !important;
}

div.website-livechat-widget div.website-faq-question,
.website-livechat-widget .website-faq-question {
    font-size: 15px !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
    margin-top: 0 !important;
    color: #ffffff !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    text-align: left !important;
    line-height: 1.4 !important;
    font-family: inherit !important;
    text-decoration: none !important;
}

div.website-livechat-widget div.website-faq-question:hover,
.website-livechat-widget .website-faq-question:hover {
    color: #74b9ff !important;
    background: transparent !important;
}

div.website-livechat-widget div.website-faq-question span,
.website-livechat-widget .website-faq-question span {
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

div.website-livechat-widget div.website-faq-answer,
.website-livechat-widget .website-faq-answer {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: rgba(255,255,255,0.85) !important;
    display: none !important;
    padding-top: 8px !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    text-align: left !important;
    font-family: inherit !important;
}

div.website-livechat-widget div.website-faq-answer.show,
.website-livechat-widget .website-faq-answer.show {
    display: block !important;
    color: rgba(255,255,255,0.85) !important;
}

div.website-livechat-widget i.website-faq-icon,
.website-livechat-widget .website-faq-icon {
    transition: transform 0.3s ease !important;
    font-size: 14px !important;
    color: #74b9ff !important;
    font-weight: 900 !important;
    font-family: "Font Awesome 6 Free" !important;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

div.website-livechat-widget i.website-faq-icon.rotated,
.website-livechat-widget .website-faq-icon.rotated {
    transform: rotate(180deg) !important;
    color: #74b9ff !important;
}

@media (max-width: 768px) {
    div.website-livechat-widget,
    .website-livechat-widget {
        display: none !important;
    }
}



/* Google Maps Section - Dark Style */
.website-google-maps-section {
    padding: 60px 0 !important;
    background: #1a1a1a !important;
    margin: 0 !important;
    border-top: 1px solid #333333 !important;
    border-bottom: 1px solid #333333 !important;
    position: relative !important;
    z-index: 1 !important;
    pointer-events: auto !important;
}

.website-maps-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

.website-maps-title {
    text-align: center !important;
    font-size: 30px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    color: #ffffff !important;
    font-family: inherit !important;
}

.website-maps-subtitle {
    text-align: center !important;
    font-size: 16px !important;
    color: #cccccc !important;
    margin-bottom: 40px !important;
    font-family: inherit !important;
}

.website-google-map {
    width: 100% !important;
    height: 420px !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5) !important;
    border: 2px solid #333333 !important;
}

@media (max-width: 768px) {
    .website-google-maps-section {
        padding: 40px 0 !important;
    }
    
    .website-maps-title {
        font-size: 24px !important;
    }
    
    .website-google-map {
        height: 300px !important;
    }
}



/* CTA Section - Bold Style */
.website-cta-section {
    padding: 50px 0 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    text-align: center !important;
    margin: 0 !important;
    position: relative !important;
    z-index: 1 !important;
    pointer-events: auto !important;
}

.website-cta-container {
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.website-cta-title {
    font-size: 32px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    color: white !important;
    font-family: inherit !important;
}

.website-cta-subtitle {
    font-size: 18px !important;
    margin-bottom: 30px !important;
    color: rgba(255,255,255,0.9) !important;
    font-family: inherit !important;
}

.website-cta-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 18px 35px !important;
    background: rgba(255,255,255,0.2) !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    backdrop-filter: blur(10px) !important;
}

.website-cta-button:hover {
    background: rgba(255,255,255,0.3) !important;
    border-color: rgba(255,255,255,0.5) !important;
    transform: translateY(-2px) !important;
    color: white !important;
    text-decoration: none !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: 26px !important;
    }
    
    .website-cta-subtitle {
        font-size: 16px !important;
    }
    
    .website-cta-button {
        font-size: 16px !important;
        padding: 16px 30px !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 - Spin Animation */
.website-floating-icons {
    position: relative !important;
    overflow: hidden !important;
}

.website-floating-icon {
    position: absolute !important;
    font-size: 19px !important;
    color: rgba(0,0,0,0.04) !important;
    z-index: 1 !important;
    pointer-events: none !important;
    animation: websiteFloatAnimationSpin 10s linear infinite !important;
}

.website-floating-icon.variant-1 {
    top: 12% !important;
    right: 6% !important;
    animation-delay: 0s !important;
}

.website-floating-icon.variant-2 {
    top: 62% !important;
    right: 4% !important;
    animation-delay: 3s !important;
    font-size: 15px !important;
}

.website-floating-icon.variant-3 {
    top: 32% !important;
    left: 4% !important;
    animation-delay: 6s !important;
    font-size: 23px !important;
}

@keyframes websiteFloatAnimationSpin {
    0% {
        transform: rotate(0deg) translateY(0px) !important;
        opacity: 0.2 !important;
    }
    25% {
        transform: rotate(90deg) translateY(-5px) !important;
        opacity: 0.4 !important;
    }
    50% {
        transform: rotate(180deg) translateY(-10px) !important;
        opacity: 0.3 !important;
    }
    75% {
        transform: rotate(270deg) translateY(-5px) !important;
        opacity: 0.4 !important;
    }
    100% {
        transform: rotate(360deg) translateY(0px) !important;
        opacity: 0.2 !important;
    }
}

@media (max-width: 768px) {
    .website-floating-icon {
        display: none !important;
    }
}



/* Team Social Links - Text Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-text-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.social-text-link {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border: 2px solid transparent;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.social-text-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    color: white;
    text-decoration: none;
}

.facebook-text-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-text-link:hover {
    background: linear-gradient(135deg, #166fe5, #1877f2);
    border-color: rgba(255,255,255,0.3);
}

.linkedin-text-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-text-link:hover {
    background: linear-gradient(135deg, #0959aa, #0a66c2);
    border-color: rgba(255,255,255,0.3);
}

.instagram-text-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-text-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
    border-color: rgba(255,255,255,0.3);
}

.x-text-link {
    background: linear-gradient(135deg, #000000, #333333);
}

.x-text-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    border-color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .social-text-links {
        gap: 10px;
    }
    
    .social-text-link {
        font-size: 12px;
        padding: 6px 12px;
    }
}



/* Organization Social Links - Text Style */
.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-text-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.org-social-text-link {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);
    border: 2px solid transparent;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.org-social-text-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: white;
    text-decoration: none;
    border-color: rgba(255,255,255,0.4);
}

.org-social-text-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.org-social-text-link:hover::before {
    left: 100%;
}

/* Organization Text Social Networks Colors */
.org-facebook-text-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.org-instagram-text-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.org-linkedin-text-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.org-x-text-link {
    background: linear-gradient(135deg, #000000, #333333);
}

.org-youtube-text-link {
    background: linear-gradient(135deg, #ff0000, #ff4444);
}

.org-medium-text-link {
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

.org-tiktok-text-link {
    background: linear-gradient(135deg, #fe2c55, #25f4ee);
}

.org-pinterest-text-link {
    background: linear-gradient(135deg, #bd081c, #e60023);
}

.org-telegram-text-link {
    background: linear-gradient(135deg, #0088cc, #229ed9);
}

.org-discord-text-link {
    background: linear-gradient(135deg, #5865f2, #7289da);
}

@media (max-width: 768px) {
    .org-social-text-grid {
        gap: 8px;
    }
    
    .org-social-text-link {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .org-social-title {
        font-size: 16px;
    }
}



/* Newsletter Form - Neumorphic Style */
.newsletter-section {
    margin: 32px 0;
    padding: 28px;
    background: #e8ecf1;
    border-radius: 20px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 12px 12px 24px rgba(163, 177, 198, 0.5),
                -12px -12px 24px rgba(255, 255, 255, 0.8);
}

.newsletter-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    color: #333 !important;
    text-align: center !important;
    background: transparent !important;
}

.newsletter-subtitle {
    font-size: 13px !important;
    color: #666 !important;
    margin-bottom: 22px !important;
    text-align: center !important;
    line-height: 1.5 !important;
    background: transparent !important;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.newsletter-input {
    padding: 14px 18px !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    outline: none !important;
    background: #e8ecf1 !important;
    color: #333 !important;
    box-shadow: inset 6px 6px 12px rgba(163, 177, 198, 0.4),
                inset -6px -6px 12px rgba(255, 255, 255, 0.7) !important;
    transition: all 0.3s ease !important;
}

.newsletter-input:focus {
    box-shadow: inset 4px 4px 8px rgba(163, 177, 198, 0.5),
                inset -4px -4px 8px rgba(255, 255, 255, 0.8) !important;
}

.newsletter-input::placeholder {
    color: #999 !important;
}

.newsletter-button {
    padding: 14px 22px !important;
    background: #e8ecf1 !important;
    color: #667eea !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 6px 6px 12px rgba(163, 177, 198, 0.4),
                -6px -6px 12px rgba(255, 255, 255, 0.7) !important;
}

.newsletter-button:hover {
    box-shadow: 4px 4px 8px rgba(163, 177, 198, 0.5),
                -4px -4px 8px rgba(255, 255, 255, 0.8) !important;
}

.newsletter-button:active {
    box-shadow: inset 4px 4px 8px rgba(163, 177, 198, 0.4),
                inset -4px -4px 8px rgba(255, 255, 255, 0.7) !important;
}

.newsletter-success {
    display: none !important;
    margin-top: 18px !important;
    padding: 15px !important;
    background: #e8ecf1 !important;
    border-radius: 10px !important;
    color: #065f46 !important;
    text-align: center !important;
    font-size: 13px !important;
    box-shadow: 4px 4px 8px rgba(163, 177, 198, 0.3),
                -4px -4px 8px rgba(255, 255, 255, 0.6) !important;
}

.newsletter-success.show {
    display: block;
}

@media (max-width: 768px) {
    .newsletter-section {
        margin: 25px auto;
        padding: 22px;
        max-width: 340px;
    }
}


/* Cookie Manager theme (auto-injected) */
/**
 * САЙТ-СПЕЦИФИЧНЫЕ СТИЛИ
 * Тема: modern-v003
 * Toggle: 14
 * Содержит только стили для выбранной темы
 * Сгенерировано автоматически - НЕ РЕДАКТИРОВАТЬ ВРУЧНУЮ
 */

/**
 * 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;
}

/* ===== ДОПОЛНИТЕЛЬНЫЕ ЭЛЕМЕНТЫ ===== */
.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;
    }
}


