/* ====================================================
   TRIOTRADE — PREMIUM STYLESHEET
   Font: Raleway (Google Fonts)
   Icons: Font Awesome 6
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --navy:          #420E4E;
  --navy-mid:      #5C1570;
  --navy-light:    #7B1F94;
  --navy-pale:     #F5E6F8;
  --orange:        #FECD00;
  --orange-dark:   #D4AB00;
  --orange-light:  #FFD740;
  --orange-pale:   #FFFDE7;
  --white:         #FFFFFF;
  --off-white:     #FDF9FF;
  --slate:         #64748B;
  --slate-light:   #94A3B8;
  --dark:          #2A0935;
  --green-wa:      #25D366;
  --green-wa-dark: #1EBF5A;

  --font:       'Raleway', sans-serif;

  --shadow-xs:  0 1px 4px rgba(66,14,78,0.07);
  --shadow-sm:  0 2px 12px rgba(66,14,78,0.09);
  --shadow-md:  0 6px 24px rgba(66,14,78,0.12);
  --shadow-lg:  0 12px 40px rgba(66,14,78,0.16);
  --shadow-xl:  0 24px 64px rgba(66,14,78,0.20);

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --ease:       cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur:        0.28s;

  --container:  1300px;
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: var(--font); }
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; }

/* ── LAYOUT ─────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 1.25rem;
}

/* ── SECTION LABELS ─────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}
.label::before, .label::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}
.section-tag {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.section-tag-left {
  display: flex;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.section-title-left {
  text-align: left;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--slate);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2rem;
  font-weight: 400;
  line-height: 1.75;
}
.section-sub-left {
  text-align: left;
  margin-left: 0;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.85rem;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.btn i { font-size: 0.95em; }

.btn-orange {
  background: var(--orange);
  color: var(--navy);
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(254,205,0,0.35);
}
.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(254,205,0,0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-wa {
  background: var(--green-wa);
  color: var(--white);
  border-color: var(--green-wa);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-wa:hover {
  background: var(--green-wa-dark);
  border-color: var(--green-wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.1);
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
}

.btn-block { display: flex; width: 100%; justify-content: center; }

/* ── HEADER ──────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(66,14,78,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}

/* Logo */
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 1;
}
.logo-img {
  height: 75px;
  width: auto;
  display: block;
  object-fit: contain;
  padding: 8px 0;
}
.logo-img-footer {
  height: 75px;
}
.logo-wordmark {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.logo-wordmark .w-trio  { color: var(--white); }
.logo-wordmark .w-trade { color: var(--orange); }
.logo-sub {
  font-size: 0.58rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  position: relative;
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  border-radius: var(--radius-sm);
  transition: color var(--dur), background var(--dur);
}
.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: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* Nav CTA */
.nav-right {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  transition: background var(--dur);
}
.hamburger:hover { background: rgba(255,255,255,0.14); }
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}

/* Mobile nav drawer */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark);
  padding: 1rem 1.25rem 1.5rem;
  gap: 0.25rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--dur);
}
.mobile-menu a i { width: 18px; color: var(--orange); font-size: 0.9rem; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .mm-wa {
  margin-top: 0.75rem;
  background: var(--green-wa);
  color: var(--white);
  border-radius: var(--radius);
  text-align: center;
  justify-content: center;
  padding: 0.85rem;
  font-weight: 700;
  border-bottom: none;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1A0020 0%, #420E4E 45%, #5C1570 100%);
  overflow: hidden;
  padding: 5rem 0;
}

/* Dot grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Orange glow */
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254,205,0,0.22) 0%, transparent 65%);
  bottom: -150px; right: -100px;
  pointer-events: none;
}
.hero-glow-b {
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,79,138,0.5) 0%, transparent 65%);
  top: -80px; left: 10%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(254,205,0,0.15);
  border: 1px solid rgba(254,205,0,0.3);
  color: var(--orange-light);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge i { font-size: 0.8rem; }

.hero-h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-h1 .accent { color: var(--orange); }

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.25rem;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 3rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Hero ship visual */
.hero-visual {
  display: none;
  position: relative;
  justify-content: center;
  align-items: center;
}
.hero-ship-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  backdrop-filter: blur(8px);
}
.hero-ship-card svg { width: 100%; }

.hero-float-badge {
  position: absolute;
  bottom: -16px;
  left: 10%;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-lg);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.hero-float-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-wa);
  flex-shrink: 0;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.7); }
}

