/* ============================================================
   INSULTEC — Global Stylesheet
   Design: Modern Industrial / Professional Coating Brand
   ============================================================ */

/* ----- CSS Variables ----- */
:root {
  --primary: #0d1b2a;
  --primary-light: #1e3a5f;
  --accent: #f97316;
  --accent-dark: #c2610e;
  --accent-light: #fef3e8;
  --green: #22c55e;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "Inter", sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
}

/* ----- Typography ----- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.2;
  font-weight: 700;
}
h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}
h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}
h4 {
  font-size: 1.2rem;
}
p {
  color: var(--gray-600);
  line-height: 1.75;
}

/* ----- Utilities ----- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
}
.section-sm {
  padding: 60px 0;
}
.text-center {
  text-align: center;
}
.text-white {
  color: var(--white) !important;
}
.text-accent {
  color: var(--accent);
}
.bg-dark {
  background: var(--primary);
}
.bg-light {
  background: var(--gray-50);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.section-title {
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.45);
}
.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.btn-outline-dark {
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.88rem;
}

/* ----- Badge ----- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}
.badge-green {
  background: #dcfce7;
  color: #15803d;
}
.badge-orange {
  background: #fef3c7;
  color: #b45309;
}
.badge-blue {
  background: #dbeafe;
  color: #1d4ed8;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}
.navbar.transparent {
  background: transparent;
}
.navbar.scrolled {
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo .logo-text span {
  color: var(--accent);
}
.nav-logo .logo-badge {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--accent);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown > a svg {
  width: 14px;
  height: 14px;
  transition: var(--transition);
}
.nav-dropdown:hover > a svg {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: var(--transition);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--gray-700);
  border-radius: 8px;
}
.dropdown-menu a:hover {
  background: var(--gray-50);
  color: var(--accent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta .phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 500;
}
.nav-cta .phone:hover {
  color: var(--white);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 1002;
  flex-direction: column;
  padding: 80px 24px 40px;
  overflow-y: auto;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  display: block;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav a:last-child {
  border: none;
}
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}
.mobile-nav-close:hover {
  background: rgba(249, 115, 22, 0.25);
}
.mobile-nav-close svg {
  display: block;
}
.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
  max-width: 160px;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  background: rgba(255, 255, 255, 0.95);
  padding: 7px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
  padding-top: 100px;
  padding-bottom: 70px;
  box-sizing: border-box;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.98) 0%,
    rgba(30, 58, 95, 0.7) 60%,
    rgba(249, 115, 22, 0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-left {
  display: flex;
  flex-direction: column;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-title {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
}
.hero-title span {
  color: var(--accent);
}
.hero-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

/* Hero right - floating product card */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-product-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.hero-product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #fbbf24);
}
.hero-product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}
.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.hero-card-title {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.hero-card-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.hero-card-specs {
  display: flex;
  gap: 16px;
}
.hero-spec {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.hero-spec-val {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}
.hero-spec-key {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* Floating badges on hero visual */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}
.float-badge.top-right {
  top: -20px;
  right: -20px;
  animation-delay: 0.5s;
  z-index: 1;
}
.float-badge.bottom-left {
  bottom: -20px;
  left: -20px;
}
.float-badge .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.float-badge .icon.orange {
  background: var(--accent-light);
}
.float-badge .icon.green {
  background: #dcfce7;
}
.float-badge .label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
}
.float-badge .value {
  font-size: 0.72rem;
  color: var(--gray-500);
}

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

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--primary);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 560px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.88rem;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}
.breadcrumb a:hover {
  color: var(--accent);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}
