/*
Theme Name: Aerohik
Theme URI: https://aerohik.konsept.work
Description: Custom theme for Aerohik - High-Performance Aerogel Solutions
Version: 1.0
Author: Konsept
Text Domain: aerohik
*/

:root {
  --black: #0A0A0A;
  --dark: #111111;
  --card-bg: #1A1A1A;
  --gray-dark: #2A2A2A;
  --gray: #888888;
  --gray-light: #F0F2F5;
  --white: #FFFFFF;
  --red: #FD6262;
  --blue: #068FDF;
  --green: #00BF63;
  --red-glow: rgba(253, 98, 98, 0.3);
  --blue-glow: rgba(6, 143, 223, 0.3);
  --green-glow: rgba(0, 191, 99, 0.3);
  --font-body: "Inter", sans-serif;
  --font-heading: "Space Grotesk", sans-serif;
  --container: 1320px;
  --gap: 24px;
  --header-h: 80px;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  font-size: 16px;
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { font-size: clamp(0.95rem, 1.2vw, 1.1rem); color: var(--gray); line-height: 1.7; }

.section { padding: 120px 0; position: relative; }
.section--dark { background: var(--dark); }
.section--light { background: var(--gray-light); color: var(--black); }
.section--light p { color: #555; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 20px;
}
.section-label::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--blue);
}

.section-title { margin-bottom: 24px; }
.section-desc { max-width: 600px; margin-bottom: 48px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover {
  background: #e85555;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--red-glow);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn--outline:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--black);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--card-bg);
  transform: translateY(-2px);
}
.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}
.btn:hover svg { transform: translateX(4px); }

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

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader__logo {
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  opacity: 0;
}
.preloader__logo span { display: inline-block; }
.preloader__logo .char-a, .preloader__logo .char-e, .preloader__logo .char-r, .preloader__logo .char-o { color: var(--white); }
.preloader__logo .char-h { color: var(--red); }
.preloader__logo .char-i { color: var(--blue); }
.preloader__logo .char-k { color: var(--green); }

/* ===== HEADER ===== */
.header {
  background: rgba(10,10,10,0.4);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  transition: all 0.4s ease;
}
.header.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header__logo img { height: 44px; width: auto; }
.header__nav { display: flex; align-items: center; gap: 36px; }
.header__nav a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s ease;
}
.header__nav a:hover { color: rgba(255,255,255,0.8); }
.header__nav a.active { color: var(--white); font-weight: 600; }

.header__cta {
  padding: 10px 24px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.header__cta:hover {
  background: #e85555;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--red-glow);
}
.header__cta::after { display: none; }
.header__nav a.header__cta { color: var(--white); }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
}
.header__burger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}
.header__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: safe center;
  gap: 24px;
  padding: var(--header-h) 32px 32px;
  padding-top: calc(var(--header-h) + 20px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.active { right: 0; }
.mobile-menu > a,
.mobile-menu .mob-acc__btn {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}
.mob-acc {
  width: 100%;
  text-align: center;
  flex-shrink: 0;
}
.mob-acc__btn {
  font-size: 1.6rem !important;
}
.mob-acc__panel {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  max-height: 50vh;
  overflow-y: auto;
}
.mob-acc__panel.active { display: flex; }
.mob-acc__panel a {
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.5) !important;
  flex-shrink: 0;
}
.mob-acc__panel a:first-child {
  color: var(--blue) !important;
  font-weight: 600 !important;
  margin-bottom: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  transform-style: preserve-3d;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 100%);
  z-index: 1;
}
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--blue);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero__badge span { color: var(--gray); }
.hero__title {
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__title .highlight { color: var(--red); }
.hero__desc {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== MARQUEE ===== */
.marquee {
  padding: 20px 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transform-style: preserve-3d;
}
.marquee__track {
  display: flex;
  gap: 60px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee__item {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  gap: 60px;
}
.marquee__item::after {
  content: "◆";
  font-size: 0.5rem;
  color: var(--red);
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== ABOUT TEASER ===== */
.about-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-teaser__image {
  border-radius: var(--radius);
  overflow: hidden;
  transform-style: preserve-3d;
  position: relative;
}
.about-teaser__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-teaser__image:hover img { transform: scale(1.05); }
.about-teaser__image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  pointer-events: none;
}

/* ===== PRODUCTS SHOWCASE ===== */
.products-showcase__categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 80px;
}
.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  transform-style: preserve-3d;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
  position: relative;
}
.product-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.product-card__image {
  height: 300px;
  overflow: hidden;
  transform-style: preserve-3d;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card__image img { transform: scale(1.08); }
.product-card__body { padding: 32px; }
.product-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(6, 143, 223, 0.1);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.product-card__title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.product-card__desc {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 20px;
}
.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 600;
  font-size: 0.9rem;
}
.product-card__link svg { transition: transform var(--transition); }
.product-card__link:hover svg { transform: translateX(4px); }

/* Product lineup */
.products-lineup {
  position: relative;
  margin-top: 60px;
}
.products-lineup__image {
  border-radius: var(--radius);
  overflow: hidden;
  transform-style: preserve-3d;
}
.products-lineup__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ===== APPLICATIONS ===== */
.applications__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.app-card {
  position: relative;
  height: 450px;
  border-radius: var(--radius);
  overflow: hidden;
  transform-style: preserve-3d;
  cursor: pointer;
}
.app-card__image {
  position: absolute;
  inset: 0;
}
.app-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.app-card:hover .app-card__image img { transform: scale(1.1); }
.app-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.1) 60%);
  z-index: 1;
}
.app-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
}
.app-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(253, 98, 98, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--red);
}
.app-card__title { font-size: 1.3rem; margin-bottom: 8px; }
.app-card__desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* ===== STATS ===== */
.stats {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 60px 24px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 30%;
  height: 40%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.stat-item__number .accent { color: var(--red); }
.stat-item__label {
  font-size: 0.9rem;
  color: var(--gray);
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1020 50%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.3;
}
.cta-section__title { max-width: 700px; margin: 0 auto 20px; position: relative; z-index: 1; }
.cta-section__desc { max-width: 500px; margin: 0 auto 40px; position: relative; z-index: 1; }
.cta-section__buttons { display: flex; gap: 16px; justify-content: center; position: relative; z-index: 1; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__brand p {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--gray);
  max-width: 280px;
}
.footer__brand img { height: 38px; }
.footer__heading {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 24px;
}
.footer__links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--gray);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--gray);
}
.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
}
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all var(--transition);
}
.footer__social a:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(253, 98, 98, 0.1);
}
.footer__bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .applications__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --header-h: 70px; --gap: 20px; }
  .section { padding: 80px 0; }
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__burger { display: flex; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat-item::after { display: none !important; }
  .products-showcase__categories { grid-template-columns: 1fr; }
  .applications__grid { grid-template-columns: 1fr; }
  .app-card { height: 350px; }
  .about-teaser__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__buttons { flex-direction: column; align-items: flex-start; }
  .cta-section__buttons { flex-direction: column; align-items: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}


/* ===== PAGE HERO ===== */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
}
.page-hero__content { max-width: 700px; }
.page-hero__title { margin-bottom: 20px; }
.page-hero__desc { font-size: 1.1rem; color: var(--gray); line-height: 1.7; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--gray);
}
.page-hero__breadcrumb a { color: var(--blue); }
.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero__breadcrumb span { color: rgba(255,255,255,0.2); }

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-grid-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  transform-style: preserve-3d;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
  display: block;
}
.product-grid-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.product-grid-card__image {
  height: 240px;
  overflow: hidden;
  transform-style: preserve-3d;
  background: var(--gray-dark);
}
.product-grid-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-grid-card:hover .product-grid-card__image img { transform: scale(1.08); }
.product-grid-card__body { padding: 28px; }
.product-grid-card__title {
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.product-grid-card__temp {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 12px;
}
.product-grid-card__desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* Product card specs */
.product-card__specs {
  display: flex;
  gap: 16px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.product-card__spec {
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--gray);
}
.product-card__spec strong { color: var(--white); font-weight: 600; }

/* ===== FEATURE CARD ===== */
.feature-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(6, 143, 223, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 30%;
  height: 40%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.process-step__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--red);
  opacity: 0.3;
  margin-bottom: 16px;
  line-height: 1;
}
.process-step__title {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.process-step__desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info__items { display: flex; flex-direction: column; gap: 24px; }
.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(6, 143, 223, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-info__item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.contact-info__item a {
  color: var(--gray);
  font-size: 0.9rem;
}
.contact-info__item a:hover { color: var(--blue); }

/* ===== FORM ===== */
.form { display: flex; flex-direction: column; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__group { display: flex; flex-direction: column; gap: 8px; }
.form__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.form__input {
  padding: 14px 18px;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.form__input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(6,143,223,0.1);
}
.form__input::placeholder { color: rgba(255,255,255,0.25); }
.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form__textarea { resize: vertical; min-height: 120px; }

/* ===== PRODUCT DETAIL ===== */
.product-detail__hero {
  padding: 160px 0 60px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
}
.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.product-detail__image {
  border-radius: var(--radius);
  overflow: hidden;
  transform-style: preserve-3d;
  background: var(--card-bg);
}
.product-detail__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.product-detail__info .section-label { margin-bottom: 12px; }
.product-detail__temp {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(253, 98, 98, 0.1);
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 20px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
}
.specs-table th, .specs-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.specs-table th {
  color: var(--gray);
  font-weight: 500;
  width: 40%;
}
.specs-table td {
  color: var(--white);
  font-weight: 500;
}
.specs-table tr:hover {
  background: rgba(255,255,255,0.02);
}

/* ===== PRIVACY ===== */
.privacy-content h3 { font-size: 1.3rem; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.privacy-content p { margin-top: 12px; }

/* ===== INNER PAGE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2)::after { display: none; }
}
@media (max-width: 768px) {
  .page-hero { padding: 120px 0 60px; }
  .products-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step::after { display: none !important; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form__row { grid-template-columns: 1fr; }
  .product-detail__grid { grid-template-columns: 1fr; }
  .product-card__specs { flex-direction: column; }
}

/* ===== WHY CARD ===== */
.why-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  transform-style: preserve-3d;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
.why-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.why-card__image {
  height: 220px;
  overflow: hidden;
  transform-style: preserve-3d;
}
.why-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.why-card:hover .why-card__image img { transform: scale(1.08); }
.why-card__body { padding: 28px; }
.why-card__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 12px;
}
.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== WHY SECTION - PREMIUM ===== */
.why-section {
  padding: 120px 0;
  background: var(--dark);
  overflow: hidden;
  transform-style: preserve-3d;
}
.why-section__header {
  text-align: center;
  margin-bottom: 64px;
}
.why-section__progress {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  margin: 28px auto 0;
  overflow: hidden;
  transform-style: preserve-3d;
}
.why-section__progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--red));
  border-radius: 3px;
  transition: width 0.1s linear;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card-pro {
  overflow: hidden;
  transform-style: preserve-3d;
  position: relative;
  border-radius: 16px;
  perspective: 1000px;
}
.why-card-pro__inner {
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  z-index: 1;
}
.why-card-pro:hover .why-card-pro__inner {
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.why-card-pro__visual {
  position: relative;
  height: 240px;
  overflow: hidden;
  transform-style: preserve-3d;
}
.why-card-pro__img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform-style: preserve-3d;
}
.why-card-pro__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.why-card-pro:hover .why-card-pro__img-wrap img {
  transform: scale(1.12);
}
.why-card-pro__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,26,26,0.95) 100%);
  pointer-events: none;
}
.why-card-pro__float-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 2;
}

