/* ==========================================================================
   GenAuto Website Styles
   ========================================================================== */

/* ==========================================================================
   CSS Variables / Design Tokens
   ========================================================================== */

:root {
  /* Colors - Brand */
  --color-primary: #C10007;
  --color-primary-gradient: linear-gradient(180deg, #FD828B -12.86%, #E92334 190%);
  --color-dark-brown: #2A0800;

  /* Colors - Zinc Scale */
  --color-zinc-50: #FAFAFA;
  --color-zinc-100: #F4F4F5;
  --color-zinc-200: #E4E4E7;
  --color-zinc-300: #D4D4D8;
  --color-zinc-500: #71717B;
  --color-zinc-600: #52525C;
  --color-zinc-700: #3F3F47;
  --color-zinc-900: #18181B;

  /* Colors - Neutral */
  --color-white: #FFFFFF;
  --color-black: #000000;

  /* Typography */
  --font-primary: 'Maison', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-accent: 'Aeonik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Font Sizes */
  --fs-hero: clamp(2.5rem, 5vw, 4.5rem);
  --fs-h1: clamp(2rem, 4vw, 3rem);
  --fs-h2: clamp(1.5rem, 3vw, 2rem);
  --fs-h3: clamp(1.125rem, 2vw, 1.5rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-tiny: 0.75rem;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Layout */
  --container-max-width: 1400px;
  --container-padding: 1.5rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0px 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0px -12px 60px 3px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0px 20px 80px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--color-zinc-700);
  background-color: var(--color-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-zinc-900);
}

/* ==========================================================================
   Layout Components
   ========================================================================== */

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  background-color: var(--color-white);
  box-shadow: none;
  z-index: 1000;
  padding: 0;
  margin-bottom: 63px;
}

.container-header {
  max-width: 1512px;
  margin: 0 auto;
  padding: 59px 101px 0;
}

.header-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 1307px;
  height: 56.79px;
  gap: 103px;
  margin: 0 auto;
}

/* Logo Styling */
.logo {
  width: 209.22px;
  height: 56.79px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Header Navigation Wrapper */
.header-nav-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 972px;
  height: 48px;
  gap: 171px;
  margin: 0 auto;
}

/* Navigation Styling */
.nav {
  margin: 0 auto;
}

.nav-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 400px;
  height: 17px;
  gap: 48px;
  margin: 0 auto;
  padding: 0;
}

.nav-link {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 106.3%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #27272A;
  transition: color var(--transition-base);
  display: flex;
  align-items: center;
  gap: 4px;
  height: 17px;
  white-space: nowrap;
}

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

/* Active navigation link */
.nav-link.active {
  color: #C10007;
}

/* Navigation dropdown */
.nav-dropdown {
  display: flex;
  align-items: center;
}

.nav-dropdown .nav-link {
  width: 109px;
}

/* Dropdown icon */
.nav-dropdown .nav-link i {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

/* Header Actions (Phone + Button) */
.header-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 329px;
  height: 48px;
  gap: 31px;
  margin: 0 auto;
}

.header-phone {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 106.3%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #C10007;
  text-decoration: none;
  transition: opacity var(--transition-base);
  width: auto;
  min-width: 133px;
  height: 17px;
  white-space: nowrap;
}

.header-phone:hover {
  opacity: 0.8;
}

/* Mobile Menu Toggle (Hidden by default, shown on mobile) */
@media (max-width: 768px) {
  .header-nav-wrapper {
    display: none;
  }

  .header-nav-wrapper.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-md);
    gap: var(--spacing-md);
  }

  .nav-list {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .header-actions {
    flex-direction: column;
    width: 100%;
    gap: var(--spacing-sm);
  }

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

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  position: relative;
  padding: 0;
  background-color: var(--color-white);
  min-height: 1079px;
  margin-bottom: -200px;
}

.hero .container {
  max-width: 1512px;
  padding: 0 101px;
  position: relative;
  min-height: 1079px;
}

.hero-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  padding-top: 63px;
  margin-bottom: 0;
}

.hero-text {
  width: 725px;
}

.hero-title {
  width: 725px;
  height: 157px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 72px;
  line-height: 106.3%;
  letter-spacing: -0.02em;
  color: #2A0800;
  margin-bottom: 29px;
}

.hero-title .highlight {
  color: var(--color-primary);
  font-weight: 600;
}

.hero-features {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 671px;
  height: 21px;
  padding: 0;
  gap: 29px;
  margin-top: 0;
}

.feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3px;
  height: 21px;
}

.feature-icon {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  font-size: 18px;
}

.feature-item span {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: #3F3F47;
  white-space: nowrap;
}

.hero-description {
  position: absolute;
  width: 530px;
  height: 75px;
  left: 785px;
  top: 70px;
  opacity: 1;
  transform: rotate(0deg);
}

.hero-description p {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 158%;
  color: #52525C;
}

/* Hero Image */
.hero-image {
  position: absolute;
  width: 100vw;
  max-width: none;
  height: 612px;
  left: 50%;
  transform: translateX(-50%);
  top: 367px;
  z-index: 1;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
}

/* Contact Card */
.contact-card {
  position: absolute;
  width: 530px;
  height: auto;
  min-height: 480px;
  right: 102px;
  top: 240px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  gap: 32px;
  background-color: #FFFFFF;
  border: 1px solid #E4E4E7;
  box-shadow: 0px -12px 60px 3px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
}

