/* ── DESIGN TOKENS ── */
:root {
  --red: #e02b2b;
  --red-light: #fff0f0;
  --red-mid: #ffd9d9;
  --bg: #f7f6f3;
  --white: #ffffff;
  --ink: #141414;
  --ink2: #2a2a2a;
  --muted: #555;
  --border: #e8e5e0;
  --shadow-sm: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.13);
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 99px;
}

/* ── TYPOGRAPHY HELPERS ── */
.font-serif {
  font-family: "Fraunces", serif;
}
.text-red {
  color: var(--red) !important;
}
.text-muted-custom {
  color: var(--muted) !important;
}
.text-ink {
  color: var(--ink) !important;
}

/* ── TOP STRIP ── */
.top-strip {
  background: var(--ink);
  height: 36px;
  font-size: 14px;
  font-weight: 500;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.8);
}
.top-strip a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.top-strip a:hover {
  color: var(--red);
}

/* ── NAVBAR ── */
.sy_logo {
  height: 60px;
  padding-left: 15px;
}
.sy-nav-wrap {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 24px;
  transition: top 0.3s ease;
}
.sy-nav {
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  height: 80px;
  padding: 0 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
}
.logo-hex {
  width: 34px;
  height: 34px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-size: 16px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}
.nav-pill-link {
  color: var(--ink2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 999px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav-pill-link:hover {
  background: var(--bg);
  color: var(--ink);
}
.nav-pill-link.active {
  background: var(--red);
  color: white;
}
.nav-cta-btn {
  background: var(--ink);
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 999px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta-btn:hover {
  background: var(--red);
  color: white;
}
.hamburger-btn {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
}
.hamburger-btn span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── MEGA DROPDOWN ── */
.has-mega {
  position: relative;
}
.mega-drop {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: 990px;
  background: white;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
  padding: 24px;
  display: none;
  z-index: 9999;
  gap: 20px;
}
.has-mega:hover .mega-drop,
.mega-drop:hover {
  display: grid;
  grid-template-columns: 200px 1fr;
}
.mega-left {
  background: var(--bg);
  border-radius: 14px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mega-left-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  padding: 0 8px;
}
.mega-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink2);
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none;
}
.mega-cat:hover,
.mega-cat.active {
  background: white;
  color: var(--red);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.mega-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-content: start;
}
.mega-item {
  display: flex;
  flex-direction: column;
  padding: 12px 12px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  color: var(--ink);
  transition: all 0.2s;
  background: var(--bg);
}
.mega-item:hover {
  border-color: var(--red);
  background: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  color: var(--ink);
}
.mega-item-img {
  width: 100%;
  height: 128px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #e0e0e0, #c8c8c8);
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
}
.mega-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mega-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.mega-item-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── MOBILE OFFCANVAS OVERRIDES ── */
.offcanvas {
  max-width: 320px !important;
}
.mobile-nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  display: block;
}
.mobile-nav-link:hover {
  color: var(--red);
}
.mobile-sub-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink2);
  padding: 10px 16px;
  display: block;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-sub-link:hover {
  background: var(--bg);
  color: var(--red);
}

/* ── TICKER ── */
.ticker {
  background: var(--red);
  color: white;
  height: 36px;
  overflow: hidden;
  margin-top: 140px;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  gap: 64px;
  animation: tick 22s linear infinite;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  height: 36px;
  align-items: center;
}
@keyframes tick {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── HERO ── */
.hero-section {
  min-height: calc(100vh - 146px);
  background: linear-gradient(135deg, #1a0505 0%, #2d0e0e 40%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-media img,
.hero-bg-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.84) 0%,
    rgba(0, 0, 0, 0.57) 50%,
    rgba(10, 10, 10, 0.87) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
}
.hero-chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
  flex-shrink: 0;
}
.hero-chip .badge-est {
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}

.hero-title {
  font-family: "Fraunces", serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.hero-title .c-red {
  color: var(--red);
}
.hero-title .c-light {
  color: var(--red);
}
.hero-sub {
  font-size: 18px;
  color: rgb(255, 255, 255);
  line-height: 1.8;
}

.btn-hero-primary {
  background: var(--red);
  color: white;
  border: none;
  padding: 15px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(224, 43, 43, 0.5);
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224, 43, 43, 0.55);
  color: white;
}
.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  padding: 15px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.hero-stats {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-xl);
  overflow: hidden;
  backdrop-filter: blur(16px);
  display: flex;
}
.h-stat {
  flex: 1;
  padding: 22px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s;
}
.h-stat:last-child {
  border-right: none;
}
.h-stat:hover {
  background: rgba(224, 43, 43, 0.2);
}
.h-stat .n {
  font-family: "Fraunces", serif;
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.h-stat .l {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-top: 4px;
}

/* ── SECTION HELPERS ── */
.sy-section {
  padding: 100px 0;
}
.s-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-light);
  color: var(--red);
  border: 1px solid var(--red-mid);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.s-title {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--ink);
}
.product_sub_text {
  font-size: 16px;
  line-height: 1.6;
  max-width: 440px;
}
/* ── PRODUCT CARDS ── */
.p-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  transition: all 0.3s;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.p-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  background: rgb(245, 234, 234);
  color: inherit;
}
.p-card.feat {
  background: var(--red);
  color: white;
  border-color: var(--red);
}
.p-card.feat:hover {
  background: #c72222;
  border-color: #c72222;
}

.p-img {
  width: 100%;
  height: 170px;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #d8d8d8, #c0c0c0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
}