.why-card-pro__content {
  padding: 32px;
  position: relative;
}
.why-card-pro__step {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-card-pro__step::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.why-card-pro__step span {
  display: inline-block;
}
.why-card-pro h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.why-card-pro p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 20px;
}
.why-card-pro__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.why-card-pro__tags span {
  padding: 5px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}
.why-card-pro:hover .why-card-pro__tags span {
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
}

.why-card-pro__glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 120px;
  background: radial-gradient(circle, rgba(6,143,223,0.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.why-card-pro:hover .why-card-pro__glow { opacity: 1; }

@media (max-width: 1024px) {
  .why-cards { grid-template-columns: 1fr 1fr; }
  .why-card-pro:last-child { grid-column: 1 / -1; max-width: 500px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .why-section { padding: 80px 0; }
  .why-cards { grid-template-columns: 1fr; }
  .why-card-pro:last-child { max-width: none; }
  .why-card-pro__visual { height: 200px; }
}

/* ===== GSAP INITIAL STATES - PREVENT FLASH ===== */
[data-animate],
.section-label,
.section-title,
.why-section__header,
.why-card-pro .why-card-pro__inner {
  visibility: hidden;
}
.gsap-ready [data-animate],
.gsap-ready .section-label,
.gsap-ready .section-title,
.gsap-ready .why-section__header,
.gsap-ready .why-card-pro .why-card-pro__inner {
  visibility: visible;
}

/* ===== PARTNER REASONS ===== */
.partner-reasons {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.partner-reason {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.partner-reason:last-child { border-bottom: none; }
.partner-reason__number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
  opacity: 0.25;
  flex-shrink: 0;
  width: 80px;
  text-align: center;
}
.partner-reason__content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.partner-reason__content p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== PARTNER TYPES ===== */
.partner-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.partner-type {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
.partner-type:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.partner-type__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(6,143,223,0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.partner-type h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.partner-type p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== PARTNER FORM WRAP ===== */
.partner-form-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 48px;
  border: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 768px) {
  .partner-reason { flex-direction: column; gap: 16px; }
  .partner-reason__number { width: auto; font-size: 3rem; }
  .partner-types { grid-template-columns: 1fr; }
  .partner-form-wrap { padding: 24px; }
}

/* ===== COLLABORATION ITEMS ===== */
.collab-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.collab-item {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.collab-item:last-child { border-bottom: none; }
.collab-item--reverse { direction: rtl; }
.collab-item--reverse > * { direction: ltr; }
.collab-item__visual {
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
}
.collab-item__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.collab-item:hover .collab-item__visual img { transform: scale(1.06); }
.collab-item__step {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--blue);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}
.collab-item__content h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.collab-item__content p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ===== TARGET CARDS ===== */
.target-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
.target-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-6px);
}
.target-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(6,143,223,0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.target-card h3 {
  font-size: 1.15rem;
}

@media (max-width: 768px) {
  .collab-item { grid-template-columns: 1fr; gap: 24px; }
  .collab-item--reverse { direction: ltr; }
  .collab-item__visual { height: 220px; }
}

/* ===== APPLE-STYLE PARTNER PAGE ===== */

/* Hero */
.ap-hero {
  padding: 180px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.ap-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(6,143,223,0.1) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: apGlow1 14s ease-in-out infinite;
}
.ap-hero::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 40%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(253,98,98,0.05) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: apGlow2 18s ease-in-out infinite;
}
@keyframes apGlow1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.1; }
  50% { transform: translate(5%, 8%) scale(1.15); opacity: 0.16; }
}
@keyframes apGlow2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.05; }
  50% { transform: translate(-4%, 6%) scale(1.1); opacity: 0.09; }
}
.ap-hero__content { max-width: 720px; margin: 0 auto; }
.ap-hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 24px;
}
.ap-hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--white);
  background: linear-gradient(180deg, var(--white) 40%, rgba(255,255,255,0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ap-hero__title .hero-v2__title-line-inner {
  background: linear-gradient(180deg, var(--white) 40%, rgba(255,255,255,0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ap-hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 40px;
}

/* Section */
.ap-section {
  padding: 120px 0;
}
.ap-section--alt {
  background: var(--dark);
}
.ap-section__header {
  text-align: center;
  margin-bottom: 72px;
}
.ap-section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.ap-section__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Bento Grid */
.ap-bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.ap-bento__card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.ap-bento__card:hover { transform: translateY(-4px); }
.ap-bento__card-inner {
  padding: 44px;
  height: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  z-index: 1;
}
.ap-bento__card--featured {
  grid-row: 1 / 3;
}
.ap-bento__card--featured .ap-bento__card-inner {
  background: linear-gradient(160deg, rgba(6,143,223,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border-color: rgba(6,143,223,0.12);
}
.ap-bento__num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--blue), #4fc3f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ap-bento__card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.ap-bento__card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.ap-bento__accent {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(6,143,223,0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Split Cards */
.ap-split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.ap-split-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.ap-split-card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.ap-split-card__icon-area {
  padding: 40px 40px 0;
  background: linear-gradient(135deg, rgba(6,143,223,0.08), rgba(6,143,223,0.02));
}
.ap-split-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(6,143,223,0.12);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -36px;
  position: relative;
  z-index: 2;
}
.ap-split-card__content {
  padding: 52px 40px 40px;
}
.ap-split-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.ap-split-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 20px;
}
.ap-split-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ap-split-card__tags span {
  padding: 5px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}

/* Form Section */
.ap-form-section {
  background: radial-gradient(ellipse at 50% 100%, rgba(6,143,223,0.04) 0%, transparent 60%),
              var(--black);
}
.ap-form-glass {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}
.ap-form__section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.ap-form__divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 28px 0;
}
.ap-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 18px 36px;
  font-size: 1rem;
  border-radius: 14px;
  margin-top: 8px;
}

/* Form inputs Apple-style override */
.ap-form-glass .form__input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 15px 18px;
  font-size: 0.92rem;
  transition: all 0.3s ease;
}
.ap-form-glass .form__input:focus {
  background: rgba(255,255,255,0.06);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(6,143,223,0.08);
}
.ap-form-glass .form__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 768px) {
  .ap-hero { padding: 140px 0 80px; }
  .ap-hero__title { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .ap-section { padding: 80px 0; }
  .ap-bento { grid-template-columns: 1fr; }
  .ap-bento__card--featured { grid-row: auto; }
  .ap-split-cards { grid-template-columns: 1fr; }
  .ap-form-glass { padding: 28px; border-radius: 18px; }
  .ap-bento__card-inner { padding: 32px; }
  .ap-split-card__icon-area { padding: 28px 28px 0; }
  .ap-split-card__content { padding: 44px 28px 28px; }
}

/* ===== AP-HERO BREADCRUMB ===== */
.ap-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}
.ap-hero__breadcrumb a { color: var(--blue); }
.ap-hero__breadcrumb a:hover { color: var(--white); }
.ap-hero__breadcrumb span { color: rgba(255,255,255,0.15); }

