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

:root {
  --ink:         #0b0d14;
  --navy:        #0a1020;
  --navy-mid:    #111c35;
  --blue:        #3b3ff5;
  --blue-light:  #5c5ff7;
  --blue-glow:   rgba(59,63,245,0.18);
  --blue-accent: #6366fa;
  --indigo:      #4945d4;
  --bone:        #eef0fb;
  --cream:       #f5f6fc;
  --muted:       #8b90a8;
  --rule:        rgba(11,13,20,0.09);
  --rule-light:  rgba(255,255,255,0.07);
  --card-bg:     #ffffff;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow:      0 4px 28px rgba(59,63,245,0.12), 0 1px 6px rgba(11,13,20,0.07);
  --shadow-card: 0 2px 12px rgba(11,13,20,0.06);
  --transition:  220ms cubic-bezier(0.4,0,0.2,1);
  --max-w:       1400px;
  --side-pad:    32px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ====================== NAVBAR ====================== */
.navbar {
  border-bottom: 1px solid rgba(11,13,20,0.07);
  padding: 0 var(--side-pad);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,16,32,0.96);
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(59,63,245,0.3);
}

.logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.logo-text span { color: var(--blue-light); }

/* Desktop nav */
.navbar nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar nav a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  padding: 7px 12px;
  border-radius: var(--radius);
}

.navbar nav a:hover { color: #fff; background: rgba(255,255,255,0.06); }

.navbar nav a.nav-cta {
  background: #25D366;
  color: #fff;
  padding: 9px 18px;
  border-radius: var(--radius);
  letter-spacing: 0.07em;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}

.navbar nav a.nav-cta:hover {
  background: #1ebe5d;
  color: #fff;
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown > a { cursor: pointer; display: flex; align-items: center; gap: 4px; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  flex-direction: column;
  min-width: 210px;
  box-shadow: 0 16px 40px rgba(0,0,8,0.45);
  z-index: 9999;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  display: flex;
}

.dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 10px 14px;
  text-decoration: none;
  color: rgba(255,255,255,0.70);
  font-size: 13px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--blue);
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
  border-radius: var(--radius);
  transition: background var(--transition);
  z-index: 300;
}

.hamburger:hover { background: rgba(255,255,255,0.08); }

.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  transform-origin: center;
  width: 100%;
}

.hamburger span:nth-child(2) { width: 70%; }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 100%; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,8,18,0.70);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.mobile-nav-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 85vw);
  background: var(--navy);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.30s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  border-left: 1px solid rgba(255,255,255,0.07);
}

.mobile-nav.open { display: block; }
.mobile-nav.open .mobile-nav-backdrop { opacity: 1; }
.mobile-nav.open .mobile-nav-drawer { transform: translateX(0); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.drawer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.drawer-logo img {
  height: 34px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(59,63,245,0.3);
}

.drawer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.drawer-brand span { color: var(--blue-light); }

.drawer-close {
  border: none;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  font-size: 18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: all var(--transition);
  flex-shrink: 0;
}

.drawer-close:hover {
  color: #fff;
  background: rgba(255,255,255,0.10);
}

.drawer-links {
  padding: 12px 10px;
  flex: 1;
}

.drawer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: background var(--transition), color var(--transition);
  margin-bottom: 2px;
}

.drawer-links a:hover {
  background: rgba(59,63,245,0.15);
  color: #fff;
}

.drawer-links .drawer-cta {
  background: #25D366;
  color: #fff;
  margin-top: 8px;
  justify-content: center;
  font-size: 15px;
  padding: 14px;
}

.drawer-links .drawer-cta:hover { background: #1ebe5d; }

.drawer-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 8px 14px;
}

.drawer-cat-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  padding: 10px 14px 4px;
  display: block;
}

@media (max-width: 968px) {
  .navbar nav { display: none; }
  .hamburger { display: flex; }
  :root { --side-pad: 18px; }
}

/* ====================== HERO SLIDER ====================== */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--navy);
  height: 600px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-bg {
  position: absolute;
  inset: 0;
}

.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

.slide-content {
  position: absolute;
  bottom: 250px;
  left: 0;
  width: 100%;
  z-index: 3;
  padding: 0 var(--side-pad);
}

.slide-text { max-width: 580px; }

