/* Source: variables.css */
/* ============================================
   MAGICALIX - CSS Custom Properties (Variables)
   Design Tokens & Theme Configuration
   ============================================ */

:root {
  /* ---- Core Neutrals ---- */
  --deep-slate: #0F172A;
  --stone-gray: #334155;
  --sage-mist: #94A3B8;
  --warm-stone: #78716C;
  --sand-beige: #E7E5E4;
  --cloud-white: #F8FAFC;
  --white: #FFFFFF;
  --border: #CBD5E1;

  /* ---- Tech Blues / Cyans ---- */
  --tech-cyan: #06B6D4;
  --primary-dark: #0891B2;
  --ocean-blue: #0EA5E9;
  --steel-blue: #3B82F6;

  /* ---- Nature Greens ---- */
  --forest-green: #059669;
  --earth-moss: #10B981;
  --sage-green: #22C55E;

  /* ---- Warm Accents ---- */
  --amber-glow: #F59E0B;
  --sunset-orange: #FB923C;

  /* ---- Mapped Tokens ---- */
  --primary: #06B6D4;
  --primary-hover: #0891B2;
  --secondary: #059669;
  --secondary-hover: #047857;
  --accent-warm: #F59E0B;
  --accent-warm-hover: #D97706;
  --text-dark: #0F172A;
  --text-medium: #334155;
  --text-light: #94A3B8;
  --bg-light: #F8FAFC;
  --success: #10B981;
  --error: #EF4444;
  --warning: #F59E0B;

  /* ---- Typography ---- */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;

  --fs-xs: clamp(0.7rem, 0.8vw, 0.8rem);
  --fs-sm: clamp(0.8rem, 0.9vw, 0.875rem);
  --fs-base: clamp(0.938rem, 1vw, 1rem);
  --fs-md: clamp(1.05rem, 1.15vw, 1.125rem);
  --fs-lg: clamp(1.15rem, 1.3vw, 1.25rem);
  --fs-xl: clamp(1.25rem, 1.6vw, 1.5rem);
  --fs-2xl: clamp(1.5rem, 2.2vw, 1.875rem);
  --fs-3xl: clamp(1.875rem, 3vw, 2.5rem);
  --fs-4xl: clamp(2.25rem, 4vw, 3.25rem);
  --fs-5xl: clamp(2.75rem, 5vw, 4rem);

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --lh-tight: 1.2;
  --lh-snug: 1.35;
  --lh-normal: 1.6;
  --lh-relaxed: 1.75;

  /* ---- Spacing ---- */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* ---- Border Radius ---- */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* ---- Shadows ---- */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.06);
  --shadow-2xl: 0 25px 50px -12px rgba(15, 23, 42, 0.2);
  --shadow-primary: 0 4px 14px rgba(6, 182, 212, 0.3);
  --shadow-primary-lg: 0 8px 25px rgba(6, 182, 212, 0.4);

  /* ---- Transitions ---- */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ---- Layout ---- */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1200px;
  --container-2xl: 1400px;
  --nav-height: 72px;
  --nav-height-scrolled: 64px;

  /* ---- Z-index ---- */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-overlay: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
  --z-cookie: 800;
  --z-whatsapp: 750;
}


/* Source: base.css */
/* ============================================
   MAGICALIX - Base & Reset Styles
   ============================================ */

/* ---- Modern CSS Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--text-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--text-dark);
  overflow-wrap: break-word;
}

h1 { font-size: var(--fs-5xl); }
h2 { font-size: var(--fs-4xl); }
h3 { font-size: var(--fs-3xl); }
h4 { font-size: var(--fs-2xl); }
h5 { font-size: var(--fs-xl); }
h6 { font-size: var(--fs-lg); }

p {
  overflow-wrap: break-word;
  color: var(--text-medium);
}

/* ---- Focus Styles (Accessibility) ---- */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ---- Skip Navigation (Accessibility) ---- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  z-index: 9999;
  padding: var(--space-sm) var(--space-lg);
  background: var(--primary);
  color: var(--white);
  font-weight: var(--fw-semibold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  transition: top var(--transition-fast);
}

.skip-nav:focus {
  top: 0;
}

/* ---- Selection ---- */
::selection {
  background: var(--primary);
  color: var(--white);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--sage-mist);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ---- Screen Reader Only ---- */
