:root {
  --blue: #1b5f82;
  --blue-dark: #246185;
  --blue-light: #c4d3dc;
  --bg: rgba(0, 14, 22, 0.92);
  --text: #e6eef3;
  --muted: #9fb3c0;
  --card: rgba(0, 14, 22, 0.92);
  --border: rgba(196, 211, 220, 0.35);
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(0, 14, 22, 0.92), transparent 20%),
              radial-gradient(circle at 80% 0%, rgba(0, 14, 22, 0.92), transparent 35%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

#header-placeholder {
  position: relative;
  z-index: 10;
  height: auto;
  min-height: 85px;
}
@media (max-width: 1024px) {
  #header-placeholder {
    min-height: 65px;
  }
}
@media (max-width: 768px) {
  #header-placeholder {
    min-height: 180px;
  }
}
@media (max-width: 480px) {
  #header-placeholder {
    min-height: 160px;
  }
}
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 3vw;
  background: rgba(0, 14, 22, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s ease-in-out;
  will-change: transform;
  box-sizing: border-box;
  gap: 20px;
}
.top-bar.hide-header {
  transform: translateY(-100%);
  pointer-events: none;
}

.logo-wrap { 
  display: flex; 
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.logo { 
  height: 55px; 
  object-fit: contain; 
}
.tagline { 
  color: var(--muted); 
  font-size: 14px; 
  white-space: nowrap;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.nav { 
  display: flex; 
  align-items: center;
  gap: 1px; 
  font-weight: 600; 
  flex-shrink: 0;
}
.nav a { 
  padding: 8px 12px; 
  border-radius: 8px; 
  transition: all 0.2s ease; 
  font-size: 15px;
  color: var(--text);
  position: relative;
  white-space: nowrap;
}
.nav a:hover { 
  background: rgba(196, 211, 220, 0.1); 
  color: #fff; 
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--blue-light);
  transition: transform 0.2s ease;
}
.nav a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Contact Dropdown */
.contact-dropdown {
  position: relative;
}

.contact-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.contact-dropdown-btn:hover {
  background: rgba(196, 211, 220, 0.1);
  border-color: rgba(196, 211, 220, 0.4);
}

.contact-dropdown-btn[aria-expanded="true"] {
  background: rgba(196, 211, 220, 0.15);
  border-color: var(--blue-light);
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.contact-dropdown-btn[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

.contact-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 280px;
  background: rgba(0, 14, 22, 0.98);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(27, 95, 130, 0.3);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1001;
  backdrop-filter: blur(12px);
}

.contact-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.contact-dropdown-item:hover {
  background: rgba(196, 211, 220, 0.1);
}

.contact-dropdown-item.contact-location {
  cursor: default;
}

.contact-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-dropdown-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.contact-dropdown-item strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-dropdown-item span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.contact-dropdown-item.contact-location span {
  font-size: 12px;
  line-height: 1.6;
}

.header-cta {
  white-space: nowrap;
  font-size: 14px;
  padding: 10px 20px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s ease, color 0.2s ease;
}
.btn.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #f4f8fb;
  box-shadow: 0 15px 35px rgba(27, 95, 130, 0.35);
  text-shadow: none;
}
.hero .btn.primary {
  box-shadow: 0 15px 35px rgba(27, 95, 130, 0.5), 0 0 20px rgba(27, 95, 130, 0.3);
}
.btn.ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.03);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(0,0,0,0.35); }