.slide-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(59,63,245,0.12);
  border: 1px solid rgba(59,63,245,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  font-weight: 500;
}

.slide-title {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.slide-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.70);
  line-height: 1.45;
  margin-bottom: 20px;
  max-width: 250px;
}

.slide-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.slide-btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(59,63,245,0.30);
}

.slide-btn-primary:hover {
  background: var(--blue-light);
  box-shadow: 0 6px 24px rgba(59,63,245,0.40);
  transform: translateY(-1px);
}

.slide-btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}

.slide-btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.30);
}

.hero-search {
  max-width: 500px;
  margin-top: 14px;
}

.hero-search-box { position: relative; display: flex; }

.hero-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  pointer-events: none;
}

.hero-search input {
  width: 100%;
  padding: 13px 20px 13px 46px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all var(--transition);
}

.hero-search input::placeholder { color: rgba(255,255,255,0.40); }

.hero-search input:focus {
  background: rgba(255,255,255,0.12);
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(59,63,245,0.15);
}

.slider-nav {
  position: absolute;
  bottom: 28px;
  right: var(--side-pad);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
}

.slider-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.slider-nav-btn:hover {
  background: rgba(255,255,255,0.22);
  transform: scale(1.05);
}

.slider-dots { display: flex; gap: 8px; }

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.slider-dot.active {
  width: 28px;
  border-radius: 100px;
  background: var(--blue-light);
}

/* Mobile Hero */
.mobile-hero-strip {
  display: none;
  background: var(--navy);
  padding: 18px var(--side-pad);
  text-align: center;
}

.mobile-hero-strip h2 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.25;
}

.mobile-hero-strip p {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  margin-bottom: 16px;
  line-height: 1.5;
}

.mobile-hero-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.mobile-hero-btns a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
  letter-spacing: 0.04em;
}

.mobile-hero-btns .btn-primary {
  background: var(--blue);
  color: #fff;
}

.mobile-hero-btns .btn-primary:hover { background: var(--blue-light); }

.mobile-hero-btns .btn-wa {
  background: #25D366;
  color: #fff;
}

.mobile-hero-btns .btn-wa:hover { background: #1ebe5d; }

.mobile-search-bar {
  display: none;
  padding: 14px var(--side-pad);
  background: var(--card-bg);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 64px;
  z-index: 100;
}

.mobile-search-box { position: relative; display: flex; }

.mobile-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.mobile-search-bar input {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  font-size: 14px;
  outline: none;
  transition: all var(--transition);
  background: #fff;
}

.mobile-search-bar input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}

@media (max-width: 968px) {
  .mobile-hero-strip { display: block; }
  .mobile-search-bar { display: block; }
  .hero-slider { height: 56vw; min-height: 220px; max-height: 420px; }
  .slide-content { display: none; }
}

/* ====================== FEATURES ====================== */
.features {
  background: var(--card-bg);
  padding: 0 var(--side-pad);
  border-bottom: 1px solid var(--rule);
}

.features-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  padding: 32px 0;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue), var(--blue-accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.feature-text h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--ink);
}

.feature-text p {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 700px) {
  .features-inner { grid-template-columns: 1fr; gap: 18px; padding: 24px 0; }
}

/* ====================== PRODUCTS ====================== */
.products-section {
  padding: 64px var(--side-pad);
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 18px;
}

.section-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.section-count {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.cat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  background: var(--card-bg);
  border: 1px solid var(--rule);
  color: var(--ink);
  transition: all var(--transition);
  white-space: nowrap;
}

.cat-tab:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-glow);
}

.cat-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: var(--shadow);
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 36px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--rule);
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--blue-light);
}

.discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ff4757;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(255,71,87,0.35);
}

.img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #fafbfe;
  border-bottom: 1px solid var(--rule);
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.card:hover .img-box img { transform: scale(1.05); }

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card-category-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-glow);
  padding: 4px 10px;
  border-radius: 100px;
  align-self: flex-start;
  font-weight: 500;
}

.card-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin: 0;
}

.card-body h3 a {
  color: var(--ink);
  text-decoration: none;
  transition: color var(--transition);
}

.card-body h3 a:hover { color: var(--blue); }

.price-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.old-price {
  font-size: 15px;
  color: var(--muted);
  text-decoration: line-through;
}

.price {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
}

