@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  
  --color-primary: #4F46E5;
  --color-primary-glow: rgba(79, 70, 229, 0.15);
  --color-secondary: #7C3AED;
  --color-secondary-glow: rgba(124, 58, 237, 0.15);
  --color-accent: #06B6D4;
  --color-accent-glow: rgba(6, 182, 212, 0.15);
  --color-success: #22C55E;
  
  --color-bg-light: #F8FAFC;
  --color-bg-dark: #0F172A;
  --color-bg-darker: #090D1A;
  
  --color-card-border: rgba(255, 255, 255, 0.4);
  --color-dark-card-border: rgba(255, 255, 255, 0.08);

  
  --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-heading: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;

  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-in-out;
}


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-light);
  color: #1E293B;
  position: relative;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}


body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 24px 24px;
  background-image: radial-gradient(circle, rgba(148, 163, 184, 0.07) 1.2px, transparent 1.2px);
  pointer-events: none;
  z-index: -10;
}


.container {
  width: 100%;
  max-width: 1248px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}


.gradient-text {
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 50%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.section-tagline {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 16px;
  color: #64748B;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
  .section-subtitle {
    font-size: 14px;
  }
}


.glass-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-card-border);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.03);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.80);
  box-shadow: 0 20px 40px 0 rgba(79, 70, 229, 0.08);
  border-color: rgba(124, 58, 237, 0.35);
}

.glass-card-dark {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-dark-card-border);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  position: relative;
}

.glass-card-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 20px 20px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  pointer-events: none;
  border-radius: inherit;
  z-index: 1;
}

.glass-card-dark:hover {
  background: rgba(15, 23, 42, 0.75);
  border-color: rgba(6, 182, 212, 0.25);
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.3);
}


@keyframes float-slow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes float-fast {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

.animate-float-slow {
  animation: float-slow 6s ease-in-out infinite;
}

.animate-float-fast {
  animation: float-fast 4s ease-in-out infinite;
}


::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-light);
}

::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 20px;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
  text-align: center;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 14px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background-color: var(--color-bg-dark);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--color-primary);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.26);
}

.btn-gradient {
  background: linear-gradient(135deg, #ff6124 0%, #ff8b3c 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 22px 45px rgba(232, 79, 9, 0.24);
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #ff8b3c 0%, #ff6124 100%);
  transform: translateY(-2px);
}




.top-strip {
  background-color: var(--color-bg-darker);
  color: #94A3B8;
  font-size: 11px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-strip-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-strip-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.top-strip-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

.top-strip-link:hover {
  color: #FFFFFF;
}

.top-strip-link svg {
  color: var(--color-accent);
  width: 11px;
  height: 11px;
}

.top-strip-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #E2E8F0;
}

.top-strip-location svg {
  color: var(--color-primary);
  width: 11px;
  height: 11px;
}

@media (max-width: 640px) {
  .top-strip-container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .top-strip-links {
    justify-content: center;
    gap: 12px;
  }
}


header.sticky-header-container {
  position: sticky;
  top: 20px;
  z-index: 100;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  margin-bottom: -72px;
  pointer-events: none;
}

.nav-bar {
  width: 100%;
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  border-radius: 0;
  pointer-events: auto;
  transition: var(--transition-smooth), background-color 0.5s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.nav-bar.scrolled {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.nav-bar.not-scrolled {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #0F172A;
}


.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.nav-logo-svg {
  width: 36px;
  height: 36px;
  transition: transform 0.5s ease;
}

.nav-brand:hover .nav-logo-svg {
  transform: scale(1.05);
}

.nav-brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.nav-brand-sub {
  font-weight: 600;
  color: #64748B;
}

.scrolled .nav-brand-sub {
  color: #94A3B8;
}


.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 4px;
  position: relative;
  transition: color 0.3s ease;
  color: inherit;
}

.not-scrolled .nav-link {
  color: #64748B;
}

.not-scrolled .nav-link.active {
  color: #0F172A;
}

.not-scrolled .nav-link:hover {
  color: #0F172A;
}

.scrolled .nav-link {
  color: #94A3B8;
}

.scrolled .nav-link.active {
  color: #FFFFFF;
}

.scrolled .nav-link:hover {
  color: #FFFFFF;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 9999px;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link.active::after {
  transform: scaleX(1);
}


.nav-actions-desktop {
  display: flex;
  align-items: center;
  gap: 16px;
}


.nav-search-cue {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.nav-search-cue svg {
  width: 12px;
  height: 12px;
}

.not-scrolled .nav-search-cue {
  background-color: rgba(241, 245, 249, 0.7);
  border-color: rgba(226, 232, 240, 0.5);
  color: #64748B;
}

.scrolled .nav-search-cue {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #94A3B8;
}

.nav-search-key {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  border: 1px solid;
}

.not-scrolled .nav-search-key {
  background-color: #FFFFFF;
  border-color: #E2E8F0;
  color: #475569;
}

.scrolled .nav-search-key {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}


.nav-toggle-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 6px;
}

.nav-toggle-btn svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 768px) {
  .nav-links-desktop, .nav-actions-desktop {
    display: none;
  }
  .nav-toggle-btn {
    display: block;
  }
}


.mobile-menu-panel {
  display: none;
  position: absolute;
  top: 80px;
  left: 16px;
  right: 16px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 100;
}

.mobile-menu-panel.open {
  display: flex;
}

.not-scrolled .mobile-menu-panel {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(226, 232, 240, 0.6);
  color: #0F172A;
}

.scrolled .mobile-menu-panel {
  background: rgba(15, 23, 42, 0.98);
  border-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu-link {
  display: block;
  width: 100%;
  padding: 8px 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.mobile-menu-link:hover, .mobile-menu-link.active {
  color: var(--color-primary);
}

.mobile-menu-cta {
  border-top: 1px solid rgba(226, 232, 240, 0.2);
  padding-top: 12px;
}


.hero-section {
  position: relative;
  padding-top: 180px;
  padding-bottom: 110px;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.48)), url('../images/hero_it_infrastructure.png') center/cover no-repeat;
  background-blend-mode: overlay;
  color: #ffffff;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.45), rgba(15, 23, 42, 0.78));
  pointer-events: none;
}

.hero-glow-1 {
  display: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 350px;
  height: 350px;
  background-color: rgba(124, 58, 237, 0.08);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-3 {
  position: absolute;
  top: 30%;
  left: 40%;
  width: 300px;
  height: 300px;
  background-color: rgba(6, 182, 212, 0.08);
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.hero-tag svg {
  animation: pulse 2s infinite;
  width: 14px;
  height: 14px;
  color: #ffb96b;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 58px;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
  text-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  max-width: 620px;
  margin-bottom: 40px;
  line-height: 1.72;
  font-weight: 500;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
  width: 100%;
}

.hero-actions svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.hero-actions a:hover svg {
  transform: translateX(3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 700px;
}

.hero-stat-card {
  padding: 24px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px);
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 32px;
  color: #FFFFFF;
  margin-bottom: 6px;
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


.hero-media {
  display: none !important;
}

.hero-media-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  padding: 16px;
  border-radius: 32px;
  width: 100%;
  max-width: 430px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #0F172A;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.hero-media-card:hover .hero-img {
  transform: scale(1.05);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 100%);
  pointer-events: none;
}


.hero-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.5);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
}