.hero {
  width: 100%;
  padding: 0;
  position: relative;
}
.hero__image-full {
  width: 100%;
  display: block;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: visible;
  border-radius: 0;
  border: none;
}
.hero-image-full {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 10, 20, 0.5), rgba(3, 10, 20, 0.25));
  z-index: 1;
  pointer-events: none;
}
.hero__content-wrapper {
  position: absolute;
  inset: 0; 
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  padding: 80px 80px 100px 80px;
  align-items: end;
  max-width: none;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.hero-outcome {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 12px 0 20px;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.hero__content h1 {
  font-family: 'Playfair Display', 'Inter', serif;
  font-size: clamp(34px, 4vw, 52px);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.hero__content .lede { color: var(--muted); max-width: 640px; font-size: 17px; }
.hero__actions { display: flex; gap: 14px; margin: 18px 0 16px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.hero__stats div { 
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: 999px; /* pill shape */

  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);

  color: #e9f0f6;
  font-size: 13px;
  font-weight: 500;

  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Text inside */
.hero__stats div span {
  color: #e9f0f6;
}
.hero .btn.ghost {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.hero .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(196, 211, 220, 0.4);
  background: linear-gradient(135deg, 
    rgba(27, 95, 130, 0.2) 0%,
    rgba(196, 211, 220, 0.1) 25%,
    rgba(255, 107, 107, 0.15) 50%,
    rgba(255, 206, 84, 0.15) 75%,
    rgba(27, 95, 130, 0.2) 100%);
  padding: 0;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              0 0 50px rgba(27, 95, 130, 0.4),
              0 0 30px rgba(255, 107, 107, 0.25),
              0 0 30px rgba(255, 206, 84, 0.25),
              inset 0 0 60px rgba(196, 211, 220, 0.08);
  animation: subtleGlow 4s ease-in-out infinite;
}
.hero__image::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, 
    #1b5f82 0%,
    #c4d3dc 25%,
    #ff6b6b 50%,
    #ffce54 75%,
    #1b5f82 100%);
  z-index: -1;
  opacity: 0.5;
  filter: blur(8px);
  animation: borderPulse 3s ease-in-out infinite;
}
@keyframes subtleGlow {
  0%, 100% { 
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 50px rgba(27, 95, 130, 0.4),
                0 0 30px rgba(255, 107, 107, 0.25),
                0 0 30px rgba(255, 206, 84, 0.25),
                inset 0 0 60px rgba(196, 211, 220, 0.08);
  }
  50% { 
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 60px rgba(27, 95, 130, 0.5),
                0 0 40px rgba(255, 107, 107, 0.35),
                0 0 40px rgba(255, 206, 84, 0.35),
                inset 0 0 60px rgba(196, 211, 220, 0.12);
  }
}
@keyframes borderPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}
.hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 18px;
  filter: brightness(1.05) contrast(1.1) drop-shadow(0 8px 24px rgba(0,0,0,0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.hero__image:hover .hero-image {
  transform: scale(1.02);
  filter: brightness(1.1) contrast(1.15) drop-shadow(0 12px 32px rgba(27, 95, 130, 0.4));
}
.panel__card {
  background: linear-gradient(135deg, rgba(27,95,130,0.2), rgba(12,30,42,0.9));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.panel__card h3 { margin: 0 0 10px; }
.panel__card ul { margin: 0; padding-left: 18px; color: var(--muted); }
.panel__card li { margin: 6px 0; }
.panel__card .ribbon {
  position: absolute;
  top: 16px;
  right: -36px;
  background: var(--blue-light);
  color: var(--blue-dark);
  padding: 8px 36px;
  transform: rotate(10deg);
  font-weight: 700;
  border-radius: 8px;
}
.panel__accent {
  border: 1px dashed var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  color: var(--muted);
  background: rgba(255,255,255,0.02);
}

.badge img {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.5));
}

.logo-3d-container {
  display: flex;
  justify-content: center;
  margin-left: 50px;
  align-items: center;
  perspective: 10px;
}

.logo-3d {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
  cursor: pointer;
}

.logo-3d-img {
  height: 150px;
  width: 150px;
  margin-top: 0px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(27, 95, 130, 0.4)) 
          drop-shadow(0 0 40px rgba(196, 211, 220, 0.2));
  transition: filter 0.3s ease;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--blue-light);
  margin: 0;
}

.section {
  padding: 60px 5vw;
}
.section-dark {
  background: var(--bg);
  color: var(--text);
}
.section-light {
  background: #F5F7FA;
  color: #0B1220;
}
.section-light h2,
.section-light h3 {
  color: #0B1220;
}
.section-light p {
  color: #324055;
}
.section-light .eyebrow {
  color: var(--blue);
}
.section-light .card {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(11, 18, 32, 0.15);
  color: #0B1220;
}
.section-light .card p {
  color: #324055;
}
.section-light .btn.ghost {
  border-color: rgba(11, 18, 32, 0.2);
  color: #0B1220;
  background: rgba(255, 255, 255, 0.8);
}
.section-light .btn.ghost:hover {
  background: rgba(255, 255, 255, 1);
}
.section__intro { max-width: 780px; }
.section__intro h2 {
  font-family: 'Playfair Display', serif;
  margin: 10px 0;
  font-size: clamp(28px, 3vw, 38px);
}
.section__intro p { color: var(--muted); }

.muted { color: var(--muted); }

  .highlight {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
  background: linear-gradient(120deg, rgba(27,95,130,0.25), rgba(12,24,32,0.95));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta {
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-dark .cta {
  background: linear-gradient(160deg, rgba(27,95,130,0.25), rgba(11,24,32,0.9));
}
.section-light .cta {
  border-top-color: rgba(11, 18, 32, 0.15);
  border-bottom-color: rgba(11, 18, 32, 0.15);
}
.section-light .cta h2 {
  color: #0B1220;
}
.section-light .cta p {
  color: #324055;
}
.section-light .cta .eyebrow {
  color: var(--blue);
}
.cta__content { 
  position: relative;
  z-index: 1; /* Above the background image */
  max-width: 720px; 
  margin: 0 auto; 
}
.cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.cta__divider {
  margin: 32px 0 24px;
  text-align: center;
  position: relative;
}
.cta__divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.cta__divider span {
  position: relative;
  background: var(--bg);
  padding: 0 16px;
  color: var(--muted);
  font-size: 14px;
}

/* Contact Form Styles */
.contact-form {
  max-width: 600px;
  margin: 32px auto 0;
  text-align: left;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
}
.contact-form__field label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(0, 14, 22, 0.95);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.2s ease;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(0, 14, 22, 0.95);
  box-shadow: 0 0 0 3px rgba(27, 95, 130, 0.2);
}
/* Prevent browser autofill from changing background to white */
.contact-form__field input:-webkit-autofill,
.contact-form__field input:-webkit-autofill:hover,
.contact-form__field input:-webkit-autofill:focus,
.contact-form__field input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px rgba(0, 14, 22, 0.95) inset !important;
  -webkit-text-fill-color: var(--text) !important;
  background-color: rgba(0, 14, 22, 0.95) !important;
  transition: background-color 5000s ease-in-out 0s;
}
.contact-form__field textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-form__field select {
  cursor: pointer;
  appearance: none;
  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='%23c4d3dc' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.contact-form__field select option {
  background-color: rgba(0, 14, 22, 0.95);
  color: var(--text);
  padding: 12px;
}

/* Form on light background (main page contact section) */
.section-light .contact-form__field input,
.section-light .contact-form__field select,
.section-light .contact-form__field textarea {
  background: rgba(0, 14, 22, 0.95);
  color: var(--text);
  border-color: rgba(11, 18, 32, 0.2);
}
.section-light .contact-form__field input:focus,
.section-light .contact-form__field select:focus,
.section-light .contact-form__field textarea:focus {
  background: rgba(0, 14, 22, 0.95);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27, 95, 130, 0.15);
}
.section-light .contact-form__field select {
  background: rgba(0, 14, 22, 0.95);
  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='%23c4d3dc' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}
.section-light .contact-form__field select option {
  background-color: rgba(0, 14, 22, 0.95);
  color: var(--text);
}
.section-light .contact-form__field label {
  color: var(--text);
}
/* Prevent browser autofill from changing background on light sections */
.section-light .contact-form__field input:-webkit-autofill,
.section-light .contact-form__field input:-webkit-autofill:hover,
.section-light .contact-form__field input:-webkit-autofill:focus,
.section-light .contact-form__field input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px rgba(0, 14, 22, 0.95) inset !important;
  -webkit-text-fill-color: var(--text) !important;
  background-color: rgba(0, 14, 22, 0.95) !important;
  transition: background-color 5000s ease-in-out 0s;
}
.contact-form button[type="submit"] {
  width: 100%;
  margin-top: 8px;
}
.contact-form__status {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  display: none;
}
.contact-form__status.success {
  display: block;
  background: rgba(76, 175, 80, 0.2);
  color: #81c784;
  border: 1px solid rgba(76, 175, 80, 0.3);
}
.contact-form__status.error {
  display: block;
  background: rgba(244, 67, 54, 0.2);
  color: #ef5350;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Contact Modal Styles */
.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.contact-modal.active {
  display: flex;
}
.contact-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 14, 22, 0.95);
  backdrop-filter: blur(8px);
}
.contact-modal__content {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}
.contact-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.contact-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--blue-light);
}
.contact-modal__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}
.contact-modal__content > p {
  color: var(--muted);
  margin: 0 0 24px;
  font-size: 15px;
}