.contact-card-header {
  width: 466px;
  height: 85px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.contact-card-header h3 {
  width: 466px;
  height: 32px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #18181B;
  margin: 0;
}

.contact-card-header h3 .highlight-red {
  color: #C10007;
  font-weight: 700;
}

.contact-card-header p {
  width: 466px;
  height: 40px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #3F3F47;
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */

.contact-form {
  width: 466px;
  height: 299px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.form-row {
  width: 466px;
  height: 44px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 227px;
  height: 44px;
  padding: 12px 8px;
  gap: 8px;
  background: #F4F4F5;
  border-radius: 4px;
}

.form-group input,
.form-group textarea {
  flex: 1;
  padding: 0;
  background-color: transparent;
  border: none;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: #18181B;
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #71717B;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
}

.form-group:has(input:focus),
.form-group:has(textarea:focus) {
  box-shadow: 0 0 0 2px var(--color-primary);
}

.form-group.full-width {
  width: 466px;
  height: 112px;
  padding: 12px 8px;
  align-items: flex-start;
}

.form-group textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 20px;
}

.form-group input.error,
.form-group textarea.error {
  box-shadow: 0 0 0 2px #EF4444;
}

.error-message {
  font-size: 0.8125rem;
  color: #EF4444;
  min-height: 1rem;
  display: block;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 466px;
  height: 51px;
  padding: 16px 8px;
  gap: 8px;
  background: linear-gradient(180deg, #FD828B -12.86%, #E92334 190%);
  border-radius: 4px;
  color: var(--color-white);
  box-shadow: 0px 4px 12px rgba(193, 0, 7, 0.2);
  font-family: 'Aeonik', var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
}

.about .btn-primary {
  width: 178px;
  height: 56px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 24px rgba(193, 0, 7, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

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

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

.btn-dark {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 165px;
  height: 48px;
  padding: 12px 24px;
  gap: 8px;
  background-color: #18181B;
  color: #F4F4F5;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 148%;
}

.btn-dark:hover {
  background-color: var(--color-black);
  transform: translateY(-2px);
}

.btn-dark .btn-arrow {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.btn-dark i {
  width: 16px;
  height: 16px;
  background: #E7000B;
}

.btn-newsletter {
  padding: 0.75rem 1.5rem;
  background: var(--color-primary-gradient);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-accent);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.btn-newsletter:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 16px rgba(193, 0, 7, 0.3);
}

/* ==========================================================================
   Products & Expertise Section
   ========================================================================== */

.products-expertise {
  padding: 80px 0;
  background-color: var(--color-white);
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.products-expertise .container {
  max-width: 1512px;
  padding: 0 104px;
  position: relative;
}

.products-expertise-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 68px;
  justify-content: flex-start;
}

/* Expertise Content (Left Side) */
.expertise-content {
  display: flex;
  flex-direction: column;
  width: 592px;
  height: 506px;
  gap: 63px;
}

.expertise-header {
  display: flex;
  flex-direction: column;
  width: 592px;
  height: 275px;
  gap: 31px;
}

.expertise-badge {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 145px;
  height: 31px;
  padding: 8px 16px;
  gap: 8px;
  border: 1px solid #E7000B;
  border-radius: 32px;
  font-family: var(--font-primary);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 106.3%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #27272A;
}

.expertise-title {
  width: 592px;
  height: 120px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 56px;
  line-height: 106.3%;
  color: #27272A;
  margin: 0;
}

.expertise-description {
  width: 592px;
  height: 72px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 148%;
  color: #3F3F47;
  margin: 0;
}

.expertise-features {
  display: flex;
  flex-direction: column;
  width: 421px;
  height: 168px;
  gap: 40px;
}

.expertise-features-row {
  display: flex;
  flex-direction: row;
  width: 421px;
  height: 28px;
  gap: 32px;
}

.expertise-feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 28px;
  gap: 12px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 148%;
  color: #3F3F47;
}

.expertise-feature-item span {
  white-space: nowrap;
}

.expertise-check-circle {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.expertise-check-circle .check-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.expertise-check-circle i {
  width: 18px;
  height: 18px;
  font-size: 12px;
  color: var(--color-primary);
  position: absolute;
  left: 5px;
  top: 4px;
}

/* Products Grid (Right Side) */
.products-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  width: 638px;
  height: 911px;
  gap: 33px 22px;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 308px;
  height: 451px;
  padding: 0px 0px 24px;
  gap: 24px;
  background-color: var(--color-white);
  border: 1px solid #D4D4D8;
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 308px;
  height: 216px;
  overflow: hidden;
  background-color: #F5F5F5;
}

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

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-content {
  width: 270px;
  height: 187px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 45px;
}

.product-info {
  display: flex;
  flex-direction: column;
  width: 270px;
  gap: 4px;
}

.product-info h3 {
  width: 270px;
  height: 27px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 18px;
  line-height: 148%;
  color: #18181B;
  margin: 0;
}

.product-info p {
  width: 270px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 148%;
  color: #3F3F47;
  margin: 0;
}

.product-link {
  width: 270px;
  height: 15px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  line-height: 106.3%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #71717B;
  transition: color var(--transition-base);
  position: relative;
}

.product-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-base);
}

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

.product-link:hover::after {
  width: 3rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about {
  position: relative;
  width: 100%;
  min-height: 976px;
  padding: 80px 0;
  background-color: #27272A;
  color: var(--color-white);
  margin: 80px 0 0 0;
}

.about .container {
  max-width: 1512px;
  padding: 0 104px;
  position: relative;
}

.about-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 1303px;
  height: 553px;
  gap: 68px;
  margin: 0 auto 139px;
}

/* Motorcycle Image (Left) */
.about-image {
  width: 310px;
  height: 553px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.about-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

/* About Content (Center) */
.about-content {
  display: flex;
  flex-direction: column;
  width: 440px;
  height: 389px;
  gap: 56px;
}

.about-badge {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 106px;
  height: 31px;
  padding: 8px 16px;
  gap: 8px;
  border: 1px solid #E7000B;
  border-radius: 32px;
  font-family: var(--font-primary);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 106.3%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #F4F4F5;
}

.about-title {
  width: 514px;
  height: 86px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 40px;
  line-height: 106.3%;
  color: #FAFAFA;
  margin: 0;
  position: relative;
  top: -25px;
  margin-bottom: -25px;
}

.about-description {
  width: 434px;
  height: 96px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 148%;
  color: #E4E4E7;
  margin: 0;
}

/* Mission/Vision Container (Right) */
.mission-vision-container {
  display: flex;
  flex-direction: column;
  width: 417px;
  height: 553px;
  gap: 32px;
}

.mission-vision-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 417px;
  height: 112px;
  gap: 38px;
}

.mission-vision-text {
  display: flex;
  flex-direction: column;
  width: 306px;
  height: 112px;
  gap: 4px;
  margin: 0 auto;
}

.mission-vision-text h3 {
  width: 306px;
  height: 36px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 24px;
  line-height: 148%;
  color: #E4E4E7;
  margin: 0;
}

.mission-vision-text p {
  width: 306px;
  height: 72px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 148%;
  color: #9F9FA9;
  margin: 0;
}

.mission-vision-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #E7000B;
  margin: 0 auto;
}

.mission-vision-icon .mission-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.mission-vision-divider {
  width: 417px;
  height: 0px;
  border: 1px solid #52525C;
}

.mission-vision-image {
  width: 417px;
  height: 233px;
  border-radius: 8px;
  overflow: hidden;
}

.mission-vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Utility Classes for Sections */
.section-title {
  font-size: var(--fs-h2);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-subtitle {
  font-size: var(--fs-h1);
  font-weight: 700;
  color: var(--color-zinc-900);
  margin-bottom: var(--spacing-lg);
}

/* Partners Section (Inside About) */
.partners-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 1298.09px;
  height: 62.75px;
  gap: 0;
  padding-top: 32px;
  border-top: none;
  margin: 0 auto;
}

.partners-label {
  width: 310px;
  height: 54px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 148%;
  color: #9F9FA9;
  margin: 0;
  padding-right: 0;
}

.partners-logos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 988.09px;
  height: 62.75px;
  gap: 77.07px;
  flex: 1;
}

.partner-logo {
  transition: transform var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo:hover {
  transform: scale(1.1);
}

.partner-logo img {
  max-height: 62.75px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(88%) sepia(0%) saturate(0%) hue-rotate(224deg) brightness(92%) contrast(88%);
  transition: filter var(--transition-base);
}

.partner-logo:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(237deg) brightness(110%) contrast(110%);
}