/* ap-hero centered for all pages */
.ap-hero__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.ap-hero .section-label { justify-content: center; }

/* product detail override - wider, left-aligned grid */
.ap-hero .product-detail__grid {
  max-width: 100%;
  text-align: left;
}
.ap-hero .product-detail__info { text-align: left; }
.ap-hero .product-detail__info .ap-hero__breadcrumb { justify-content: flex-start; }

/* ===== PARTNER WHY - Editorial numbered list ===== */
.ptn-why {
  padding: 120px 0;
}
.ptn-why__header {
  text-align: center;
  margin-bottom: 80px;
}
.ptn-why__list {
  max-width: 800px;
  margin: 0 auto;
}
.ptn-why__item {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.ptn-why__item-num {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}
.ptn-why__item-num span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(6,143,223,0.25);
  border-radius: 50%;
}
.ptn-why__item-num--green span {
  color: var(--green);
  border-color: rgba(0,191,99,0.25);
}
.ptn-why__item-num--red span {
  color: var(--red);
  border-color: rgba(253,98,98,0.25);
}
.ptn-why__item-line {
  width: 1.5px;
  flex: 1;
  min-height: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.08), transparent);
  margin-top: 16px;
}
.ptn-why__item-body {
  padding-bottom: 56px;
}
.ptn-why__item:last-child .ptn-why__item-body {
  padding-bottom: 0;
}
.ptn-why__item-body h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.ptn-why__item-body p {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 580px;
}

/* ===== PARTNER WHO - Two column editorial ===== */
.ptn-who {
  padding: 120px 0;
  background: var(--dark);
}
.ptn-who__header {
  text-align: center;
  margin-bottom: 80px;
}
.ptn-who__columns {
  display: flex;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}
.ptn-who__col {
  flex: 1;
  padding: 0 60px;
}
.ptn-who__col:first-child { padding-left: 0; }
.ptn-who__col:last-child { padding-right: 0; }
.ptn-who__divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  align-self: stretch;
  flex-shrink: 0;
}
.ptn-who__col-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 20px;
}
.ptn-who__col h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.ptn-who__col p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 28px;
}
.ptn-who__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.3s ease;
}
.ptn-who__link:hover { gap: 14px; }
.ptn-who__link svg { transition: transform 0.3s ease; }
.ptn-who__link:hover svg { transform: translateX(3px); }

@media (max-width: 768px) {
  .ptn-why { padding: 80px 0; }
  .ptn-why__item { gap: 24px; }
  .ptn-why__item-body { padding-bottom: 40px; }
  .ptn-who { padding: 80px 0; }
  .ptn-who__columns { flex-direction: column; gap: 48px; }
  .ptn-who__col { padding: 0 !important; }
  .ptn-who__divider { width: 100%; height: 1px; }
}

/* ===== CUSTOM SOLUTIONS - COLLAB BLOCKS ===== */
.cs-collab {
  padding: 120px 0 0;
}
.cs-collab__header {
  text-align: center;
  margin-bottom: 80px;
}
.cs-block {
  padding: 40px 0;
}
.cs-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cs-block--flip .cs-block__inner {
  direction: rtl;
}
.cs-block--flip .cs-block__inner > * {
  direction: ltr;
}
.cs-block__media {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.cs-block__media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.cs-block:hover .cs-block__media img {
  transform: scale(1.04);
}
.cs-block__num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 20px;
}
.cs-block__text h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cs-block__text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}

