@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600&family=Space+Grotesk:wght@300;400;500;600&display=swap');

:root {
  --bg-deep: #030608;
  --bg-surface: #070b14;
  --bg-card: #0a0f1a;
  --accent: #2d7ff9;
  --accent-glow: rgba(45, 127, 249, 0.15);
  --accent-soft: rgba(45, 127, 249, 0.06);
  --text-primary: #e8ecf4;
  --text-secondary: rgba(232, 236, 244, 0.45);
  --text-tertiary: rgba(232, 236, 244, 0.2);
  --border: rgba(255, 255, 255, 0.05);
  --border-hover: rgba(45, 127, 249, 0.2);
  --font-display: 'Sora', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--accent);
  color: #fff;
}

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

/* ========== CURSOR GLOW ========== */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* ========== LOADING SCREEN ========== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}


.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  animation: loaderEnter 0.7s var(--ease-out-expo) forwards;
}

.loader.hiding .loader-content {
  animation: loaderExit 0.6s var(--ease-out-expo) forwards;
}

.loader-icon {
  height: 70px;
  width: auto;
}

@keyframes loaderEnter {
  from { opacity: 0; transform: translateX(80px) scale(0.9); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes loaderExit {
  from { opacity: 1; transform: translateX(0) scale(1); }
  to { opacity: 0; transform: translateX(-80px) scale(0.9); }
}

.loader-bar {
  width: 140px;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: barFadeIn 0.3s 0.7s ease-out forwards;
}

@keyframes barFadeIn {
  to { opacity: 1; }
}

.loader-bar-fill {
  height: 100%;
  width: 0;
  background: var(--accent);
  border-radius: 2px;
  animation: loaderProgress 1.4s 0.8s var(--ease-smooth) forwards;
}

@keyframes loaderProgress {
  0% { width: 0; }
  100% { width: 100%; }
}


/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s var(--ease-smooth);
  backdrop-filter: blur(0px);
}

.nav.scrolled {
  padding: 16px 48px;
  background: rgba(3, 6, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--text-primary);
  cursor: pointer;
}

.nav-logo-img {
  height: 36px;
  width: auto;
}

.nav-logo span {
  color: var(--accent);
  font-weight: 300;
}

.nav-center {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  transition: color 0.4s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease-out-expo);
}

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

.nav-link:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  display: flex;
  gap: 2px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 3px;
  border: 1px solid var(--border);
}

.lang-btn {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--text-tertiary);
  background: transparent;
  border: none;
  font-family: var(--font-body);
}

.lang-btn.active {
  background: var(--accent);
  color: #fff;
}

/* ========== MOBILE MENU ========== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 200;
}

.nav-hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .nav-link {
  font-size: 24px;
  letter-spacing: 3px;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
}

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

.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat var(--dur, 8s) var(--delay, 0s) infinite;
}

@keyframes particleFloat {
  0% { transform: translate(0, 0) scale(0); opacity: 0; }
  15% { opacity: 1; transform: scale(1); }
  85% { opacity: 0.6; }
  100% { transform: translate(var(--tx, 50px), var(--ty, -100px)) scale(0); opacity: 0; }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(45, 127, 249, 0.07);
  top: -150px;
  left: -150px;
  animation: orbBreathe 10s ease-in-out infinite;
}

.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(45, 80, 200, 0.05);
  bottom: -100px;
  right: -100px;
  animation: orbBreathe 8s 3s ease-in-out infinite;
}

@keyframes orbBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  animation: slideUp 1s 0.2s var(--ease-out-expo) forwards;
}

.hero-tag::before,
.hero-tag::after {
  content: '';
  display: block;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--accent));
  animation: lineExpand 1.2s 0.8s var(--ease-out-expo) forwards;
}

.hero-tag::after {
  background: linear-gradient(90deg, var(--accent), transparent);
}

@keyframes lineExpand {
  to { width: 60px; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  opacity: 0;
  animation: slideUp 1s 0.4s var(--ease-out-expo) forwards;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  opacity: 0.3;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.4; }
}

.hero-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.8;
  opacity: 0;
  animation: slideUp 1s 0.6s var(--ease-out-expo) forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  opacity: 0;
  animation: slideUp 1s 0.8s var(--ease-out-expo) forwards;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== BUTTONS ========== */