.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;
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* Source: components.css */
/* ============================================
   MAGICALIX - Layout & Component Styles
   ============================================ */

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-md);
}

.container--wide {
  max-width: var(--container-2xl);
}

/* ---- Sections ---- */
.section {
  padding: var(--space-4xl) 0;
}

.section--sm {
  padding: var(--space-3xl) 0;
}

.section--lg {
  padding: var(--space-5xl) 0;
}

.section--dark {
  background-color: var(--deep-slate);
  color: var(--cloud-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p {
  color: var(--sage-mist);
}

.section--light {
  background-color: var(--bg-light);
}

.section--gradient {
  background: linear-gradient(135deg, var(--deep-slate) 0%, #1a2a4a 50%, #0c2a3a 100%);
  color: var(--cloud-white);
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-3xl);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: rgba(6, 182, 212, 0.1);
  color: var(--primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section--dark .section-badge {
  background: rgba(6, 182, 212, 0.15);
  color: var(--tech-cyan);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.75rem 1.75rem;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  line-height: 1;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  white-space: nowrap;
  border: 2px solid transparent;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: var(--shadow-primary-lg);
  transform: translateY(-1px);
}

.btn--secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: var(--secondary-hover);
  border-color: var(--secondary-hover);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-white:hover,
.btn--outline-white:focus-visible {
  background: var(--white);
  color: var(--text-dark);
  border-color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  border-color: transparent;
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

.btn--ghost:hover {
  color: var(--primary-hover);
  background: rgba(6, 182, 212, 0.06);
}

.btn--accent {
  background: var(--accent-warm);
  color: var(--text-dark);
  border-color: var(--accent-warm);
}

.btn--accent:hover {
  background: var(--accent-warm-hover);
  border-color: var(--accent-warm-hover);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: var(--fs-md);
  border-radius: var(--radius-xl);
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--fs-sm);
}

.btn--full {
  width: 100%;
}

.btn--icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  position: relative;
  min-width: 0;
  overflow-wrap: anywhere;
}

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

.card .btn--ghost {
  white-space: normal;
  text-align: left;
  line-height: var(--lh-snug);
  max-width: 100%;
}

.card--featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.card--featured:hover {
  box-shadow: var(--shadow-primary-lg);
}

.card--dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.card--dark:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(6, 182, 212, 0.3);
}

.card--accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-primary-lg);
}

.card--accent:hover {
  background: linear-gradient(135deg, #22d3ee 0%, var(--primary-hover) 100%);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 34px rgba(6, 182, 212, 0.34);
}

.card--accent .card__icon {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.card--accent .card__title,
.card--accent .card__text {
  color: var(--white);
}

.card--accent .card__text {
  text-shadow: 0 1px 0 rgba(8, 145, 178, 0.15);
}

.card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: rgba(6, 182, 212, 0.1);
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  flex-shrink: 0;
}

.card__title {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-sm);
}

.card__text {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
}

/* ---- Pricing Cards ---- */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

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

.pricing-card--popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
  transform: scale(1.03);
}

.pricing-card--popular:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: var(--shadow-primary-lg);
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  padding: var(--space-xs) var(--space-lg);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0 0 0 var(--radius-lg);
}

.pricing-card__header {
  text-align: center;
  padding-bottom: var(--space-xl);
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.pricing-card__name {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
  color: var(--text-dark);
}

.pricing-card__price {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--primary);
  line-height: 1;
}

.pricing-card__price span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-light);
  line-height: 1.2;
}

.pricing-card__desc {
  font-size: var(--fs-sm);
  color: var(--text-light);
  margin-top: var(--space-xs);
}

.pricing-card__features {
  flex: 1;
  margin-bottom: var(--space-xl);
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
  font-size: var(--fs-sm);
  color: var(--text-medium);
}

.pricing-card__features li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--success);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  display: inline-block;
  margin-top: 1px;
}

/* ---- Forms ---- */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.form-label .required {
  color: var(--error);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--fs-base);
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-error {
  display: none;
  font-size: var(--fs-xs);
  color: var(--error);
  margin-top: var(--space-2xs);
}