.industries,.cta {
  position: relative;
  background-color: rgba(0, 14, 22, 0.92); /* Fallback color - shows immediately */
  overflow: hidden; /* Ensures image doesn't overflow */
}

.section-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0; /* Behind the content */
  pointer-events: none; /* Allows clicks to pass through */
}
.industries-wrapper {
  position: relative;
  z-index: 1; /* Above the background image */
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.industries-left {
  display: flex;
  flex-direction: column;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.industries-right {
  position: sticky;
  top: 100px;
}
.industry-card {
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.15);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.industry-icon {
  font-size: 48px;
  margin-bottom: 12px;
  display: block;
}
.industry-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #0B1220;
}
.section-light .section__intro h2 {
  color: #0B1220;
}
.why-dell-panel {
  position: relative;
  overflow: visible;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(11, 18, 32, 0.15);
  color: #0B1220;
}
.why-dell-panel h3 {
  color: #0B1220;
  margin-top: 0;
}
.why-dell-panel ul {
  color: #324055;
}
.why-dell-panel .why-dell-conclusion {
  color: #324055;
}
.why-dell-panel .ribbon {
  position: absolute;
  top: 16px;
  right: -36px;
  background: var(--blue-light);
  color: var(--blue-dark);
  padding: 8px 36px;
  transform: rotate(10deg);
  font-weight: 700;
  border-radius: 8px;
  font-size: 14px;
  z-index: 10;
}
.why-dell-conclusion {
  margin: 16px 0 20px;
  color: var(--muted);
  font-size: 16px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.solution-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.solution-card__image {
  width: 100%;
  height: 280px;
  background: radial-gradient(circle at 50% 40%, rgba(196,211,220,0.12), rgba(0, 14, 22, 0.92));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.solution-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}
.solution-content {
  padding: 24px;
}
.solution-content h3 {
  margin: 0 0 12px;
  font-size: 20px;
  color: var(--text);
}
.solution-content p {
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.6;
}
.solution-content .btn {
  margin-top: 8px;
}

/* Footer */
.footer {
  padding: 80px 2vw 50px;
  background: linear-gradient(
    180deg,
    rgba(0, 14, 22, 0.98) 0%,
    rgba(0, 14, 22, 0.95) 100%
  );
  border-top: 2px solid rgba(27, 95, 130, 0.3);
  color: var(--muted);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(27, 95, 130, 0.5),
    transparent
  );
}

.footer__top {
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 50px;
}

/* Brand area (CENTERED) */
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}

.footer .logo-3d-container {
  perspective: 800px;
}

.footer__brand .logo-3d-img {
  height: 85px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(27, 95, 130, 0.4));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer__brand .logo-3d-img:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 6px 16px rgba(27, 95, 130, 0.6));
}

.footer__brand .tagline {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--text);
  white-space: normal;
}

.footer__brand p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 500px;
}

/* Anniversary icon */
.footer__brand .anniversary-icon {
  margin: 0;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.footer__brand .anniversary-icon:hover {
  transform: scale(1.05);
}

.footer__brand .anniversary-icon img {
  max-width: 300px;
  filter: drop-shadow(0 0 25px rgba(27, 95, 130, 0.7));
}

/* Divider */
.footer__divider {
  width: 100%;
  max-width: 1400px;
  height: 2px;
  margin: 0 auto 40px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(27, 95, 130, 0.4),
    rgba(196, 211, 220, 0.3),
    rgba(27, 95, 130, 0.4),
    transparent
  );
}

