/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== FONTS ===== */
:root {
  --midnight: #0d1b3e;
  --midlight: #1e3a5f;
  --mint: #5eead4;
  --mint-dark: #3ecfb9;
  --mint-light: #d1f2eb;
  --white: #ffffff;
  --off-white: #f8fffe;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --accent-orange: #ff6b35;
  --accent-yellow: #ffd23f;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(13, 27, 62, 0.08);
  --shadow-lg: 0 12px 48px rgba(13, 27, 62, 0.12);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 27, 62, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(94, 234, 212, 0.1);
  transition: background 0.3s ease;
}
.site-header.scrolled {
  background: rgba(13, 27, 62, 0.97);
  box-shadow: 0 4px 32px rgba(0,0,0,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display), sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}
.logo-text strong { color: var(--mint); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--mint); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mint);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--mint) !important;
  color: var(--midnight) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(94, 234, 212, 0.4);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--midnight);
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape { position: absolute; }
.shape-circle-1 {
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94,234,212,0.12) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.shape-circle-2 {
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
  bottom: -100px; left: -100px;
}
.shape-rect-1 {
  width: 200px; height: 200px;
  background: rgba(94,234,212,0.06);
  border: 2px solid rgba(94,234,212,0.1);
  border-radius: var(--radius);
  top: 15%; left: 5%;
  transform: rotate(15deg);
}
.shape-rect-2 {
  width: 120px; height: 320px;
  background: rgba(255,210,63,0.06);
  border: 2px solid rgba(255,210,63,0.1);
  border-radius: var(--radius-sm);
  bottom: 10%; right: 8%;
  transform: rotate(-10deg);
}
.shape-triangle {
  width: 0; height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid rgba(94,234,212,0.05);
  top: 25%; right: 25%;
}
.shape-dots {
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, rgba(94,234,212,0.2) 1px, transparent 1px);
  background-size: 16px 16px;
  bottom: 30%; left: 15%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(94,234,212,0.1);
  border: 1px solid rgba(94,234,212,0.2);
  color: var(--mint);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-headline br { display: none; }
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display), sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--mint);
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}
.hero-visual {
  position: relative;
  height: 560px;
}
.hero-card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card-1 {
  width: 280px; height: 360px;
  top: 0; right: 40px;
  z-index: 1;
}
.hero-card-2 {
  width: 220px; height: 170px;
  bottom: 40px; left: 0;
  z-index: 2;
  border: 4px solid var(--midnight);
}
.hero-badge {
  position: absolute;
  bottom: 220px; right: 0;
  z-index: 3;
  background: var(--mint);
  color: var(--midnight);
  font-family: var(--font-display), sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(94,234,212,0.3);
}
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display), sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--mint);
  color: var(--midnight);
  border-color: var(--mint);
}
.btn-primary:hover {
  background: var(--mint-dark);
  border-color: var(--mint-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(94,234,212,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-secondary:hover {
  border-color: var(--mint);
  color: var(--mint);
}
.btn-outline {
  background: transparent;
  color: var(--midnight);
  border-color: var(--midnight);
}
.btn-outline:hover {
  background: var(--midnight);
  color: var(--white);
}
.btn-full { width: 100%; }
.btn-large { padding: 18px 36px; font-size: 1.05rem; }

/* ===== SECTIONS ===== */
section { padding: 100px 0; }
.section-title {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--midnight);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.section-title--light { color: var(--white); }
.section-title .text-mint { color: var(--mint); }
.section-desc {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.7;
}
.section-desc--light { color: rgba(255,255,255,0.65); }

/* ===== TAGS ===== */
.tag-mint, .tag-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.tag-mint { background: rgba(94,234,212,0.12); color: var(--mint-dark); }
.tag-dark { background: rgba(94,234,212,0.15); color: var(--mint); }
.tag-dot, .tag-dot--light {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
  flex-shrink: 0;
}
.tag-dot--light { background: var(--mint); }

/* ===== ABOUT ===== */
.about { background: var(--off-white); }
.about-inner { padding: 100px 24px; }
.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 20px;
}
.about-tag .tag-dot { background: var(--mint); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  color: var(--gray-800);
}
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img-wrapper img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--mint);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.3;
}