.hero-badge svg {
  width: 18px;
  height: 18px;
}

.hero-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  color: #0F172A;
}

.hero-badge-sub {
  font-size: 10px;
  color: #64748B;
  font-weight: 700;
}


.hero-badge-left {
  top: 32px;
  left: -40px;
}

.hero-badge-left .hero-badge-icon {
  background-color: rgba(79, 70, 229, 0.1);
  color: var(--color-primary);
}


.hero-badge-right {
  bottom: 40px;
  right: -32px;
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.hero-badge-right .hero-badge-title {
  color: #FFFFFF;
}

.hero-badge-right .hero-badge-sub {
  color: #94A3B8;
}

.hero-badge-right .hero-badge-icon {
  background-color: rgba(6, 182, 212, 0.15);
  color: var(--color-accent);
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-content {
    grid-column: span 12;
    align-items: center;
    text-align: center;
  }
  .hero-media {
    grid-column: span 12;
    justify-content: center;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-desc {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding-top: 140px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-badge-left {
    left: -10px;
  }
  .hero-badge-right {
    right: -10px;
  }
  .hero-image-wrapper {
    height: 300px;
  }
}


.about-section {
  position: relative;
  background-color: rgba(248, 250, 252, 0.5);
  overflow: hidden;
}

.about-glow {
  position: absolute;
  top: 50%;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(6, 182, 212, 0.05);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 64px;
  align-items: center;
}

.about-media {
  grid-column: span 5;
  position: relative;
  height: 440px;
  width: 100%;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.about-img-card-1 {
  background: rgba(255, 255, 255, 0.4);
  padding: 12px;
  position: absolute;
  top: 16px;
  left: 0;
  width: 92%;
  border-radius: 28px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #0F172A;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-media:hover .about-img {
  transform: scale(1.05);
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.6) 0%, transparent 100%);
  pointer-events: none;
}


.about-badge-float {
  position: absolute;
  bottom: 16px;
  right: 0;
  width: 68%;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-badge-float svg {
  width: 20px;
  height: 20px;
}

.about-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: rgba(34, 197, 94, 0.15);
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-badge-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  color: #0F172A;
  margin-bottom: 2px;
}

.about-badge-sub {
  font-size: 10px;
  color: #64748B;
  font-weight: 700;
}

.about-content {
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.about-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  color: #0F172A;
  margin-bottom: 24px;
}

.about-lead {
  font-weight: 600;
  font-size: 18px;
  color: #334155;
  margin-bottom: 16px;
  line-height: 1.6;
}

.about-p {
  font-size: 15px;
  color: #64748B;
  margin-bottom: 16px;
  line-height: 1.6;
}

.about-p-last {
  margin-bottom: 32px;
}

.about-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  margin-bottom: 40px;
}

.about-check-item {
  display: flex;
  gap: 12px;
}

.about-check-icon {
  color: var(--color-primary);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.about-check-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: #0F172A;
  margin-bottom: 4px;
}

.about-check-desc {
  font-size: 12px;
  color: #64748B;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-media {
    grid-column: span 12;
  }
  .about-content {
    grid-column: span 12;
  }
}

@media (max-width: 640px) {
  .about-media {
    height: 380px;
  }
  .about-image-wrapper {
    height: 300px;
  }
  .about-check-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


.services-section {
  position: relative;
  background-color: rgba(248, 250, 252, 0.2);
}

.services-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.services-focus-card {
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--color-card-border);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.services-focus-card:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 70, 229, 0.3);
}

.services-focus-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(79, 70, 229, 0.08);
  color: var(--color-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.services-focus-icon svg {
  width: 24px;
  height: 24px;
}

.services-focus-card:hover .services-focus-icon {
  background-color: var(--color-primary);
  color: #FFFFFF;
}

.services-focus-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: #0F172A;
  margin-bottom: 12px;
}

.services-focus-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

.services-focus-num {
  position: absolute;
  bottom: -15px;
  right: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 96px;
  line-height: 1;
  color: rgba(79, 70, 229, 0.03);
  user-select: none;
  transition: var(--transition-smooth);
}

.services-focus-card:hover .services-focus-num {
  color: rgba(79, 70, 229, 0.06);
  transform: translateY(-4px);
}

@media (max-width: 1024px) {
  .services-focus-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


.services-banner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: center;
  padding: 40px;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.4);
  margin-bottom: 64px;
  text-align: left;
}

.services-banner-media {
  grid-column: span 6;
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
  background-color: #0F172A;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.services-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.services-banner-media:hover .services-banner-img {
  transform: scale(1.02);
}

.services-banner-content {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.services-banner-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.services-banner-tag svg {
  width: 14px;
  height: 14px;
}

.services-banner-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: #0F172A;
}

.services-banner-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

.services-banner-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.services-banner-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #334155;
  font-weight: 600;
}