/* Bottom area */
.footer__bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Links (CENTERED) */
.footer__links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__links a {
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer__links a:hover {
  background: rgba(27, 95, 130, 0.2);
  color: var(--blue-light);
}

/* Stats */
.footer__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.footer__stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__stats strong {
  font-size: 28px;
  color: var(--text);
}

.footer__stats span {
  font-size: 14px;
  color: var(--muted);
}

/* Contact (CENTERED instead of right-aligned) */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

/* Note */
.footer__note {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  padding-top: 24px;
  border-top: 1px solid rgba(196, 211, 220, 0.15);
  margin-top: 24px;
  letter-spacing: 0.5px;
}

.footer__note span {
  background: linear-gradient(135deg, var(--text), var(--muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.contact-item {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--text);
  font-weight: 200;
  transition: opacity 0.2s ease;
}
.contact-item:hover {
  opacity: 0.8;
}
.contact-icon {
  font-size: 20px;
}


/* Products Page Styles */
.products-hero {
  text-align: center;
  padding: 100px 5vw 60px;
}
.products-hero__content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  margin: 0 0 20px;
  color: var(--text);
  font-weight: 700;
}
.products-hero__subtitle {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.products-display {
  padding: 60px 5vw;
}
.products-display__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1900px;
  margin: 0 auto;
}
.product-display-card {
  background: rgba(0, 14, 22, 0.6);
  border: 1px solid rgba(27, 95, 130, 0.4);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
              0 0 20px rgba(27, 95, 130, 0.2);
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-display-card:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 95, 130, 0.7);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4),
              0 0 30px rgba(27, 95, 130, 0.4);
  text-decoration: none;
}
.product-display-card__image {
  width: 100%;
  height: 280px;
  background: radial-gradient(circle at 50% 40%, rgba(196,211,220,0.12), rgba(0, 14, 22, 0.92));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.product-display-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}
.product-display-card__content {
  padding: 28px 24px;
  position: relative;
}
.product-display-card__content h3 {
  font-size: 24px;
  text-align: center;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
}
.product-display-card__content p {
  color: var(--muted);
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Laptop Filter Panel */
.laptop-filters {
  padding: 40px 5vw 20px;
  background: var(--bg);
}
.laptop-filters__container {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}
.laptop-filter-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 24px;
  background: rgba(196, 211, 220, 0.1);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  border: 1px solid transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.laptop-filter-btn .filter-icon {
  display: inline-block;
}
.laptop-filter-btn:hover {
  background: rgba(196, 211, 220, 0.2);
  border-color: var(--border);
  transform: translateY(-1px);
}
.laptop-filter-btn.active {
  background: #ffffff;
  color: #000E16;
  border-color: #ffffff;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}
.laptop-filter-btn.active:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3);
}

/* Laptop Category Styles */
.laptop-category {
  margin-bottom: 80px;
}
.laptop-category:last-child {
  margin-bottom: 0;
}
.laptop-category__header {
  margin-bottom: 48px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5vw;
}
.laptop-category__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.laptop-category__description {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 900px;
}
.laptop-category__tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.category-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(27, 95, 130, 0.15);
  border: 1px solid rgba(27, 95, 130, 0.3);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}
.category-tag:hover {
  background: rgba(27, 95, 130, 0.25);
  border-color: rgba(27, 95, 130, 0.5);
  transform: translateY(-1px);
}

/* Laptop Specs Page Styles */
.laptop-specs {
  padding: 60px 5vw;
}
.laptop-specs__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.laptop-specs__image {
  position: sticky;
  top: 100px;
}
.laptop-specs__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.laptop-specs__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 32px;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.specs-table th {
  background: rgba(27, 95, 130, 0.2);
  color: var(--text);
  font-weight: 700;
  padding: 16px 20px;
  text-align: left;
  border-bottom: 2px solid var(--border);
}
.specs-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.specs-table tr:last-child td {
  border-bottom: none;
}
.specs-table tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.2);
}
.specs-alternatives {
  background: rgba(27, 95, 130, 0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}
.specs-alternatives h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 16px;
}
.specs-alternatives ul {
  margin: 0;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.8;
}
.specs-alternatives li {
  margin: 8px 0;
}
.laptop-specs__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 960px) {
  .laptop-specs__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .laptop-specs__image {
    position: static;
  }
}

/* Laptop Selection Page Styles */
.laptop-select {
  padding: 60px 5vw;
}
.laptop-select__container {
  max-width: 1200px;
  margin: 0 auto;
}
.laptop-select__container h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 40px;
  text-align: center;
}
.laptop-select__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}
.laptop-select__back {
  text-align: center;
  margin-top: 40px;
}
.product-display-card__subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}
@media (max-width: 768px) {
  .laptop-select__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .laptop-category__header {
    padding: 0;
    margin-bottom: 32px;
  }
  .laptop-category__description {
    font-size: 16px;
    line-height: 1.6;
  }
  .laptop-category__tags {
    gap: 8px;
  }
  .category-tag {
    font-size: 12px;
    padding: 6px 12px;
  }
  .laptop-filter-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* Two Column Section Wrapper */
.why-dell-systems {
  padding: 0;
  text-align: left;
}
.why-dell-systems__content {
  max-width: 100%;
  margin: 0;
}
.why-dell-systems__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin: 0 0 32px;
  color: var(--text);
}
.why-dell-systems__title-word {
  opacity: 0.6;
}
.why-dell-systems__text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}
.why-dell-systems__text p {
  margin: 0 0 20px;
}
.why-dell-systems__text p:last-child {
  margin-bottom: 0;
}

.what-you-get {
  padding: 0;
}
.what-you-get__content {
  max-width: 100%;
  margin: 0;
  background: rgba(0, 14, 22, 0.4);
  border-radius: 16px;
  border: 1px solid rgba(27, 95, 130, 0.2);
  padding: 40px;
}
.what-you-get__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 32px;
  text-align: left;
}
.what-you-get__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.what-you-get__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
}
.what-you-get__list .checkmark {
  color: #4cafe0;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.products-cta {
  padding: 100px 5vw;
  text-align: center;
}
.products-cta__divider {
  width: 100%;
  max-width: 1000px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(196, 211, 220, 0.5), transparent);
  margin: 40px auto 60px;
  display: block;
}
.products-cta__content {
  max-width: 1000px;
  margin: 0 auto;
}
.products-cta__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 20px;
}
.products-cta__content p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 32px;
  line-height: 1.6;
}

