/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --primary: #08a8a0;
  --primary-dark: #06837c;
  --primary-light: #16c6bd;
  --primary-glow: rgba(8, 168, 160, 0.12);
  --primary-subtle: rgba(8, 168, 160, 0.06);

  --accent: #868686;
  --accent-dark: #6b6b6b;
  --accent-light: #a3a3a3;

  --white: #ffffff;
  --off-white: #f7f9fa;
  --gray-50: #f0f3f4;
  --gray-100: #e1e6e8;
  --gray-200: #c5ced2;
  --gray-300: #94a3ab;
  --gray-400: #6b7f89;
  --gray-500: #4a5e68;
  --gray-600: #374a52;
  --gray-700: #2a3940;
  --gray-800: #1a2730;
  --gray-900: #0f1a21;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --section-padding: 100px 0;
  --container-width: 1240px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.09);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.11);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03);
  --shadow-primary: 0 8px 28px rgba(8, 168, 160, 0.22);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-600);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

/* ===== UTILITY ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-subtitle::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.65rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray-400);
  max-width: 560px;
  line-height: 1.8;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes slideInScale {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes borderDraw {
  from { stroke-dashoffset: 100; }
  to { stroke-dashoffset: 0; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--gray-900);
  padding: 8px 0;
  font-size: 0.78rem;
  color: var(--gray-300);
  position: relative;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-300);
}

.top-bar-item svg {
  color: var(--primary-light);
  flex-shrink: 0;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar-social a {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.top-bar-social a:hover {
  color: var(--primary-light);
}

/* ===== HEADER / NAVBAR ===== */
.header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition-base);
  padding: 0;
}

.header-inner {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 16px 0;
  transition: all var(--transition-base);
}

.header.scrolled {
  top: 0;
}

.header.scrolled .header-inner {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo img {
  height: 60px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gray-900);
  letter-spacing: 0.5px;
  transition: color var(--transition-base);
}

.header.scrolled .logo-text {
  color: var(--gray-900);
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-500);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  letter-spacing: 0.01em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  border-radius: 1px;
  transition: all var(--transition-base);
  transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 20px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.header.scrolled .nav-links a {
  color: var(--gray-500);
}

.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active {
  color: var(--primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  background: var(--primary);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.84rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-primary);
  letter-spacing: 0.01em;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(8, 168, 160, 0.3);
}

.header.scrolled .nav-cta {
  background: var(--primary);
  color: var(--white) !important;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.header.scrolled .menu-toggle span {
  background: var(--gray-800);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 115px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 22, 30, 0.95) 0%,
    rgba(8, 22, 30, 0.9) 35%,
    rgba(8, 22, 30, 0.65) 65%,
    rgba(8, 22, 30, 0.4) 100%
  );
  z-index: 1;
}

/* Decorative grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 2;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero-content {
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(8, 168, 160, 0.15);
  border: 1px solid rgba(8, 168, 160, 0.25);
  border-radius: var(--radius-full);
  color: var(--primary-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.8vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  display: block;
  background: linear-gradient(to right, var(--accent-light) 0%, var(--primary-light) 25%, var(--white) 50%, var(--primary-light) 75%, var(--accent-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 4s linear infinite;
}

@keyframes textShine {
  to {
    background-position: 200% center;
  }
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 100%;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-primary);
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(8, 168, 160, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* Hero Right - Glassmorphism Stats Panel */
.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  animation: fadeInRight 0.8s ease 0.5s both;
}

.hero-glass-panel {
  background: linear-gradient(135deg, rgba(15, 26, 33, 0.8), rgba(8, 168, 160, 0.65));
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 24px 30px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.hero-glass-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-glass-panel h3 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.hero-glass-panel h3::before {
  content: '';
  display: block;
  width: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-light), var(--accent));
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(163, 163, 163, 0.4);
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.02);
  border: 1px solid transparent;
  transition: all var(--transition-base);
  position: relative;
}

.hero-stat:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  transform: translateX(6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.hero-stat-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(8, 168, 160, 0.6), rgba(8, 168, 160, 0.2));
  border: 1px solid rgba(8, 168, 160, 0.4);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(8, 168, 160, 0.3), inset 0 2px 4px rgba(255,255,255,0.2);
  transition: all var(--transition-base);
}

.hero-stat:hover .hero-stat-icon {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 10px 24px rgba(8, 168, 160, 0.5), inset 0 2px 4px rgba(255,255,255,0.3);
}