/* ===== PRODUCTS ===== */
.products {
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}
.products::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(94,234,212,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.products-header {
  text-align: center;
  margin-bottom: 60px;
}
.products-header .section-desc { margin: 0 auto; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.product-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent-orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 100px;
}
.product-info {
  padding: 24px;
}
.product-info h3 {
  font-family: var(--font-display), sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.product-info p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.products-cta {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
}
.products-cta a {
  color: var(--mint);
  font-weight: 600;
  border-bottom: 1px solid rgba(94,234,212,0.3);
  transition: border-color 0.2s;
}
.products-cta a:hover { border-color: var(--mint); }

/* ===== WHY US ===== */
.why { background: var(--gray-100); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-num {
  font-family: var(--font-display), sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--mint);
  line-height: 1;
  opacity: 0.5;
  flex-shrink: 0;
  min-width: 60px;
}
.why-body h3 {
  font-family: var(--font-display), sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 6px;
}
.why-body p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}
.why-visual { position: relative; height: 520px; }
.why-img-stack { position: relative; height: 100%; }
.why-img-1 {
  position: absolute;
  top: 0; left: 0;
  width: 260px; height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-img-1 img { width: 100%; height: 100%; object-fit: cover; }
.why-img-2 {
  position: absolute;
  bottom: 0; right: 0;
  width: 200px; height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--gray-100);
}
.why-img-2 img { width: 100%; height: 100%; object-fit: cover; }
.why-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  background: var(--mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(94,234,212,0.4);
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-title { margin-bottom: 8px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid transparent;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(94,234,212,0.2);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  background: var(--midnight);
  color: var(--mint);
  font-family: var(--font-display), sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-name {
  display: block;
  font-weight: 600;
  color: var(--midnight);
  font-size: 0.95rem;
}
.author-location {
  font-size: 0.82rem;
  color: var(--gray-400);
}

/* ===== VISIT ===== */
.visit { background: var(--midnight); }
.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.visit-info { padding: 20px 0; }
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}
.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.visit-icon {
  width: 48px; height: 48px;
  background: rgba(94,234,212,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.visit-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2px;
}
.visit-value {
  display: block;
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.6;
}
.visit-link {
  color: var(--mint) !important;
  transition: opacity 0.2s;
}
.visit-link:hover { opacity: 0.8; }
.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
}
.map-placeholder {
  width: 100%;
  height: 100%;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  filter: saturate(0.6) brightness(1.05);
  border-radius: var(--radius);
}

/* ===== CONTACT ===== */
.contact { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-text { padding: 20px 0; }
.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 500;
  padding: 16px 20px;
  background: var(--midnight);
  border-radius: var(--radius-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-direct-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body), sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  color: var(--gray-800);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mint);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}
.form-note {
  font-size: 0.82rem;
  color: var(--gray-400);
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.form-success h3 {
  font-family: var(--font-display), sans-serif;
  font-size: 1.5rem;
  color: var(--midnight);
}
.form-success p {
  color: var(--gray-600);
  margin-bottom: 8px;
}
.success-icon { margin-bottom: 4px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--midnight);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-shape {
  position: absolute;
  border-radius: 50%;
}
.cta-shape-1 {
  width: 300px; height: 300px;
  background: rgba(94,234,212,0.06);
  top: -100px; left: -80px;
}
.cta-shape-2 {
  width: 200px; height: 200px;
  background: rgba(255,107,53,0.05);
  bottom: -60px; right: 10%;
}
.cta-shape-3 {
  width: 100px; height: 100px;
  background: rgba(255,210,63,0.06);
  top: 20%; right: 30%;
  border-radius: var(--radius-sm);
  transform: rotate(30deg);
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-headline {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}
.cta-desc a { color: var(--mint); font-weight: 600; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: #070e1f;
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p { margin-top: 16px; font-size: 0.92rem; line-height: 1.7; }
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display), sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mint);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.92rem;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover { color: var(--mint); padding-left: 6px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.92rem;
  line-height: 1.6;
}
.footer-contact a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--mint); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrapper img { height: 400px; }
  .about-img-accent { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-inner { grid-template-columns: 1fr; }
  .visit-map { height: 360px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(13, 27, 62, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(94,234,212,0.1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-headline { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-headline br { display: block; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 300px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .contact-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 64px 0; }
  .about-inner { padding: 64px 16px; }
  .hero-headline { font-size: 2.4rem; }
}