.p-card.feat .p-img {
  height: 220px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
}
.p-img.big {
  height: 400px !important;
}
.p-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.p-card:hover .p-img img {
  transform: scale(1.05);
}

.p-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.p-card.feat .p-body {
  padding: 22px 26px 28px;
}
.p-name {
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 7px;
  color: var(--ink);
  line-height: 1.25;
}
.p-card.feat .p-name {
  font-size: 26px;
  letter-spacing: -1px;
  color: white;
  margin-bottom: 12px;
}
.p-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}
.p-card.feat .p-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}
.p-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  margin-top: 14px;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.25s;
}
.p-card.feat .p-link {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
  transform: none;
}
.p-card:hover .p-link {
  opacity: 1;
  transform: translateY(0);
}
.product_desc_card {
  background-color: #fffaeb;
  padding: 40px;
  border-radius: 20px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
.product_desc_card p {
  margin-bottom: 0;
}

/* ── INDUSTRY CARDS ── */
.ind-card {
  background: white;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  transition: all 0.3s;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.ind-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.ind-img {
  width: 100%;
  height: 280px;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #d4d4d4, #b8b8b8);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}
.ind-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.ind-card:hover .ind-img img {
  transform: scale(1.05);
}
.ind-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.ind-body::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle at top right,
    var(--red-light),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.ind-card:hover .ind-body::before {
  opacity: 1;
}
.ind-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
}
.ind-name {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 8px;
}
.ind-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ind-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--bg);
  border-radius: 50%;
  margin-top: 16px;
  transition: all 0.3s;
  font-size: 14px;
  color: #000000;
}
.ind-card:hover .ind-arrow {
  background: var(--red);
  color: white;
}

/* ── VALUES ── */
.philosophy_desc {
  font-size: 15px;
  line-height: 1.85;
  max-width: 400px;
}
.val-card {
  background: var(--bg);
  border-radius: var(--r-md);
  padding: 22px 20px;
  border: 1.5px solid var(--border);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.3s;
}
.val-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
  background: white;
}
.val-ico {
  font-size: 44px;
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  background: var(--red-light);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: var(--red);
}
.val-t {
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}
.val-d {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CUSTOMER LOGOS ── */
.logo-cell {
  background: white;
  border-radius: var(--r-md);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1.5px solid var(--border);
  transition: all 0.3s;
}
.logo-cell:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.logo-cell span {
  font-family: "Fraunces", serif;
  font-size: 12px;
  font-weight: 700;
  color: #bbb;
  text-align: center;
  line-height: 1.3;
  transition: color 0.3s;
}
.logo-cell:hover span {
  color: var(--ink);
}

/* ── PARTNERS ── */
.part-card {
	background: var(--bg);
	border-radius: var(--r-lg);
	padding: 15px;
	border: 1.5px solid var(--border);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	transition: all 0.3s;
	max-width: calc(50% - 30px);
}
.part-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.part-name {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.part-sub {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  font-weight: 500;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--ink);
  color: white;
  border-radius: var(--r-xl);
  padding: 64px 72px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  left: -80px;
  top: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(224, 43, 43, 0.2) 0%,
    transparent 70%
  );
}
.cta-band h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
}
.cta-band p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 10px;
}
.btn-cta-red {
  background: var(--red);
  color: white;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(224, 43, 43, 0.4);
  white-space: nowrap;
}
.btn-cta-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224, 43, 43, 0.5);
  color: white;
}

/* ── CONTACT ── */
.c-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border-radius: var(--r-md);
  padding: 14px 20px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  color: var(--ink2);
  font-size: 24px;
  font-weight: 500;
  transition: all 0.2s;
  margin-bottom: 14px;
}
.c-info-item:hover {
  border-color: var(--red);
  color: var(--red);
}
.c-ico {
  width: 36px;
  height: 36px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.form-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 40px 36px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.sy-input {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: all 0.2s;
  width: 100%;
}
.sy-input:focus {
  border-color: var(--red);
  background: white;
  box-shadow: 0 0 0 3px rgba(224, 43, 43, 0.08);
  outline: none;
}
.sy-input::placeholder {
  color: #bbb;
}
.sy-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink2);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.btn-submit {
  width: 100%;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 15px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(224, 43, 43, 0.3);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 43, 43, 0.4);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 72px 0 36px;
}
.foot-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.9;
  margin-top: 14px;
  max-width: 280px;
}
.foot-contact-list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.foot-contact-list a:hover {
  color: var(--red);
}
.foot-col h5 {
  font-family: "Fraunces", serif;
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}
.foot-col ul {
  list-style: none;
  padding: 0;
}
.foot-col li {
  margin-bottom: 10px;
}
.foot-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.foot-col a:hover {
  color: var(--red);
  padding-left: 5px;
}
.foot-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 48px;
  padding-top: 28px;
}
.foot-bottom-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE OVERRIDES ── */
@media (max-width: 991.98px) {
  .sy-nav-desktop {
    display: none !important;
  }
  .hamburger-btn {
    display: flex !important;
  }
  .cta-band {
    padding: 40px 32px;
  }
  .mega-drop {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .ticker {
    margin-top: 140px;
  }
  .hero-title {
    letter-spacing: -2px;
  }
  .hero-stats {
    flex-wrap: wrap;
  }
  .h-stat {
    min-width: 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .sy-section {
    padding: 60px 0;
  }
  .cta-band {
    padding: 36px 24px;
  }
  .top-strip .strip-tagline {
    display: none;
  }
  .form-card {
    padding: 28px 22px;
  }
}
@media (max-width: 575.98px) {
  .p-card.feat .p-img {
    height: 160px;
  }
}