/* ===== CS FOR - Horizontal clickable list ===== */
.cs-for {
  padding: 100px 0;
  background: var(--dark);
}
.cs-for__header {
  text-align: center;
  margin-bottom: 64px;
}
.cs-for__row {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}
.cs-for__item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s ease;
  cursor: pointer;
}
.cs-for__item:first-child {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cs-for__item:hover {
  padding-left: 16px;
}
.cs-for__item-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  flex-shrink: 0;
  width: 32px;
}
.cs-for__item h3 {
  font-size: 1.3rem;
  font-weight: 500;
  flex: 1;
  transition: color 0.3s ease;
}
.cs-for__item:hover h3 {
  color: var(--white);
}
.cs-for__item-arrow {
  color: rgba(255,255,255,0.15);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.cs-for__item:hover .cs-for__item-arrow {
  color: var(--red);
  transform: translate(4px, -4px);
}

/* ===== CS CTA - Immersive with background ===== */
.cs-cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.cs-cta__bg {
  position: absolute;
  inset: 0;
}
.cs-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cs-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 100%);
}
.cs-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cs-cta__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cs-cta__content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .cs-collab { padding: 80px 0 0; }
  .cs-block__inner { grid-template-columns: 1fr; gap: 32px; }
  .cs-block--flip .cs-block__inner { direction: ltr; }
  .cs-block__media img { height: 240px; }
  .cs-for { padding: 80px 0; }
  .cs-for__item { gap: 16px; }
  .cs-cta { padding: 100px 0; }
}

/* ===== ABOUT MISSION - Editorial split ===== */
.abt-mission {
  padding: 120px 0;
}
.abt-mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.abt-mission__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 28px;
}
.abt-mission__text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 16px;
}
.abt-mission__text p:last-child { margin-bottom: 0; }
.abt-mission__image {
  border-radius: 16px;
  overflow: hidden;
}
.abt-mission__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.abt-mission__image:hover img { transform: scale(1.04); }

/* ===== ABOUT ADVANTAGES - Masonry-like grid, no boxes ===== */
.abt-adv {
  padding: 120px 0;
  background: var(--dark);
}
.abt-adv__header {
  text-align: center;
  margin-bottom: 72px;
}
.abt-adv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}
.abt-adv__item {
  padding: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: background 0.4s ease;
}
.abt-adv__item:nth-child(3n) { border-right: none; }
.abt-adv__item:nth-child(n+4) { border-bottom: none; }
.abt-adv__item:hover {
  background: rgba(255,255,255,0.02);
}
.abt-adv__item--highlight {
  background: rgba(6,143,223,0.03);
}
.abt-adv__item-num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 20px;
}
.abt-adv__item h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.abt-adv__item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ===== ABOUT STATS - Large typography ===== */
.abt-stats {
  padding: 100px 0;
}
.abt-stats__row {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}
.abt-stats__item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.abt-stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.abt-stats__value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}
.abt-stats__value em {
  font-style: normal;
  color: var(--red);
}
.abt-stats__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .abt-adv__grid { grid-template-columns: repeat(2, 1fr); }
  .abt-adv__item:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.05); }
  .abt-adv__item:nth-child(2n) { border-right: none; }
  .abt-adv__item:nth-child(n+5) { border-bottom: none; }
  .abt-adv__item:nth-child(n+4) { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .abt-stats__row { flex-wrap: wrap; }
  .abt-stats__item { flex: 0 0 50%; padding: 24px 32px; }
  .abt-stats__item:nth-child(2)::after { display: none; }
}
@media (max-width: 768px) {
  .abt-mission { padding: 80px 0; }
  .abt-mission__grid { grid-template-columns: 1fr; gap: 40px; }
  .abt-mission__image img { height: 280px; }
  .abt-adv { padding: 80px 0; }
  .abt-adv__grid { grid-template-columns: 1fr; }
  .abt-adv__item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.05) !important; }
  .abt-adv__item:last-child { border-bottom: none !important; }
  .abt-stats { padding: 60px 0; }
  .abt-stats__item::after { display: none !important; }
}

/* ===== ABOUT STORY ===== */
.abt-story {
  padding: 80px 0 120px;
}
.abt-story__image {
  max-width: 1100px;
  margin: 0 auto 80px;
  border-radius: 16px;
  overflow: hidden;
}
.abt-story__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.abt-story__content {
  max-width: 720px;
}
.abt-story__label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 20px;
}
.abt-story__content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 32px;
}
.abt-story__text {
  columns: 2;
  column-gap: 48px;
}
.abt-story__text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ===== ABOUT MISSION V2 ===== */
.abt-mission-v2 {
  padding: 120px 0;
  background: var(--dark);
}
.abt-mission-v2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.abt-mission-v2__grid--reverse {
  direction: rtl;
}
.abt-mission-v2__grid--reverse > * {
  direction: ltr;
}
.abt-mission-v2__text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
}
.abt-mission-v2__text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
  margin-bottom: 16px;
}
.abt-mission-v2__image {
  border-radius: 16px;
  overflow: hidden;
}
.abt-mission-v2__image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.abt-mission-v2__image:hover img {
  transform: scale(1.04);
}

/* ===== ABOUT SPIRIT ===== */
.abt-spirit {
  padding: 120px 0;
}
.abt-spirit__values {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.abt-spirit__values span {
  padding: 10px 28px;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
}
.abt-spirit__values span:hover {
  border-color: var(--red);
  color: var(--red);
}

@media (max-width: 768px) {
  .abt-story { padding: 60px 0 80px; }
  .abt-story__image img { height: 260px; }
  .abt-story__image { margin-bottom: 48px; }
  .abt-story__text { columns: 1; }
  .abt-mission-v2 { padding: 80px 0; }
  .abt-mission-v2__grid { grid-template-columns: 1fr; gap: 40px; }
  .abt-mission-v2__grid--reverse { direction: ltr; }
  .abt-mission-v2__image img { height: 280px; }
  .abt-spirit { padding: 80px 0; }
  .abt-spirit__values { flex-wrap: wrap; }
}


/* ===== STORY V2 - Immersive redesign ===== */
.story-v2 {
  padding: 40px 0 120px;
  position: relative;
}
.story-v2__visual {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 72px;
  padding: 0 24px;
}
.story-v2__img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.story-v2__img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.story-v2__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.7) 100%);
}
.story-v2__floating-text {
  flex-wrap: wrap;
  position: absolute;
  bottom: 36px;
  left: 60px;
  display: flex;
  gap: 16px;
  z-index: 2;
}
.story-v2__floating-text span {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  padding: 8px 20px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
}
.story-v2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-v2__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.story-v2__line {
  width: 48px;
  height: 2px;
  background: var(--red);
  margin-bottom: 28px;
}
.story-v2__right p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
  margin-bottom: 20px;
}
.story-v2__right p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .story-v2 { padding: 20px 0 80px; }
  .story-v2__img-wrapper img { height: 300px; }
  .story-v2__floating-text {
  flex-wrap: wrap; left: 20px; bottom: 20px; gap: 8px; }
  .story-v2__floating-text span { font-size: 0.7rem; padding: 6px 14px; }
  .story-v2__grid { grid-template-columns: 1fr; gap: 32px; }
  .story-v2__visual { margin-bottom: 48px; }
}

