@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap";.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  height: 85px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 75px;
  max-width: 320px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  text-align: center;
}

.nav-item {
  position: relative;
}

.nav-links {
  color: var(--text-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
  gap: 4px;
  text-transform: capitalize;
}

.nav-links:hover, .nav-links.active {
  color: var(--primary-color);
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.dropdown-arrow.rotated {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: var(--bg-white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  text-align: left;
  z-index: 1100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-new {
  display: flex !important;
  width: 95vw !important;
  max-width: 1200px !important;
  padding: 0 !important;
  overflow: hidden;
  max-height: 80vh;
}

.mega-menu-sidebar {
  width: 280px;
  background: #f8fafc;
  border-right: 1px solid var(--border-color);
  padding: 1.5rem 0;
  overflow-y: auto;
  flex-shrink: 0;
}

.mega-sidebar-item {
  transition: all 0.2s ease;
}

.mega-sidebar-item a {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: var(--text-dark) !important;
  border-radius: 0 !important;
}

.mega-sidebar-item:hover, .mega-sidebar-item.active {
  background: white;
}

.mega-sidebar-item.active a {
  color: var(--primary-color) !important;
}

.mega-menu-content {
  flex: 1;
  padding: 2.5rem;
  background: white;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mega-content-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 1rem;
}

.mega-content-header h4 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
}

.mega-content-header p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.mega-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.mega-product-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px;
  padding: 0.6rem 1rem !important;
  font-size: 0.9rem !important;
  color: var(--text-dark) !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
  transition: all 0.2s ease;
}

.mega-product-item:hover {
  background: #f0f9ff !important;
  color: var(--primary-color) !important;
  transform: translateX(5px);
}

.view-all-link {
  margin-top: auto;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  color: var(--primary-color) !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  padding: 0 !important;
}

.nav-cta {
  gap: 8px;
  padding: 0.5rem 1.25rem;
  margin-left: 1rem;
}

.menu-icon {
  display: none;
  color: var(--primary-color);
  cursor: pointer;
}

.mobile-menu-header {
  display: none;
}

@media screen and (max-width: 960px) {
  .navbar {
    height: 80px;
  }

  .logo-img {
    height: 45px;
    max-width: 180px !important;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    width: 100% !important; /* Full width for mobile menu */
    height: 100vh;
    position: fixed;
    top: 0;
    left: -100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--bg-white);
    padding: 0 0 3rem;
    overflow-y: auto;
    z-index: 1002;
    box-shadow: none;
  }

  .nav-menu.active {
    left: 0;
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    width: 100%;
  }

  .mobile-logo {
    height: 35px !important;
    width: auto !important;
    max-width: 180px !important;
    object-fit: contain;
  }

  .close-menu-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid #f1f5f9;
  }

  .nav-links {
    padding: 1.25rem 2rem;
    width: 100%;
    margin: 0;
    justify-content: space-between;
    font-size: 1.1rem;
  }

  .dropdown-menu.mega-menu-new {
    position: static;
    display: none !important;
    width: 100% !important;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    flex-direction: column;
    background-color: #f8fafc;
    transition: all 0.3s ease;
    border: none;
    transform: none;
  }

  .dropdown-menu.mega-menu-new.show {
    display: flex !important;
    max-height: none;
    opacity: 1;
    visibility: visible;
  }

  .mega-menu-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    background: transparent;
  }

  .mega-sidebar-item a {
    padding: 1rem 2.5rem !important;
    font-size: 1rem !important;
    background: #f1f5f9;
  }

  .mega-menu-content {
    padding: 1.5rem;
  }

  .mega-products-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .mega-product-item {
    padding: 0.8rem 1rem !important;
    background: white;
    border: 1px solid #f1f5f9;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-dropdown-list {
    display: flex;
    flex-direction: column;
    background: #f8fafc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-dropdown-list.show {
    max-height: 2500px;
    border-bottom: 1px solid #e2e8f0;
  }

  .mobile-category-group {
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  }

  .mobile-category-group:last-child {
    border-bottom: none;
  }

  .mobile-dropdown-item {
    padding: 1rem 1.5rem !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem !important;
    color: var(--text-dark) !important;
    transition: all 0.2s ease;
    cursor: pointer;
  }

  .mobile-dropdown-item:active {
    background: #f1f5f9;
    color: var(--primary-color) !important;
  }

  .mobile-dropdown-item.view-all {
    background: #f0f9ff;
    color: var(--primary-color) !important;
    padding: 1rem 1.5rem !important;
  }

  .mobile-products-list {
    display: flex;
    flex-direction: column;
    background: #e2e8f0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }

  .mobile-products-list.show {
    max-height: 1000px;
  }

  .mobile-product-link {
    padding: 0.8rem 2.5rem !important;
    font-size: 0.9rem !important;
    color: var(--text-dark) !important;
    text-decoration: none;
    border-bottom: 1px solid rgba(203, 213, 225, 0.5);
    display: flex;
    align-items: center;
  }

  .mobile-product-link:last-child {
    border-bottom: none;
  }

  .mobile-product-link.view-all-cat {
    color: var(--primary-color) !important;
    font-weight: 600;
    gap: 8px;
    background: #f8fafc;
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-cta-item {
    padding: 2rem;
    border-bottom: none;
  }

  .nav-cta {
    width: 100%;
    padding: 1rem;
  }

  .menu-icon {
    display: block;
    margin-right: 1rem;
  }
}

@media screen and (min-width: 961px) {
  .mobile-dropdown-list, .mobile-menu-header {
    display: none !important;
  }
}
.footer {
  background-color: var(--text-dark);
  color: var(--text-white);
  padding: 5rem 0 2rem;
  margin-top: 5rem;
  box-shadow: inset 0 10px 20px rgba(0,0,0,0.2);
}

.footer-container {
  max-width: 1600px !important;
  width: 95% !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-services-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand img {
  display: block;
  max-width: 100%;
}

.footer-brand .footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
}

.footer-heading {
  color: var(--primary-color);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  font-size: 0.95rem;
  white-space: nowrap;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  white-space: nowrap;
}

.contact-icon {
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
  white-space: nowrap;
}

.contact-item a:hover {
  color: var(--primary-color);
}

.contact-item address {
  font-style: normal;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

@media screen and (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer-services-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 600px) {
  .footer {
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-heading {
    white-space: normal;
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .footer-links a {
    white-space: normal;
    word-break: break-word;
    padding: 6px 0;
  }
  .contact-item {
    white-space: normal;
    word-break: break-word;
    gap: 0.75rem;
  }
  .contact-item a {
    white-space: normal;
  }
}
.floating-contact {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fc-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 170px;
  padding: 12px;
  background: white;
  color: #334155;
  text-decoration: none;
  border-radius: 8px 0 0 8px;
  transform: translateX(122px);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
  box-shadow: -5px 5px 25px rgba(0,0,0,0.1);
  border: 1px solid #f1f5f9;
  border-right: none;
}

.fc-item:hover {
  transform: translateX(0);
}

.fc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  margin-right: 14px;
}

.fc-text {
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.fc-whatsapp {
  border-left: 4px solid #25D366;
}
.fc-whatsapp:hover {
  background-color: #f0fdf4;
}

.fc-mail {
  border-left: 4px solid #EA4335;
}
.fc-mail:hover {
  background-color: #fef2f2;
}

/* For mobile, maybe always show a bit or don't slide out on tap as easily, 
   but hover usually works on tap on mobile devices to expand. */
@media (max-width: 768px) {
  .floating-contact {
    top: auto;
    bottom: 24px;
    transform: none;
  }
}



@layer components;

/*! tailwindcss v4.2.4 | MIT License | https://tailwindcss.com */

@layer properties {
  @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *, :before, :after, ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-border-style: solid;
      --tw-font-weight: initial;
      --tw-tracking: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-outline-style: solid;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-backdrop-blur: initial;
      --tw-backdrop-brightness: initial;
      --tw-backdrop-contrast: initial;
      --tw-backdrop-grayscale: initial;
      --tw-backdrop-hue-rotate: initial;
      --tw-backdrop-invert: initial;
      --tw-backdrop-opacity: initial;
      --tw-backdrop-saturate: initial;
      --tw-backdrop-sepia: initial;
      --tw-duration: initial;
      --tw-ease: initial;
    }
  }
}

@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --color-blue-600: oklch(54.6% .245 262.881);
    --color-slate-200: oklch(92.9% .013 255.508);
    --color-slate-500: oklch(55.4% .046 257.417);
    --color-slate-900: oklch(20.8% .042 265.755);
    --color-white: #fff;
    --spacing: .25rem;
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-3xl: 1.875rem;
    --text-3xl--line-height: calc(2.25 / 1.875);
    --text-4xl: 2.25rem;
    --text-4xl--line-height: calc(2.5 / 2.25);
    --font-weight-medium: 500;
    --font-weight-extrabold: 800;
    --tracking-tight: -.025em;
    --shadow-sm: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
    --shadow-md: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
    --shadow-lg: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
    --ease-out: cubic-bezier(0, 0, .2, 1);
    --ease-in-out: cubic-bezier(.4, 0, .2, 1);
    --animate-spin: spin 1s linear infinite;
    --blur-lg: 16px;
    --default-transition-duration: .15s;
    --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}

@layer base {
  *, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }

  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }

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

  b, strong {
    font-weight: bolder;
  }

  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }

  small {
    font-size: 80%;
  }

  sub, sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

  ol, ul, menu {
    list-style: none;
  }

  img, svg, video, canvas, audio, iframe, embed, object {
    vertical-align: middle;
    display: block;
  }

  img, video {
    max-width: 100%;
    height: auto;
  }

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
  }

  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  textarea {
    resize: vertical;
  }

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }

  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }

  :-moz-ui-invalid {
    box-shadow: none;
  }

  button, input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }

  ::file-selector-button {
    appearance: button;
  }

  ::-webkit-inner-spin-button {
    height: auto;
  }

  ::-webkit-outer-spin-button {
    height: auto;
  }

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