.services-banner-item svg {
  color: var(--color-success);
  width: 14px;
  height: 14px;
}

@media (max-width: 1024px) {
  .services-banner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .services-banner-media {
    grid-column: span 12;
  }
  .services-banner-content {
    grid-column: span 12;
  }
}

@media (max-width: 640px) {
  .services-banner {
    padding: 24px;
  }
  .services-banner-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .services-banner-media {
    height: 240px;
  }
}


.extended-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 96px;
}

.extended-card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.extended-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 70, 229, 0.2);
}

.extended-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: rgba(79, 70, 229, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.extended-icon svg {
  width: 20px;
  height: 20px;
}

.extended-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: #0F172A;
  margin-bottom: 8px;
}

.extended-desc {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .extended-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .extended-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 60px;
  }
}


.calc-card {
  padding: 48px;
  border-radius: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  text-align: left;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 48px;
  align-items: stretch;
}

.calc-inputs {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.calc-header-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: rgba(79, 70, 229, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.calc-header-icon svg {
  width: 20px;
  height: 20px;
}

.calc-header-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: #0F172A;
}

.calc-header-desc {
  font-size: 13px;
  color: #64748B;
}


.calc-control {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-control-label-bar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.calc-control-val {
  font-weight: 800;
  font-size: 18px;
  color: var(--color-primary);
}

.calc-control-rate {
  font-size: 10px;
  font-weight: 700;
  color: #94A3B8;
  text-transform: uppercase;
  align-self: flex-end;
}


.calc-term-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-term-label {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.calc-term-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.calc-term-btn {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  background-color: #FFFFFF;
  color: #475569;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: var(--transition-smooth);
}

.calc-term-btn:hover {
  border-color: #CBD5E1;
}

.calc-term-btn.active {
  background-color: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.calc-term-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
}

.calc-term-sub {
  font-size: 9px;
  font-weight: 700;
  color: #94A3B8;
}

.calc-term-btn.active .calc-term-sub {
  color: var(--color-accent);
}


.calc-summary {
  grid-column: span 5;
  background: linear-gradient(135deg, #0F172A 0%, #090D1A 100%);
  padding: 32px;
  border-radius: 24px;
  color: #FFFFFF;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-summary-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  background-color: rgba(6, 182, 212, 0.15);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.calc-summary-top {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-summary-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #94A3B8;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.calc-summary-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: #CBD5E1;
}

.calc-summary-row span.val {
  font-weight: 700;
  color: #FFFFFF;
}

.calc-summary-row.discount {
  color: var(--color-accent);
}

.calc-summary-row.discount span.val {
  color: var(--color-accent);
}

.calc-summary-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  margin-top: 8px;
}

.calc-summary-estimate-lbl {
  font-size: 10px;
  font-weight: 700;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calc-summary-estimate-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 30px;
  color: #FFFFFF;
  margin-top: 4px;
}

.calc-summary-disclaimer {
  font-size: 10px;
  color: #94A3B8;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

.calc-summary-cta {
  position: relative;
  z-index: 2;
}

.calc-summary-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.calc-summary-cta a:hover svg {
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .calc-inputs {
    grid-column: span 12;
  }
  .calc-summary {
    grid-column: span 12;
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .calc-card {
    padding: 24px;
  }
  .calc-term-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}


input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #E2E8F0;
  border-radius: 9999px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  border: 2px solid #FFFFFF;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
  transition: transform 0.1s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}


.deals-section {
  position: relative;
  background-color: var(--color-bg-dark);
  color: #FFFFFF;
  overflow: hidden;
}

.deals-glow-1 {
  position: absolute;
  top: -250px;
  left: -100px;
  width: 500px;
  height: 500px;
  background-color: rgba(124, 58, 237, 0.12);
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
}

.deals-glow-2 {
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  background-color: rgba(6, 182, 212, 0.08);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.deals-card {
  padding: 64px;
  border-radius: 32px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.deals-content {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.deals-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 36px;
  color: #FFFFFF;
  margin-bottom: 24px;
  line-height: 1.2;
}

.deals-desc {
  color: #CBD5E1;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 620px;
}

.deals-badges-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  width: 100%;
}

.deals-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.04);
  color: #F8FAFC;
}

.deals-badge-item svg {
  width: 14px;
  height: 14px;
}

.deals-badge-item.highlight {
  background-color: rgba(6, 182, 212, 0.15);
  border-color: rgba(6, 182, 212, 0.3);
  color: var(--color-accent);
}

.deals-content svg.call-icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

.deals-media {
  grid-column: span 5;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.deals-product-wrapper {
  position: relative;
  width: 100%;
  max-width: 280px;
}


.deals-float-badge {
  position: absolute;
  top: -10px;
  left: -20px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
  padding: 12px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #FFFFFF;
  z-index: 10;
}

.deals-float-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 2px;
}

.deals-float-sub {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
  font-weight: 700;
}

.deals-image-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 1;
  background-color: #0F172A;
}

.deals-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.deals-product-wrapper:hover .deals-img {
  transform: scale(1.02);
}

@media (max-width: 1024px) {
  .deals-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px;
  }
  .deals-content {
    grid-column: span 12;
  }
  .deals-media {
    grid-column: span 12;
  }
}

@media (max-width: 640px) {
  .deals-card {
    padding: 32px 24px;
  }
  .deals-title {
    font-size: 28px;
  }
  .deals-float-badge {
    left: -10px;
  }
}


.products-section {
  position: relative;
  overflow: hidden;
}

.products-banner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: center;
  padding: 40px;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.4);
  margin-bottom: 48px;
  text-align: left;
}

.products-banner-content {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.products-banner-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.products-banner-tag svg {
  width: 14px;
  height: 14px;
}

.products-banner-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: #0F172A;
}

.products-banner-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

.products-banner-partners {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  font-weight: 600;
  color: #64748B;
  margin-top: 8px;
}

.products-banner-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #CBD5E1;
}

.products-banner-media {
  grid-column: span 6;
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
  background-color: #0F172A;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.products-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.products-banner-media:hover .products-banner-img {
  transform: scale(1.02);
}