/* ===== HOMEPAGE INTRO - Large statement ===== */
.hp-intro {
  padding: 140px 0;
  position: relative;
}
.hp-intro__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hp-intro__text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.01em;
}
.hp-intro__text strong {
  color: var(--white);
  font-weight: 600;
}
.hp-intro__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.3s ease;
}
.hp-intro__link:hover { gap: 16px; }
.hp-intro__link svg { transition: transform 0.3s ease; }
.hp-intro__link:hover svg { transform: translate(3px, -3px); }

/* ===== HOMEPAGE PRODUCTS ===== */
.hp-products {
  padding: 120px 0;
  background: var(--dark);
}
.hp-products__header {
  margin-bottom: 56px;
}
.hp-products__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hp-product-item {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.hp-product-item:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.hp-product-item__img {
  height: 100%;
  min-height: 240px;
  overflow: hidden;
}
.hp-product-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hp-product-item:hover .hp-product-item__img img { transform: scale(1.08); }
.hp-product-item__info {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hp-product-item__tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 14px;
}
.hp-product-item__info h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.hp-product-item__info p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.hp-product-item__arrow {
  position: absolute;
  top: 36px;
  right: 36px;
  color: rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}
.hp-product-item:hover .hp-product-item__arrow {
  color: var(--red);
  transform: translate(3px, -3px);
}

/* Product lineup banner */
.hp-products__lineup {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.hp-products__lineup img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.hp-products__lineup-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}
.hp-products__lineup-overlay span {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 600;
}

/* ===== HOMEPAGE APPLICATIONS - Full-width blocks ===== */
.hp-apps {
  padding: 120px 0;
}
.hp-apps__header {
  margin-bottom: 56px;
}
.hp-apps__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 var(--gap);
  max-width: var(--container);
  margin: 0 auto;
}
.hp-app {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.4s ease;
}
.hp-app:hover {
  border-color: rgba(255,255,255,0.1);
}
.hp-app__bg {
  position: absolute;
  inset: 0;
}
.hp-app__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25,0.46,0.45,0.94);
}
.hp-app:hover .hp-app__bg img { transform: scale(1.06); }
.hp-app__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.85) 100%);
  transition: background 0.5s ease;
}
.hp-app:hover .hp-app__overlay {
  background: linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.75) 100%);
}
.hp-app__content {
  position: relative;
  z-index: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}
.hp-app__num {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--blue);
  padding: 4px 10px;
  background: rgba(6,143,223,0.1);
  border-radius: 4px;
  margin-bottom: 4px;
}
.hp-app__content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.hp-app__content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hp-products__grid { grid-template-columns: 1fr; }
  .hp-product-item { grid-template-columns: 1fr 1.2fr; }
}
@media (max-width: 768px) {
  .hp-intro { padding: 80px 0; }
  .hp-products { padding: 80px 0; }
  .hp-product-item { grid-template-columns: 1fr; }
  .hp-product-item__img { min-height: 200px; }
  .hp-product-item__arrow { display: none; }
  .hp-products__lineup img { height: 220px; }
  .hp-products__lineup-overlay { flex-direction: column; gap: 20px; justify-content: center; text-align: center; padding: 24px; }
  .hp-apps { padding: 80px 0; }
  .hp-apps__list { grid-template-columns: 1fr; gap: 14px; }
  .hp-app { height: 240px; border-radius: 12px; }
  .hp-app__content { padding: 20px; }
  .hp-app__content h3 { font-size: 1.2rem; }
}


/* ===== HERO V2 - Premium split ===== */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-v2__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-v2__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}
.hero-v2__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 40%, rgba(10,10,10,0.75) 100%);
}
.hero-v2__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

/* Left - Text */
.hero-v2__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}
.hero-v2__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-v2__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-v2__title span {
  background: linear-gradient(135deg, var(--red), #ff8a80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-v2__desc {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-v2__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Right - Visual */
.hero-v2__right {
  display: flex;
  justify-content: center;
}
.hero-v2__visual {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-v2__product-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px !important;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Floating stat badges */
.hero-v2__float {
  position: absolute;
  padding: 16px 24px;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 2;
}
.hero-v2__float--top {
  top: 32px;
  right: -24px;
}
.hero-v2__float--bottom {
  bottom: 48px;
  left: -32px;
}
.hero-v2__float-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.hero-v2__float-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 1024px) {
  .hero-v2__float--top { right: 0; }
  .hero-v2__float--bottom { left: 0; }
}
@media (max-width: 768px) {
  .hero-v2 { min-height: 100vh; min-height: 100dvh; padding: 0; }
  .hero-v2 > .container { padding: 0 24px; }
  .hero-v2__grid { grid-template-columns: 1fr; gap: 32px; padding: 110px 0 80px; }
  .hero-v2__right { order: 1; }
  .hero-v2__title { font-size: clamp(2rem, 8.5vw, 2.6rem) !important; margin-bottom: 14px; line-height: 1.08; }
  .hero-v2__desc { font-size: 0.9rem; margin-bottom: 28px; line-height: 1.7; color: rgba(255,255,255,0.55); }
  .hero-v2__product-img { height: 220px; border-radius: 16px; }
  .hero-v2__float { display: none; }
  .hero-v2__visual { max-width: 100%; }
  .hero-v2__buttons { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-v2__buttons .btn { text-align: center; justify-content: center; padding: 15px 24px; font-size: 0.9rem; border-radius: 10px; }
  .hero-v2__buttons .btn--outline { border-color: rgba(255,255,255,0.15); }
  .hero-v2__glow { filter: blur(60px); }
  .hero-v2__glow--3 { display: none; }
  .hero__scroll { display: none; }
}
@media (max-width: 480px) {
  .hero-v2__grid { padding: 100px 0 60px; gap: 28px; }
  .hero-v2__title { font-size: 1.9rem !important; }
  .hero-v2__desc { font-size: 0.85rem; }
  .hero-v2__product-img { height: 180px; }
}

/* ===== HERO V2 TITLE LINE MASK ===== */
.hero-v2__title-line {
  overflow: hidden;
  padding-bottom: 0.05em;
}
.hero-v2__title-line-inner {
  display: block;
}


/* ===== PARTICLES GRID ===== */
.particles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.particle-card {
  display: block;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  text-decoration: none;
  color: inherit;
}
.particle-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.particle-card__image {
  height: 320px;
  overflow: hidden;
}
.particle-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.particle-card:hover .particle-card__image img {
  transform: scale(1.06);
}
.particle-card__body {
  padding: 36px;
}
.particle-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 16px;
}
.particle-card__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.particle-card__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 28px;
}
.particle-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  transition: gap 0.3s ease;
}
.particle-card:hover .particle-card__link {
  gap: 14px;
}

@media (max-width: 768px) {
  .particles-grid { grid-template-columns: 1fr; gap: 24px; }
  .particle-card__image { height: 240px; }
  .particle-card__body { padding: 28px; }
  .particle-card__title { font-size: 1.5rem; }
}