/* ── TICKER ──────────────────────────────────────────── */
.ticker {
  background: var(--orange);
  overflow: hidden;
  padding: 0.65rem 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 28s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 2.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #420E4E;
  white-space: nowrap;
}
.ticker-item i { font-size: 0.85rem; opacity: 0.85; }
.ticker-sep { display: none; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SERVICES ────────────────────────────────────────── */
.services-section {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}
/* Faint diagonal grid texture */
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(66,14,78,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66,14,78,0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

/* ── Card shell ──────────────────────────────────────── */
.svc-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(66,14,78,0.08);
  border: 1px solid rgba(66,14,78,0.07);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 56px rgba(66,14,78,0.16);
}

/* ── Card coloured header ────────────────────────────── */
.svc-card-head {
  position: relative;
  overflow: hidden;
  padding: 2rem 2rem 1.75rem;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.7rem;
}
/* Colour variants */
.svc-head-navy   { background: linear-gradient(140deg, #1A0020 0%, #5C1570 100%); }
.svc-head-orange { background: linear-gradient(140deg, #2A0935 0%, #420E4E 100%); }
.svc-head-sky    { background: linear-gradient(140deg, #420E4E 0%, #7B1F94 100%); }
.svc-head-green  { background: linear-gradient(140deg, #1A0020 0%, #5C1570 100%); }

/* Giant watermark number */
.svc-num {
  position: absolute;
  right: -4px;
  top: -14px;
  font-size: 9rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.07);
  user-select: none;
  pointer-events: none;
}

/* Icon circle */
.svc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 1.5px solid rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #420E4E;
  flex-shrink: 0;
  transition: background 0.28s, border-color 0.28s;
}
.svc-card:hover .svc-icon-wrap {
  background: #ffffff;
  border-color: rgba(255,255,255,0.9);
}

/* Title inside the header */
.svc-card-head h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* Subtle shimmer line at bottom of header */
.svc-card-head::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

/* ── Card body ───────────────────────────────────────── */
.svc-card-body {
  padding: 1.75rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.svc-desc {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.78;
}

/* Feature pills */
.svc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.svc-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  background: var(--navy-pale);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  border: 1px solid rgba(66,14,78,0.1);
  letter-spacing: 0.01em;
}
.svc-pill i { font-size: 0.62rem; color: #420E4E; }

/* CTA row */
.svc-cta-row {
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(66,14,78,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.svc-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.83rem;
  font-weight: 700;
  color: #420E4E;
  transition: gap 0.2s;
}
.svc-wa-link i { font-size: 1rem; color: #420E4E; }
.svc-wa-link:hover { gap: 0.7rem; }

.svc-arr {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--navy-pale);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: background 0.22s, color 0.22s, transform 0.22s;
}
.svc-card:hover .svc-arr {
  background: var(--orange);
  color: #420E4E;
  transform: rotate(-45deg);
}

/* ── ABOUT ───────────────────────────────────────────── */
.about-section {
  padding: 3.5rem 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.about-text h2 em {
  font-style: normal;
  color: var(--orange);
}
.about-text p {
  font-size: 0.97rem;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.ab-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid rgba(66,14,78,0.06);
}
.ab-highlight i {
  font-size: 1.1rem;
  color: var(--navy);
  margin-top: 2px;
  flex-shrink: 0;
}
.ab-highlight h4 {
  font-size: 0.82rem;
  font-weight: 700;
  padding-bottom: 10px;
  color: var(--navy);
  margin-bottom: 2px;
}
.ab-highlight p {
  font-size: 0.88rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.4;
}

/* About visual column */
.about-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 50%, #7B1F94 100%);
  min-height: 480px;
  display: flex;
  flex-direction: column;
}
/* When real image is placed, it shows through */
.about-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.about-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.about-ship-svg {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem 1rem;
  position: relative;
  z-index: 1;
}

/* Glassmorphism stat cards at bottom */
.about-stats-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.ab-stat {
  padding: 1.25rem 1rem;
  text-align: center;
  background: rgba(66,14,78,0.3);
  backdrop-filter: blur(6px);
}
.ab-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.ab-stat span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ── IMAGE SLIDER ────────────────────────────────────── */
.about-slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 480px;
  background: var(--navy);
  box-shadow: var(--shadow-xl);
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.about-slide.active { opacity: 1; }

.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlay at bottom */
.about-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(66,14,78,0.75) 100%
  );
}

.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.75rem 1.5rem;
  z-index: 2;
}
.slide-caption span {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.3rem;
  font-family: var(--font);
}
.slide-caption p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  font-family: var(--font);
}

/* Dot indicators */
.slide-dots {
  position: absolute;
  bottom: 1.25rem;
  right: 1.5rem;
  display: flex;
  gap: 0.45rem;
  z-index: 10;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.32s var(--ease);
  border: none;
}
.dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* ── PRODUCTS ────────────────────────────────────────── */
.products-section {
  padding: 5.5rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.products-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.products-section .section-title { color: var(--white); }
.products-section .section-sub   { color: rgba(255,255,255,0.55); }

.products-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.prod-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--dur) var(--ease);
  cursor: default;
}
.prod-card:hover {
  background: rgba(254,205,0,0.12);
  border-color: rgba(254,205,0,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.prod-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--orange-light);
  margin: 0 auto 1.25rem;
  transition: all var(--dur);
}
.prod-card:hover .prod-icon {
  background: rgba(254,205,0,0.2);
  border-color: rgba(254,205,0,0.4);
}
.prod-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.prod-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

/* ── WHY US ──────────────────────────────────────────── */
.why-section {
  padding: 5.5rem 0;
  background: var(--off-white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(66,14,78,0.06);
  transition: all var(--dur) var(--ease);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.why-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--navy-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
  transition: all var(--dur);
}
.why-card:hover .why-icon {
  background: var(--orange-pale);
  color: var(--orange-dark);
}
.why-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ── CTA BANNER ──────────────────────────────────────── */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #420E4E 0%, #5C1570 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254,205,0,0.18) 0%, transparent 65%);
  bottom: -200px; right: -100px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}
.ft-brand .logo { margin-bottom: 1rem; }
.ft-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 270px;
}
.ft-reg {
  margin-top: 0.75rem;
  font-size: 0.88rem !important;
  color: rgba(255,255,255,0.45) !important;
  line-height: 1.75 !important;
  letter-spacing: 0.01em;
}
.ft-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.1rem;
}
.ft-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.ft-col a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: color var(--dur);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ft-col a i { font-size: 0.75rem; color: var(--orange); width: 14px; }
.ft-col a:hover { color: var(--white); }

.ft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.ft-ci-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
}
.ft-contact-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2px;
}
.ft-contact-item span,
.ft-contact-item a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  display: block;
}
.ft-contact-item a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}

