/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #000;
  color: #fff;
  /* overflow handled per-section */
  -webkit-font-smoothing: antialiased;
}

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

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
.text-blue {
  color: #3494D5;
}

.text-white {
  color: #fff;
}

.section-title {
  font-family: 'Bebas Neue', cursive;
  font-weight: 400;
  font-size: 48px;
  line-height: 58px;
}

.title-line {
  width: 80px;
  height: 4px;
  background: #3494D5;
  margin-top: 6px;
  margin-bottom: 20px;
}

.title-line-center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  padding: 18px 24px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.85;
}

.btn-primary {
  background: #3494D5;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn-sm {
  padding: 14px 24px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 27px 80px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

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

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

.cart-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: #000;
  padding: 120px 80px 0;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 50%;
}

.hero-text {
  display: flex;
  flex-direction: column;
}

.typewriter::after {
  content: '|';
  color: #3494D5;
  animation: blink 0.6s step-end infinite;
  font-weight: 400;
}

.typewriter.done::after {
  display: none;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-text h1 {
  font-family: 'Bebas Neue', cursive;
  font-weight: 400;
  font-size: 120px;
  line-height: 144px;
  color: #3494D5;
}

.hero-text h1 span {
  color: #3494D5;
}

/* "NOT GIVEN." part stays white — use CSS to style just "BUILT." blue */
.hero-text h1 {
  color: #fff;
  min-height: 144px;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  margin-top: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-images {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 20px;
  height: 100%;
  width: 65%;
}

.hero-img-full {
  flex: 1;
  overflow: hidden;
  width: 100%;
}

.hero-img-full video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-img-full video::-webkit-media-controls,
.hero-img-full video::-webkit-media-controls-panel,
.hero-img-full video::-webkit-media-controls-play-button,
.hero-img-full video::-webkit-media-controls-start-playback-button,
.hero-img-full video::-webkit-media-controls-overlay-play-button,
.hero-img-full video::-webkit-media-controls-enclosure {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ============================================
   FEATURES BANNER
   ============================================ */
/* Features banner is now inside hero, no separate section needed */

/* Molecular structures canvas — always behind content */
.molecules-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.features-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 80px;
  text-align: center;
}

.features-banner-inner .section-title {
  color: #fff;
}

.features-banner-inner .title-line {
  margin-bottom: 10px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  transition: background 0.3s, border-color 0.3s;
}

.feature-card:hover {
  background: rgba(52, 148, 213, 0.08);
  border-color: rgba(52, 148, 213, 0.3);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(52, 148, 213, 0.1);
  border: 1px solid rgba(52, 148, 213, 0.2);
  border-radius: 12px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.feature-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.feature-label {
  font-family: 'Bebas Neue', cursive;
  font-weight: 400;
  font-size: 26px;
  line-height: 30px;
  color: #fff;
  letter-spacing: 1px;
}

.feature-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
  background: #fff;
  padding: 80px 0;
}

.products-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.products .section-title {
  color: #000;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
  border: 1px solid #D3D3D3;
  cursor: pointer;
}

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

.product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #1a1a1a;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px;
  flex: 1;
}

.product-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-name {
  font-family: 'Bebas Neue', cursive;
  font-weight: 400;
  font-size: 32px;
  line-height: 38px;
  color: #000;
}

.product-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #000;
}

.product-price {
  font-family: 'Bebas Neue', cursive;
  font-weight: 400;
  font-size: 32px;
  line-height: 38px;
  color: #3494D5;
  text-align: right;
  white-space: nowrap;
}

/* Add to Cart button on product cards */
.btn-add-cart {
  display: block;
  width: calc(100% - 32px);
  margin: 0 auto 16px;
  padding: 14px;
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff;
  background: #000;
  border: 1px solid #D3D3D3;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-add-cart:hover {
  background: #3494D5;
}

.btn-add-cart.added {
  background: #2a7ab5;
  pointer-events: none;
}

/* Product actions row (Add to Cart + mg dropdown) */
.product-actions {
  display: flex;
  gap: 0;
  padding: 0 16px 16px;
}

.product-actions .btn-add-cart {
  flex: 1;
  width: auto;
  margin: 0;
}

.mg-select {
  width: 80px;
  padding: 14px 8px;
  font-family: 'Bebas Neue', cursive;
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
  background: #1a1a1a;
  border: 1px solid #D3D3D3;
  border-left: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  text-align: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 22px;
}

.mg-select:hover {
  background-color: #222;
}

.mg-select option {
  background: #111;
  color: #fff;
}

/* PDP actions row */
.pdp-actions {
  display: flex;
  gap: 0;
  max-width: 320px;
}

.pdp-actions .pdp-add-cart {
  flex: 1;
  max-width: none;
}