/* ===== PRODUCT DETAIL ENHANCED ===== */
.product-detail__fullname {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 20px;
}
.product-detail__desc {
  margin-top: 20px;
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}
.product-detail__desc2 {
  margin-top: 16px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* Specs enhanced */
.pd-specs__note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  font-style: italic;
  margin-bottom: 32px;
}
.specs-table thead th {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  padding: 12px 20px;
  border-bottom: 2px solid rgba(255,255,255,0.08);
}
.specs-table__prop {
  color: var(--white) !important;
  font-weight: 600 !important;
}
.specs-table__val {
  color: rgba(255,255,255,0.6) !important;
}

/* Benefits */
.pd-benefits {
  background: rgba(255,255,255,0.01);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pd-benefits__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pd-benefit {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pd-benefit:last-child { border-bottom: none; }
.pd-benefit__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(6,143,223,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-benefit__icon span {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
}
.pd-benefit__content h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.pd-benefit__content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* Applications */
.pd-apps__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pd-app-item {
  padding: 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  transition: all 0.4s ease;
}
.pd-app-item:hover {
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}
.pd-app-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}
.pd-app-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pd-apps__list { grid-template-columns: 1fr; }
  .pd-benefit { gap: 16px; }
  .pd-benefit__icon { width: 36px; height: 36px; border-radius: 8px; }
}


/* ===== PRODUCT DOWNLOADS ===== */
.pd-downloads__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pd-download-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
}
.pd-download-card:hover {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.pd-download-card__preview {
  flex-shrink: 0;
  width: 80px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.pd-download-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pd-download-card__info {
  flex: 1;
  min-width: 0;
}
.pd-download-card__info h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}
.pd-download-card__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.3s ease;
}
.pd-download-card:hover .pd-download-card__action {
  gap: 10px;
}

@media (max-width: 768px) {
  .pd-downloads__grid { grid-template-columns: 1fr; }
}




/* ===== MEGA MENU ===== */
.mega-trigger { position: relative; }
.mega-trigger__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.mega-trigger__link svg {
  opacity: 0.35;
  transition: all 0.3s ease;
}
.mega-trigger:hover .mega-trigger__link svg {
  opacity: 1;
  transform: rotate(180deg);
}
.mega-menu {
  position: absolute;
  top: 100%;
  padding-top: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 300px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
  z-index: 100;
  overflow: hidden;
}
.mega-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -20px;
  right: -20px;
  height: 12px;
}
.mega-trigger:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0px);
}

/* Columns */
.mega-menu__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.mega-menu__col {
  padding: 16px 6px 12px;
  display: flex;
  flex-direction: column;
}
.mega-menu__col:first-child {
  border-right: 1px solid rgba(255,255,255,0.05);
}
.mega-menu__heading {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.2);
  padding: 0 10px 8px;
}
.mega-menu__col a {
  display: block;
  padding: 7px 10px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  border-radius: 6px;
  transition: all 0.15s ease;
  text-decoration: none;
}
.mega-menu__col a::after { display: none !important; }
.mega-menu__col a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* Footer link */
.mega-menu__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: all 0.2s ease;
}
.mega-menu__footer::after { display: none !important; }
.mega-menu__footer:hover {
  color: var(--white);
  background: rgba(255,255,255,0.03);
}
.mega-menu__footer svg {
  transition: transform 0.2s ease;
}
.mega-menu__footer:hover svg {
  transform: translateX(3px);
}

/* Mobile accordion */


@media (max-width: 1024px) {
  .mega-trigger { display: none; }
}



/* ===== MOBILE RESPONSIVE FIX ===== */
@media (max-width: 768px) {


  /* Product detail hero */
  .product-detail__grid { gap: 32px; }
  .product-detail__image img { height: 280px; }
  .product-detail__fullname { font-size: 0.95rem; }
  .product-detail__desc { font-size: 0.92rem; }
  .product-detail__desc2 { font-size: 0.88rem; }

  /* Specs */
  .pd-specs { padding: 60px 0; }
  .pd-specs__note { font-size: 0.75rem; }
  .specs-table th, .specs-table td { padding: 10px 14px; font-size: 0.82rem; }
  .specs-table thead th { font-size: 0.68rem; }
  .specs-table__prop { font-size: 0.8rem !important; }
  .specs-table__val { font-size: 0.8rem !important; }

  /* Benefits */
  .pd-benefits { padding: 60px 0; }
  .pd-benefit { padding: 20px 0; gap: 16px; }
  .pd-benefit__icon { width: 36px; height: 36px; border-radius: 8px; }
  .pd-benefit__icon span { font-size: 0.7rem; }
  .pd-benefit__content h3 { font-size: 0.95rem; }
  .pd-benefit__content p { font-size: 0.85rem; }

  /* Applications */
  .pd-apps__list { grid-template-columns: 1fr; gap: 12px; }
  .pd-app-item { padding: 20px; }
  .pd-app-item h4 { font-size: 0.92rem; }
  .pd-app-item p { font-size: 0.82rem; }

  /* Downloads */
  .pd-downloads__grid { grid-template-columns: 1fr; gap: 12px; }
  .pd-download-card { padding: 16px; gap: 14px; }
  .pd-download-card__preview { width: 60px; height: 80px; }
  .pd-download-card__info h4 { font-size: 0.82rem; }

  /* Particles grid */
  .particle-card__body { padding: 24px; }
  .particle-card__title { font-size: 1.3rem; }
  .particle-card__desc { font-size: 0.88rem; margin-bottom: 20px; }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .ap-hero__title { font-size: clamp(2rem, 8vw, 2.5rem) !important; }
  .product-detail__image img { height: 220px; }
  .specs-table th, .specs-table td { padding: 8px 10px; font-size: 0.75rem; }
  .pd-benefit { flex-direction: column; align-items: flex-start; }
  .pd-app-item { padding: 16px; }
  .btn { padding: 12px 24px; font-size: 0.85rem; }
  .btn--primary { padding: 12px 24px; }
}

/* Fallback: ensure animated elements become visible */
.gsap-ready [data-animate] * {
  visibility: visible;
}

/* Product detail title */
.product-detail__info h1 {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}




  .hero-v2__overlay::after,
  .hero__overlay::after { width: 60%; height: 35%; filter: blur(50px); }
}

/* Hero glow background */
.hero-v2 {
  background: #0a0a0a;
}
.hero-v2__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.hero-v2__glow--1 {
  top: -10%;
  left: -5%;
  width: 55%;
  height: 70%;
  background: rgba(6,143,223,0.13);
  animation: glowFloat1 16s ease-in-out infinite;
}
.hero-v2__glow--2 {
  bottom: -15%;
  right: -5%;
  width: 45%;
  height: 60%;
  background: rgba(253,98,98,0.07);
  animation: glowFloat2 20s ease-in-out infinite;
}
.hero-v2__glow--3 {
  top: 30%;
  right: 20%;
  width: 30%;
  height: 40%;
  background: rgba(0,191,99,0.05);
  animation: glowFloat3 24s ease-in-out infinite;
}

@keyframes glowFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.13; }
  50% { transform: translate(4%, 6%) scale(1.15); opacity: 0.2; }
}
@keyframes glowFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.07; }
  50% { transform: translate(-5%, -4%) scale(1.1); opacity: 0.12; }
}
@keyframes glowFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.05; }
  50% { transform: translate(3%, -5%) scale(1.2); opacity: 0.09; }
}