.hero-stat-content {
  flex: 1;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.hero-trust-badges {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  padding: 8px 6px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.trust-badge:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.trust-badge span {
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.trust-badge svg {
  color: var(--accent-light) !important;
  filter: drop-shadow(0 2px 4px rgba(163, 163, 163, 0.4));
  width: 20px !important;
  height: 20px !important;
}

/* ===== FEATURES CARDS ===== */
.features {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  z-index: 10;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--accent-light), var(--accent));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
  transform: scaleY(1);
}

.feature-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all var(--transition-base);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  color: var(--accent);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin: 0;
}

/* ===== ABOUT US ===== */
.about {
  padding: var(--section-padding);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-experience {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-primary);
  text-align: center;
  animation: float 4s ease-in-out infinite;
  border: 3px solid var(--white);
}

.about-experience .number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.about-experience .label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  opacity: 0.85;
}

.about-content h2 {
  margin-bottom: 18px;
}

.about-text {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.85;
  margin-bottom: 24px;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
}

.about-feature-item .check {
  width: 20px;
  height: 20px;
  background: var(--primary-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 11px;
  flex-shrink: 0;
}

/* ===== PRODUCTS ===== */
.products {
  padding: var(--section-padding);
  background: var(--off-white);
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  z-index: 0;
}

.products .container {
  position: relative;
  z-index: 1;
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-header .section-desc {
  margin: 0 auto;
  font-size: 1.05rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  aspect-ratio: 4/5;
  background: var(--gray-800);
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}

.product-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s ease;
  opacity: 0.9;
}

.product-card:hover img {
  transform: scale(1.06);
  opacity: 1;
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 28, 38, 0.95) 0%,
    rgba(10, 28, 38, 0.5) 45%,
    rgba(10, 28, 38, 0.05) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
  transition: background 0.6s ease;
}

.product-card:hover .product-card-overlay {
  background: linear-gradient(
    to top,
    rgba(8, 168, 160, 0.95) 0%,
    rgba(8, 168, 160, 0.65) 50%,
    rgba(8, 168, 160, 0.15) 100%
  );
}

.product-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.product-card h3::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-light), var(--accent));
  margin-top: 14px;
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover h3::after {
  width: 80px;
}

.product-card-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-top: 12px;
  transition: color 0.4s ease;
}

.product-card:hover .product-card-desc {
  color: var(--white);
}

.product-card-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.15);
}

.product-card:hover .product-card-arrow {
  background: var(--white);
  color: var(--primary);
  transform: scale(1.08);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

/* ===== QUOTE FORM ===== */
.quote {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.quote::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-subtle), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.quote::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(134, 134, 134, 0.04), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.quote-header {
  text-align: center;
  margin-bottom: 44px;
}

.quote-header .section-desc {
  margin: 0 auto;
}

.quote-form-wrapper {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.quote-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent));
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.form-section h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-section h3 .icon {
  font-size: 16px;
  color: var(--primary);
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-700);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--gray-600);
  padding: 4px 0;
}

.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-primary);
  margin-top: 6px;
  letter-spacing: 0.01em;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(8, 168, 160, 0.3);
}

/* ===== PARTNERS ===== */
.partners {
  padding: 50px 0;
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
}

.partners-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-300);
  margin-bottom: 24px;
}

.partners-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-logo {
  height: 36px;
  opacity: 0.35;
  filter: grayscale(100%);
  transition: all var(--transition-base);
}

.partner-logo:hover {
  opacity: 0.9;
  filter: grayscale(0%);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo-text {
  font-size: 1.2rem;
  margin-bottom: 14px;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--gray-400);
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--gray-400);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.footer-col ul li a:hover {
  color: var(--primary-light);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--gray-400);
}

.footer-contact-item .icon {
  color: var(--primary-light);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.footer-bottom-links a:hover {
  color: var(--primary-light);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-primary);
  transition: all var(--transition-base);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-wrapper {
    gap: 40px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }

  .hero-glass-panel {
    max-width: 100%;
  }

  .top-bar {
    display: none;
  }

  .header {
    top: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .container {
    padding: 0 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--gray-900);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 28px 28px;
    gap: 2px;
    transition: right var(--transition-base);
    box-shadow: -10px 0 40px rgba(0,0,0,0.25);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: var(--gray-300) !important;
    width: 100%;
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover {
    color: var(--white) !important;
    background: rgba(255,255,255,0.05) !important;
  }

  .nav-cta {
    margin-top: 14px;
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 0;
  }

  .hero .container {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-right {
    display: flex;
    width: 100%;
  }

  .hero-trust-badges {
    flex-wrap: wrap;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .features {
    margin-top: -36px;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-experience {
    bottom: -10px;
    right: 10px;
  }

  .about-features-list {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .quote-form-wrapper {
    padding: 28px 24px;
  }

  .quote-form {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