.breadcrumb .current {
  color: var(--accent);
  font-weight: 600;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  position: relative;
  z-index: 10;
  margin-top: -50px;
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--gray-100);
  transition: var(--transition);
}
.stat-item:last-child {
  border-right: none;
}
.stat-item:hover {
  background: var(--accent);
}
.stat-item:hover .stat-num,
.stat-item:hover .stat-label {
  color: var(--white);
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  transition: var(--transition);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 8px;
  font-weight: 500;
  transition: var(--transition);
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}
.product-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.06);
}
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 42, 0.6) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-card-overlay {
  opacity: 1;
}
.product-quick-view {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-quick-view {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.product-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-code {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.product-card-body p {
  font-size: 0.9rem;
  color: var(--gray-600);
  flex: 1;
  margin-bottom: 20px;
}
.product-card-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.product-card-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-50);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.8rem;
  color: var(--gray-600);
  font-weight: 500;
}
.product-card-spec svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

/* ============================================================
   BENEFITS / WHY INSULTEC
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}
.benefit-card-body {
  flex: 1;
  min-width: 0;
}
.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  transition: var(--transition);
}
.benefit-card:hover::before {
  height: 100%;
}
.benefit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.benefit-icon svg {
  display: block;
  flex-shrink: 0;
}
.value-icon svg {
  display: block;
  flex-shrink: 0;
}
.app-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ach-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission-icon {
  display: flex;
  align-items: center;
}
.benefit-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition);
}
.benefit-card:hover .benefit-icon {
  background: var(--accent);
}
.benefit-card-body h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}
.benefit-card p {
  font-size: 0.92rem;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 100%);
  background-repeat: no-repeat;
}
.step-item {
  text-align: center;
}
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
  position: relative;
  z-index: 2;
}
.step-item h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.step-item p {
  font-size: 0.9rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--accent);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: var(--gray-100);
  line-height: 1;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.stars span {
  color: #fbbf24;
  font-size: 1rem;
}
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gray-200);
}
.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}
.author-role {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ============================================================
   NEWS / BLOG
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.news-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img {
  transform: scale(1.06);
}
.news-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.news-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: var(--gray-500);
}
.news-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.news-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
  flex: 1;
}
.news-card-body h3 a:hover {
  color: var(--accent);
}
.news-card-body p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
}
.news-read-more:hover {
  gap: 10px;
}

/* News detail page */
.news-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 60px;
}
.news-featured-img {
  height: 380px;
  overflow: hidden;
}
.news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-featured-body {
  padding: 40px 40px 40px 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: var(--transition);
}
.contact-info-card:hover {
  background: var(--accent-light);
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.contact-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.contact-value {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
  overflow-wrap: break-word;
  word-break: break-all;
  min-width: 0;
}
.contact-info-card > div:last-child {
  min-width: 0;
  overflow: hidden;
}

/* Form */
.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--primary);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}
.form-input::placeholder {
  color: var(--gray-300);
}
textarea.form-input {
  resize: vertical;
  min-height: 130px;
}
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* Map */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  background: var(--gray-100);
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray-500);
  border: 1px solid var(--gray-200);
  position: relative;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-stack {
  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;
}
.about-img-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-img-accent img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.about-years-badge {
  position: absolute;
  top: 24px;
  left: -24px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-years-badge .years-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.about-years-badge .years-text {
  font-size: 0.78rem;
  opacity: 0.85;
  margin-top: 4px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.value-card:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.value-card:hover h4,
.value-card:hover p {
  color: var(--white);
}
.value-card:hover .value-icon {
  background: rgba(255, 255, 255, 0.1);
}
.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  transition: var(--transition);
}
.value-card h4 {
  margin-bottom: 10px;
  transition: var(--transition);
}
.value-card p {
  font-size: 0.9rem;
  transition: var(--transition);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-avatar {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-social {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: var(--transition);
}
.team-card:hover .team-social {
  opacity: 1;
}
.team-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}
.team-social a:hover {
  background: var(--accent);
}
.team-info {
  padding: 20px;
}
.team-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  gap: 24px;
  margin-bottom: 40px;
  align-items: center;
}
.timeline-item:nth-child(odd) .tl-content {
  grid-column: 1;
  text-align: right;
}
.timeline-item:nth-child(odd) .tl-empty {
  grid-column: 3;
}
.timeline-item:nth-child(even) .tl-empty {
  grid-column: 1;
}
.timeline-item:nth-child(even) .tl-content {
  grid-column: 3;
  text-align: left;
}
.tl-dot {
  grid-column: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
  position: relative;
  z-index: 2;
}
.tl-content h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.tl-content p {
  font-size: 0.88rem;
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-detail-images {
  position: relative;
}
.product-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  margin-bottom: 12px;
  border: 1px solid var(--gray-200);
}
.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-thumbnails {
  display: flex;
  gap: 10px;
}
.thumb-img {
  flex: 1;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb-img.active,
.thumb-img:hover {
  border-color: var(--accent);
}

.product-detail-info {
  display: flex;
  flex-direction: column;
}
.product-detail-info h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.product-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.product-code-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.product-detail-specs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 20px;
}
.detail-spec-item {
  text-align: center;
}
.detail-spec-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.detail-spec-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

/* Tabs */
.tabs {
  margin-top: 60px;
}
.tab-nav {
  display: flex;
  border-bottom: 2px solid var(--gray-200);
  gap: 0;
  margin-bottom: 40px;
  overflow-x: auto;
}
.tab-btn {
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-500);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.tab-btn:hover {
  color: var(--primary);
}
.tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.tech-specs-table {
  width: 100%;
  border-collapse: collapse;
}
.tech-specs-table tr:nth-child(odd) {
  background: var(--gray-50);
}
.tech-specs-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-200);
}
.tech-specs-table td:first-child {
  font-weight: 600;
  color: var(--primary);
  width: 40%;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.7);
}
.footer-top {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  display: block;
}
.footer-brand .logo-text span {
  color: var(--accent);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--accent);
  color: var(--white);
}
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 5px 0;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 8px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}
.footer-bottom-links a:hover {
  color: var(--white);
}