.form-input.error + .form-error,
.form-select.error + .form-error,
.form-textarea.error + .form-error {
  display: block;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-hint {
  font-size: var(--fs-xs);
  color: var(--text-light);
  margin-top: var(--space-2xs);
}

/* ---- Rating Stars ---- */
.rating-group {
  display: flex;
  gap: var(--space-xs);
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.rating-group input {
  display: none;
}

.rating-group label {
  font-size: 1.75rem;
  color: var(--border);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.rating-group label:hover,
.rating-group label:hover ~ label,
.rating-group input:checked ~ label {
  color: var(--accent-warm);
}

/* ---- Grid Layouts ---- */
.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid > * {
  min-width: 0;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ---- Tags ---- */
.tag {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2xs) var(--space-sm);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  border-radius: var(--radius-full);
  background: rgba(6, 182, 212, 0.08);
  color: var(--primary);
}

/* ---- Dividers ---- */
.divider {
  height: 1px;
  background: var(--border);
  margin: var(--space-2xl) 0;
}

.divider--light {
  background: rgba(255, 255, 255, 0.1);
}

/* ---- Utilities ---- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent-warm) !important; }
.text-white { color: var(--white) !important; }
.text-light { color: var(--text-light) !important; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

.hidden { display: none !important; }
.block { display: block; }
.inline-block { display: inline-block; }

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4); }
  50% { box-shadow: 0 0 20px 10px rgba(6, 182, 212, 0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }


/* Source: layout.css */
/* ============================================
   MAGICALIX - Navigation Styles
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
  background: transparent;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  height: var(--nav-height-scrolled);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: var(--z-fixed);
}

.nav__logo-img {
  height: 40px;
  width: auto;
  transition: all var(--transition-base);
}

.nav__logo-img--white {
  display: block;
}

.nav__logo-img--color {
  display: none;
}

.nav.scrolled .nav__logo-img--white {
  display: none;
}

.nav.scrolled .nav__logo-img--color {
  display: block;
}

/* Desktop Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-base);
  border-radius: 1px;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--white);
}

.nav.scrolled .nav__link {
  color: var(--text-medium);
}

.nav.scrolled .nav__link:hover,
.nav.scrolled .nav__link.active {
  color: var(--primary);
}

/* Nav Actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  padding: var(--space-2xs) var(--space-sm);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.lang-switcher__btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.nav.scrolled .lang-switcher__btn {
  color: var(--text-medium);
  border-color: var(--border);
}

.nav.scrolled .lang-switcher__btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-fast);
  min-width: 120px;
  z-index: var(--z-dropdown);
  overflow: hidden;
}

.lang-switcher.open .lang-switcher__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher__option {
  display: block;
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--fs-sm);
  color: var(--text-medium);
  text-align: left;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  background: none;
  text-decoration: none;
}

.lang-switcher__option:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.lang-switcher__option.active {
  color: var(--primary);
  font-weight: var(--fw-semibold);
}

/* Nav CTA */
.nav__cta {
  padding: 0.5rem 1.25rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--white);
  background: var(--primary);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  border: 1.5px solid var(--primary);
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-primary);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: var(--z-fixed);
  background: none;
  border: none;
  padding: 0;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav.scrolled .nav__hamburger span {
  background: var(--text-dark);
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: calc(var(--z-fixed) - 1);
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-lg) var(--space-xl);
  flex-direction: column;
  overflow-y: auto;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
}

.nav__mobile-link {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  color: var(--text-dark);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav__mobile-link:hover,
.nav__mobile-link.active {
  background: rgba(6, 182, 212, 0.06);
  color: var(--primary);
}

.nav__mobile-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

.nav__mobile-lang {
  display: flex;
  gap: var(--space-sm);
}

.nav__mobile-lang a {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-medium);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav__mobile-lang a:hover,
.nav__mobile-lang a.active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(6, 182, 212, 0.06);
}

/* ---- Footer ---- */
.footer {
  background: var(--deep-slate);
  color: var(--sage-mist);
  padding: var(--space-4xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  height: 36px;
  width: auto;
  margin-bottom: var(--space-lg);
}

.footer__tagline {
  font-size: var(--fs-sm);
  color: var(--sage-mist);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  color: var(--sage-mist);
  transition: all var(--transition-fast);
  font-size: 1rem;
}

.footer__social-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__heading {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.footer__link {
  display: block;
  font-size: var(--fs-sm);
  color: var(--sage-mist);
  padding: var(--space-2xs) 0;
  transition: color var(--transition-fast);
}

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

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copy {
  font-size: var(--fs-xs);
  color: var(--sage-mist);
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
}

.footer__legal a {
  font-size: var(--fs-xs);
  color: var(--sage-mist);
  transition: color var(--transition-fast);
}

.footer__legal a:hover {
  color: var(--primary);
}

/* ---- WhatsApp Float Button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-whatsapp);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-sm);
}

.whatsapp-float__tooltip {
  background: var(--white);
  color: var(--text-dark);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-base);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: pulse-glow 3s infinite;
  text-decoration: none;
}

.whatsapp-float__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* ---- Cookie Consent Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-cookie);
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.1);
  padding: var(--space-lg) 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 280px;
}

.cookie-banner__text p {
  font-size: var(--fs-sm);
  color: var(--text-medium);
  line-height: var(--lh-normal);
}

.cookie-banner__text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0F172A 0%, #132743 40%, #0c3040 70%, #0F172A 100%);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__bg-effects::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__bg-effects::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  animation: fadeInUp 0.8s ease forwards;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: var(--radius-full);
  color: var(--tech-cyan);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-xl);
}

.hero__title {
  font-size: var(--fs-5xl);
  color: var(--white);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-tight);
}

.hero__title .highlight {
  background: linear-gradient(135deg, var(--tech-cyan), var(--ocean-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--fs-lg);
  color: var(--sage-mist);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2xl);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s ease 0.3s forwards;
  opacity: 0;
}

.hero__visual img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 0 40px rgba(6, 182, 212, 0.15));
  animation: float 6s ease-in-out infinite;
}

/* ---- Page Header (Subpages) ---- */
.page-header {
  background: linear-gradient(135deg, #0F172A 0%, #132743 40%, #0c3040 70%, #0F172A 100%);
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
}

.page-header p {
  color: var(--sage-mist);
  font-size: var(--fs-lg);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.page-header .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: var(--fs-sm);
  position: relative;
}

.breadcrumb a {
  color: var(--sage-mist);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--text-light);
}

.breadcrumb .current {
  color: var(--tech-cyan);
}

/* ---- Portfolio Cards ---- */
.portfolio-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition-base);
}

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

.portfolio-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--bg-light);
}