@layer utilities {
  .collapse {
    visibility: collapse;
  }

  .visible {
    visibility: visible;
  }

  .absolute {
    position: absolute;
  }

  .relative {
    position: relative;
  }

  .static {
    position: static;
  }

  .sticky {
    position: sticky;
  }

  .start {
    inset-inline-start: var(--spacing);
  }

  .end {
    inset-inline-end: var(--spacing);
  }

  .top-0 {
    top: calc(var(--spacing) * 0);
  }

  .z-50 {
    z-index: 50;
  }

  .container {
    width: 100%;
  }

  @media (min-width: 40rem) {
    .container {
      max-width: 40rem;
    }
  }

  @media (min-width: 48rem) {
    .container {
      max-width: 48rem;
    }
  }

  @media (min-width: 64rem) {
    .container {
      max-width: 64rem;
    }
  }

  @media (min-width: 80rem) {
    .container {
      max-width: 80rem;
    }
  }

  @media (min-width: 96rem) {
    .container {
      max-width: 96rem;
    }
  }

  .mt-4 {
    margin-top: calc(var(--spacing) * 4);
  }

  .mb-4 {
    margin-bottom: calc(var(--spacing) * 4);
  }

  .block {
    display: block;
  }

  .flex {
    display: flex;
  }

  .grid {
    display: grid;
  }

  .hidden {
    display: none;
  }

  .inline-block {
    display: inline-block;
  }

  .inline-flex {
    display: inline-flex;
  }

  .table {
    display: table;
  }

  .h-16 {
    height: calc(var(--spacing) * 16);
  }

  .min-h-\[60vh\] {
    min-height: 60vh;
  }

  .min-h-screen {
    min-height: 100vh;
  }

  .w-16 {
    width: calc(var(--spacing) * 16);
  }

  .w-full {
    width: 100%;
  }

  .flex-grow {
    flex-grow: 1;
  }

  .transform {
    transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
  }

  .animate-spin {
    animation: var(--animate-spin);
  }

  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .flex-col {
    flex-direction: column;
  }

  .items-center {
    align-items: center;
  }

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

  .gap-8 {
    gap: calc(var(--spacing) * 8);
  }

  .rounded-full {
    border-radius: 3.40282e38px;
  }

  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }

  .border-t-4 {
    border-top-style: var(--tw-border-style);
    border-top-width: 4px;
  }

  .border-b {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 1px;
  }

  .border-b-4 {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 4px;
  }

  .border-blue-600 {
    border-color: var(--color-blue-600);
  }

  .border-slate-200\/50 {
    border-color: #e2e8f080;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .border-slate-200\/50 {
      border-color: color-mix(in oklab, var(--color-slate-200) 50%, transparent);
    }
  }

  .bg-transparent {
    background-color: #0000;
  }

  .bg-white\/80 {
    background-color: #fffc;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-white\/80 {
      background-color: color-mix(in oklab, var(--color-white) 80%, transparent);
    }
  }

  .text-3xl {
    font-size: var(--text-3xl);
    line-height: var(--tw-leading, var(--text-3xl--line-height));
  }

  .text-lg {
    font-size: var(--text-lg);
    line-height: var(--tw-leading, var(--text-lg--line-height));
  }

  .font-extrabold {
    --tw-font-weight: var(--font-weight-extrabold);
    font-weight: var(--font-weight-extrabold);
  }

  .font-medium {
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }

  .tracking-tight {
    --tw-tracking: var(--tracking-tight);
    letter-spacing: var(--tracking-tight);
  }

  .text-slate-500 {
    color: var(--color-slate-500);
  }

  .text-slate-900 {
    color: var(--color-slate-900);
  }

  .uppercase {
    text-transform: uppercase;
  }

  .italic {
    font-style: italic;
  }

  .shadow-sm {
    --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .ring {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .outline {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }

  .filter {
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }

  .backdrop-blur-lg {
    --tw-backdrop-blur: blur(var(--blur-lg));
    -webkit-backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
    backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
  }

  .backdrop-filter {
    -webkit-backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
    backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
  }

  .transition {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-all {
    transition-property: all;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .duration-300 {
    --tw-duration: .3s;
    transition-duration: .3s;
  }

  .ease-in-out {
    --tw-ease: var(--ease-in-out);
    transition-timing-function: var(--ease-in-out);
  }

  .ease-out {
    --tw-ease: var(--ease-out);
    transition-timing-function: var(--ease-out);
  }

  @media (min-width: 48rem) {
    .md\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:text-4xl {
      font-size: var(--text-4xl);
      line-height: var(--tw-leading, var(--text-4xl--line-height));
    }
  }

  @media (min-width: 64rem) {
    .lg\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
}

:root {
  --primary-color: #0284c7;
  --primary-color-hover: #0369a1;
  --primary-glow: #0284c766;
  --secondary-color: #38bdf8;
  --secondary-glow: #38bdf84d;
  --accent-color: #0ea5e9;
  --accent-color-hover: #0284c7;
  --text-dark: #0f172a;
  --text-navy: #074770;
  --text-light: #475569;
  --text-white: #fff;
  --bg-color: #f8fafc;
  --bg-white: #fff;
  --bg-glass: #ffffffb3;
  --border-color: #e2e8f0;
  --shadow-sm: 0 2px 4px 0 #00000005;
  --shadow-md: 0 10px 25px -5px #0284c71a, 0 8px 10px -6px #0000000d;
  --shadow-lg: 0 20px 40px -10px #0284c726, 0 10px 15px -5px #0000000a;
  --shadow-glow: 0 0 30px var(--primary-glow);
  --shadow-glass: 0 8px 32px 0 #0ea5e91a;
  --section-padding: 6rem 1rem;
  --transition: all .4s cubic-bezier(.25, .8, .25, 1);
  --border-radius-sm: 8px;
  --border-radius: 16px;
  --border-radius-lg: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: var(--text-dark);
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: radial-gradient(at 0 0, #38bdf81a 0, #0000 50%), radial-gradient(at 100% 100%, #0284c714 0, #0000 50%);
  background-attachment: fixed;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

@media screen and (min-width: 1025px) {
  body {
    zoom: .9;
    -moz-transform-origin: top;
    -moz-transform: scale(.9);
  }
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  letter-spacing: -.02em;
  font-family: Outfit, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.8rem, 5vw, 4.25rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
}

h4 {
  font-size: 1.15rem;
  font-weight: 600;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: Inter, sans-serif;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.glass-panel {
  background: var(--bg-glass);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-glass);
  border-radius: var(--border-radius);
  border: 1px solid #ffffff80;
}

.btn {
  letter-spacing: .02em;
  z-index: 1;
  border: 1px solid #0000;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: .8rem 2.2rem;
  font-family: Outfit, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

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

.btn:before {
  content: "";
  z-index: -1;
  background: linear-gradient(120deg, #0000, #ffffff4d, #0000);
  width: 100%;
  height: 100%;
  transition: all .6s;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
}

.btn:hover:before {
  transform: translateX(100%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-hover));
  color: var(--text-white);
  border: none;
  box-shadow: 0 4px 12px #0284c726;
}

.btn-primary:hover {
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #0284c740;
}

.btn-accent {
  background-color: var(--text-dark);
  color: var(--text-white);
  border: none;
  box-shadow: 0 4px 10px #0f172a26;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px #0f172a40;
}

.btn-outline {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  background: none;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px #0284c71a;
}

.btn-large {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

.btn-accent:hover {
  color: var(--text-white);
  background-color: #000;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -5px #0f172a99;
}

.btn-outline {
  background-color: var(--bg-glass);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
  box-shadow: 0 10px 20px -5px var(--primary-glow);
  transform: translateY(-3px);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  background: linear-gradient(135deg, var(--text-dark), var(--primary-color-hover));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin-bottom: 1.25rem;
  padding-bottom: 15px;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  display: inline-block;
  position: relative;
}

.section-title h2:after {
  content: "";
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  border-radius: 5px;
  width: 80px;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  color: var(--text-light);
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.7;
}

.page-header {
  background: linear-gradient(135deg, var(--bg-color) 0%, #e0f2fe 100%);
  color: var(--text-dark);
  text-align: center;
  border-bottom: 1px solid #ffffff80;
  margin-top: 100px;
  padding: 10rem 1.5rem 6rem;
  position: relative;
  overflow: hidden;
}

.page-header:before {
  content: "";
  z-index: 0;
  background-image: radial-gradient(circle, #0ea5e90d 0%, #0000 50%), radial-gradient(circle at 80% 20%, #38bdf814 0%, #0000 30%);
  width: 200%;
  height: 200%;
  animation: 20s linear infinite floatBG;
  position: absolute;
  top: -50%;
  left: -50%;
}

@keyframes floatBG {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.page-header h1, .page-header p {
  z-index: 1;
  position: relative;
}

.page-header h1 {
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--text-dark), var(--primary-color-hover));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
}

.page-header p {
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  font-weight: 500;
}

.polished-image {
  filter: contrast(1.08) brightness(1.02) saturate(1.1);
  image-rendering: -webkit-optimize-contrast;
  -webkit-font-smoothing: antialiased;
  transition: var(--transition);
}

.polished-image:hover {
  filter: contrast(1.12) brightness(1.05) saturate(1.15);
}

.premium-img-container {
  border-radius: var(--border-radius);
  transition: var(--transition);
  background: #fff;
  border: 1px solid #ffffff80;
  overflow: hidden;
  box-shadow: 0 10px 30px #00000014;
}

.premium-img-container:hover {
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px #0284c726;
}

.page-fade {
  animation: .5s ease-out forwards fadeIn;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

@media screen and (max-width: 480px) {
  :root {
    --section-padding: 3rem 0;
  }

  .container {
    padding: 0 1.25rem !important;
  }

  .section-padding {
    padding: 3rem 0 !important;
  }

  .btn {
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: .75rem 1.5rem !important;
  }

  .btn-large {
    padding: .85rem 2rem !important;
  }

  .page-header {
    margin-top: 80px !important;
    padding: 6rem 1rem 3rem !important;
  }
}

@media screen and (max-width: 375px) {
  .container {
    padding: 0 1rem !important;
  }
}

.page-header-sleek {
  color: var(--text-dark);
  text-align: center;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-bottom: 1px solid #0ea5e926;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 90px;
  padding: 8rem 1.5rem 5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.page-header-sleek:before {
  content: "";
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, #0ea5e926 0%, #0000 70%);
  width: 80%;
  height: 160%;
  animation: 8s ease-in-out infinite alternate slowPulse;
  position: absolute;
  top: -30%;
  left: -20%;
}

.page-header-sleek:after {
  content: "";
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, #38bdf82e 0%, #0000 70%);
  width: 60%;
  height: 120%;
  animation: 12s ease-in-out infinite alternate-reverse slowPulse;
  position: absolute;
  bottom: -20%;
  right: -10%;
}

@keyframes slowPulse {
  0% {
    opacity: .8;
    transform: scale(.9) translate(0);
  }

  100% {
    opacity: 1;
    transform: scale(1.1) translate(5%, 5%);
  }
}

.page-header-sleek h1 {
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--text-dark) 30%, var(--primary-color) 100%);
  -webkit-text-fill-color: transparent;
  z-index: 2;
  -webkit-background-clip: text;
  margin-bottom: 1rem;
  font-family: Outfit, sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  animation: .8s cubic-bezier(.16, 1, .3, 1) forwards slideUpFade;
  position: relative;
}

.page-header-sleek p {
  color: var(--text-light);
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.6;
  animation: 1s cubic-bezier(.16, 1, .3, 1) forwards slideUpFade;
  position: relative;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 480px) {
  .page-header-sleek {
    margin-top: 80px;
    padding: 6rem 1.25rem 4rem;
  }
}

@property --tw-rotate-x {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-y {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-z {
  syntax: "*";
  inherits: false
}

@property --tw-skew-x {
  syntax: "*";
  inherits: false
}

@property --tw-skew-y {
  syntax: "*";
  inherits: false
}

@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

@property --tw-font-weight {
  syntax: "*";
  inherits: false
}

@property --tw-tracking {
  syntax: "*";
  inherits: false
}

@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-ring-color {
  syntax: "*";
  inherits: false
}

@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false
}

@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-ring-inset {
  syntax: "*";
  inherits: false
}

@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0;
}

@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}

@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-outline-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

@property --tw-blur {
  syntax: "*";
  inherits: false
}

@property --tw-brightness {
  syntax: "*";
  inherits: false
}

@property --tw-contrast {
  syntax: "*";
  inherits: false
}

@property --tw-grayscale {
  syntax: "*";
  inherits: false
}

@property --tw-hue-rotate {
  syntax: "*";
  inherits: false
}

@property --tw-invert {
  syntax: "*";
  inherits: false
}

@property --tw-opacity {
  syntax: "*";
  inherits: false
}

@property --tw-saturate {
  syntax: "*";
  inherits: false
}

@property --tw-sepia {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-blur {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-brightness {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-contrast {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-grayscale {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-hue-rotate {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-invert {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-opacity {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-saturate {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-sepia {
  syntax: "*";
  inherits: false
}

@property --tw-duration {
  syntax: "*";
  inherits: false
}

@property --tw-ease {
  syntax: "*";
  inherits: false
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