/* ==========================================================================
   Flagship Products Section
   ========================================================================== */

.flagship-products {
  padding: 80px 0;
  background-color: var(--color-white);
  position: relative;
}

.flagship-products .container {
  max-width: 1512px;
  padding: 0 104px;
  position: relative;
}

.flagship-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1304px;
  height: 112px;
  gap: 21px;
  margin: 0 auto 43px;
}

.flagship-badge {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 186px;
  height: 31px;
  padding: 8px 16px;
  gap: 8px;
  border: 1px solid #E7000B;
  border-radius: 32px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 13.5px;
  line-height: 106.3%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #27272A;
}

.flagship-title {
  width: 717px;
  height: 60px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 56px;
  line-height: 106.3%;
  text-align: center;
  color: #27272A;
  margin: 0;
}

.flagship-products-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  width: 1304px;
  height: 356px;
  margin: 0 auto 34px;
}

/* Flagship Card Styles */
.flagship-card {
  position: relative;
  border-radius: 8px;
  overflow: visible;
  width: 308px;
  height: 356px;
  background: #F5F5F5;
  transition: all 0.4s ease;
  cursor: pointer;
}

.flagship-card.flagship-card-expanded {
  width: 640px;
  background: transparent;
  cursor: default;
}

/* Simple View (Collapsed State) */
.flagship-card-simple-view {
  position: relative;
  width: 100%;
  height: 100%;
}

.flagship-card-simple-view .flagship-card-title {
  position: absolute;
  width: auto;
  height: 27px;
  left: 24px;
  top: 24px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 18px;
  line-height: 148%;
  color: #18181B;
  margin: 0;
  z-index: 2;
}

.flagship-card-simple-view .flagship-card-image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flagship-card-simple-view .flagship-card-image img {
  max-width: 85%;
  max-height: 70%;
  object-fit: contain;
}

/* Detailed View (Expanded State) */
.flagship-card-detailed-view {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 24px;
  gap: 40px;
  width: 100%;
  height: 100%;
  border: 1px solid #D4D4D8;
  border-radius: 8px;
  background: var(--color-white);
}

.flagship-card-image-container {
  width: 284px;
  height: 303px;
  background: #F5F5F5;
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flagship-card-detailed-view .flagship-card-image img {
  max-width: 85%;
  max-height: 65%;
  object-fit: contain;
}

.flagship-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 268px;
}

.flagship-card-content .flagship-card-title {
  width: 268px;
  height: 27px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 18px;
  line-height: 148%;
  color: #18181B;
  margin: 0;
}

.flagship-card-description {
  width: 268px;
  height: 96px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 148%;
  color: #3F3F47;
  margin: 0;
}

.flagship-card-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 225px;
  height: 70px;
}

.flagship-tag {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  gap: 8px;
  border: 1px solid #D4D4D8;
  border-radius: 32px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 14px;
  line-height: 106.3%;
  color: #52525C;
  white-space: nowrap;
}

/* Navigation Arrows */
.flagship-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 80px;
  height: 34px;
  margin: 0 auto;
}

.flagship-nav-btn {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 8px;
  gap: 8px;
  width: 34px;
  height: 34px;
  border: 1px solid #D4D4D8;
  border-radius: 32px;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
}

.flagship-nav-btn:hover {
  border-color: var(--color-primary);
  background-color: var(--color-zinc-50);
}

.flagship-nav-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */

.why-choose-us {
  padding: 80px 0;
  background-color: #F5F5F5;
  position: relative;
}

.why-choose-us .container {
  max-width: 1512px;
  padding: 0 104px;
  position: relative;
}

.why-choose-us-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 1304px;
  height: 726px;
  margin: 0 auto 40px;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 99px 80px;
  box-sizing: border-box;
}

/* Left Content */
.why-choose-us-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 31px;
  width: auto;
  height: auto;
  position: relative;
  flex: 1;
}

.why-choose-us-badge {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 159px;
  height: 31px;
  padding: 8px 16px;
  gap: 8px;
  border: 1px solid #E7000B;
  border-radius: 32px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 13.5px;
  line-height: 106.3%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #27272A;
}

.why-choose-us-title {
  width: 633px;
  height: 120px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 56px;
  line-height: 106.3%;
  color: #27272A;
  margin: 0;
}

.why-choose-us-description {
  width: 641px;
  height: 72px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 148%;
  color: #3F3F47;
  margin: 0;
}

.why-choose-us-features {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 389px;
  height: 80px;
}

.why-choose-us-feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 389px;
  height: 28px;
}

.why-choose-us-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.why-choose-us-check .check-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.why-choose-us-feature span {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 148%;
  color: #3F3F47;
}

.why-choose-us-content .btn-dark {
  width: 221px;
  height: 48px;
}

.why-choose-contact-btn .btn-arrow {
  transform: scaleX(-1);
}

/* Right Image */
.why-choose-us-image {
  position: relative;
  width: 412px;
  height: 527px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  margin-left: 60px;
  flex-shrink: 0;
}

.why-choose-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stats Cards */
.stats-cards {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  width: 1304px;
  height: 124px;
  margin: 0 auto;
}

.stat-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 30px 31px;
  gap: 24px;
  width: 308px;
  height: 124px;
  background: #27272A;
  border-radius: 8px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 32px;
  line-height: 106.3%;
  color: #FFFFFF;
  margin: 0;
}

.stat-label {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 148%;
  color: #D4D4D8;
  margin: 0;
}

/* ==========================================================================
   Map and Address Section
   ========================================================================== */