/* ── WHATSAPP FLOAT ──────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  z-index: 9999;
  transition: all var(--dur) var(--ease);
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 36px rgba(37,211,102,0.7);
}
.wa-float::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.35);
  animation: wa-ring 2s ease-out infinite;
}
@keyframes wa-ring {
  0%   { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #1A0020, var(--navy-mid));
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb i { font-size: 0.6rem; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto;
}

/* ── CONTACT ─────────────────────────────────────────── */
.contact-section {
  padding: 5.5rem 0;
  background: var(--off-white);
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(66,14,78,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66,14,78,0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info-header h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.contact-info-header p {
  font-size: 0.92rem;
  color: var(--slate);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cm-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(66,14,78,0.07);
  margin-bottom: 1rem;
  transition: all var(--dur) var(--ease);
}
.cm-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.cm-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.cmi-wa    { background: rgba(37,211,102,0.12); color: #1da851; }
.cmi-email { background: var(--navy-pale);       color: var(--navy); }
.cmi-phone { background: var(--orange-pale);      color: var(--orange-dark); }
.cmi-hours { background: #EDE7F6;                 color: #6A1B9A; }
.cmi-loc   { background: var(--navy-pale);         color: var(--navy); }

.cm-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.cm-card p  { font-size: 0.83rem; color: var(--slate); line-height: 1.6; }
.cm-card a  { color: #420E4E; font-weight: 600; transition: color var(--dur); }
.cm-card a:hover { color: var(--navy-light); }

.wa-action-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-top: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wa-action-box::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}
.wa-action-box p {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}

/* ── FORM ────────────────────────────────────────────── */
.form-box {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid rgba(66,14,78,0.07);
  box-shadow: var(--shadow-sm);
}
.form-box h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-box > p {
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 1.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-group label .req { color: var(--orange); }
.field {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid rgba(66,14,78,0.1);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color var(--dur), box-shadow var(--dur);
  -webkit-appearance: none;
  appearance: none;
}
.field::placeholder { color: var(--slate-light); font-weight: 400; }
.field:focus {
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 4px rgba(92,21,112,0.12);
}
.field-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
.form-note {
  font-size: 0.75rem;
  color: var(--slate-light);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-section {
  padding: 5rem 0;
  background: var(--off-white);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(66,14,78,0.06);
  box-shadow: var(--shadow-xs);
}
.faq-item h4 {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.faq-item h4 i {
  color: var(--orange);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.faq-item p {
  font-size: 0.87rem;
  color: var(--slate);
  line-height: 1.75;
  padding-left: 1.65rem;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (min-width: 540px) {
  .wrap { padding-inline: 2rem; }
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
  .wrap { padding-inline: 2.5rem; }
  .nav-links { display: flex; }
  .nav-right  { display: flex; }
  .hamburger  { display: none; }

  .hero-inner    { grid-template-columns: 1fr 1fr; }
  .hero-visual   { display: flex; }

  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .about-grid    { grid-template-columns: 1fr 1fr; }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .form-row      { grid-template-columns: 1fr 1fr; }
  .contact-grid  { grid-template-columns: 1fr 1.1fr; }
  .faq-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .wrap { padding-inline: 3rem; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid      { grid-template-columns: repeat(4, 1fr); }
}