/* Products Page Background Gradient - Lighter in middle, darker at sides */
body.products-page {
  background: 
    radial-gradient(ellipse 120% 100% at center, rgba(0, 14, 22, 0.75) 0%, rgba(0, 14, 22, 0.85) 40%, rgba(0, 14, 22, 0.92) 70%, rgba(0, 14, 22, 0.92) 100%),
    radial-gradient(circle at 20% 20%, rgba(196,211,220,0.08), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(27,95,130,0.12), transparent 35%),
    rgba(0, 14, 22, 0.92);
}

@media (max-width: 960px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero__content-wrapper,
  .highlight,
  .solutions-grid,
  .industries-wrapper,
  .products-display__grid {
    grid-template-columns: 1fr;
  }

  .nav { flex-wrap: wrap; }

  .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  

  .industries-right { position: static; }

  .products-display__grid { gap: 24px; }

  .why-dell-systems,
  .what-you-get__content h2 {
    text-align: center;
  }

  .what-you-get__content { padding: 32px 24px; }
}

/* About Hero Section */
.about-hero {
  position: relative;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 5vw;
  overflow: hidden;
}
.about-hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(0.3);
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(27, 95, 130, 0.3), transparent 60%);
}
.about-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1500px;
}
.about-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 600;
}
.about-hero__content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(25px, 4vw, 45px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 24px;
  line-height: 1.2;
}
.about-hero__description {
  font-size: 22px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}
.about-hero__image {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.about-hero__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* About Cards */
.about-cards {
  padding: 80px 5vw;
  display: grid;
  gap: 40px;
}
.about-card {
  background: rgba(0, 14, 22, 0.6);
  border: 1px solid rgba(27, 95, 130, 0.4);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
              0 0 20px rgba(27, 95, 130, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.about-card:hover {
  border-color: rgba(27, 95, 130, 0.7);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4),
              0 0 30px rgba(27, 95, 130, 0.4);
}
.about-card__image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.about-card__image img {
  width: 100%;
  height: auto;
  display: block;
}
.about-card__image--edge-blur {
  position: relative;
  overflow: visible;
}
.about-card__image--edge-blur::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    var(--blur-direction),
    rgba(0, 14, 22, 0.92) 0%,
    rgba(0, 14, 22, 0.8) 15%,
    rgba(0, 14, 22, 0.4) 30%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 1;
}
.about-card__image--edge-blur img {
  position: relative;
  z-index: 0;
}
.about-card__content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 20px;
}
.about-card__content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 32px;
}
.about-card__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-card__point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text);
}
.about-card__point .checkmark {
  color: #4ade80;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}


/* Classic Care Section */
.classic-care {
  padding: 100px 5vw;
  text-align: center;
}
.classic-care__content {
  max-width: 1000px;
  margin: 0 auto;
}
.classic-care__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 24px;
}
.classic-care__content > p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}
.classic-care__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.classic-care__feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 16px;
}
.classic-care__feature .checkmark {
  color: #4ade80;
  font-size: 32px;
  font-weight: 700;
}
.classic-care__feature h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.classic-care__feature p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* About Page Responsive */
@media (max-width: 960px) {
  .about-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 60px 5vw;
  }
  .about-card {
    grid-template-columns: 1fr;
  }
  .about-card__points {
    grid-template-columns: 1fr;
  }
  .classic-care__features {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Services Page Background */
body.services-page {
  background: rgba(0, 14, 22, 0.92);
}

/* Services Hero Section */
.services-hero {
  position: relative;
  min-height: 500px;
  padding: 120px 5vw;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.services-hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.services-hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(0.3);
}
.services-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(27, 95, 130, 0.3), transparent 70%);
}
.services-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.services-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 600;
}
.services-hero__content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 24px;
  line-height: 1.2;
}
.services-hero__description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 32px;
}
.services-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Services Grid Section */
.services-grid-section {
  padding: 80px 5vw;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

/* First row (3 cards) */
.services-grid > *:nth-child(1) {
  grid-column: 1 / span 2;   /* wide */
}

.services-grid > *:nth-child(2) {
  grid-column: 3 / span 1;
}

.services-grid > *:nth-child(3) {
  grid-column: 4 / span 1;
}

/* Second row (4 normal cards) */
.services-grid > *:nth-child(n+4) {
  grid-column: span 1;
}

/* Base card styles (shared) */
.card {
  position: relative;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid var(--border);
  background: rgba(12, 26, 36, 0.8);
  box-shadow: var(--shadow);
}

/* Card variants */
.card.classic {
  background: linear-gradient(145deg, rgba(27, 95, 130, 0.18), rgba(12, 26, 36, 0.9));
}

.card.outline {
  background: rgba(12, 26, 36, 0.6);
}

/* Service card specific styles */
.service-card {
  position: relative;
  border-radius: 16px;
  padding: 80px 10px;
  border: 1px solid var(--border);
  background: rgba(12, 26, 36, 0.8);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease,
    background 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 95, 130, 0.7);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 30px rgba(27, 95, 130, 0.4);
}

/* Service card typography */
.service-card h3 {
  margin: 0 0 16px;
  font-size: 20px; /* final chosen value (was duplicated) */
  font-weight: 700;
  color: var(--text);
}