/* ============================================================
   NEWS PAGE LAYOUT
   ============================================================ */
.news-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.sidebar-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}
.sidebar-cat:hover {
  color: var(--accent);
}
.sidebar-cat:last-child {
  border: none;
}
.sidebar-count {
  background: var(--gray-100);
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 0.78rem;
  font-weight: 600;
}
.recent-news-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.recent-news-item:last-child {
  border: none;
  padding-bottom: 0;
}
.recent-thumb {
  width: 72px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recent-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 4px;
}
.recent-title:hover {
  color: var(--accent);
}
.recent-date {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.7s ease both;
}
.animate-fade-up.delay-1 {
  animation-delay: 0.1s;
}
.animate-fade-up.delay-2 {
  animation-delay: 0.2s;
}
.animate-fade-up.delay-3 {
  animation-delay: 0.3s;
}
.animate-fade-up.delay-4 {
  animation-delay: 0.4s;
}

/* Scroll reveal (JS controlled) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* --- Small laptop / tablet-landscape navbar fix --- */
@media (max-width: 1100px) {
  .nav-logo img {
    max-width: 110px;
    height: 32px;
  }
  .nav-links {
    gap: 2px;
  }
  .nav-links a {
    padding: 6px 9px;
    font-size: 0.82rem;
  }
  .nav-cta .phone {
    display: none;
  }
  .nav-cta .btn-sm {
    padding: 7px 14px;
    font-size: 0.82rem;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-right {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-stack {
    order: -1;
  }
  .news-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .steps-grid::before {
    display: none;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .timeline::before {
    left: 32px;
  }
  .timeline-item {
    grid-template-columns: 72px 1fr;
  }
  .timeline-item:nth-child(odd) .tl-content,
  .timeline-item:nth-child(even) .tl-content {
    grid-column: 2;
    text-align: left;
  }
  .tl-dot {
    margin: 0;
  }
  .tl-empty {
    display: none;
  }
  .news-featured {
    grid-template-columns: 1fr;
  }
  .news-featured-body {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
}