.btn-primary {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: var(--accent);
  filter: blur(16px);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-primary:hover::before {
  opacity: 0.4;
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  padding: 16px 40px;
  border-radius: 50px;
  border: 1px solid var(--border);
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.4s var(--ease-out-expo);
}

.btn-ghost:hover {
  color: var(--accent);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

/* ========== HERO IMAGE ========== */
.hero-image-section {
  padding: 0 120px 100px;
  position: relative;
  z-index: 2;
}

.hero-image-frame {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  animation: imageFloat 6s ease-in-out infinite;
  border: 1px solid var(--border);
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(45, 127, 249, 0.3), transparent 50%, rgba(45, 127, 249, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.hero-image-frame img {
  width: 100%;
  display: block;
}

.hero-image-placeholder {
  height: 420px;
  background: linear-gradient(145deg, #0a1020, #101a35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  font-size: 14px;
  letter-spacing: 3px;
}

@keyframes imageFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ========== SECTION COMMON ========== */
.section {
  padding: 120px 48px;
  position: relative;
}

.section-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.section-title em {
  font-style: normal;
  color: var(--accent);
}

/* ========== DIVIDER ========== */
.divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(transparent, rgba(45, 127, 249, 0.25), transparent);
  margin: 0 auto;
}

/* ========== FEATURES ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  padding: 40px 28px;
  background: var(--bg-surface);
  text-align: center;
  cursor: default;
  transition: all 0.5s var(--ease-out-expo);
}

.feature-card:hover {
  background: var(--bg-card);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(45, 127, 249, 0.1);
  transition: all 0.5s var(--ease-out-expo);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) translateY(-4px);
  background: rgba(45, 127, 249, 0.12);
  border-color: rgba(45, 127, 249, 0.25);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== PRODUCTS ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  min-height: auto;
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(45, 127, 249, 0.04));
  opacity: 0;
  transition: opacity 0.5s;
}

.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
}

.product-card:hover::after {
  opacity: 1;
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
  transition: all 0.5s;
}

.product-card:hover img {
  opacity: 0.8;
  transform: scale(1.03);
}

.product-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.product-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 6px;
  position: relative;
  z-index: 2;
}

.coming-soon-card {
  text-align: center;
}

/* ========== ABOUT ========== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 32px;
  align-items: center;
}

.about-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.9;
  font-weight: 300;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
}

.stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-size: 11px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
  display: block;
}

/* ========== CONTACT ========== */
.contact-section {
  padding: 80px 48px;
  text-align: center;
}

.contact-box {
  background: var(--accent-soft);
  border: 1px solid rgba(45, 127, 249, 0.08);
  border-radius: 24px;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.contact-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(45, 127, 249, 0.06) 0%, transparent 50%);
  pointer-events: none;
  animation: orbBreathe 8s ease-in-out infinite;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 500;
  margin-bottom: 12px;
  position: relative;
}

.contact-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  position: relative;
}

.contact-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.contact-link {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 12px 28px;
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: all 0.4s var(--ease-out-expo);
  cursor: pointer;
}

.contact-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ========== SOCIAL ICONS ========== */
.contact-socials {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
  position: relative;
}

.social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.4s var(--ease-out-expo);
  cursor: pointer;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.social-icon:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
  background: rgba(45, 127, 249, 0.06);
}

/* ========== FOOTER ========== */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  border-top: 1px solid var(--border);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
}

.footer-logo-img {
  height: 24px;
  width: auto;
}

.footer-logo span {
  color: var(--accent);
  font-weight: 300;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-tertiary);
}