.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.05);
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.portfolio-card:hover .portfolio-card__overlay {
  opacity: 1;
}

.portfolio-card__overlay .btn {
  font-size: var(--fs-sm);
}

.portfolio-card__body {
  padding: var(--space-lg);
}

.portfolio-card__tags {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.portfolio-card__title {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-xs);
}

.portfolio-card__desc {
  font-size: var(--fs-sm);
  color: var(--text-light);
}

.portfolio-card__testimonial {
  margin-top: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(14, 165, 233, 0.18);
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.06), rgba(255, 255, 255, 0.98));
}

.portfolio-card__testimonial-stars {
  margin-bottom: var(--space-xs);
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 0.24em;
}

.portfolio-card__testimonial-quote {
  margin: 0;
  color: var(--text-medium);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  font-style: italic;
}

.portfolio-card__testimonial-author {
  display: inline-block;
  margin-top: var(--space-sm);
  color: var(--text-light);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-card--placeholder .portfolio-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-light), var(--sand-beige));
}

.portfolio-card--placeholder .portfolio-card__image .coming-soon {
  text-align: center;
  color: var(--text-light);
}

.portfolio-card--placeholder .portfolio-card__image .coming-soon i {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  color: var(--sage-mist);
}

/* ---- Specifications List ---- */
.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.spec-item__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  color: var(--primary);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

.spec-item__text {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-medium);
  line-height: var(--lh-snug);
}

/* ---- Process Steps ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
  counter-increment: step;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--primary), var(--ocean-blue));
  color: var(--white);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-full);
}

.process-step__title {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-xs);
}

.process-step__text {
  font-size: var(--fs-sm);
  color: var(--text-light);
}

/* ---- Testimonials (Future) ---- */
.testimonials-placeholder {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  background: var(--bg-light);
  border-radius: var(--radius-2xl);
  border: 2px dashed var(--border);
}

/* ---- App Screenshots ---- */
.app-screenshots {
  display: grid;
  gap: var(--space-lg);
}

.app-screenshots--desktop {
  grid-template-columns: repeat(3, 1fr);
}