.stock-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.stock-badge.in-stock {
  background: #d4f4dd;
  color: #0f6928;
}

.stock-badge.out-of-stock {
  background: #fee;
  color: #a00;
}

.card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.btn-add, .btn-buy {
  flex: 1;
  padding: 11px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.02em;
}

.btn-add {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 8px rgba(59,63,245,0.25);
}

.btn-add:hover {
  background: var(--blue-light);
  box-shadow: 0 4px 12px rgba(59,63,245,0.35);
  transform: translateY(-1px);
}

.btn-buy {
  background: #25D366;
  color: #fff;
  box-shadow: 0 2px 8px rgba(37,211,102,0.25);
}

.btn-buy:hover {
  background: #1ebe5d;
  box-shadow: 0 4px 12px rgba(37,211,102,0.35);
  transform: translateY(-1px);
}

.btn-buy.disabled {
  background: #ccc;
  cursor: not-allowed;
  pointer-events: none;
}

.coming-soon-card {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 28px;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--rule);
}

.cs-icon {
  font-size: 64px;
  margin-bottom: 18px;
}

.coming-soon-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.coming-soon-card p {
  color: var(--muted);
  font-size: 15px;
}

.notice {
  background: #fef5e7;
  border: 1px solid #f8d896;
  padding: 18px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  color: #856404;
  margin-top: 36px;
  text-align: center;
}

@media (max-width: 640px) {
  .products { grid-template-columns: 1fr; }
}

/* ====================== PROJECTS ====================== */
.projects-section {
  background: var(--navy);
  padding: 72px 0;
  border-top: 1px solid var(--rule);
  overflow: hidden;
  position: relative;
}

.projects-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(59,63,245,0.03) 0px, transparent 1px, transparent 60px, rgba(59,63,245,0.03) 61px),
    repeating-linear-gradient(90deg, rgba(59,63,245,0.03) 0px, transparent 1px, transparent 60px, rgba(59,63,245,0.03) 61px);
  pointer-events: none;
}

.projects-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  position: relative;
  z-index: 1;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.projects-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.projects-sub {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-top: 4px;
}

.view-all-link {
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--blue-light);
  text-decoration: none;
  border: 1px solid rgba(92,95,247,0.35);
  padding: 9px 18px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.view-all-link:hover {
  background: rgba(59,63,245,0.15);
  border-color: var(--blue-light);
}

.proj-slider-wrap {
  position: relative;
  overflow: hidden;
}

.proj-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.project-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-width: 300px;
  width: 300px;
  flex-shrink: 0;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  backdrop-filter: blur(10px);
}

.project-card:hover {
  border-color: rgba(59,63,245,0.45);
  box-shadow: 0 0 30px rgba(59,63,245,0.20);
  transform: translateY(-3px);
}

.project-img {
  height: 190px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.project-card:hover .project-img img { transform: scale(1.05); }

.project-body {
  padding: 18px;
}

.project-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(59,63,245,0.12);
  border: 1px solid rgba(59,63,245,0.22);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.project-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.35;
}

.project-body p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 14px;
}

.project-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.project-meta span {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

.no-projects {
  text-align: center;
  padding: 60px;
  color: rgba(255,255,255,0.30);
}

.proj-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.proj-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 16px;
}

.proj-nav-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.proj-dots { display: flex; gap: 8px; }

.proj-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.20);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.proj-dot.active {
  background: var(--blue-light);
  width: 22px;
  border-radius: 4px;
}

/* ====================== FOOTER ====================== */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 52px var(--side-pad) 40px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-brand span { color: var(--blue-light); }

.footer-tagline {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 14px;
}

.footer-phone {
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 13px;
  transition: color var(--transition);
  letter-spacing: 0.04em;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.22);
  padding: 18px var(--side-pad);
}

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; gap: 20px; padding: 32px 16px 24px; }
  .footer-bottom { flex-direction: column; padding: 12px 16px; }
}

/* ====================== TOAST ====================== */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--navy);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30);
  z-index: 9999;
  animation: slideInRight 0.28s cubic-bezier(0.4,0,0.2,1), fadeOut 0.28s 1.92s forwards;
  font-size: 14px;
  border: 1px solid rgba(59,63,245,0.30);
  max-width: calc(100vw - 40px);
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
  to { opacity: 0; }
}