@media (max-width: 768px) {
  .hero-v2__glow { filter: blur(80px); }
  .hero-v2__glow--1 { width: 70%; height: 50%; }
  .hero-v2__glow--2 { width: 60%; height: 45%; }
  .hero-v2__glow--3 { display: none; }
}


/* Inner hero: animated grid + grain */


/* Grain texture */
.ap-hero .hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background: repeating-conic-gradient(rgba(255,255,255,0.06) 0% 25%, transparent 0% 50%) 0 0 / 2px 2px;
  mix-blend-mode: overlay;
}

/* Homepage hero grain */
.hero-v2 .hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  background: repeating-conic-gradient(rgba(255,255,255,0.06) 0% 25%, transparent 0% 50%) 0 0 / 2px 2px;
  mix-blend-mode: overlay;
}


/* Mouse-reactive glow */
.hero-mouse-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,143,223,0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: transform;
}
.hero-v2:hover .hero-mouse-glow,
.ap-hero:hover .hero-mouse-glow {
  opacity: 1;
}


/* Floating micro data */
.hero-data {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hero-data__item {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.12);
  white-space: nowrap;
  animation: dataFloat 20s linear infinite;
}
.hero-data__item:nth-child(1) { left: 8%; top: 25%; animation-duration: 22s; }
.hero-data__item:nth-child(2) { left: 75%; top: 15%; animation-duration: 26s; animation-delay: -5s; }
.hero-data__item:nth-child(3) { left: 55%; top: 70%; animation-duration: 24s; animation-delay: -10s; }
.hero-data__item:nth-child(4) { left: 20%; top: 65%; animation-duration: 28s; animation-delay: -15s; }
.hero-data__item:nth-child(5) { left: 85%; top: 50%; animation-duration: 20s; animation-delay: -8s; }
.hero-data__item:nth-child(6) { left: 40%; top: 85%; animation-duration: 25s; animation-delay: -12s; }

@keyframes dataFloat {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  5% { opacity: 0.12; }
  50% { transform: translateY(-40px) translateX(15px); opacity: 0.18; }
  95% { opacity: 0.12; }
  100% { transform: translateY(-80px) translateX(-10px); opacity: 0; }
}

/* Hover: data items glow slightly */
.hero-v2:hover .hero-data__item,
.ap-hero:hover .hero-data__item {
  color: rgba(6,143,223,0.2);
  transition: color 1s ease;
}

@media (max-width: 768px) {
  .hero-mouse-glow { display: none; }
  .hero-data__item { font-size: 0.5rem; }
  .hero-data__item:nth-child(5),
  .hero-data__item:nth-child(6) { display: none; }
}



/* Hero grid */
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-grid__plane {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridMove 30s linear infinite;
  mask-image: radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0.7) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0.7) 0%, transparent 70%);
}
.hero-grid__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle 2px at center, rgba(6,143,223,0.3) 0%, transparent 100%);
  background-size: 80px 80px;
  animation: gridMove 30s linear infinite;
  mask-image: radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0.6) 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0.6) 0%, transparent 65%);
}
@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

.hero-v2 .hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 768px) {
  .hero-grid__plane,
  .hero-grid__dots {
    background-size: 50px 50px;
  }
}




@media (max-width: 768px) {
  .scroll-top { bottom: 20px; right: 20px; width: 40px; height: 40px; border-radius: 10px; }
}







/* Float buttons */
.float-wrap {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.float-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.float-actions__toggle {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(253,98,98,0.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(253,98,98,0.25);
}
.float-actions__toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(253,98,98,0.35);
}
.float-actions__icon-close { display: none; }
.float-actions.open .float-actions__icon-open { display: none; }
.float-actions.open .float-actions__icon-close { display: block; }
.float-actions.open .float-actions__toggle {
  background: rgba(30,30,30,0.95);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.1);
}
.float-actions__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
}
.float-actions.open .float-actions__menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.float-actions__item {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(16,16,16,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}
.float-actions__item:hover {
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
  transform: translateY(-2px);
}

/* Scroll top — always below toggle */
.float-top {
  margin-top: 8px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(16,16,16,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}
.float-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-top:hover {
  border-color: rgba(6,143,223,0.3);
  color: var(--blue);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .float-wrap { bottom: 20px; right: 20px; }
  .float-actions__toggle,
  .float-actions__item,
  .float-top {
  margin-top: 8px; width: 44px; height: 44px; border-radius: 12px; }
}


/* Hero v2 stats grid */
.hero-v2__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-v2__stat {
  padding: 28px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}
.hero-v2__stat:hover {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  transform: translateY(-3px);
}
.hero-v2__stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}
.hero-v2__stat:nth-child(1) .hero-v2__stat-value { color: var(--blue); }
.hero-v2__stat:nth-child(2) .hero-v2__stat-value { color: var(--red); }
.hero-v2__stat:nth-child(3) .hero-v2__stat-value { color: var(--green); }
.hero-v2__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero trust bar */
.hero-v2__trust {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.hero-v2__trust-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 0;
}
.hero-v2__trust-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.hero-v2__trust-items {
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}
.hero-v2__trust-items span {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.15);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .hero-v2__stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-v2__stat { padding: 20px 16px; border-radius: 12px; }
  .hero-v2__stat-value { font-size: 1.4rem; }
  .hero-v2__trust-inner { flex-direction: column; gap: 12px; align-items: flex-start; padding: 14px 0; }
  .hero-v2__trust-items { gap: 16px; }
  .hero-v2__trust-items span { font-size: 0.65rem; }
}


/* Step form */
.step-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

/* Progress */
.step-form__progress {
  margin-bottom: 40px;
}

.step-form__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.step-form__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  min-width: 80px;
  transition: all 0.3s ease;
}
.step-form__step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.step-form__step-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s ease;
  white-space: nowrap;
}
.step-form__step.active .step-form__step-num {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(6,143,223,0.25);
}
.step-form__step.active .step-form__step-label {
  color: var(--white);
}
.step-form__step.done .step-form__step-num {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.step-form__step.done .step-form__step-label {
  color: rgba(255,255,255,0.5);
}

/* Panels */
.step-form__panel {
  display: none;
  opacity: 1;
}
.step-form__panel.active {
  display: block;
}
.step-form__panel-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.step-form__panel-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 32px;
}

/* Actions */
.step-form__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  gap: 16px;
}
.step-form__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.step-form__btn--prev {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  padding: 12px 0;
}
.step-form__btn--prev:hover {
  color: var(--white);
}
.step-form__btn--next,
.step-form__btn--submit {
  margin-left: auto;
  padding: 14px 32px;
  border-radius: 10px;
}
.step-form__btn--submit {
  background: var(--green);
}
.step-form__btn--submit:hover {
  background: #00a855;
}

/* Validation error */
.form__input.error {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(253,98,98,0.1) !important;
}
.form__input.error:focus {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 4px rgba(253,98,98,0.15) !important;
}

/* Success */
.step-form__success {
  text-align: center;
  padding: 40px 20px;
}
.step-form__success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0,191,99,0.1);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.step-form__success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.step-form__success p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