@media (max-width: 1024px) {
  .products-banner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .products-banner-media {
    grid-column: span 12;
  }
  .products-banner-content {
    grid-column: span 12;
  }
}

@media (max-width: 640px) {
  .products-banner {
    padding: 24px;
  }
  .products-banner-media {
    height: 240px;
  }
}


.filters-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  position: relative;
  z-index: 10;
}

.filter-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 9999px;
  border: 1px solid rgba(226, 232, 240, 0.5);
  background-color: #FFFFFF;
  color: #64748B;
  cursor: pointer;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  color: #0F172A;
  border-color: #CBD5E1;
}

.filter-btn.active {
  background-color: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
}


.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  min-height: 440px;
}

.product-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--color-card-border);
  display: flex;
  flex-direction: column;
  text-align: left;
  height: 100%;
  transition: var(--transition-smooth);
}

.product-card.hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 70, 229, 0.2);
}

.product-card-header {
  height: 176px;
  background-color: #0F172A;
  border-bottom: 1px solid #F1F5F9;
  position: relative;
  overflow: hidden;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-card-img {
  transform: scale(1.05);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.1);
  pointer-events: none;
}

.product-card-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(241, 245, 249, 0.5);
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1E293B;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  z-index: 2;
}

.product-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.product-card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: #0F172A;
  margin-bottom: 12px;
}

.product-card-desc {
  font-size: 13px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.product-card-footer {
  border-top: 1px solid rgba(241, 245, 249, 0.5);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-card-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #64748B;
}

.product-card-stock svg {
  color: var(--color-success);
  width: 14px;
  height: 14px;
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


.whyus-section {
  position: relative;
  background-color: rgba(248, 250, 252, 0.1);
  overflow: hidden;
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.whyus-card {
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--color-card-border);
  text-align: left;
  transition: var(--transition-smooth);
}

.whyus-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 70, 229, 0.2);
}

.whyus-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid transparent;
}

.whyus-icon svg {
  width: 22px;
  height: 22px;
}


.whyus-card:nth-child(1) .whyus-icon, .whyus-card:nth-child(5) .whyus-icon {
  background-color: rgba(79, 70, 229, 0.08);
  border-color: rgba(79, 70, 229, 0.1);
  color: var(--color-primary);
}

.whyus-card:nth-child(2) .whyus-icon, .whyus-card:nth-child(6) .whyus-icon {
  background-color: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.1);
  color: var(--color-accent);
}

.whyus-card:nth-child(3) .whyus-icon {
  background-color: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.1);
  color: var(--color-secondary);
}

.whyus-card:nth-child(4) .whyus-icon {
  background-color: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.1);
  color: var(--color-success);
}

.whyus-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: #0F172A;
  margin-bottom: 12px;
}

.whyus-desc {
  font-size: 13px;
  color: #64748B;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .whyus-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .whyus-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 48px;
}


.contact-info {
  grid-column: span 5;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--color-card-border);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: #0F172A;
  margin-bottom: 12px;
}

.contact-info-desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-banner-card {
  width: 100%;
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.5);
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
  position: relative;
  background-color: #0F172A;
}

.contact-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.contact-info:hover .contact-banner-img {
  transform: scale(1.02);
}

.contact-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.7) 0%, transparent 100%);
  pointer-events: none;
}

.contact-status-badge {
  position: absolute;
  bottom: 12px;
  left: 16px;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-success);
  animation: pulse 2s infinite;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: rgba(79, 70, 229, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
}

.contact-detail-lbl {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94A3B8;
  margin-bottom: 4px;
}

.contact-detail-val {
  font-size: 14px;
  font-weight: 600;
  color: #1E293B;
  line-height: 1.5;
}

.contact-detail-val a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
  display: block;
}

.contact-detail-val a:hover {
  color: var(--color-primary);
}

.contact-map-wrapper {
  width: 100%;
  margin-top: auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.5);
  height: 210px;
}

.contact-map-iframe {
  border: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(0.2) contrast(1.05);
}


.contact-form-container {
  grid-column: span 7;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--color-card-border);
  text-align: left;
}

.contact-form-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: #0F172A;
  margin-bottom: 12px;
}

.contact-form-desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.form-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94A3B8;
  margin-bottom: 8px;
}

.form-input-wrapper {
  position: relative;
  width: 100%;
}

.form-control {
  width: 100%;
  background-color: rgba(241, 245, 249, 0.5);
  border: 1px solid rgba(226, 232, 240, 0.3);
  padding: 14px 16px 14px 44px;
  border-radius: 12px;
  font-size: 14px;
  color: #1E293B;
  outline: none;
  font-family: var(--font-sans);
  transition: var(--transition-smooth);
}

.form-control:focus {
  background-color: #FFFFFF;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.form-icon {
  position: absolute;
  left: 16px;
  bottom: 15px;
  color: #94A3B8;
  pointer-events: none;
  width: 16px;
  height: 16px;
}

textarea.form-control {
  padding-top: 14px;
  resize: none;
}

.form-icon-textarea {
  top: 16px;
  bottom: auto;
}

.form-select-wrapper {
  position: relative;
  width: 100%;
}

.form-select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
}

.form-chevron {
  position: absolute;
  right: 16px;
  bottom: 15px;
  color: #94A3B8;
  pointer-events: none;
  width: 16px;
  height: 16px;
}

.contact-form button svg {
  width: 16px;
  height: 16px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.contact-form button:hover svg {
  transform: translate(2px, -2px);
}


.contact-success-box {
  margin-top: 24px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  background-color: rgba(34, 197, 94, 0.05);
  display: flex;
  gap: 16px;
  align-items: center;
  text-align: left;
}

.contact-success-icon {
  color: var(--color-success);
  flex-shrink: 0;
}

.contact-success-icon svg {
  width: 24px;
  height: 24px;
}

.contact-success-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  color: var(--color-success);
  margin-bottom: 2px;
}