.service-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.service-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.service-card li {
  margin: 6px 0;
}

/* Elements */
.service-card__icon {
  display: block;
  margin-bottom: 24px;
  font-size: 40px; /* final chosen value (was duplicated) */
}

/* Variants */
.service-card--featured {
  border-width: 2px;
  border-color: rgba(27, 95, 130, 0.9);
  background: linear-gradient(135deg, rgba(0, 14, 22, 0.95), rgba(27, 95, 130, 0.15));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(27, 95, 130, 0.3);
}

.service-card--link {
  display: block;
  cursor: pointer;
  position: relative;
}

.service-card--link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(27, 95, 130, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card--link::after {
  content: "Learn More →";
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-light);
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease,
    border-color 0.3s ease, color 0.3s ease;
  background: rgba(27, 95, 130, 0.2);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(27, 95, 130, 0.4);
}

.service-card--link:hover {
  transform: translateY(-8px);
  border-color: rgba(27, 95, 130, 1);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.6), 0 0 50px rgba(27, 95, 130, 0.6),
    inset 0 0 30px rgba(27, 95, 130, 0.1);
  background: linear-gradient(135deg, rgba(0, 14, 22, 1), rgba(27, 95, 130, 0.25));
}

.service-card--link:hover::before {
  opacity: 1;
}

.service-card--link:hover::after {
  opacity: 1;
  transform: translateX(6px);
  background: rgba(27, 95, 130, 0.3);
  border-color: rgba(27, 95, 130, 0.6);
}

/* Badge + note */
.service-card__badge {
  position: absolute;
  top: 16px;
  left: 42%;
  background: rgba(0, 14, 22, 0.8);
  border: 1px solid rgba(27, 95, 130, 0.6);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card p.service-card__note {
  margin-top: 25px ;
  font-size: 16px;
  color: var(--muted);
  font-style: italic;
}

.hero-features {
  list-style: none;
  margin: 0 auto 40px;
  padding: 0;
  max-width: 900px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;

  text-align: center;
  color: var(--muted);
}

.hero-features li {
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 900px) {
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.how-it-works {
  padding: 80px 5vw;
  background: rgba(0, 14, 22, 0.4);
}

.how-it-works__container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.how-it-works__title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: var(--text);
  margin-bottom: 16px;
}

.how-it-works__subtitle {
  max-width: 650px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.how-it-works__item {
  text-align: center;
}

.how-it-works__item h3 {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 12px;
}

.how-it-works__item p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* Icon styling */
.how-it-works__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  box-shadow: 0 8px 24px rgba(27, 95, 130, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
  .how-it-works__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 500px) {
  .how-it-works__grid {
    grid-template-columns: 1fr;
  }

  .how-it-works__title {
    font-size: 34px;
  }
}

/* Services CTA Section */
.services-cta {
  padding: 100px 5vw;
  text-align: center;
}
.services-cta__content {
  max-width: 800px;
  margin: 0 auto;
}
.services-cta__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 20px;
}
.services-cta__content p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 32px;
  line-height: 1.6;
}