.app-screenshots--mobile {
  grid-template-columns: repeat(3, 1fr);
  max-width: 600px;
  margin: 0 auto;
}

.app-screenshot {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-light);
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: var(--fs-sm);
  transition: all var(--transition-base);
}

.app-screenshot--mobile {
  aspect-ratio: 9/16;
  max-width: 180px;
  margin: 0 auto;
}

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

.app-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Featured Portfolio App ---- */
.portfolio-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch;
}

.portfolio-feature__intro {
  padding: clamp(1.5rem, 2.8vw, 2.5rem);
  border-radius: 2rem;
  border: 1px solid rgba(125, 211, 252, 0.14);
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.28), transparent 28%),
    linear-gradient(155deg, #0b1730 0%, #103766 58%, #08172d 100%);
  box-shadow: 0 28px 60px rgba(8, 23, 45, 0.28);
  color: var(--white);
}

.portfolio-feature__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(125, 211, 252, 0.2);
  color: #7dd3fc;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
}

.portfolio-feature__intro .portfolio-card__tags {
  margin-bottom: var(--space-lg);
}

.portfolio-feature__intro .portfolio-card__tags .tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
}

.portfolio-feature__title {
  margin-bottom: var(--space-md);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  color: var(--white);
}

.portfolio-feature__subline {
  margin-bottom: var(--space-md);
  color: rgba(224, 242, 254, 0.72);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
}

.portfolio-feature__text {
  margin-bottom: var(--space-lg);
  color: rgba(241, 245, 249, 0.82);
  font-size: var(--fs-md);
}

.portfolio-feature__stats {
  display: grid;
  gap: 0.9rem;
  margin: var(--space-xl) 0;
}

.portfolio-feature__stat {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 0.95rem;
  align-items: start;
  padding: var(--space-md);
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.portfolio-feature__stat-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.22), rgba(37, 99, 235, 0.34));
  color: #e0f2fe;
  font-size: 1rem;
}

.portfolio-feature__stat-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio-feature__stat > div > strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--white);
  font-size: var(--fs-base);
}

.portfolio-feature__stat > div > span {
  display: block;
  color: rgba(226, 232, 240, 0.78);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

.portfolio-feature__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}

.portfolio-feature__visual {
  display: grid;
  gap: var(--space-lg);
}

.portfolio-feature__stage {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.4rem);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 85% 15%, rgba(14, 165, 233, 0.24), transparent 20%),
    linear-gradient(145deg, #09172d 0%, #102746 52%, #0b1730 100%);
  box-shadow: 0 32px 70px rgba(15, 23, 42, 0.22);
}

.portfolio-feature__stage-copy {
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-width: 340px;
  padding: 0.9rem 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: var(--white);
}

.portfolio-feature__stage-copy span {
  color: #7dd3fc;
  font-size: 0.72rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portfolio-feature__stage-copy strong {
  font-size: var(--fs-base);
  line-height: var(--lh-snug);
}

.portfolio-feature__desktop-shot,
.portfolio-feature__mobile-shot,
.portfolio-feature__card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.portfolio-feature__desktop-shot {
  position: relative;
  overflow: hidden;
  margin-top: 4.8rem;
  padding: 0.9rem 0.9rem 0;
  border-radius: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.portfolio-feature__desktop-shot::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 48px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(226, 232, 240, 0.35);
}

.portfolio-feature__desktop-shot img {
  display: block;
  width: 100%;
  border-radius: 1rem 1rem 0 0;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.24);
}

.portfolio-feature__mobile-shot {
  position: absolute;
  right: clamp(0.85rem, 2.4vw, 1.8rem);
  bottom: -1.1rem;
  width: min(30%, 220px);
  padding: 0.55rem;
  border-radius: 1.8rem;
  background: linear-gradient(180deg, #172554, #0f172a);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 55px rgba(15, 23, 42, 0.4);
}

.portfolio-feature__mobile-shot img {
  display: block;
  width: 100%;
  border-radius: 1.35rem;
}

.portfolio-feature__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
}

.portfolio-feature__card {
  overflow: hidden;
  border-radius: 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.portfolio-feature__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
}