.footer-lang {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE — LARGE TABLET / SMALL LAPTOP (1200px) ========== */
@media (max-width: 1200px) {
  .nav { padding: 22px 32px; }
  .nav.scrolled { padding: 16px 32px; }
  .nav-center { gap: 24px; }

  .hero { padding: 140px 32px 80px; }
  .hero-subtitle { max-width: 420px; font-size: 16px; }

  .hero-image-section { padding: 0 32px 80px; }
  .hero-image-placeholder { height: 340px; }

  .section { padding: 100px 32px; }

  .features-grid { gap: 1px; }
  .feature-card { padding: 32px 20px; }
  .feature-desc { font-size: 12px; }

  .products-grid { gap: 20px; }
  .product-card { min-height: 240px; padding: 28px; }

  .about-layout { gap: 40px; }

  .contact-section { padding: 70px 32px; }
  .contact-box { padding: 52px 36px; }

  .footer { padding: 24px 32px; }
}

/* ========== RESPONSIVE — TABLET (900px) ========== */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-center { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .hero { padding: 120px 24px 60px; }
  .hero-title { letter-spacing: -1px; }
  .hero-subtitle { font-size: 15px; max-width: 400px; }
  .hero-cta { flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary, .btn-ghost { width: 260px; text-align: center; }

  .hero-image-section { padding: 0 24px 60px; }
  .hero-image-placeholder { height: 260px; }
  .hero-image-frame { border-radius: 14px; }

  .section { padding: 80px 24px; }
  .section-title { font-size: 28px; }

  .features-grid { grid-template-columns: 1fr; border-radius: 14px; }
  .feature-card { padding: 32px 24px; }

  .products-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card { min-height: 220px; border-radius: 16px; }

  .about-layout { grid-template-columns: 1fr; gap: 32px; }
  .about-text { font-size: 14px; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }

  .contact-section { padding: 60px 24px; }
  .contact-box { padding: 40px 24px; border-radius: 18px; }
  .contact-title { font-size: 24px; }
  .contact-links { flex-direction: column; align-items: center; gap: 12px; }
  .contact-link { width: 240px; text-align: center; }

  .divider { height: 50px; }

  .footer { flex-direction: column; gap: 12px; text-align: center; padding: 24px; }

  .cursor-glow { display: none; }

  .hero-orb-1 { width: 300px; height: 300px; }
  .hero-orb-2 { width: 200px; height: 200px; }
}

/* ========== RESPONSIVE — PHONE (480px) ========== */
@media (max-width: 480px) {
  .nav { padding: 16px 16px; }
  .nav.scrolled { padding: 12px 16px; }
  .nav-logo { font-size: 17px; letter-spacing: 3px; }
  .lang-switcher { padding: 2px; }
  .lang-btn { font-size: 11px; padding: 4px 10px; }

  .mobile-menu .nav-link { font-size: 20px; letter-spacing: 2px; }

  .hero { padding: 100px 16px 48px; min-height: auto; }
  .hero-tag { font-size: 10px; letter-spacing: 4px; margin-bottom: 20px; }
  .hero-tag::before, .hero-tag::after { display: none; }
  .hero-title { font-size: 32px; letter-spacing: -0.5px; margin-bottom: 16px; }
  .hero-subtitle { font-size: 14px; line-height: 1.7; margin-bottom: 28px; }
  .hero-cta { gap: 10px; }
  .btn-primary, .btn-ghost { width: 100%; padding: 14px 32px; font-size: 13px; }

  .hero-image-section { padding: 0 16px 48px; }
  .hero-image-placeholder { height: 200px; font-size: 12px; }
  .hero-image-frame { border-radius: 12px; }

  .section { padding: 60px 16px; }
  .section-tag { font-size: 10px; letter-spacing: 3px; }
  .section-tag::before { width: 16px; }
  .section-title { font-size: 24px; letter-spacing: -0.5px; }

  .features-grid { border-radius: 12px; }
  .feature-card { padding: 28px 20px; }
  .feature-icon { width: 42px; height: 42px; }
  .feature-icon svg { width: 18px; height: 18px; }
  .feature-title { font-size: 14px; }
  .feature-desc { font-size: 12px; }

  .products-grid { gap: 12px; }
  .product-card { min-height: 180px; padding: 24px; border-radius: 14px; }
  .product-title { font-size: 16px; }
  .product-desc { font-size: 12px; }

  .about-text { font-size: 13px; line-height: 1.8; }
  .about-stats { gap: 10px; }
  .stat-card { padding: 18px 12px; border-radius: 12px; }
  .stat-value { font-size: 22px; }
  .stat-label { font-size: 10px; letter-spacing: 1.5px; }

  .contact-section { padding: 48px 16px; }
  .contact-box { padding: 32px 16px; border-radius: 14px; }
  .contact-title { font-size: 20px; }
  .contact-subtitle { font-size: 13px; margin-bottom: 24px; }
  .contact-link { width: 100%; font-size: 13px; padding: 11px 24px; }

  .divider { height: 40px; }

  .footer { padding: 20px 16px; gap: 10px; }
  .footer-logo { font-size: 12px; letter-spacing: 2px; }
  .footer-copy { font-size: 11px; }

  .hero-orb-1 { width: 200px; height: 200px; filter: blur(60px); }
  .hero-orb-2 { width: 150px; height: 150px; filter: blur(60px); }

}