.elementor-192 .elementor-element.elementor-element-df1ac75{--display:flex;}.elementor-192 .elementor-element.elementor-element-0aea12b{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;}.elementor-192 .elementor-element.elementor-element-0aea12b.elementor-element{--flex-grow:0;--flex-shrink:0;}@media(min-width:768px){.elementor-192 .elementor-element.elementor-element-df1ac75{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-0aea12b *//* ==============================================
   1. RESET & CSS VARIABLES
   ============================================== */
:root {
  /* Brand Colors */
  --brand-obsidian: #0a0a0a;
  --brand-slate: #131313;
  --brand-purple: #9D50FF;
  --brand-emerald: #10b981;
  
  /* Text & Overlays */
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-dim: rgba(255, 255, 255, 0.4);
  --bg-overlay: rgba(255, 255, 255, 0.03);
  --border-light: rgba(255, 255, 255, 0.05);
  --border-hover: rgba(255, 255, 255, 0.1);
  
  /* Typography */
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--brand-obsidian);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }

/* ==============================================
   2. LAYOUT & CONTAINER
   ============================================== */
.services-container {
  padding: 8rem 1.5rem 6rem;
  max-w-width: 80rem; /* 1280px */
  margin: 0 auto;
}

@media (min-width: 768px) {
  .services-container { padding-left: 3rem; padding-right: 3rem; }
}

/* ==============================================
   3. TYPOGRAPHY & HEADER SECTION
   ============================================== */
.eyebrow-text {
  color: var(--brand-purple);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  font-family: var(--font-mono);
  display: block;
  margin-bottom: 1rem;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .main-title { font-size: 3.75rem; }
}

.italic-serif {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-dim);
}

.subtitle {
  max-width: 48rem;
  margin: 0 auto 3rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.625;
}

@media (min-width: 768px) {
  .subtitle { font-size: 1rem; }
}

/* ==============================================
   4. TAB NAVIGATION
   ============================================== */
.tab-navigation {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.tab-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  background-color: var(--brand-slate);
  padding: 0.375rem;
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  width: 100%;
  max-width: 72rem;
}

@media (min-width: 640px) { .tab-buttons { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { 
  .tab-buttons { 
    grid-template-columns: repeat(5, minmax(0, 1fr)); 
    border-radius: 9999px; /* Pill shape */
  } 
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.65rem;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
}

@media (min-width: 1024px) {
  .tab-btn { flex-direction: row; justify-content: center; border-radius: 9999px; }
}

.tab-btn:hover {
  color: var(--text-main);
  background-color: rgba(255, 255, 255, 0.02);
}

.tab-btn.active {
  background-color: var(--brand-purple);
  color: var(--text-main);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.tab-badge {
  font-size: 0.5rem;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.3);
}

.tab-btn.active .tab-badge {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--text-main);
}

/* Tab Content Visibility with Fade Animation */
.tab-content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}
.tab-content.active { display: block; }
.hidden { display: none !important; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==============================================
   5. CORE DELIVERABLES (PILLARS)
   ============================================== */
.core-deliverables {
  margin-bottom: 6rem;
  margin-top: 2rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  max-width: 56rem;
  margin-bottom: 3rem;
  text-align: center;
}

@media (min-width: 768px) { .section-header { text-align: left; } }

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

@media (min-width: 768px) { .section-header h2 { font-size: 2.25rem; } }

.section-header p {
  color: var(--text-muted);
  font-weight: 300;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pillars-grid { grid-template-columns: repeat(4, 1fr); } }

.pillar-card {
  position: relative;
  padding: 1.5rem;
  background-color: var(--brand-slate);
  border: 1px solid var(--border-light);
  border-radius: 0.25rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pillar-card:hover {
  border-color: rgba(157, 80, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.01);
}

.pillar-card .icon-wrapper {
  padding: 0.875rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 0.25rem;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-slow);
}

.pillar-card:hover .icon-wrapper {
  transform: scale(1.05);
  border-color: rgba(157, 80, 255, 0.2);
}

.icon-wrapper svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-purple);
}

.pillar-card h3 {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
  transition: color var(--transition-normal);
}

.pillar-card:hover h3 { color: var(--brand-purple); }

.pillar-card p {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 300;
}

@media (min-width: 768px) { .pillar-card p { font-size: 0.875rem; } }

/* ==============================================
   6. COMPREHENSIVE DETAILS SECTION
   ============================================== */
.comprehensive-details {
  margin-bottom: 6rem;
  margin-top: 4rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-light);
  border-radius: 0.25rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) { .comprehensive-details { padding: 3rem; } }

.details-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .details-layout { grid-template-columns: 5fr 7fr; gap: 4rem; }
  .details-header-sticky { position: sticky; top: 8rem; height: fit-content; }
}

.details-header-sticky h2 {
  font-size: 1.875rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) { .details-header-sticky h2 { font-size: 2.25rem; } }

.divider-line {
  width: 3rem;
  height: 2px;
  background-color: var(--brand-purple);
  margin-bottom: 1.5rem;
}

.details-header-sticky p {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.accent-box {
  margin-top: 1rem;
  padding: 1.25rem;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 0.25rem;
}

.accent-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--brand-purple);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.accent-title span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.accent-box p {
  color: var(--text-dim);
  font-size: 0.75rem;
  margin-bottom: 0;
}

/* Feature List (Right Column) */
.features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) { .features-list { gap: 2rem; } }

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: all var(--transition-normal);
}