/* Step form inputs */
.step-form .form__input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 15px 18px;
  font-size: 0.92rem;
  transition: all 0.3s ease;
}
.step-form .form__input:focus {
  background: rgba(255,255,255,0.06);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(6,143,223,0.08);
}
.step-form .form__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
  .step-form { padding: 28px 20px; border-radius: 18px; }
  .step-form__step-label { font-size: 0.6rem; }
  .step-form__step-num { width: 34px; height: 34px; font-size: 0.75rem; }
  .step-form__step { min-width: 60px; }
  .step-form__line { margin: 17px 8px 0; }
  .step-form__panel-title { font-size: 1.1rem; }
  .step-form__actions { flex-direction: column-reverse; }
  .step-form__btn--next,
  .step-form__btn--submit { width: 100%; justify-content: center; margin-left: 0; }
  .step-form__btn--prev { width: 100%; justify-content: center; }
}


/* Floating labels */
.form__float {
  position: relative;
  display: flex;
  flex-direction: column;
}
.form__float-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 22px 18px 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--white);
  transition: all 0.3s ease;
  outline: none;
}
.form__float-input:focus {
  background: rgba(255,255,255,0.06);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(6,143,223,0.08);
}
.form__float-label {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  transform-origin: left;
}
.form__float-input:focus ~ .form__float-label,
.form__float-input:not(:placeholder-shown) ~ .form__float-label {
  top: 12px;
  transform: translateY(0) scale(0.75);
  color: var(--blue);
}
.form__float-textarea {
  min-height: 130px;
  resize: vertical;
  padding-top: 28px;
}
.form__float-textarea ~ .form__float-label {
  top: 16px;
  transform: translateY(0);
}
.form__float-textarea:focus ~ .form__float-label,
.form__float-textarea:not(:placeholder-shown) ~ .form__float-label {
  top: 8px;
  transform: scale(0.75);
  color: var(--blue);
}
.form__float-select {
  appearance: none;
  cursor: pointer;
  padding-top: 22px;
  padding-bottom: 10px;
}
.form__float-label--select {
  top: 12px;
  transform: translateY(0) scale(0.75);
  color: rgba(255,255,255,0.35);
}
.form__float-input.error {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(253,98,98,0.1) !important;
}
.form__float-input.error ~ .form__float-label {
  color: var(--red);
}



@media (max-width: 768px) {
  .form__float-input { padding: 20px 16px 8px; font-size: 0.88rem; }
  .form__float-label { left: 16px; font-size: 0.82rem; }
  .step-form__step-icon { width: 38px; height: 38px; border-radius: 10px; }
}

/* Step connector lines */
.step-form__line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  margin: 16px 12px 0;
  overflow: hidden;
  align-self: flex-start;
}
.step-form__line-fill {
  width: 0%;
  height: 100%;
  background: var(--blue);
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
}
.step-form__line.done .step-form__line-fill {
  width: 100%;
}


/* 404 page */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.error-page__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.error-page__glow--1 {
  top: 20%;
  left: 10%;
  width: 40%;
  height: 50%;
  background: rgba(253,98,98,0.06);
  animation: glowFloat1 16s ease-in-out infinite;
}
.error-page__glow--2 {
  bottom: 10%;
  right: 10%;
  width: 35%;
  height: 45%;
  background: rgba(6,143,223,0.06);
  animation: glowFloat2 20s ease-in-out infinite;
}
.error-page__content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.error-page__code {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(8rem, 20vw, 14rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: -20px;
  user-select: none;
}
.error-page__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--white);
}
.error-page__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 36px;
  line-height: 1.6;
}
.error-page__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .error-page__code { font-size: 7rem; margin-bottom: -10px; }
  .error-page__actions { flex-direction: column; align-items: center; }
}

.specs-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 40px;
}
.specs-table-wrap .specs-table {
  margin-top: 0;
}

@media (max-width: 768px) {
  .product-card__image { height: 260px !important; }
}
@media (max-width: 480px) {
  .product-card__image { height: 220px !important; }
}

@media (max-width: 480px) {
  .error-page__code { font-size: 5rem !important; }
}

@media (max-width: 480px) {
  .abt-stats__item { flex: 0 0 100% !important; }
  .section { padding: 60px 0; }
  .cs-cta { padding: 70px 0 !important; }
  .mob-acc__btn { font-size: 1.3rem !important; }
}




/* Mobile lang toggle */
.lang-toggle--mobile {
  margin-left: 0;
  margin-top: 8px;
  border-color: rgba(255,255,255,0.08);
}
.lang-toggle--mobile .lang-toggle__active,
.lang-toggle--mobile .lang-toggle__other {
  padding: 8px 16px;
  font-size: 0.8rem;
}

@media (max-width: 1024px) {
  .header__nav .lang-toggle { display: none; }
}



/* Dropdown */
.lang-switch__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  z-index: 100;
}
.lang-switch.open .lang-switch__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-switch__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.15s ease;
}
.lang-switch__item::after { display: none !important; }
.lang-switch__item:hover {
  background: rgba(255,255,255,0.05);
  color: var(--white);
}
.lang-switch__item.active {
  color: var(--white);
}
.lang-switch__item.active svg {
  margin-left: auto;
  color: var(--green);
}
.lang-switch__item-flag {
  font-size: 1rem;
}
.lang-switch__item-label {
  font-family: var(--font-heading);
  font-weight: 500;
}

/* Mobile language */
.lang-switch--mobile {
  margin-top: 12px;
}
.lang-switch__mobile-row {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.lang-switch__mobile-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.4) !important;
  text-decoration: none;
  transition: all 0.2s ease;
}
.lang-switch__mobile-item.active {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: var(--white) !important;
}

@media (max-width: 1024px) {
  .lang-switch { display: none; }
}



/* Mobile */
.lang-switch--mobile {
  margin-top: 16px;
}
.lang-switch__mobile-row {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.lang-switch__mobile-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.35) !important;
  text-decoration: none;
  transition: all 0.2s ease;
}
.lang-switch__mobile-item .lang-flag { width: 20px; height: 20px; }
.lang-switch__mobile-item.active {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: var(--white) !important;
}
.lang-switch__mobile-item:hover {
  border-color: rgba(255,255,255,0.15);
}

@media (max-width: 1024px) {
  .lang-switch { display: none; }
}

/* Language button */
.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-left: 12px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.lang-btn::after { display: none !important; }
.lang-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lang-btn:hover {
  border-color: rgba(255,255,255,0.35);
  transform: scale(1.08);
}

.lang-btn--mobile {
  width: auto;
  height: auto;
  border-radius: 12px;
  margin: 8px auto 0;
  padding: 10px 24px;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.1);
}
.lang-btn--mobile img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}
.lang-btn--mobile span {
  font-family: var(--font-heading);
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--white) !important;
}
.lang-btn--mobile:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
  transform: none;
}

@media (max-width: 1024px) {
  .header__nav .lang-btn { display: none; }
}


/* Language switcher (lsw) */
.lsw {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
  text-decoration: none;
}
.lsw::after { display: none !important; }
.lsw:hover {
  border-color: rgba(255,255,255,0.3);
  transform: scale(1.08);
}
.lsw__flag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile switcher */
.lsw--mob {
  width: auto;
  height: auto;
  border-radius: 10px;
  padding: 10px 22px;
  gap: 10px;
  margin: 12px auto 0;
  border-width: 1px;
}
.lsw--mob .lsw__flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lsw--mob .lsw__label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.lsw--mob:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.03);
  transform: none;
}

@media (max-width: 1024px) {
  .header__nav .lsw { display: none; }
}