.pdp-mg-select {
  width: 90px;
  padding: 18px 10px;
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff;
  background: #2a7ab5;
  border: none;
  border-left: 2px solid rgba(255,255,255,0.2);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  text-align: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23fff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 26px;
}

.pdp-mg-select:hover {
  background: #237aad;
}

.pdp-mg-select option {
  background: #111;
  color: #fff;
}

/* Cart badge on header icon */
.cart-icon {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #3494D5;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Cart overlay */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Cart drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 90vw;
  height: 100%;
  background: #111;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 30px;
  border-bottom: 1px solid #2a2a2a;
}

.cart-drawer-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  color: #fff;
  letter-spacing: 2px;
}

.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.cart-close:hover {
  opacity: 1;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 30px;
}

.cart-empty {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #666;
  text-align: center;
  padding: 60px 0;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #2a2a2a;
  align-items: flex-start;
}

.cart-item-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-item-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.5px;
}

.cart-item-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #3494D5;
  font-weight: 600;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.cart-item-qty span {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #fff;
  min-width: 20px;
  text-align: center;
}

.qty-btn {
  width: 28px;
  height: 28px;
  background: #222;
  border: 1px solid #444;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: #3494D5;
  border-color: #3494D5;
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  opacity: 0.5;
  transition: opacity 0.2s;
  flex-shrink: 0;
  margin-top: 2px;
}

.cart-item-remove:hover {
  opacity: 1;
}

.cart-drawer-footer {
  padding: 24px 30px;
  border-top: 1px solid #2a2a2a;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cart-total span {
  font-family: 'Bebas Neue', cursive;
  font-size: 24px;
  color: #fff;
  letter-spacing: 1px;
}

.cart-total span:last-child {
  color: #3494D5;
}

.cart-checkout-btn {
  width: 100%;
  text-align: center;
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  letter-spacing: 1px;
  padding: 16px;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.pdp {
  background: #fff;
  min-height: 100vh;
}

.pdp-hero {
  background: #000;
  padding: 120px 80px 80px;
}

.pdp-inner {
  display: flex;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
  align-items: flex-start;
}

.pdp-image {
  flex: 1;
  max-width: 580px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #1a1a1a;
  flex-shrink: 0;
}

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

.pdp-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pdp-back {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #888;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.pdp-back:hover {
  color: #3494D5;
}

.pdp-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 56px;
  line-height: 1.1;
  color: #fff;
}

.pdp-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: #aaa;
  line-height: 1.5;
}

.pdp-price {
  font-family: 'Bebas Neue', cursive;
  font-size: 42px;
  color: #3494D5;
}

.pdp-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.pdp-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 120px;
}

.pdp-meta-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pdp-meta-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}

.pdp-add-cart {
  display: inline-block;
  padding: 18px 48px;
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  letter-spacing: 1.5px;
  color: #fff;
  background: #3494D5;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  max-width: 320px;
}

.pdp-add-cart:hover {
  background: #2a7ab5;
}

.pdp-add-cart.added {
  background: #1d6a3a;
}

/* Product detail body section */
.pdp-body {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px;
}

.pdp-section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 36px;
  color: #000;
  margin-bottom: 8px;
}

.pdp-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  max-width: 800px;
  margin-bottom: 48px;
}

.pdp-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.pdp-highlight {
  background: #f5f5f5;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pdp-highlight-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  color: #000;
}

.pdp-highlight-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.pdp-specs {
  margin-top: 48px;
}

.pdp-spec-row {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  padding: 16px 0;
}

.pdp-spec-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  width: 200px;
  flex-shrink: 0;
}

.pdp-spec-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #555;
}

.pdp-disclaimer {
  margin-top: 48px;
  padding: 24px;
  background: #f9f9f9;
  border-left: 3px solid #3494D5;
}

.pdp-disclaimer p {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  line-height: 1.7;
  color: #888;
}

@media (max-width: 1024px) {
  .pdp-hero { padding: 120px 40px 60px; }
  .pdp-inner { flex-direction: column; gap: 40px; }
  .pdp-image { max-width: 100%; }
  .pdp-body { padding: 60px 40px; }
  .pdp-highlights { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .pdp-hero { padding: 100px 24px 40px; }
  .pdp-name { font-size: 42px; }
  .pdp-price { font-size: 34px; }
  .pdp-body { padding: 40px 24px; }
  .pdp-highlights { grid-template-columns: 1fr; }
  .pdp-spec-row { flex-direction: column; gap: 4px; }
  .pdp-spec-label { width: auto; }
}

/* ============================================
   CONTACT OVERLAY
   ============================================ */
.contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.contact-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.contact-close {
  position: absolute;
  top: 32px;
  right: 40px;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  z-index: 1001;
}

.contact-close:hover {
  opacity: 1;
}

.contact-inner {
  width: 100%;
  max-width: 640px;
  padding: 40px;
  text-align: center;
}

.contact-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 56px;
  color: #fff;
  letter-spacing: 3px;
}