.map-address {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.map-background {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.map-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.address-card {
  box-sizing: border-box;
  position: absolute;
  width: 527px;
  height: 536px;
  right: 104px;
  top: 50%;
  transform: translateY(-50%);
  background: #FFFFFF;
  border: 1px solid #D4D4D8;
  border-radius: 8px;
  padding: 45px 40px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.address-card-title {
  width: 320px;
  height: 78px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 32px;
  line-height: 122%;
  color: #27272A;
  margin: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 374px;
}

.contact-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-box {
  box-sizing: border-box;
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: #FFFFFF;
  border: 0.8px solid #D4D4D8;
  border-radius: 6.4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.contact-label {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 12px;
  line-height: 106.3%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9F9FA9;
}

.contact-value {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 18px;
  line-height: 148%;
  color: #3F3F47;
  text-decoration: none;
  transition: color var(--transition-base);
}

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

.contact-info p.contact-value,
.contact-info a.contact-address {
  text-transform: capitalize;
  margin: 0;
}

.contact-info a.contact-address {
  display: block;
  cursor: pointer;
}

/* ==========================================================================
   Expert Insights Section
   ========================================================================== */

.expert-insights {
  padding: 80px 0;
  background-color: var(--color-white);
  position: relative;
}

.expert-insights .container {
  max-width: 1512px;
  padding: 0 104px;
  position: relative;
}

.expert-insights-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  width: 1304px;
  height: 154px;
  margin: 0 auto 80px;
}

.expert-insights-badge {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  gap: 8px;
  width: 159px;
  height: 31px;
  border: 1px solid #E7000B;
  border-radius: 32px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 13.5px;
  line-height: 106.3%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #27272A;
}

.expert-insights-title {
  width: 870px;
  height: auto;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 47.5px;
  line-height: 106.3%;
  text-align: center;
  color: #27272A;
  margin: 0;
}

.expert-insights-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  width: 1304px;
  height: 919px;
  margin: 0 auto;
}

/* Featured Article (Large) */
.insight-featured {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 56px;
  width: 1304px;
  height: 450px;
}

.insight-featured .insight-image {
  margin: 0 auto;
  width: 706px;
  height: 450px;
  border-radius: 10.86px;
  overflow: hidden;
  background: #D9D9D9;
}

.insight-featured .insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-featured .insight-content {
  margin: 0 auto;
  width: 524px;
  height: 225px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.insight-featured .insight-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 524px;
  height: 97px;
}

.insight-featured .insight-date {
  width: 524px;
  height: 13px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 12px;
  line-height: 106.3%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #E7000B;
}

.insight-featured .insight-title {
  width: 524px;
  height: 68px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 32px;
  line-height: 106.3%;
  color: #27272A;
  margin: 0;
}

.insight-featured .insight-description {
  width: 524px;
  height: 104px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: #3F3F47;
  margin: 0;
}

/* Small Articles Grid */
.insight-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 19px;
  width: 1304px;
  height: 389px;
}

.insight-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  width: 422px;
  height: auto;
  cursor: pointer;
  transition: transform var(--transition-base);
}

.insight-card:hover {
  transform: translateY(-4px);
}

.insight-card .insight-image {
  width: 422px;
  height: 249px;
  background: #D9D9D9;
  border-radius: 6px;
  overflow: hidden;
}

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

.insight-card:hover .insight-image img {
  transform: scale(1.05);
}

.insight-card .insight-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 422px;
  height: auto;
}

.insight-card .insight-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 422px;
  height: auto;
}

.insight-card .insight-date {
  width: 422px;
  height: 13px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 12px;
  line-height: 106.3%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #E7000B;
}

.insight-card .insight-title {
  width: 417px;
  height: auto;
  min-height: 58px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 24px;
  line-height: 122%;
  color: #27272A;
  margin: 0;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta {
  padding: var(--spacing-3xl) 0;
  background: var(--color-primary-gradient);
  text-align: center;
}

.cta-title {
  font-size: var(--fs-h1);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--spacing-lg);
}