.contact-success-desc {
  font-size: 12px;
  color: #64748B;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info {
    grid-column: span 12;
  }
  .contact-form-container {
    grid-column: span 12;
  }
}

@media (max-width: 640px) {
  .contact-info {
    padding: 24px;
  }
  .contact-form-container {
    padding: 24px;
  }
}


.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 9999px;
  box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.4), 0 8px 10px -5px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.whatsapp-widget:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px 0 rgba(37, 211, 102, 0.5);
}

.whatsapp-widget svg {
  width: 24px;
  height: 24px;
  fill: #FFFFFF;
}

.whatsapp-txt {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: max-width 0.5s ease, opacity 0.5s ease;
}

.whatsapp-widget:hover .whatsapp-txt {
  max-width: 120px;
  opacity: 1;
}


.footer-section {
  background-color: var(--color-bg-darker);
  color: #94A3B8;
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #FFFFFF;
}

.footer-logo-svg {
  width: 32px;
  height: 32px;
}

.footer-logo-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.footer-logo-sub {
  font-weight: 500;
  color: #94A3B8;
}

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.6;
}


.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-social-btn svg {
  width: 15px;
  height: 15px;
}

.footer-social-btn:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 40px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: #94A3B8;
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-link:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}


.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  font-size: 12px;
  color: #64748B;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-col {
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .footer-bottom-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}


.about-keywords-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-keyword {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.about-keyword-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .about-keywords-row {
    gap: 8px;
  }
  .about-keyword {
    font-size: 11px;
  }
  .about-keyword-dot {
    width: 4px;
    height: 4px;
  }
}


.services-unified-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  grid-auto-rows: 1fr; 
  gap: 32px; 
  width: 100%; 
  margin-bottom: 64px;
  align-items: stretch;
}

.service-square-card {
  padding: 36px 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  height: 100%; 
  min-height: 280px; 
  box-sizing: border-box;
  transition: var(--transition-smooth);
}

.service-square-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 70, 229, 0.3);
  box-shadow: 0 20px 40px 0 rgba(79, 70, 229, 0.08);
}

.service-square-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: rgba(79, 70, 229, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.service-square-card:hover .service-square-icon {
  background-color: var(--color-primary);
  color: #FFFFFF;
}

.service-square-icon svg {
  width: 22px;
  height: 22px;
}

.service-square-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  color: #0F172A;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-square-desc {
  font-size: 13px;
  color: #64748B;
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .services-unified-grid {
    grid-template-columns: repeat(2, 1fr); 
    gap: 24px; 
  }
  .service-square-card {
    min-height: 260px;
  }
}

@media (max-width: 768px) {
  .services-unified-grid {
    grid-template-columns: 1fr; 
    gap: 24px; 
  }
  .service-square-card {
    min-height: auto;
  }
}


.hero-media {
  grid-column: span 5;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.hero-illustration-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 24px;
  filter: drop-shadow(0 20px 45px rgba(79, 70, 229, 0.09));
}


.hero-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: #0F172A;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-floating-card .card-icon {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.card-genuine {
  top: 10%;
  left: -12%;
}

.card-repair {
  top: 32%;
  right: -8%;
}

.card-amc {
  bottom: 28%;
  left: -8%;
}

.card-doorstep {
  bottom: 10%;
  right: -10%;
}

@media (max-width: 1200px) {
  .card-genuine { left: -5%; }
  .card-repair { right: -5%; }
  .card-amc { left: -2%; }
  .card-doorstep { right: -5%; }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 48px;
  }
  .hero-content {
    grid-column: span 12 !important;
    align-items: center !important;
    text-align: center !important;
  }
  .hero-actions {
    justify-content: center !important;
  }
  .hero-stats {
    margin: 0 auto !important;
  }
  .hero-media {
    grid-column: span 12 !important;
    margin-top: 24px;
  }
  .hero-illustration-container {
    max-width: 380px;
  }
  .card-genuine { left: -8%; }
  .card-repair { right: -8%; }
  .card-amc { left: -4%; }
  .card-doorstep { right: -6%; }
}

@media (max-width: 480px) {
  .hero-illustration-container {
    max-width: 290px;
  }
  .hero-floating-card {
    padding: 8px 12px;
    font-size: 11px;
  }
  .card-genuine { top: 5%; left: -2%; }
  .card-repair { top: 25%; right: -2%; }
  .card-amc { bottom: 22%; left: 0%; }
  .card-doorstep { bottom: 5%; right: -2%; }
}


.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav-brand:hover .nav-logo-img {
  transform: translateY(-50%) scale(1.04);
}

.nav-bar.not-scrolled .logo-light {
  opacity: 0 !important;
  visibility: hidden !important;
}
.nav-bar.not-scrolled .logo-dark {
  opacity: 1 !important;
  visibility: visible !important;
}

.nav-bar.scrolled .logo-dark {
  opacity: 0 !important;
  visibility: hidden !important;
}
.nav-bar.scrolled .logo-light {
  opacity: 1 !important;
  visibility: visible !important;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
}

.footer-logo:hover .footer-logo-img {
  transform: scale(1.04);
}


.brands-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.brands-wrapper-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 40px 32px 32px 32px;
  position: relative;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.03);
}

.brands-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: #2563EB;
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}

.brands-carousel-container {
  display: flex;
  align-items: center;
  position: relative;
  gap: 16px;
  margin-bottom: 24px;
}

.brands-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
}

.brands-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.brand-slide {
  flex: 0 0 33.333333%; 
  max-width: 33.333333%;
  padding: 0 14px;
  box-sizing: border-box;
}

.brand-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -6px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
}