.contact-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #888;
  margin-top: 16px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.contact-row {
  display: flex;
  gap: 20px;
}

.contact-row .contact-field {
  flex: 1;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-field label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #fff;
  background: #1a1a1a;
  border: 1px solid #333;
  outline: none;
  transition: border-color 0.2s;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #555;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: #3494D5;
}

.contact-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  margin-top: 8px;
  width: 100%;
  text-align: center;
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  letter-spacing: 1.5px;
  padding: 18px;
  transition: background 0.2s;
}

@media (max-width: 768px) {
  .contact-overlay {
    align-items: flex-start;
    background: rgba(0, 0, 0, 1);
  }

  .contact-inner {
    padding: 80px 24px 40px;
  }

  .contact-title {
    font-size: 42px;
  }

  .contact-row {
    flex-direction: column;
  }

  .contact-close {
    top: 20px;
    right: 24px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #000;
  padding: 40px 80px;
}

.footer-disclaimer {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  padding: 0 16px;
}

.footer-disclaimer p {
  margin: 0 0 14px;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-disclaimer strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.footer-policies {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  max-width: 1440px;
  margin: 0 auto 32px;
  padding: 0 16px;
}

.footer-policies a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-policies a:hover {
  color: #3494D5;
}

@media (max-width: 600px) {
  .footer-policies {
    gap: 16px 20px;
    margin-bottom: 28px;
  }
  .footer-policies a {
    font-size: 12px;
  }
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.footer-email {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.footer-email svg {
  flex-shrink: 0;
  transition: opacity 0.2s;
  opacity: 0.85;
}

.footer-email:hover svg { opacity: 1; }

.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-social {
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-social:hover {
  opacity: 1;
}

.footer-email:hover {
  color: #3494D5;
}

/* ============================================
   RESPONSIVE - TABLET (<=1024px)
   ============================================ */
@media (max-width: 1024px) {
  .header {
    padding: 20px 40px;
  }

  .hero {
    padding: 120px 40px 0;
    min-height: auto;
  }

  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    gap: 0;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
    gap: 28px;
    padding-bottom: 48px;
  }

  .hero-text h1 {
    font-size: 88px;
    line-height: 100px;
    min-height: 100px;
  }

  .hero-images {
    position: relative;
    width: 100%;
    height: 400px;
    justify-content: center;
  }

  .features-banner-inner {
    padding: 60px 40px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-inner {
    padding: 0 40px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    padding: 40px;
  }
}

/* ============================================
   RESPONSIVE - MOBILE (<=768px)
   ============================================ */
@media (max-width: 768px) {
  .header {
    padding: 16px 24px;
  }

  .btn-sm {
    padding: 10px 16px;
    font-size: 13px;
    white-space: nowrap;
  }

  .logo {
    height: 14px;
  }

  .header-right {
    gap: 12px;
  }

  .hero {
    padding: 80px 24px 0;
  }

  .hero-content {
    gap: 20px;
    padding-bottom: 40px;
  }

  .hero-text h1 {
    font-size: 64px;
    line-height: 72px;
    white-space: normal;
    min-height: 72px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 12px;
    width: 100%;
  }

  .hero-buttons .btn {
    flex: 1;
    text-align: center;
    padding: 16px 12px;
    font-size: 14px;
  }

  .hero-images {
    height: auto;
  }

  .hero-img-full {
    width: 100%;
    height: 300px;
  }

  .section-title {
    font-size: 36px;
    line-height: 44px;
  }

  .features-banner-inner {
    padding: 48px 24px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .feature-card {
    padding: 20px;
    gap: 14px;
  }

  .feature-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

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

  .feature-label {
    font-size: 20px;
    line-height: 24px;
  }

  .feature-desc {
    font-size: 11px;
  }

  .products {
    padding: 60px 0;
  }

  .products-inner {
    padding: 0 24px;
  }

  .product-actions {
    padding: 0 12px 12px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-name {
    font-size: 26px;
    line-height: 32px;
  }

  .product-price {
    font-size: 26px;
    line-height: 32px;
  }

  .footer {
    padding: 30px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (<=480px)
   ============================================ */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 52px;
    line-height: 58px;
    min-height: 58px;
  }

  .hero-content {
    gap: 16px;
    padding-bottom: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    flex: auto;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-title {
    font-size: 30px;
    line-height: 36px;
  }

  .product-info {
    padding: 16px;
  }

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

  .product-price {
    text-align: left;
  }
}