.cta .btn-primary {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.cta .btn-primary:hover {
  background-color: var(--color-zinc-100);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 870px;
  background-color: #27272A;
  color: var(--color-white);
  padding: 0;
  overflow: hidden;
}

.footer .container {
  max-width: 1512px;
  width: 1512px;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.footer-grid {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 500px;
}

/* Left Column: Brand & Description */
.footer-brand {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 41px;
  width: 421px;
  height: 175.97px;
  left: 105px;
  top: 278px;
}

.footer-logo-container {
  width: 232px;
  height: 62.97px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3.31px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
}

.footer-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand-description {
  width: 421px;
  height: 72px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 148%;
  color: #9F9FA9;
  margin: 0;
}

/* Middle Column: Navigation Links */
.footer-links {
  position: absolute;
  width: 421px;
  height: 228px;
  left: 660px;
  top: 278px;
  display: flex;
  align-items: flex-start;
}

.footer-links nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-links nav ul li a {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 238%;
  color: #9F9FA9;
  text-decoration: none;
  transition: color var(--transition-base);
  display: block;
}

.footer-links nav ul li a:hover {
  color: var(--color-white);
}

/* Right Column: Newsletter & Contact */
.footer-newsletter-contact {
  position: relative;
  width: 613px;
  height: auto;
}

.footer-newsletter-title {
  position: absolute;
  width: 418px;
  height: 86px;
  left: 105px;
  top: 94px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 40px;
  line-height: 106.3%;
  color: #FAFAFA;
  margin: 0;
}

.footer-newsletter-form {
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  width: 613px;
  height: 48px;
  left: 669px;
  top: 124px;
}

.newsletter-input-wrapper {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px;
  gap: 8px;
  width: 403px;
  height: 48px;
  border-bottom: 1px solid #52525C;
  position: relative;
}

.newsletter-icon {
  width: 18px;
  height: 18px;
  color: #9F9FA9;
  flex-shrink: 0;
}

.newsletter-input-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 148%;
  color: #71717B;
  padding: 0;
}

.newsletter-input-wrapper input::placeholder {
  color: #71717B;
}

.newsletter-input-wrapper input:focus {
  outline: none;
  color: var(--color-white);
}

.footer-newsletter-form .btn-newsletter {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 8px;
  gap: 8px;
  width: 178px;
  height: 48px;
  background: linear-gradient(180deg, #FD828B -12.86%, #E92334 190%);
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 148%;
  color: #F4F4F5;
  transition: transform var(--transition-base);
}

.footer-newsletter-form .btn-newsletter:hover {
  transform: translateY(-2px);
}

.footer-newsletter-form .btn-newsletter i {
  width: 16px;
  height: 16px;
  color: #FFE2E2;
}

.footer-newsletter-form .error-message {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 0.8125rem;
  color: #EF4444;
}

/* Contact Info */
.footer-contact-info {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  width: 288px;
  height: 98px;
  left: 1101px;
  top: 292px;
}

.footer-contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  width: auto;
  height: 24px;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  color: #52525C;
  flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 148%;
  color: #9F9FA9;
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-contact-item a:hover {
  color: var(--color-white);
}

/* Footer Bottom: Large Text & Line */
.footer-bottom {
  position: absolute;
  width: 100%;
  height: 273px;
  left: 0;
  top: 601px;
  overflow: hidden;
}

.footer-divider {
  position: absolute;
  width: 1250px;
  height: 0px;
  left: 121px;
  top: 15px;
  border: none;
  border-top: 1px solid #52525C;
  margin: 0;
}

.footer-large-text {
  position: absolute;
  width: 1322px;
  height: 343px;
  left: 83px;
  top: 0.55px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.footer-large-text img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
}

/* ==========================================================================
   Responsive Design - Comprehensive Mobile-First Approach
   ========================================================================== */

/* ==========================================================================
   Large Desktops: 1440px and above
   ========================================================================== */
@media (min-width: 1440px) {
  .container,
  .container-header,
  .hero .container,
  .products-expertise .container,
  .about .container,
  .flagship-products .container,
  .why-choose-us .container,
  .expert-insights .container,
  .footer .container {
    max-width: 1512px;
  }
}

/* ==========================================================================
   Standard Desktops: 1024px - 1439px
   ========================================================================== */
@media (max-width: 1439px) {
  :root {
    --container-padding: 3rem;
  }

  /* Header Adjustments */
  .container-header {
    max-width: 100%;
    padding: 40px 3rem 0;
  }

  .header-content {
    width: 100%;
    max-width: 1200px;
    gap: 60px;
  }

  .header-nav-wrapper {
    width: auto;
    gap: 100px;
  }

  .nav-list {
    width: auto;
    gap: 32px;
  }

  .header-actions {
    width: auto;
  }

  /* Hero Section */
  .hero {
    min-height: 900px;
  }

  .hero .container {
    max-width: 100%;
    padding: 0 3rem;
    min-height: 900px;
  }

  .hero-text {
    width: 650px;
  }

  .hero-title {
    width: 650px;
    font-size: 64px;
    height: auto;
  }

  .hero-features {
    width: 100%;
    max-width: 650px;
  }

  .hero-description {
    width: 480px;
    left: auto;
    right: 3rem;
    top: 70px;
  }

  .contact-card {
    right: 3rem;
  }

  /* Products & Expertise */
  .products-expertise .container,
  .about .container,
  .flagship-products .container,
  .why-choose-us .container,
  .expert-insights .container {
    max-width: 100%;
    padding: 0 3rem;
  }

  .products-expertise-grid {
    gap: 50px;
  }

  .expertise-content {
    width: 520px;
  }

  .expertise-header,
  .expertise-title,
  .expertise-description {
    width: 520px;
  }

  .products-grid {
    width: 100%;
    max-width: 640px;
    height: auto;
  }

  /* About Section */
  .about-grid {
    width: 100%;
    max-width: 1200px;
  }

  /* Why Choose Us */
  .why-choose-us-grid {
    width: 100%;
    max-width: 1200px;
    padding: 80px 60px;
  }

  .why-choose-us-title {
    width: 100%;
    max-width: 560px;
  }

  .why-choose-us-description {
    width: 100%;
    max-width: 560px;
  }

  /* Stats Cards */
  .stats-cards {
    width: 100%;
    max-width: 1200px;
  }

  /* Expert Insights */
  .expert-insights-header,
  .expert-insights-content,
  .insight-featured,
  .insight-grid {
    width: 100%;
    max-width: 1200px;
  }

  .flagship-products-grid,
  .flagship-header {
    width: 100%;
    max-width: 1200px;
  }
}

/* ==========================================================================
   Tablets (Landscape): 768px - 1023px
   ========================================================================== */
@media (max-width: 1023px) {
  :root {
    --container-padding: 2rem;
    --spacing-3xl: 4rem;
    --spacing-2xl: 3rem;
  }

  /* Mobile Menu Toggle */
  .mobile-menu-toggle {
    display: block;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-zinc-900);
    margin: 5px auto;
    transition: all 0.3s ease;
  }

  /* Header */
  .container-header {
    padding: 30px 2rem 0;
  }

  .header-content {
    width: 100%;
    gap: 0;
    height: auto;
  }

  .logo {
    width: 160px;
    height: auto;
  }

  .header-nav-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-white);
    flex-direction: column;
    width: 100%;
    height: 100vh;
    padding: 100px 2rem 2rem;
    gap: 2rem;
    z-index: 1000;
    overflow-y: auto;
  }

  .header-nav-wrapper.active {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 2rem;
    height: auto;
    align-items: flex-start;
  }

  .nav-link {
    font-size: 20px;
    height: auto;
  }

  .header-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    height: auto;
    align-items: flex-start;
  }

  .btn-dark {
    width: 100%;
    max-width: 300px;
  }

  /* Hero Section */
  .hero {
    min-height: auto;
    margin-bottom: -100px;
  }

  .hero .container {
    padding: 0 2rem;
    min-height: auto;
  }

  .hero-content {
    flex-direction: column;
    padding-top: 40px;
    gap: 2rem;
  }

  .hero-text {
    width: 100%;
    max-width: 600px;
  }

  .hero-title {
    width: 100%;
    font-size: clamp(40px, 6vw, 56px);
    height: auto;
    margin-bottom: 20px;
  }

  .hero-features {
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
    height: auto;
  }

  .hero-description {
    position: static;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 1rem;
    opacity: 1;
  }

  .hero-image {
    position: relative;
    width: 100vw;
    height: 450px;
    top: auto;
    margin-top: 3rem;
    transform: translateX(-50%);
    left: 50%;
  }

  .contact-card {
    position: static;
    width: 100%;
    max-width: 530px;
    margin: 2rem auto 0;
    min-height: auto;
  }

  .contact-card-header,
  .contact-card-header h3,
  .contact-card-header p,
  .contact-form,
  .form-row,
  .form-group.full-width {
    width: 100%;
  }

  .btn-primary {
    width: 100%;
  }

  /* Products & Expertise Section */
  .products-expertise {
    padding: 60px 0;
  }

  .products-expertise .container {
    padding: 0 2rem;
  }

  .products-expertise-grid {
    flex-direction: column;
    gap: 3rem;
  }

  .expertise-content {
    width: 100%;
    height: auto;
    gap: 2rem;
  }

  .expertise-header {
    width: 100%;
    height: auto;
    gap: 1.5rem;
  }

  .expertise-title {
    width: 100%;
    font-size: clamp(36px, 5vw, 48px);
    height: auto;
  }

  .expertise-description {
    width: 100%;
    height: auto;
  }

  .expertise-features {
    width: 100%;
    height: auto;
    gap: 2rem;
  }

  .expertise-features-row {
    width: 100%;
    flex-direction: column;
    gap: 1.5rem;
    height: auto;
  }

  .products-grid {
    width: 100%;
    height: auto;
    gap: 2rem;
    justify-content: center;
  }

  .product-card {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .product-image {
    width: 100%;
  }

  .product-content,
  .product-info,
  .product-info h3,
  .product-info p,
  .product-link {
    width: 100%;
  }

  /* About Section */
  .about {
    min-height: auto;
    padding: 60px 0;
  }

  .about .container {
    padding: 0 2rem;
  }

  .about-grid {
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .about-image {
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
  }

  .about-content {
    width: 100%;
    height: auto;
    gap: 2rem;
  }

  .about-title {
    width: 100%;
    font-size: clamp(32px, 5vw, 40px);
    height: auto;
    top: 0;
    margin-bottom: 0;
  }

  .about-description {
    width: 100%;
    height: auto;
  }

  .mission-vision-container {
    width: 100%;
    height: auto;
    gap: 2rem;
  }

  .mission-vision-card {
    width: 100%;
    height: auto;
    flex-direction: row;
    gap: 2rem;
  }

  .mission-vision-text {
    width: 100%;
    height: auto;
  }

  .mission-vision-text h3,
  .mission-vision-text p {
    width: 100%;
    height: auto;
  }

  .mission-vision-divider {
    width: 100%;
  }

  .mission-vision-image {
    width: 100%;
    height: 250px;
  }

  .partners-section {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .partners-label {
    width: 100%;
    height: auto;
  }

  .partners-logos {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    gap: 2rem;
  }

  /* Flagship Products Section */
  .flagship-products {
    padding: 60px 0;
  }

  .flagship-products .container {
    padding: 0 2rem;
  }

  .flagship-header {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
  }

  .flagship-title {
    width: 100%;
    font-size: clamp(36px, 5vw, 48px);
    height: auto;
  }

  .flagship-products-grid {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .flagship-card {
    width: 100%;
    max-width: 350px;
    height: 320px;
  }

  .flagship-card.flagship-card-expanded {
    width: 100%;
    max-width: 600px;
    height: auto;
  }

  .flagship-card-detailed-view {
    flex-direction: column;
    height: auto;
    padding: 2rem;
  }

  .flagship-card-image-container {
    width: 100%;
    height: 250px;
  }

  .flagship-card-content {
    width: 100%;
  }

  .flagship-card-content .flagship-card-title,
  .flagship-card-description {
    width: 100%;
    height: auto;
  }

  .flagship-card-tags {
    width: 100%;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
  }

  /* Why Choose Us Section */
  .why-choose-us {
    padding: 60px 0;
  }

  .why-choose-us .container {
    padding: 0 2rem;
  }

  .why-choose-us-grid {
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 3rem;
  }

  .why-choose-us-content {
    width: 100%;
  }

  .why-choose-us-title {
    width: 100%;
    font-size: clamp(36px, 5vw, 48px);
    height: auto;
  }

  .why-choose-us-description {
    width: 100%;
    height: auto;
  }

  .why-choose-us-features {
    width: 100%;
    height: auto;
  }

  .why-choose-us-feature {
    width: 100%;
    height: auto;
  }

  .why-choose-us-content .btn-dark {
    width: 221px;
    height: 48px;
  }

  .why-choose-us-image {
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
  }

  .stats-cards {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-card {
    width: calc(50% - 12px);
    min-width: 280px;
  }

  /* Map and Address Section */
  .map-address {
    height: auto;
    min-height: 600px;
  }

  .address-card {
    position: static;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 3rem auto;
    transform: none;
    right: auto;
  }

  .address-card-title {
    width: 100%;
    height: auto;
  }

  .contact-details {
    width: 100%;
  }

  /* Expert Insights Section */
  .expert-insights {
    padding: 60px 0;
  }

  .expert-insights .container {
    padding: 0 2rem;
  }

  .expert-insights-header {
    width: 100%;
    height: auto;
    margin-bottom: 3rem;
  }

  .expert-insights-title {
    width: 100%;
    font-size: clamp(32px, 5vw, 40px);
    height: auto;
  }

  .expert-insights-content {
    width: 100%;
    height: auto;
    gap: 3rem;
  }

  .insight-featured {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 2rem;
  }

  .insight-featured .insight-image {
    width: 100%;
    height: 350px;
  }

  .insight-featured .insight-content {
    width: 100%;
    height: auto;
  }

  .insight-featured .insight-text {
    width: 100%;
    height: auto;
  }

  .insight-featured .insight-date,
  .insight-featured .insight-title,
  .insight-featured .insight-description {
    width: 100%;
    height: auto;
  }

  .insight-grid {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .insight-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .insight-card .insight-image {
    width: 100%;
  }

  .insight-card .insight-content,
  .insight-card .insight-text {
    width: 100%;
  }

  .insight-card .insight-date,
  .insight-card .insight-title {
    width: 100%;
  }

  /* Footer */
  .footer {
    min-height: auto;
    height: auto;
    padding-bottom: 2rem;
  }

  .footer .container {
    width: 100%;
    max-width: 100%;
    padding: 0 2rem;
  }

  .footer-grid {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-top: 3rem;
  }

  .footer-brand {
    position: static;
    width: 100%;
    height: auto;
    gap: 2rem;
  }

  .footer-brand-description {
    width: 100%;
    height: auto;
  }

  .footer-links {
    position: static;
    width: 100%;
    height: auto;
  }

  .footer-newsletter-title {
    position: static;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
  }

  .footer-newsletter-form {
    position: static;
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }

  .newsletter-input-wrapper {
    width: 100%;
  }

  .footer-newsletter-form .btn-newsletter {
    width: 100%;
    max-width: 250px;
  }

  .footer-contact-info {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 2rem;
  }

  .footer-bottom {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 3rem;
  }

  .footer-divider {
    position: static;
    width: 100%;
    margin-bottom: 2rem;
  }

  .footer-large-text {
    position: static;
    width: 100%;
    height: auto;
  }
}

/* ==========================================================================
   Tablets (Portrait) / Large Phones: 481px - 767px
   ========================================================================== */
@media (max-width: 767px) {
  :root {
    --container-padding: 1.5rem;
    --spacing-3xl: 3rem;
    --spacing-2xl: 2.5rem;
    --spacing-xl: 2rem;
  }

  /* Header */
  .container-header {
    padding: 20px 1.5rem 0;
  }

  .logo {
    width: 202px;
  }

  .header {
    margin-bottom: 40px;
  }

  /* Hero Section */
  .hero {
    margin-bottom: -80px;
  }

  .hero .container {
    padding: 0 1.5rem;
  }

  .hero-content {
    padding-top: 30px;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 44px);
    margin-bottom: 16px;
  }

  .hero-features {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-image {
    height: 350px;
    margin-top: 2rem;
  }

  .contact-card {
    padding: 24px;
    gap: 24px;
  }

  .contact-card-header {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
  }

  .contact-card-header h3 {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
  }

  .contact-card-header p {
    width: 100%;
    height: auto;
    margin-bottom: 0;
  }

  .contact-form {
    width: 100%;
    height: auto;
    margin-top: 0;
  }

  .form-row {
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 16px;
  }

  .form-group {
    width: 100%;
    height: 44px;
  }

  .form-group.full-width {
    width: 100%;
    height: auto;
    min-height: 100px;
  }

  /* Products & Expertise */
  .products-expertise {
    padding: 50px 0;
    margin-top: 30px;
  }

  .products-expertise .container {
    padding: 0 1.5rem;
  }

  .expertise-badge {
    width: 145px;
    height: 31px;
  }

  .expertise-title {
    font-size: 32px;
    width: 100%;
    height: auto;
    line-height: 1.2;
  }

  .expertise-description {
    font-size: 16px;
    width: 100%;
    height: auto;
    line-height: 1.5;
  }

  .product-card {
    max-width: 100%;
  }

  /* About Section */
  .about {
    padding: 50px 0;
  }

  .about .container {
    padding: 0 1.5rem;
  }

  .about-badge {
    width: 106px;
    height: 31px;
  }

  .about-image {
    width: 353px;
    height: 553px;
  }

  .about-image img {
    object-fit: cover;
  }

  .about-title {
    font-size: 32px;
    width: 100%;
    height: auto;
    line-height: 1.2;
  }

  .about-description {
    font-size: 16px;
    width: 100%;
    height: auto;
    line-height: 1.5;
  }

  .mission-vision-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
  }

  .mission-vision-text {
    width: auto;
    flex: 1;
  }

  .mission-vision-text h3 {
    font-size: 24px;
    width: 100%;
    height: auto;
  }

  .mission-vision-text p {
    font-size: 16px;
    width: 256px;
    height: 72px;
    line-height: 1.5;
  }

  .mission-vision-icon {
    flex-shrink: 0;
  }

  .mission-vision-image {
    width: 357px;
    height: 233px;
  }

  .partners-section {
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 1.5rem;
  }

  .partners-label {
    width: 310px;
    height: 54px;
    font-size: 18px;
    text-align: center;
    margin: 0 auto;
  }

  .partners-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    width: 357px;
    height: 342px;
    margin: 0 auto;
    justify-items: center;
    align-items: center;
  }

  .partner-logo:nth-child(7) {
    grid-column: 2;
  }

  /* Flagship Products */
  .flagship-products {
    padding: 50px 0;
  }

  .flagship-products .container {
    padding: 0 1.5rem;
  }

  .flagship-badge {
    font-size: 14px;
  }

  .flagship-title {
    font-size: 24px;
  }

  .flagship-products-grid {
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 2rem;
  }

  .flagship-card {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .flagship-card-simple-view {
    display: none !important;
  }

  .flagship-card-detailed-view {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .flagship-card-image-container {
    width: 305px;
    height: 303px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .flagship-card-detailed-view .flagship-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .flagship-card-detailed-view .flagship-card-image img {
    max-width: 85%;
    max-height: 65%;
    object-fit: contain;
  }

  .flagship-card-content {
    width: 268px;
  }

  .flagship-card-content .flagship-card-title {
    font-size: 18px;
    width: 268px;
    height: auto;
  }

  .flagship-card-description {
    font-size: 16px;
    width: 268px;
    height: auto;
  }

  .flagship-tag {
    font-size: 14px;
  }

  .flagship-card.flagship-card-expanded {
    max-width: 100%;
  }

  /* Why Choose Us */
  .why-choose-us {
    padding: 50px 0;
  }

  .why-choose-us .container {
    padding: 0 1.5rem;
  }

  .why-choose-us-grid {
    padding: 2rem 1.5rem;
  }

  .why-choose-us-badge {
    width: 159px;
    height: 31px;
    font-size: 14px;
  }

  .why-choose-us-title {
    font-size: clamp(28px, 6vw, 40px);
  }

  .why-choose-us-description {
    font-size: 16px;
    width: 317px;
  }

  .why-choose-us-features {
    width: 317px;
  }

  .why-choose-us-feature {
    width: 317px;
  }

  .why-choose-us-feature span {
    font-size: 16px;
  }

  .why-choose-us-image {
    height: 527px;
  }

  .stats-cards {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-card {
    width: 100%;
    height: 124px;
  }

  .stat-label {
    font-size: 16px;
  }

  /* Map and Address */
  .map-address {
    min-height: auto;
    padding: 2rem 0;
  }

  .map-background {
    background-image: url('../images/map/mobile-map-image.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 357px;
    height: 357px;
    margin: 0 auto;
  }

  .map-background img {
    display: none;
  }

  .address-card {
    margin: 3rem 1.5rem 2rem;
    padding: 2rem 1.5rem;
  }

  /* Expert Insights */
  .expert-insights {
    padding: 50px 0;
  }

  .expert-insights .container {
    padding: 0 1.5rem;
  }

  .expert-insights-title {
    font-size: clamp(28px, 6vw, 36px);
  }

  .insight-featured .insight-image {
    height: 300px;
  }

  .insight-card {
    max-width: 100%;
  }

  /* Footer */
  .footer .container {
    padding: 0 1.5rem;
  }

  .footer-grid {
    padding-top: 2rem;
    gap: 2rem;
  }

  .footer-newsletter-title {
    font-size: clamp(28px, 6vw, 36px);
  }
}

/* ==========================================================================
   Mobile Phones: up to 480px
   ========================================================================== */
@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
    --spacing-3xl: 2.5rem;
    --spacing-2xl: 2rem;
    --spacing-xl: 1.5rem;
    --spacing-lg: 1.25rem;
  }

  /* Header */
  .container-header {
    padding: 16px 1rem 0;
  }

  .header {
    margin-bottom: 30px;
  }

  .logo {
    width: 173px;
    height: auto;
  }

  .header-nav-wrapper {
    padding: 80px 1rem 1rem;
  }

  .nav-link {
    font-size: 18px;
  }

  .header-phone {
    font-size: 14px;
  }

  /* Hero Section */
  .hero {
    margin-bottom: -60px;
  }

  .hero .container {
    padding: 0 1rem;
  }

  .hero-content {
    padding-top: 20px;
  }

  .hero-title {
    font-size: clamp(28px, 9vw, 36px);
    margin-bottom: 12px;
  }

  .feature-item span {
    font-size: 14px;
  }

  .hero-description p {
    font-size: 14px;
  }

  .hero-image {
    height: 280px;
    margin-top: 1.5rem;
  }

  .contact-card {
    padding: 20px;
    gap: 20px;
    margin-top: 1.5rem;
  }

  .contact-card-header {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .contact-card-header h3 {
    width: 100%;
    font-size: 20px;
    height: auto;
    margin-bottom: 12px;
  }

  .contact-card-header p {
    width: 100%;
    font-size: 14px;
    height: auto;
    margin-bottom: 0;
    line-height: 1.5;
  }

  .contact-form {
    width: 100%;
    height: auto;
    margin-top: 0;
  }

  .form-group {
    height: 42px;
    padding: 10px 8px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
  }

  .form-group.full-width {
    width: 100%;
    height: auto;
    min-height: 100px;
  }

  .btn-primary {
    height: 48px;
    font-size: 15px;
  }

  /* Products & Expertise */
  .products-expertise {
    padding: 40px 0;
    margin-top: 30px;
  }

  .products-expertise .container {
    padding: 0 1rem;
  }

  .expertise-badge {
    font-size: 12px;
    padding: 6px 12px;
    width: 145px;
    height: 31px;
  }

  .expertise-title {
    font-size: 32px;
    width: 100%;
    height: auto;
    line-height: 1.2;
  }

  .expertise-description {
    font-size: 16px;
    width: 100%;
    height: auto;
    line-height: 1.5;
  }

  .expertise-features {
    gap: 1.5rem;
  }

  .expertise-feature-item {
    font-size: 15px;
  }

  .products-grid {
    gap: 1.5rem;
  }

  .product-card {
    height: auto;
    padding-bottom: 20px;
    gap: 20px;
  }

  .product-image {
    height: 200px;
  }

  .product-info h3 {
    font-size: 16px;
  }

  .product-info p {
    font-size: 15px;
  }

  /* About Section */
  .about {
    padding: 40px 0;
  }

  .about .container {
    padding: 0 1rem;
  }

  .about-grid {
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .about-badge {
    font-size: 12px;
    padding: 6px 12px;
    width: 106px;
    height: 31px;
  }

  .about-title {
    font-size: 32px;
    width: 100%;
    height: auto;
    line-height: 1.2;
  }

  .about-description {
    font-size: 16px;
    width: 100%;
    height: auto;
    line-height: 1.5;
  }

  .about-image {
    width: 353px;
    height: 553px;
  }

  .about-image img {
    object-fit: cover;
  }

  .about .btn-primary {
    width: 100%;
    max-width: 200px;
  }

  .mission-vision-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
  }

  .mission-vision-text {
    width: auto;
    flex: 1;
  }

  .mission-vision-text h3 {
    font-size: 24px;
    width: 100%;
    height: auto;
  }

  .mission-vision-text p {
    font-size: 16px;
    width: 256px;
    height: 72px;
    line-height: 1.5;
  }

  .mission-vision-icon {
    flex-shrink: 0;
  }

  .mission-vision-image {
    width: 357px;
    height: 233px;
  }

  .partners-section {
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 1.5rem;
  }

  .partners-label {
    width: 310px;
    height: 54px;
    font-size: 18px;
    text-align: center;
    margin: 0 auto;
  }

  .partners-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    width: 357px;
    height: 342px;
    margin: 0 auto;
    justify-items: center;
    align-items: center;
  }

  .partner-logo:nth-child(7) {
    grid-column: 2;
  }

  .partner-logo img {
    max-height: 50px;
  }

  /* Flagship Products */
  .flagship-products {
    padding: 40px 0;
  }

  .flagship-products .container {
    padding: 0 1rem;
  }

  .flagship-badge {
    font-size: 14px;
    padding: 6px 12px;
    width: auto;
    height: auto;
  }

  .flagship-title {
    font-size: 24px;
  }

  .flagship-products-grid {
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 1.5rem;
  }

  .flagship-card {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .flagship-card-simple-view {
    display: none !important;
  }

  .flagship-card-simple-view .flagship-card-title {
    font-size: 16px;
  }

  .flagship-card-detailed-view {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem;
    gap: 1.5rem;
  }

  .flagship-card-image-container {
    width: 305px;
    height: 303px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .flagship-card-detailed-view .flagship-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .flagship-card-detailed-view .flagship-card-image img {
    max-width: 85%;
    max-height: 65%;
    object-fit: contain;
  }

  .flagship-card-content {
    width: 268px;
  }

  .flagship-card-content .flagship-card-title {
    font-size: 18px;
    width: 268px;
    height: auto;
  }

  .flagship-card-description {
    font-size: 16px;
    width: 268px;
    height: auto;
  }

  .flagship-tag {
    font-size: 14px;
    padding: 6px 12px;
  }

  .flagship-card.flagship-card-expanded {
    width: 100%;
    height: auto;
  }

  /* Why Choose Us */
  .why-choose-us {
    padding: 40px 0;
  }

  .why-choose-us .container {
    padding: 0 1rem;
  }

  .why-choose-us-grid {
    padding: 1.5rem 1rem;
    gap: 2rem;
  }

  .why-choose-us-badge {
    font-size: 14px;
    padding: 6px 12px;
    width: 159px;
    height: 31px;
  }

  .why-choose-us-title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .why-choose-us-description {
    font-size: 16px;
    width: 317px;
  }

  .why-choose-us-features {
    width: 317px;
  }

  .why-choose-us-feature {
    width: 317px;
  }

  .why-choose-us-feature span {
    font-size: 16px;
  }

  .why-choose-us-content .btn-dark {
    width: 221px;
    height: 48px;
  }

  .why-choose-us-image {
    height: 527px;
  }

  .stats-cards {
    gap: 1rem;
  }

  .stat-card {
    padding: 20px;
    gap: 16px;
    height: 124px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 16px;
  }

  /* Map and Address */
  .map-address {
    height: auto;
  }

  .map-background {
    background-image: url('../images/map/mobile-map-image.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 357px;
    height: 357px;
    margin: 0 auto;
  }

  .map-background img {
    display: none;
  }

  .address-card {
    margin: 3rem 1rem 1.5rem;
    padding: 1.5rem 1rem;
    width: calc(100% - 2rem);
    max-width: 100%;
  }

  .address-card-title {
    font-size: 24px;
  }

  .contact-details {
    gap: 20px;
  }

  .contact-icon-box {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }

  .contact-icon {
    width: 28px;
    height: 28px;
  }

  .contact-label {
    font-size: 11px;
  }

  .contact-value {
    font-size: 16px;
  }

  /* Expert Insights */
  .expert-insights {
    padding: 40px 0;
  }

  .expert-insights .container {
    padding: 0 1rem;
  }

  .expert-insights-badge {
    font-size: 12px;
    padding: 6px 12px;
    width: auto;
    height: auto;
  }

  .expert-insights-title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .expert-insights-content {
    gap: 2rem;
  }

  .insight-featured {
    gap: 1.5rem;
  }

  .insight-featured .insight-image {
    height: 250px;
    border-radius: 8px;
  }

  .insight-featured .insight-title {
    font-size: 24px;
  }

  .insight-featured .insight-description {
    font-size: 15px;
  }

  .insight-grid {
    gap: 1.5rem;
  }

  .insight-card .insight-image {
    height: 220px;
  }

  .insight-card .insight-title {
    font-size: 20px;
  }

  /* Footer */
  .footer {
    padding-bottom: 1.5rem;
  }

  .footer .container {
    padding: 0 1rem;
  }

  .footer-grid {
    padding-top: 1.5rem;
    gap: 1.5rem;
  }

  .footer-brand {
    gap: 1.5rem;
  }

  .footer-logo-container {
    width: 200px;
  }

  .footer-brand-description {
    font-size: 15px;
  }

  .footer-links nav ul li a {
    font-size: 15px;
  }

  .footer-newsletter-title {
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 1.5rem;
  }

  .footer-newsletter-form {
    gap: 1rem;
  }

  .newsletter-input-wrapper input {
    font-size: 15px;
  }

  .footer-newsletter-form .btn-newsletter {
    font-size: 15px;
    max-width: 100%;
  }

  .footer-contact-info {
    gap: 12px;
  }

  .footer-contact-item a,
  .footer-contact-item span {
    font-size: 15px;
  }

  .footer-bottom {
    margin-top: 2rem;
  }

  .footer-divider {
    margin-bottom: 1.5rem;
  }

  .footer-large-text {
    height: auto;
    max-height: 200px;
  }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

/* Focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --color-zinc-700: #000000;
    --color-zinc-900: #000000;
  }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
  .header,
  .hero-image,
  .contact-card,
  .cta,
  .footer {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }

  a {
    text-decoration: underline;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }
}