/* Services Page Responsive */
@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  /* Reset grid-column rules for tablet */
  .services-grid > *:nth-child(1),
  .services-grid > *:nth-child(2),
  .services-grid > *:nth-child(3),
  .services-grid > *:nth-child(n+4) {
    grid-column: span 1;
  }
  .services-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .services-hero__actions .btn {
    width: 100%;
    text-align: center;
  }
  .service-card {
    padding: 40px 20px;
  }
  .service-card__badge {
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    padding: 4px 10px;
  }
  .services-grid-section {
    padding: 60px 4vw;
  }
}
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  /* Ensure all cards span full width on mobile */
  .services-grid > *:nth-child(1),
  .services-grid > *:nth-child(2),
  .services-grid > *:nth-child(3),
  .services-grid > *:nth-child(n+4) {
    grid-column: span 1;
  }
  .services-hero {
    min-height: auto;
    padding: 60px 5vw;
  }
  .services-hero__content h1 {
    font-size: clamp(28px, 8vw, 40px);
  }
  .services-hero__description {
    font-size: 16px;
    line-height: 1.7;
  }
  .service-card {
    padding: 32px 20px;
  }
  .service-card__icon {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .service-card p {
    font-size: 15px;
    line-height: 1.6;
  }
  .service-card__badge {
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    padding: 4px 8px;
  }
  .service-card--link::after {
    bottom: 16px;
    right: 16px;
    font-size: 12px;
    padding: 4px 10px;
  }
  .services-grid-section {
    padding: 40px 4vw;
  }
  .services-cta__content {
    padding: 0 4vw;
  }
  .services-cta__content h2 {
    font-size: clamp(24px, 7vw, 32px);
  }
  .services-cta__content p {
    font-size: 16px;
  }
  .cta__actions {
    flex-direction: column;
    gap: 12px !important;
  }
  .cta__actions .btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablet and Medium Screens */
@media (max-width: 1024px) {
  .top-bar {
    padding: 6px 2.5vw;
    gap: 14px;
  }
  
  .logo {
    height: 50px;
  }
  
  .tagline {
    font-size: 12px;
  }
  
  .header-right {
    gap: 16px;
  }
  
  .nav {
    gap: 12px;
  }
  
  .nav a {
    padding: 8px 12px;
    font-size: 14px;
  }
  
  .header-actions {
    gap: 10px;
  }
  
  .contact-dropdown-btn {
    font-size: 13px;
    padding: 7px 12px;
  }
  
  .contact-dropdown-menu {
    min-width: 260px;
  }
  
  .header-cta {
    font-size: 13px;
    padding: 9px 16px;
  }
}

/* Mobile First - Base styles for all mobile devices */
@media (max-width: 768px) {
  /* Top Bar / Header */
  .top-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 8px 4vw;
    min-height: auto;
  }
  
  .logo-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: flex-start;
  }
  
  .logo-3d-container {
    flex-shrink: 0;
  }
  
  .logo-3d-img {
    height: 50px !important;
    width: 50px !important;
  }
  
  .tagline {
    font-size: 11px !important;
    line-height: 1.3;
    flex: 1;
    white-space: normal;
    text-align: left;
  }
  
  .header-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  
  .nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    align-items: center;
    order: 1;
  }
  
  .nav a {
    padding: 6px 10px;
    text-align: center;
    font-size: 12px;
    flex: 1 1 calc(50% - 3px);
    min-width: calc(50% - 3px);
    max-width: calc(50% - 3px);
    border: 1px solid rgba(196, 211, 220, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
  }
  
  .nav a::after {
    display: none;
  }
  
  .nav a:hover {
    background: rgba(196, 211, 220, 0.15);
  }
  
  .header-actions {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    order: 2;
  }
  
  .contact-dropdown {
    flex: 1 1 auto;
    min-width: calc(50% - 4px);
  }
  
  .contact-dropdown-btn {
    width: 100%;
    justify-content: center;
    padding: 6px 10px;
    font-size: 12px;
  }
  
  .contact-dropdown-menu {
    right: 0;
    left: 0;
    min-width: 100%;
    width: 100%;
  }
  
  .header-cta {
    flex: 1 1 calc(50% - 3px);
    min-width: calc(50% - 3px);
    max-width: calc(50% - 3px);
    text-align: center;
    font-size: 12px;
    padding: 6px 10px;
  }
  
  /* Hero Section */
  .hero {
    min-height: auto;
    margin-top: 0;
    padding-top: 0;
  }
  
  .hero__image-full {
    min-height: 650px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
  }
  
  /* Ensure hero content doesn't get covered by fixed header */
  .hero__content-wrapper {
    padding-top: 20px !important;
  }
  
  .hero-image-full {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
  }
  
  .hero__content-wrapper {
    grid-template-columns: 1fr !important;
    padding: 12px 4vw 20px !important;
    gap: 8px;
    align-items: flex-end;
    justify-content: flex-end;
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .hero__content {
    text-align: center;
  }
  
  .hero__content h1 {
    font-size: clamp(18px, 5vw, 22px) !important;
    line-height: 1.2;
    margin-bottom: 4px;
  }
  
  .hero-outcome {
    font-size: 11px !important;
    margin: 0 0 8px;
    line-height: 1.3;
  }
  
  .hero__actions {
    flex-direction: column;
    gap: 6px;
    width: 100%;
    margin-bottom: 8px;
  }
  
  .hero__actions .btn {
    width: 100%;
    padding: 6px 12px;
    font-size: 11px;
    min-height: 32px;
  }
  
  .hero__stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
    width: 100%;
    margin-top: 0;
    margin-bottom: 8px;
  }
  
  .hero__stats div {
    flex: 1;
    min-width: calc(50% - 2px);
    justify-content: center;
    font-size: 8px;
    padding: 4px 6px;
    text-align: center;
    line-height: 1.2;
  }
  
  /* Sections */
  .section {
    padding: 40px 4vw !important;
  }
  
  /* Add top padding to first section to account for fixed header */
  main > .section:first-child {
    padding-top: 70px !important;
  }
  
  .section__intro {
    text-align: center;
    margin-bottom: 32px;
  }
  
  .section__intro h2 {
    font-size: clamp(28px, 8vw, 36px) !important;
    margin-bottom: 12px;
  }
  
  .section__intro p {
    font-size: 16px;
  }
  
  /* Industries Section */
  .industries-wrapper {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  
  .industries-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px;
  }
  
  .industry-card {
    padding: 12px 8px;
  }
  
  .industry-icon {
    font-size: 24px;
  }
  
  .industry-card h3 {
    font-size: 11px;
  }
  
  /* Ribbon - Trusted for 30 years */
  .why-dell-panel .ribbon {
    font-size: 10px !important;
    padding: 5px 20px !important;
    top: 10px !important;
    right: -25px !important;
  }
  
  /* Solutions Grid */
  .solutions-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  
  .solution-card {
    flex-direction: column;
  }
  
  .solution-card__image {
    width: 100%;
    height: 200px;
  }
  
  /* Products Display */
  .products-display__grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  
  .product-display-card__image {
    height: 200px;
  }
  
  .product-display-card__content {
    padding: 20px 16px;
  }
  
  .product-display-card__content h3 {
    font-size: 20px;
  }
  
  .product-display-card__content p {
    font-size: 14px;
  }
  
  /* Products Hero */
  .products-hero {
    padding: 100px 4vw 40px !important;
  }
  
  .products-hero__content h1 {
    font-size: clamp(28px, 8vw, 36px) !important;
  }
  
  .products-hero__subtitle {
    font-size: 16px !important;
  }
  
  .why-dell-systems__title {
    font-size: clamp(24px, 6vw, 32px) !important;
  }
  
  .what-you-get__content {
    padding: 24px 16px !important;
  }
  
  .what-you-get__content h2 {
    font-size: clamp(22px, 6vw, 28px) !important;
    text-align: center;
  }
  
  .what-you-get__list {
    gap: 12px;
  }
  
  .what-you-get__list li {
    font-size: 14px;
    padding: 12px;
  }
  
  /* CTA Section */
  .cta__content {
    padding: 0;
  }
  
  .cta__content h2 {
    font-size: clamp(24px, 6vw, 32px) !important;
  }
  
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .contact-form {
    margin: 24px auto 0;
  }
  
  .contact-form__field input,
  .contact-form__field select,
  .contact-form__field textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .contact-modal {
    padding: 10px;
  }
  
  .contact-modal__content {
    padding: 32px 24px;
    max-height: 95vh;
    border-radius: 12px;
  }
  
  .contact-modal__content h2 {
    font-size: 24px;
  }
  
  .contact-modal__close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 28px;
  }
  
  .cta__divider {
    margin: 24px 0 20px;
  }
  
  .cta__divider span {
    font-size: 13px;
    padding: 0 12px;
  }
  
  .cta__actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .cta__actions .btn {
    width: 100%;
    padding: 14px 20px;
  }
  

  
  /* About Page */
  .about-hero {
    grid-template-columns: 1fr !important;
    padding: 50px 4vw !important;
    min-height: auto;
  }
  
  .about-cards {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  
  .about-card {
    padding: 32px 4vw;
  }
  
  .about-card__content h2 {
    font-size: clamp(24px, 6vw, 32px) !important;
  }
  
  /* Services Page */
  .services-hero {
    padding: 100px 4vw !important;
    min-height: auto;
  }
  
  .services-hero__content h1 {
    font-size: clamp(28px, 8vw, 36px) !important;
  }
  
  .services-hero__description {
    font-size: 16px !important;
  }
  
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  
 
  
  /* Buttons */
  .btn {
    padding: 12px 20px;
    font-size: 15px;
    min-height: 44px; /* Better touch target */
  }
  
  /* Cards */
  .card {
    padding: 20px 16px;
  }
  
  .card h3 {
    font-size: 20px;
  }
  
  .card ul {
    font-size: 14px;
  }
  
  /* Panel Cards */
  .panel__card {
    padding: 20px 16px;
  }
  
  .panel__card h3 {
    font-size: 20px;
  }
  
  /* Products CTA */
  .products-cta__content {
    padding: 0;
  }
  
  .products-cta__content h2 {
    font-size: clamp(24px, 6vw, 32px) !important;
  }
  
  .products-cta__content p {
    font-size: 16px;
  }
  
  /* Divider */
  .products-cta__divider {
    margin: 32px auto 32px;
  }
}