.brand-logo-img {
  max-width: 85%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.brand-card:hover .brand-logo-img {
  transform: scale(1.06);
}


.brands-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.brands-nav-btn:hover {
  background: #2563EB;
  color: #FFFFFF;
  border-color: #2563EB;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
  transform: scale(1.08);
}

.brands-nav-btn svg {
  width: 20px;
  height: 20px;
}


.brands-dots-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.brands-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CBD5E1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.brands-dot.active {
  background: #0F172A;
  width: 20px;
  border-radius: 999px;
}


.catalogue-hero {
  padding: 150px 0 78px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 52%, #0f172a 100%);
}

.catalogue-hero .section-tagline { color: #67e8f9; }
.catalogue-title { font-family: var(--font-heading); font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.15; margin: 10px 0 16px; }
.catalogue-intro { max-width: 650px; margin: 0 auto; color: rgba(255,255,255,.7); font-size: 1.05rem; line-height: 1.7; }
.catalogue-section { padding: 78px 0 100px; }
.catalogue-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.catalogue-card { overflow: hidden; border-radius: 18px; background: #fff; }
.catalogue-card:hover { transform: translateY(-6px); }
.catalogue-card-media { height: 190px; overflow: hidden; background: #e2e8f0; }
.catalogue-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.catalogue-card:hover .catalogue-card-media img { transform: scale(1.06); }
.catalogue-card-body { padding: 22px; }
.catalogue-card-title { font-family: var(--font-heading); font-size: 1.12rem; color: #0f172a; margin-bottom: 8px; }
.catalogue-card-desc { color: #64748b; font-size: .9rem; line-height: 1.55; min-height: 44px; }
.catalogue-card-link { display: inline-flex; margin-top: 18px; color: var(--color-primary); font-size: .88rem; font-weight: 700; text-decoration: none; }
.catalogue-card-link:hover { color: var(--color-secondary); }

@media (max-width: 900px) { .catalogue-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .catalogue-hero { padding: 128px 0 58px; } .catalogue-section { padding: 55px 0 70px; } .catalogue-grid { grid-template-columns: 1fr; } }

@media (max-width: 992px) {
  .brand-slide {
    flex: 0 0 50%; 
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .brand-slide {
    flex: 0 0 100%; 
    max-width: 100%;
  }
  .brands-wrapper-box {
    padding: 32px 16px 24px 16px;
  }
  .brands-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}


:root {
  --ink: #11182b;
  --muted-ink: #526076;
  --surface: rgba(255, 255, 255, 0.66);
  --surface-strong: rgba(255, 255, 255, 0.84);
  --line: rgba(86, 92, 162, 0.14);
  --shadow-soft: 0 18px 60px rgba(24, 31, 70, 0.11);
  --shadow-lift: 0 28px 70px rgba(47, 47, 125, 0.17);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(6, 182, 212, 0.10), transparent 23rem),
    radial-gradient(circle at 90% 34%, rgba(124, 58, 237, 0.10), transparent 28rem),
    linear-gradient(180deg, #f9fbff 0%, #f2f5fc 48%, #f9fbff 100%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -9;
  opacity: .35;
  background-image: linear-gradient(rgba(79, 70, 229, .028) 1px, transparent 1px), linear-gradient(90deg, rgba(79, 70, 229, .028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

.section-padding { padding-top: 116px; padding-bottom: 116px; }
.section-tagline { padding: 7px 11px; border-radius: 999px; background: rgba(79, 70, 229, .08); border: 1px solid rgba(79, 70, 229, .13); letter-spacing: .11em; }
.section-title { font-size: clamp(2rem, 3.2vw, 3.15rem); letter-spacing: -.045em; }
.section-subtitle { color: var(--muted-ink); }

.glass-card {
  background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.48));
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

header.sticky-header-container { top: 16px; }
.nav-bar {
  min-height: 66px;
  padding: 10px 18px 10px 24px;
  box-shadow: 0 14px 40px rgba(19, 26, 62, .12);
}
.nav-bar.scrolled {
  background: rgba(15, 23, 42, 0.95) !important;
  border-color: rgba(255,255,255,.14) !important;
  color: #FFFFFF !important;
}
.nav-bar.not-scrolled {
  background: rgba(255,255,255,.74) !important;
  border-color: rgba(255,255,255,.8) !important;
  color: #0F172A !important;
}
.nav-bar.scrolled .nav-link,
.nav-bar.scrolled .nav-link.active,
.nav-bar.scrolled .nav-link:hover {
  color: #F8FAFC !important;
}
.nav-links-desktop { gap: 21px; }
.nav-link { font-size: 11px; letter-spacing: .09em; }
.nav-link::after { height: 3px; bottom: -2px; box-shadow: 0 0 12px rgba(6,182,212,.7); }
.btn { border-radius: 12px; font-weight: 750; letter-spacing: .01em; }
.btn-primary, .btn-gradient { box-shadow: 0 10px 24px rgba(79,70,229,.24); }
.btn-primary:hover, .btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(79,70,229,.30); }

.hero-section { min-height: 92vh; padding-top: 190px; padding-bottom: 128px; }
.hero-section::before { display: none; }
.hero-title {
  font-size: clamp(3rem, 5.1vw, 5rem);
  line-height: 1.02;
  max-width: 760px;
  color: #FFFFFF;
  text-shadow: 0 4px 24px rgba(0,0,0,0.55);
}
.hero-title::first-line { letter-spacing: -.065em; }
.hero-desc {
  color: rgba(255, 255, 255, 1);
  max-width: 590px;
  font-size: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.hero-tag {
  padding: 10px 18px;
  box-shadow: 0 8px 24px rgba(79,70,229,0.35);
  background: rgba(79, 70, 229, 0.55);
  border: 1px solid rgba(99, 102, 241, 0.7);
  color: #ffffff;
}
.hero-stats { max-width: 600px; gap: 14px; }
.hero-stat-card {
  position: relative;
  overflow: hidden;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.20);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}
.hero-stat-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #ff8b3c, #ff6124);
}
.hero-stat-num { font-size: 1.62rem; }
.hero-illustration-container { filter: drop-shadow(0 34px 42px rgba(30, 27, 75, .16)); }
.hero-floating-card { border-color: rgba(255,255,255,.72); box-shadow: 0 14px 34px rgba(31, 41, 99, .14); }

.about-section, .services-section, .products-section, .whyus-section, .contact-section { position: relative; }
.services-section::before, .products-section::before, .contact-section::before {
  content: ''; position: absolute; width: 34vw; height: 34vw; max-width: 500px; max-height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,.08), transparent 68%); filter: blur(8px); pointer-events: none;
}
.services-section::before { right: -15vw; top: 8%; }
.products-section::before { left: -15vw; bottom: 3%; }
.contact-section::before { right: -15vw; top: 15%; }

.services-focus-card, .whyus-card { border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 10px 30px rgba(43,52,111,.06); }
.services-focus-card { padding: 30px 27px; }
.services-focus-card:hover, .whyus-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lift); }
.services-focus-card::after, .whyus-card::after { content: ''; display: block; width: 28px; height: 2px; margin-top: 21px; background: linear-gradient(90deg, var(--color-primary), var(--color-accent)); transition: width .35s ease; }
.services-focus-card:hover::after, .whyus-card:hover::after { width: 68px; }
.services-focus-icon, .whyus-icon { box-shadow: 0 10px 22px rgba(79,70,229,.11); }

.deals-card, .products-banner { border: 1px solid rgba(255,255,255,.45); box-shadow: var(--shadow-lift); }
.deals-card { background: linear-gradient(130deg, rgba(15,23,42,.98), rgba(30,27,75,.96)); }
.products-banner { background: linear-gradient(115deg, rgba(255,255,255,.86), rgba(241,245,255,.55)); }
.filters-tabs { gap: 9px; }
.filter-btn { padding: 10px 18px; background: rgba(255,255,255,.64); border-color: var(--line); }
.filter-btn.active { background: linear-gradient(135deg, #273084, #7045bf); border-color: transparent; box-shadow: 0 10px 22px rgba(79,70,229,.20); }
.product-card { border-color: var(--line); border-radius: 20px; box-shadow: 0 10px 28px rgba(30,41,80,.07); }
.product-card:hover { box-shadow: var(--shadow-lift); }
.product-card-header { height: 194px; }
.product-card-overlay { background: linear-gradient(180deg, transparent 40%, rgba(9,13,26,.26)); }
.product-card-tag { backdrop-filter: blur(12px); background: rgba(255,255,255,.80); }
.product-card-body { padding: 26px; }
.product-card-title { letter-spacing: -.02em; }

.contact-info, .contact-form-container { border-radius: 24px; box-shadow: var(--shadow-soft); }
.contact-form-container { border: 1px solid var(--line); }
.footer-section { position: relative; overflow: hidden; background: linear-gradient(135deg, #080d1d, #121a38 55%, #0e1530); }
.footer-section::before { content: ''; position: absolute; width: 500px; height: 500px; left: -250px; top: -320px; border-radius: 50%; background: rgba(79,70,229,.24); filter: blur(40px); }
.footer-grid, .footer-bottom { position: relative; z-index: 1; }
.footer-col-title { position: relative; padding-bottom: 12px; }
.footer-col-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: linear-gradient(90deg, #06b6d4, #8b5cf6); }
.footer-social-btn { background: rgba(255,255,255,.07); }

.catalogue-hero { position: relative; overflow: hidden; background: linear-gradient(125deg, #070d1f, #242365 55%, #111b3d); }
.catalogue-hero::after { content: ''; position: absolute; width: min(70vw, 750px); height: min(70vw, 750px); border: 1px solid rgba(255,255,255,.13); border-radius: 50%; right: -20vw; top: -45%; box-shadow: 0 0 0 46px rgba(255,255,255,.025), 0 0 0 92px rgba(255,255,255,.018); }
.catalogue-hero .container { position: relative; z-index: 1; }
.catalogue-card { border: 1px solid var(--line); box-shadow: 0 10px 28px rgba(30,41,80,.07); }
.catalogue-card:hover { box-shadow: var(--shadow-lift); }
.catalogue-card-media { height: 210px; }
.catalogue-card-body { padding: 24px; }

@media (max-width: 768px) {
  .section-padding { padding-top: 78px; padding-bottom: 78px; }
  .hero-section { min-height: auto; padding-top: 145px; padding-bottom: 84px; }
  .hero-section::before { top: 125px; right: 20px; opacity: .55; }
  .hero-stats { gap: 10px; }
  .hero-stat-card { padding: 13px 11px; }
  .services-focus-card { padding: 25px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}


.services-page-main {
  padding-bottom: 80px;
}

.services-page-hero {
  padding: 140px 0 70px;
  background: linear-gradient(135deg, rgba(232, 79, 9, 0.12), rgba(6, 182, 212, 0.08));
}

.services-page-title {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.2;
  margin: 16px 0 14px;
  color: var(--ink);
}

.services-page-intro {
  max-width: 780px;
  font-size: 1.04rem;
  color: var(--muted-ink);
}

.services-page-section {
  padding-top: 36px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.service-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 24px;
}

.service-card-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--ink);
}

.service-card-text {
  color: var(--muted-ink);
  line-height: 1.75;
  margin: 0;
}

.services-cta-card {
  margin-top: 30px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(232,79,9,0.12), rgba(6,182,212,0.1));
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-cta-card h3 {
  margin: 0;
  color: var(--ink);
}

.services-cta-card p {
  margin: 0;
  color: var(--muted-ink);
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-page-hero {
    padding-top: 120px;
  }
}


.contact-page-main {
  padding-bottom: 80px;
}

.contact-page-hero {
  padding: 140px 0 70px;
  background: linear-gradient(135deg, rgba(232, 79, 9, 0.12), rgba(6, 182, 212, 0.08));
}

.contact-page-title {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.2;
  margin: 16px 0 14px;
  color: var(--ink);
}

.contact-page-intro {
  max-width: 780px;
  font-size: 1.04rem;
  color: var(--muted-ink);
}

.contact-page-section {
  padding-top: 36px;
}

@media (max-width: 768px) {
  .contact-page-hero {
    padding-top: 120px;
  }
}


:root {
  --color-primary: #e84f09;
  --color-secondary: #f97316;
  --color-accent: #e84f09;
  --color-bg-light: #f8f7ed;
  --ink: #1e1b16;
  --muted-ink: #6a645c;
  --line: rgba(51, 40, 25, .14);
}

body {
  background: #f8f7ed;
  color: var(--ink);
}
body::before { background-image: none; }
body::after { display: none; }

.top-strip {
  min-height: 30px;
  background: #e84f09;
  color: #fff;
}
.top-strip-link, .top-strip-location { color: #fff; font-size: 11px; }
.top-strip-link:hover { color: #fff2e8; }

header.sticky-header-container { top: 0; max-width: none; padding: 0; margin-bottom: -74px; }
.nav-bar, .nav-bar.not-scrolled, .nav-bar.scrolled {
  width: 100%;
  max-width: none;
  min-height: 76px;
  margin: 0 auto;
  padding: 12px 36px;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: rgba(255,255,249,.96);
  box-shadow: 0 1px 0 rgba(41,32,19,.12);
  backdrop-filter: blur(14px);
}
.nav-links-desktop { gap: 30px; }
.nav-link, .not-scrolled .nav-link, .scrolled .nav-link { color: #5e584f; font-size: 12px; font-weight: 650; letter-spacing: 0; text-transform: none; }
.not-scrolled .nav-link.active, .scrolled .nav-link.active, .nav-link:hover, .not-scrolled .nav-link:hover, .scrolled .nav-link:hover { color: #1e1b16; }
.nav-link::after { background: #e84f09; box-shadow: none; height: 2px; bottom: -6px; }
.nav-actions-desktop .btn { padding: 12px 17px; font-size: 12px; color: #fff; background: #e84f09; box-shadow: none; border-radius: 7px; }
.nav-logo-img { max-height: 38px; }


.section-padding { padding: 106px 0; }
.section-tagline { padding: 0; border: 0; border-radius: 0; background: transparent; color: #e84f09; font-size: 11px; letter-spacing: .12em; }
.section-title { color: #1e1b16; font-size: clamp(2.35rem, 4vw, 4rem); line-height: 1; letter-spacing: -.065em; }
.section-subtitle, .about-p, .about-lead { color: var(--muted-ink); }
.about-section { background: #f8f7ed; }
.about-section::before { content: '01'; position: absolute; right: 4vw; top: 70px; color: rgba(232,79,9,.10); font: 800 8rem/1 var(--font-heading); letter-spacing: -.1em; }
.about-grid { grid-template-columns: .82fr 1.18fr; gap: clamp(42px, 7vw, 110px); align-items: center; }
.about-media-feature { display: block; position: relative; min-height: 520px; }
.about-media-feature > img { width: 82%; height: 520px; object-fit: cover; border-radius: 8px; box-shadow: 0 22px 50px rgba(59,42,20,.15); }
.about-media-feature::after { content: ''; position: absolute; width: 42%; height: 142px; right: 0; bottom: 0; border-radius: 7px; background: url('../images/hero_it_illustration.png') center/cover no-repeat; box-shadow: 0 18px 40px rgba(59,42,20,.18); }
.about-experience-badge { position: absolute; z-index: 1; left: 57%; bottom: 105px; width: 128px; height: 128px; border: 4px solid #fff; border-radius: 50%; background: #e84f09; color: #fff; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; box-shadow: 0 14px 30px rgba(117,44,8,.26); }
.about-experience-badge strong { font: 800 2.2rem/1 var(--font-heading); letter-spacing: -.07em; }
.about-experience-badge span { margin-top: 5px; font-size: 10px; line-height: 1.25; text-transform: uppercase; letter-spacing: .07em; }
.about-content { text-align: left; grid-column: auto; align-items: flex-start; max-width: none; }
.about-title { color: #1e1b16; font-size: clamp(2rem, 3.3vw, 3.4rem); line-height: 1.05; letter-spacing: -.06em; }
.about-check-grid { border-top: 1px solid rgba(51,40,25,.12); }
.about-check-item { border-bottom: 1px solid rgba(51,40,25,.12); padding: 17px 0; }
.about-check-icon { color: #e84f09; }
.about-check-title { color: #29241d; }
.about-content .btn-primary { border-radius: 7px; background: #e84f09; box-shadow: none; }

.services-section, .products-section, .whyus-section, .contact-section { background: #fffef7; }
.services-section::before, .products-section::before, .contact-section::before { display: none; }
.service-square-card, .services-focus-card, .whyus-card, .product-card, .catalogue-card { border-color: rgba(51,40,25,.12); border-radius: 8px; background: #fff; box-shadow: none; }
.service-square-card:hover, .services-focus-card:hover, .whyus-card:hover, .product-card:hover, .catalogue-card:hover { border-color: #e84f09; box-shadow: 0 16px 30px rgba(62,45,22,.10); }
.service-square-icon, .services-focus-icon, .whyus-icon { background: rgba(232,79,9,.10); color: #e84f09; box-shadow: none; }
.products-banner, .deals-card { border-radius: 8px; box-shadow: none; }
.products-banner { border-color: rgba(51,40,25,.12); background: #f1efe2; }
.deals-card { background: #231d16; }
.filter-btn { border-radius: 6px; border-color: rgba(51,40,25,.16); background: #fff; }
.filter-btn.active { background: #e84f09; box-shadow: none; }
.product-card-header { height: 205px; }
.product-card-tag { border-radius: 5px; color: #e84f09; }

.footer-section { background: #211c16; }
.footer-section::before { background: rgba(232,79,9,.15); }
.footer-col-title::after { background: #e84f09; }
.footer-social-btn:hover { background: #e84f09; border-color: #e84f09; }

@media (max-width: 768px) {
  .top-strip-location { display: none; }
  .nav-bar, .nav-bar.not-scrolled, .nav-bar.scrolled { width: 100%; min-height: 67px; padding: 10px 22px; }
  .hero-section { min-height: 650px; padding: 135px 0 70px; background-position: 62% center; }
  .hero-title { font-size: clamp(3rem, 14vw, 4.35rem); }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-stat-card, .glass-card.hero-stat-card { padding-right: 8px; }
  .hero-stat-num { font-size: 1.35rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media-feature { min-height: 420px; }
  .about-media-feature > img { height: 420px; }
  .about-section::before { font-size: 5.5rem; }
}