.portfolio-feature__media {
  padding: 0.85rem;
  background: linear-gradient(180deg, #f8fbff 0%, #edf5fb 100%);
}

.portfolio-feature__media img {
  display: block;
  width: 100%;
  border-radius: 1rem;
}

.portfolio-feature__card--phone .portfolio-feature__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 365px;
  background: linear-gradient(180deg, #f5f7fb 0%, #eef4fb 100%);
}

.portfolio-feature__card--phone .portfolio-feature__media img {
  width: min(100%, 180px);
}

.portfolio-feature__caption {
  padding: 1rem 1.15rem 1.2rem;
}

.portfolio-feature__caption strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--heading-dark);
  font-size: var(--fs-base);
}

.portfolio-feature__caption span {
  display: block;
  color: var(--text-light);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

/* ---- Success Message ---- */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-3xl);
}

.form-success.visible {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.form-success__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  font-size: 2rem;
}

.form-success h3 {
  margin-bottom: var(--space-sm);
}

.form-success p {
  font-size: var(--fs-md);
}


/* Source: responsive.css */
/* ============================================
   MAGICALIX - Responsive Styles
   ============================================ */

/* ---- Tablet (max-width: 1024px) ---- */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-2xl);
  }

  .hero__subtitle {
    margin: 0 auto var(--space-2xl);
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual img {
    max-width: 320px;
  }

  .nav__links,
  .nav__actions .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .spec-list {
    grid-template-columns: 1fr;
  }

  .pricing-card--popular {
    transform: none;
  }

  .pricing-card--popular:hover {
    transform: translateY(-6px);
  }

  .app-screenshots--desktop {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-feature {
    grid-template-columns: 1fr;
  }
}

/* ---- Mobile Large (max-width: 768px) ---- */
@media (max-width: 768px) {
  .section {
    padding: var(--space-3xl) 0;
  }

  .section--lg {
    padding: var(--space-4xl) 0;
  }

  .section-header {
    margin-bottom: var(--space-2xl);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__brand {
    max-width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .grid--2 {
    grid-template-columns: 1fr;
  }

  .grid--3 {
    grid-template-columns: 1fr;
  }

  .grid--4 {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  }

  .hero__visual {
    order: -1;
  }

  .hero__visual img {
    max-width: 240px;
  }

  .page-header {
    padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float__btn {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  .whatsapp-float__tooltip {
    display: none;
  }

  .app-screenshots--desktop {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .portfolio-feature__intro {
    padding: var(--space-xl);
  }

  .portfolio-feature__stage {
    padding: var(--space-md);
  }

  .app-screenshots--mobile {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }

  .portfolio-feature__stage-copy {
    position: relative;
    top: auto;
    left: auto;
    max-width: none;
    margin-bottom: var(--space-lg);
  }

  .app-screenshot--mobile {
    max-width: 140px;
  }

  .portfolio-feature__desktop-shot {
    margin-top: 0;
  }

  .portfolio-feature__mobile-shot {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(220px, 58%);
    margin: calc(var(--space-lg) * -1) auto 0;
  }

  .portfolio-feature__details {
    grid-template-columns: 1fr;
  }

  .portfolio-feature__card--phone .portfolio-feature__media {
    min-height: auto;
  }
}

/* ---- Mobile Small (max-width: 480px) ---- */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .btn--lg {
    padding: 0.875rem 1.75rem;
    font-size: var(--fs-base);
  }

  .pricing-card {
    padding: var(--space-xl);
  }

  .app-screenshots--mobile {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-feature__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .portfolio-feature__stat {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .portfolio-feature__mobile-shot {
    width: min(210px, 72%);
  }

  .portfolio-feature__card--phone .portfolio-feature__media img {
    width: min(100%, 190px);
  }
}

/* ---- Print Styles ---- */
@media print {
  .nav,
  .cookie-banner,
  .whatsapp-float,
  .footer__social,
  .btn {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero,
  .section--dark,
  .section--gradient {
    background: #fff !important;
    color: #000 !important;
  }

  .hero__title,
  .section--dark h2 {
    color: #000 !important;
  }
}

/* Generated inline style replacements start */
.u-inline-001{font-size:0.6em;}
.u-inline-002{align-items:start;gap:var(--space-4xl);}
.u-inline-003{font-size:var(--fs-3xl);margin-bottom:var(--space-md);}
.u-inline-004{font-size:var(--fs-md);color:var(--text-medium);line-height:var(--lh-relaxed);margin-bottom:var(--space-2xl);}
.u-inline-005{display:flex;flex-direction:column;gap:var(--space-lg);}
.u-inline-006{display:flex;align-items:center;gap:var(--space-md);}
.u-inline-007{min-width:56px;}
.u-inline-008{color:var(--primary);}
.u-inline-009{font-size:var(--fs-xs);color:var(--text-light);margin-top:2px;}
.u-inline-010{min-width:56px;background:rgba(5,150,105,0.1);color:var(--secondary);}
.u-inline-011{color:var(--text-medium);}
.u-inline-012{min-width:56px;background:rgba(245,158,11,0.1);color:var(--accent-warm);}
.u-inline-013{padding:var(--space-2xl);}
.u-inline-014{margin-bottom:var(--space-sm);font-size:var(--fs-2xl);}
.u-inline-015{font-size:var(--fs-sm);color:var(--text-light);margin-bottom:var(--space-xl);}
.u-inline-016{align-items:center;gap:var(--space-4xl);}
.u-inline-017{font-size:var(--fs-md);margin:var(--space-lg) 0;line-height:var(--lh-relaxed);}
.u-inline-018{list-style:none;padding:0;}
.u-inline-019{display:flex;align-items:flex-start;gap:var(--space-sm);padding:var(--space-sm) 0;}
.u-inline-020{margin-top:3px;}
.u-inline-021{font-size:var(--fs-sm);color:var(--text-light);}
.u-inline-022{margin-bottom:var(--space-xs);font-size:var(--fs-2xl);}
.u-inline-023{color:var(--text-light);font-weight:var(--fw-regular);}
.u-inline-024{background:rgba(5,150,105,0.1);color:var(--secondary);}
.u-inline-025{background:rgba(245,158,11,0.1);color:var(--accent-warm);}
.u-inline-026{background:rgba(14,165,233,0.1);color:var(--ocean-blue);}
.u-inline-027{max-width:700px;margin:0 auto;}
.u-inline-028{background:rgba(255,255,255,0.1);color:var(--white);border:1px solid rgba(255,255,255,0.15);}
.u-inline-029{color:var(--white);margin-bottom:var(--space-md);}
.u-inline-030{color:var(--sage-mist);font-size:var(--fs-lg);margin-bottom:var(--space-2xl);line-height:var(--lh-relaxed);}
.u-inline-031{flex-wrap:wrap;}
.u-inline-032{max-width:600px;margin:0 auto;}
.u-inline-033{color:var(--sage-mist);font-size:var(--fs-lg);margin-bottom:var(--space-2xl);}
.u-inline-034{background:var(--bg-light);text-align:center;max-width:700px;margin-left:auto;margin-right:auto;}
.u-inline-035{font-size:var(--fs-md);color:var(--text-medium);margin-bottom:var(--space-sm);}
.u-inline-036{display:inline-block;max-width:500px;}
.u-inline-037{font-size:var(--fs-xl);font-weight:var(--fw-bold);color:var(--secondary);margin-bottom:var(--space-xs);}
.u-inline-038{font-size:var(--fs-sm);color:var(--text-light);margin-bottom:var(--space-lg);}
.u-inline-039{color:var(--white);}
.u-inline-040{background:rgba(16,185,129,0.15);color:var(--earth-moss);}
.u-inline-041{background:rgba(245,158,11,0.15);color:var(--amber-glow);}
.u-inline-042{background:rgba(59,130,246,0.15);color:var(--steel-blue);}
.u-inline-043{background:rgba(34,197,94,0.15);color:var(--sage-green);}
.u-inline-044{display:inline-block;background:var(--white);max-width:500px;}
.u-inline-045{max-width:900px;margin:0 auto;}
.u-inline-046{list-style:none;padding:0;margin-top:var(--space-sm);}
.u-inline-047{padding:var(--space-xs) 0;color:var(--text-medium);font-size:var(--fs-sm);}
.u-inline-048{margin-right:8px;}
.u-inline-049{color:var(--text-light);font-size:var(--fs-md);margin-bottom:var(--space-lg);}
.u-inline-050{background:rgba(14,165,233,0.15);color:var(--ocean-blue);}
.u-inline-051{background:rgba(6,182,212,0.15);color:var(--tech-cyan);}
/* Generated inline style replacements end */