/* Extra Small Devices (phones in portrait) */
@media (max-width: 480px) {
  .top-bar {
    padding: 6px 4vw;
    gap: 8px;
  }
  
  .logo-wrap {
    gap: 8px;
  }
  
  .logo-3d-img {
    height: 45px !important;
    width: 45px !important;
  }
  
  .tagline {
    font-size: 10px !important;
  }
  
  .header-right {
    gap: 8px;
  }
  
  .nav {
    gap: 4px;
    justify-content: center;
  }
  
  .nav a {
    font-size: 11px;
    padding: 5px 6px;
    flex: 1 1 calc(50% - 2px);
    min-width: calc(50% - 2px);
    max-width: calc(50% - 2px);
  }
  
  .header-actions {
    gap: 6px;
    justify-content: center;
  }
  
  .contact-dropdown {
    min-width: calc(50% - 3px);
  }
  
  .contact-dropdown-btn {
    font-size: 11px;
    padding: 5px 8px;
  }
  
  .contact-dropdown-menu {
    min-width: 220px;
  }
  
  .header-cta {
    flex: 1 1 calc(50% - 2px);
    min-width: calc(50% - 2px);
    max-width: calc(50% - 2px);
    font-size: 11px;
    padding: 5px 6px;
  }
  
  .hero__image-full {
    min-height: 600px;
  }
  
  .hero__content-wrapper {
    padding: 10px 4vw 16px !important;
    gap: 6px;
    align-items: flex-end !important;
    justify-content: flex-end !important;
  }
  
  .hero__content h1 {
    font-size: 16px !important;
    margin-bottom: 4px;
  }
  
  .hero-outcome {
    font-size: 10px !important;
    margin-bottom: 6px;
  }
  
  .hero__actions {
    margin-bottom: 6px;
    gap: 4px;
  }
  
  .hero__actions .btn {
    padding: 5px 10px;
    font-size: 10px;
    min-height: 28px;
  }
  
  .hero__stats {
    gap: 3px;
    margin-bottom: 6px;
  }
  
  .hero__stats div {
    font-size: 7px;
    padding: 3px 5px;
    line-height: 1.2;
  }
  
  .section {
    padding: 32px 4vw !important;
  }
  
  /* Add top padding to first section to account for fixed header */
  main > .section:first-child {
    padding-top: 90px !important;
  }
  
  /* Products Hero - extra padding for small screens */
  .products-hero {
    padding: 90px 4vw 40px !important;
  }
  
  /* Services Hero - extra padding for small screens */
  .services-hero {
    padding: 80px 5vw !important;
  }
  
  .section__intro h2 {
    font-size: 24px !important;
  }
  
  .industries-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px;
  }
  
  .industry-card {
    padding: 10px 6px;
  }
  
  .industry-icon {
    font-size: 20px;
  }
  
  .industry-card h3 {
    font-size: 10px;
  }
  
  /* Ribbon - Trusted for 30 years */
  .why-dell-panel .ribbon {
    font-size: 9px !important;
    padding: 4px 16px !important;
    top: 8px !important;
    right: -20px !important;
  }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero__image-full {
    min-height: 400px;
  }
  
  .hero__content-wrapper {
    padding: 30px 4vw 30px !important;
  }
}

/* Hide EDISCO Smart Assistant Widget */
.edisco-assistant {
  display: none !important;
}