@media (min-width: 768px) { .feature-item { gap: 1.25rem; } }

.feature-item:hover {
  border-color: var(--border-light);
  background-color: rgba(255, 255, 255, 0.01);
}

.feature-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-purple);
  transition: transform var(--transition-normal);
}

.feature-item:hover .feature-icon {
  border-color: rgba(157, 80, 255, 0.3);
  background-color: rgba(157, 80, 255, 0.05);
}

.feature-item:hover .feature-icon svg { transform: scale(1.1); }

.feature-text h4 {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 0.25rem;
  transition: color var(--transition-normal);
}

.feature-item:hover .feature-text h4 { color: var(--brand-purple); }

.feature-text p {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 300;
}

@media (min-width: 768px) { .feature-text p { font-size: 0.875rem; } }

/* ==============================================
   7. PRICING TARGETS SECTION
   ============================================== */
.pricing-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 5rem auto;
  max-width: 72rem;
}

.pricing-divider .line {
  flex: 1;
  height: 1px;
  background-color: var(--border-light);
}

.pricing-divider span {
  padding: 0 1.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  position: relative;
  padding: 2rem;
  background-color: var(--brand-slate);
  border: 1px solid var(--border-light);
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

@media (min-width: 768px) { .pricing-card { padding: 2.5rem; } }

.pricing-card:hover {
  border-color: var(--border-hover);
  background-color: rgba(21, 24, 33, 0.8);
}

.pricing-card.recommended {
  border-color: var(--brand-purple);
  background-color: rgba(157, 80, 255, 0.03);
  box-shadow: 0 0 50px rgba(157, 80, 255, 0.05);
}

.recommended-badge {
  position: absolute;
  top: 0;
  right: 2rem;
  transform: translateY(-50%);
  background-color: var(--brand-purple);
  color: #fff;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 0.25rem 1rem;
  border-radius: 0.125rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.card-icon {
  padding: 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0.25rem;
  transition: transform var(--transition-slow);
}

.pricing-card:hover .card-icon { transform: scale(1.1); }
.card-icon svg { width: 2rem; height: 2rem; color: var(--brand-purple); }

.package-category {
  font-size: 0.56rem;
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.1em;
}

.card-body h3 {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 0.375rem;
  transition: color var(--transition-normal);
}

@media (min-width: 768px) { .card-body h3 { font-size: 1.5rem; } }
.pricing-card:hover .card-body h3 { color: var(--brand-purple); }

.package-subtitle {
  color: var(--text-dim);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
  margin-bottom: 1rem;
}

.card-body .divider-line {
  width: 100%;
  height: 1px;
  background-color: var(--border-light);
  margin: 1rem 0;
}

.price {
  font-size: 1.5rem;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) { .price { font-size: 1.875rem; } }

.description {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.625;
  margin-bottom: 2rem;
}

@media (min-width: 768px) { .description { font-size: 0.875rem; } }

.card-features {
  margin-bottom: 2.5rem;
}

.feature-title {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--brand-purple);
  font-weight: 700;
  font-family: var(--font-mono);
  margin-bottom: 0.75rem;
}

.card-features ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.625;
}

.card-features li svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand-purple);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
  border-radius: 0.125rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.cta-button:hover {
  color: var(--text-main);
  border-color: var(--brand-purple);
}

.cta-button.primary-btn {
  background-color: var(--brand-emerald);
  color: var(--brand-obsidian);
  border: none;
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
}

.cta-button.primary-btn:hover {
  background-color: rgba(16, 185, 129, 0.9);
}

.cta-button svg {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform var(--transition-normal);
}

.cta-button:hover svg { transform: translateX(0.375rem); }

/* ==============================================
   8. GLOBAL SECTIONS
   ============================================== */
.international-notice {
  margin-top: 4rem;
  padding: 0 1.5rem;
}

.notice-box {
  max-width: 48rem;
  margin: 0 auto;
  padding: 1.5rem;
  background-color: var(--brand-slate);
  border: 1px solid var(--border-light);
  border-radius: 0.25rem;
}

.notice-box span {
  font-size: 0.625rem;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.5rem;
}

.notice-box p {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.625;
}

@media (min-width: 768px) { .notice-box p { font-size: 0.875rem; } }

.notice-box a {
  color: var(--brand-purple);
  font-weight: 500;
  margin-left: 0.375rem;
  text-underline-offset: 4px;
  transition: color var(--transition-normal);
}

.notice-box a:hover { color: rgba(157, 80, 255, 0.8); }

.standards-section {
  margin-top: 10rem;
  border-top: 1px solid var(--border-light);
  padding-top: 6rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.standards-section h2 {
  font-size: 1.875rem;
  letter-spacing: -0.05em;
}

.standards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) { .standards-grid { grid-template-columns: repeat(3, 1fr); } }

.standard-card {
  padding: 2rem;
  background-color: var(--brand-slate);
  border: 1px solid var(--border-light);
  border-radius: 0.25rem;
  transition: all var(--transition-normal);
  text-align: left;
}

.standard-card:hover { border-color: rgba(157, 80, 255, 0.2); }

.standard-card .icon-wrapper {
  padding: 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0.25rem;
  width: fit-content;
  margin-bottom: 1.5rem;
}

.standard-card .icon-wrapper svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-purple);
}

.standard-card h4 {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

.standard-card p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.625;
}/* End custom CSS */