/* ==========================================================================
   Maghnum Marketing — Modern Corporate Design System
   ========================================================================== */

:root {
  /* Brand colors */
  --rose:         #C9536B;
  --rose-dark:    #A8394F;
  --rose-light:   #FDF2F4;
  --rose-border:  #F5DCE1;
  --rose-on-dark: #F08AA0;   /* Lighter rose for AA contrast on dark navy */

  /* Dark theme */
  --navy:         #0F172A;
  --navy-soft:    #152236;
  --navy-card:    rgba(255, 255, 255, 0.03);
  --navy-border:  rgba(255, 255, 255, 0.08);
  --navy-text:    #CBD5E1;
  --navy-muted:   #94A3B8;

  /* Neutrals */
  --ink:          #0F172A;   /* Primary text */
  --ink-soft:     #1E293B;
  --slate:        #475569;   /* Body text */
  --slate-light:  #64748B;   /* Muted text */
  --silver:       #94A3B8;   /* Placeholder */
  --border:       #E2E8F0;
  --border-light: #F1F5F9;
  --bg:           #FFFFFF;
  --bg-soft:      #F8FAFC;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
  --shadow:    0 1px 3px 0 rgba(15, 23, 42, 0.06), 0 1px 2px -1px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 16px -4px rgba(15, 23, 42, 0.08), 0 2px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 40px -12px rgba(15, 23, 42, 0.12), 0 8px 16px -6px rgba(15, 23, 42, 0.06);
  --shadow-rose: 0 8px 24px -8px rgba(201, 83, 107, 0.35);

  /* Typography */
  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Motion */
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --transition:   0.3s var(--ease);

  /* Radius */
  --radius-sm:    6px;
  --radius:       10px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --radius-xl:    28px;
}

/* ---------- 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-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--slate);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
}

::selection {
  background: var(--rose);
  color: #fff;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--rose);
  background: var(--rose-light);
  border: 1px solid var(--rose-border);
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}

.display {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.display .accent {
  background: linear-gradient(135deg, var(--rose) 0%, #E27A92 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.headline {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--slate);
  font-weight: 400;
}

.lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--slate);
}

/* ---------- Layout ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-sm {
  padding: 80px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

.section-header .eyebrow {
  margin-bottom: 20px;
}

.section-header .headline {
  margin-bottom: 16px;
}

.section-header .subtitle {
  font-size: 17px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

.btn .arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: var(--shadow-rose);
}

.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(201, 83, 107, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--rose);
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: color var(--transition);
}

.btn-ghost .arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.btn-ghost:hover {
  color: var(--rose-dark);
}

.btn-ghost:hover .arrow {
  transform: translateX(4px);
}

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.site-nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.95);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-brand img {
  height: 38px;
  width: auto;
}

.nav-brand-text {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--bg-soft);
}

.nav-links a.active {
  color: var(--rose);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 83, 107, 0.08) 0%, rgba(201, 83, 107, 0) 60%);
  border-radius: 50%;
  z-index: 0;
  animation: float-slow 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 83, 107, 0.05) 0%, rgba(201, 83, 107, 0) 60%);
  border-radius: 50%;
  z-index: 0;
  animation: float-slow 24s ease-in-out infinite reverse;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-30px, 20px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero .eyebrow {
  margin-bottom: 28px;
}

.hero .display {
  margin-bottom: 24px;
}

.hero .subtitle {
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 820px;
  margin: 88px auto 0;
  padding: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.hero-stat {
  text-align: center;
}

.hero-stat .value {
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat .value .unit {
  color: var(--rose);
}

.hero-stat .label {
  font-size: 13px;
  color: var(--slate-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Smaller hero for inner pages */
.hero-inner-page {
  padding: 160px 0 80px;
}

.hero-inner-page .display {
  font-size: clamp(34px, 4.5vw, 52px);
}

/* ---------- Feature cards (What We Do, Why Choose Us) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose) 0%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.feature-card:hover {
  border-color: var(--rose-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--rose-light);
  color: var(--rose);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  transition: all var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--rose);
  color: #fff;
  transform: scale(1.05) rotate(-3deg);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--slate);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 20px;
}

.feature-card .btn-ghost {
  padding: 0;
  font-size: 14px;
  font-weight: 600;
}

/* ---------- Why Choose Us (small cards) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
}

.why-card:hover {
  border-color: var(--rose-border);
  background: var(--rose-light);
  transform: translateY(-2px);
}

.why-card .check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.why-card:hover .check {
  transform: rotate(360deg);
}

.why-card .check svg {
  width: 18px;
  height: 18px;
}

.why-card p {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
  padding-top: 8px;
}

/* ---------- Brands logo grid ---------- */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.brand-tile {
  aspect-ratio: 3 / 2;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.brand-tile:hover {
  border-color: var(--rose-border);
  background: var(--rose-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.brand-tile img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--transition);
  margin-bottom: 6px;
}

.brand-tile:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.brand-tile .brand-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  letter-spacing: 0.02em;
}

.brand-tile.no-logo .brand-name {
  font-size: 18px;
  letter-spacing: 0.04em;
}

.brand-tile .brand-desc {
  display: none;
}

/* ---------- Product / category cards ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.category-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.category-card:hover {
  border-color: var(--rose-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.category-card .image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
}

.category-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.category-card:hover .image img {
  transform: scale(1.06);
}

.category-card .body {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.category-card .brand {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.category-card .title {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.3;
}

.category-card .view-link {
  margin-top: auto;
  color: var(--rose);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.category-card .view-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.category-card:hover .view-link svg {
  transform: translateX(4px);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--ink) 0%, #1E293B 100%);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 83, 107, 0.4) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 83, 107, 0.2) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  margin-bottom: 20px;
}

.cta-banner .eyebrow::before {
  background: var(--rose);
}

.cta-banner h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.cta-banner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  box-shadow: 0 12px 32px -8px rgba(201, 83, 107, 0.5);
}

/* ---------- Story / prose section ---------- */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--slate);
}

.prose p + p {
  margin-top: 20px;
}

/* Mission / Vision split */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mv-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.mv-card:hover {
  border-color: var(--rose-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.mv-card .mv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--rose-light);
  color: var(--rose);
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.mv-card .mv-icon svg {
  width: 24px;
  height: 24px;
}

.mv-card h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}

.mv-card p {
  color: var(--slate);
  line-height: 1.7;
  font-size: 16px;
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}

.form-card h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-card .form-subtitle {
  color: var(--slate);
  margin-bottom: 32px;
}

.enquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.enquiry-form .field-full {
  grid-column: 1 / -1;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--ink);
  transition: all var(--transition);
  outline: none;
  resize: vertical;
  font-family: inherit;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--silver);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(201, 83, 107, 0.1);
}

.form-field textarea {
  min-height: 120px;
  line-height: 1.6;
}

.form-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  appearance: none;
  -webkit-appearance: none;
}

.form-submit {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
}

.form-message {
  grid-column: 1 / -1;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  display: none;
}

.form-message.success {
  display: block;
  background: var(--rose-light);
  color: var(--rose-dark);
  border: 1px solid var(--rose-border);
}

.form-message.error {
  display: block;
  background: #FEF2F2;
  color: #B91C1C;
  border: 1px solid #FECACA;
}

/* ---------- Contact layout ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: sticky;
  top: 120px;
}

.contact-info h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.contact-info .info-subtitle {
  color: var(--slate);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
}

.contact-detail:first-of-type {
  border-top: none;
  padding-top: 0;
}

.contact-detail .icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--rose-light);
  color: var(--rose);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.contact-detail:hover .icon {
  background: var(--rose);
  color: #fff;
}

.contact-detail .icon svg {
  width: 18px;
  height: 18px;
}

.contact-detail .label {
  font-size: 12px;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  display: block;
  font-weight: 500;
}

.contact-detail .value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #E2E8F0;
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(1.1);
}

.footer-brand p {
  color: #94A3B8;
  line-height: 1.6;
  font-size: 14px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a,
.footer-col .footer-text {
  font-size: 14px;
  color: #94A3B8;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #1E293B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #64748B;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- Scroll reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   ChatSpark-inspired components
   ========================================================================== */

/* ---------- Dark sections ---------- */
.section-dark {
  background: var(--navy);
  color: var(--navy-text);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 83, 107, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.section-dark::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 83, 107, 0.06) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.section-dark > .container {
  position: relative;
  z-index: 1;
}

.section-dark .section-header h2,
.section-dark .headline {
  color: #fff;
}

.section-dark .section-header .subtitle {
  color: var(--navy-muted);
}

.section-dark .eyebrow {
  background: rgba(240, 138, 160, 0.08);
  border-color: rgba(240, 138, 160, 0.2);
  color: var(--rose-on-dark);
}

.section-dark .eyebrow::before {
  background: var(--rose-on-dark);
}

/* ---------- Trusted by strip (compact logo row below hero) ---------- */
.trusted-strip {
  padding: 56px 0 0;
  background: var(--bg);
  position: relative;
}

.trusted-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.trusted-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

/* Marquee scroller */
.brand-marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.brand-marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

.brand-marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  min-width: 140px;
  font-size: 18px;
  font-weight: 600;
  color: var(--slate-light);
  letter-spacing: 0.04em;
  opacity: 0.7;
  transition: opacity var(--transition), color var(--transition);
}

.brand-marquee-item img {
  max-height: 44px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter var(--transition);
}

.brand-marquee:hover .brand-marquee-track {
  animation-play-state: paused;
}

.brand-marquee-item:hover {
  opacity: 1;
  color: var(--ink);
}

.brand-marquee-item:hover img {
  filter: grayscale(0%);
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 32px)); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee-track { animation: none; }
}

/* ---------- 2-column Platform layout ---------- */
.platform-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.platform-intro .eyebrow {
  margin-bottom: 24px;
}

.platform-intro .headline {
  margin-bottom: 24px;
}

.platform-intro .lead {
  color: var(--slate);
  margin-bottom: 32px;
}

.platform-intro .btn {
  margin-top: 8px;
}

.platform-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.platform-feature {
  display: flex;
  gap: 20px;
  padding: 24px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.platform-feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--rose);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease);
}

.platform-feature:hover {
  border-color: var(--rose-border);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.platform-feature:hover::before {
  transform: scaleY(1);
}

.platform-feature .platform-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--rose-light);
  color: var(--rose);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.platform-feature:hover .platform-icon {
  background: var(--rose);
  color: #fff;
}

.platform-feature .platform-icon svg {
  width: 20px;
  height: 20px;
}

.platform-feature h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.platform-feature p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate);
  margin: 0;
}

/* ---------- Stats (dark numbers section) ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.stat-card:hover {
  border-color: rgba(240, 138, 160, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-on-dark), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card .stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(240, 138, 160, 0.1);
  color: var(--rose-on-dark);
  border-radius: var(--radius);
  margin-bottom: 28px;
}

.stat-card .stat-icon svg {
  width: 20px;
  height: 20px;
}

.stat-card .stat-value {
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-card .stat-label {
  font-size: 14px;
  color: var(--navy-muted);
  font-weight: 500;
  line-height: 1.4;
}

.stat-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(201, 83, 107, 0.12) 0%, rgba(201, 83, 107, 0.04) 100%);
  border-color: rgba(240, 138, 160, 0.25);
}

.stat-card.featured .stat-value {
  color: var(--rose-on-dark);
}

.stat-card.featured .stat-icon {
  background: rgba(240, 138, 160, 0.2);
}

/* ---------- Process flow (numbered cards) ---------- */
.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 56px;
  flex-wrap: wrap;
  max-width: 720px;
}

.process-flow-item {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-muted);
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
}

.process-flow-item:not(:last-of-type)::after {
  content: '→';
  margin-left: 16px;
  color: var(--rose-on-dark);
  opacity: 0.6;
  font-weight: 400;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.process-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.process-card:hover {
  border-color: rgba(240, 138, 160, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

.process-card .process-number {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--rose-on-dark);
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  font-feature-settings: 'tnum' on;
}

.process-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.process-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--navy-muted);
  margin: 0;
}

.process-card-connector {
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  z-index: 2;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 138, 160, 0.4);
}

.process-card:last-child .process-card-connector {
  display: none;
}

.process-card-connector svg {
  width: 14px;
  height: 14px;
}

/* ---------- Number highlight (for testimonials, copy) ---------- */
.highlight-number {
  color: var(--rose);
  font-weight: 600;
}

.section-dark .highlight-number {
  color: var(--rose-on-dark);
}

/* ==========================================================================
   Hero carousel
   ========================================================================== */

.hero-carousel {
  position: relative;
  padding: 140px 0 80px;
  min-height: 720px;
  overflow: hidden;
  background: var(--bg);
}

.hero-carousel::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -15%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 83, 107, 0.06) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
  animation: float-slow 24s ease-in-out infinite;
}

.hero-carousel-track {
  position: relative;
  z-index: 1;
}

.hero-slide {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s var(--ease);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

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

.hero-slide-content .display {
  margin-bottom: 24px;
  font-size: clamp(34px, 4.5vw, 58px);
}

.hero-slide-content .subtitle {
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-slide-content .hero-ctas {
  justify-content: flex-start;
}

/* 3D-tilted hero image card */
.hero-slide-visual {
  perspective: 1200px;
  position: relative;
}

.hero-slide-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate3d(1, -0.4, 0, 6deg);
  transition: transform 0.6s var(--ease);
  will-change: transform;
}

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

.hero-slide-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.25) 100%);
  pointer-events: none;
}

/* Floating decoration cards on hero visual */
.hero-deco {
  position: absolute;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  z-index: 2;
  animation: float-deco 6s ease-in-out infinite;
}

.hero-deco-1 {
  top: 12%;
  left: -8%;
  animation-delay: -2s;
}

.hero-deco-2 {
  bottom: 16%;
  right: -10%;
  animation-delay: -4s;
}

.hero-deco .deco-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--rose-light);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-deco .deco-icon svg {
  width: 16px;
  height: 16px;
}

.hero-deco .deco-label {
  display: block;
  font-size: 10px;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

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

/* Carousel controls */
.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-control-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.hero-control-btn:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
  transform: scale(1.05);
}

.hero-control-btn svg {
  width: 18px;
  height: 18px;
}

.hero-dots {
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.hero-dot.active {
  width: 28px;
  border-radius: 100px;
  background: var(--rose);
}

.hero-dot:hover:not(.active) {
  background: var(--silver);
}

/* ==========================================================================
   Brand-tab products section
   ========================================================================== */

.brand-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 56px;
  padding: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  max-width: max-content;
  box-shadow: var(--shadow-sm);
}

.brand-tab {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  background: transparent;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.brand-tab:hover {
  color: var(--ink);
  background: var(--bg-soft);
}

.brand-tab.active {
  background: var(--rose);
  color: #fff;
  box-shadow: var(--shadow-rose);
}

.brand-panels {
  position: relative;
}

.brand-panel {
  display: none;
  animation: panel-fade 0.5s var(--ease) forwards;
}

.brand-panel.active {
  display: block;
}

@keyframes panel-fade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--rose-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card .product-image {
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  overflow: hidden;
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-card .product-body {
  padding: 22px 24px;
}

.product-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-card p {
  font-size: 13px;
  color: var(--slate-light);
  line-height: 1.5;
}

/* ==========================================================================
   Image-side block (Who We Are 2-col, Contact office card)
   ========================================================================== */

.image-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.image-side-text h2 {
  margin-bottom: 20px;
}

.image-side-text .lead {
  margin-bottom: 28px;
}

.image-side-visual {
  perspective: 1000px;
}

.image-side-visual .img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate3d(1, -0.5, 0, 4deg);
  transition: transform 0.6s var(--ease);
  aspect-ratio: 4 / 5;
}

.image-side-visual .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-side-visual .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 83, 107, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.image-side-visual .img-wrap:hover {
  transform: rotate3d(1, -0.5, 0, 0deg);
}

/* Image side, reversed */
.image-side.reverse {
  direction: rtl;
}

.image-side.reverse > * {
  direction: ltr;
}

/* ==========================================================================
   3D tilt effects (mouse-driven)
   ========================================================================== */

.tilt {
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease-out);
  will-change: transform;
}

.tilt-content {
  transform: translateZ(20px);
}

/* Apply 3D depth to existing components */
.stat-card,
.process-card,
.feature-card,
.category-card,
.product-card,
.mv-card {
  transform-style: preserve-3d;
}

/* ==========================================================================
   Contact office image card
   ========================================================================== */

.office-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 24px;
  transition: all var(--transition);
}

.office-card:hover {
  border-color: var(--rose-border);
  box-shadow: var(--shadow-md);
}

.office-card .office-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-soft);
}

.office-card .office-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.office-card:hover .office-image img {
  transform: scale(1.04);
}

.office-card .office-body {
  padding: 20px 24px;
  font-size: 14px;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 10px;
}

.office-card .office-body svg {
  width: 16px;
  height: 16px;
  color: var(--rose);
  flex-shrink: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .feature-grid,
  .feature-grid-3,
  .category-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-info {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .section {
    padding: 96px 0;
  }

  /* New chatspark-style components */
  .platform-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card.featured {
    grid-column: span 2;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .process-card-connector {
    display: none;
  }

  /* New round of components */
  .hero-slide {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-slide-content .hero-ctas {
    justify-content: center;
  }

  .hero-slide-image {
    max-width: 480px;
    margin: 0 auto;
    transform: rotate3d(0, 0, 0, 0deg);
  }

  .hero-deco {
    display: none;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-side {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .image-side-visual .img-wrap {
    max-width: 500px;
    margin: 0 auto;
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 14px 20px;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    flex-direction: column;
    padding: 12px;
    gap: 2px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }

  .site-nav.nav-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-nav.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .site-nav.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding: 140px 0 80px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px;
    margin-top: 60px;
  }

  .hero-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
  }

  .hero-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .hero-stat .value {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .feature-grid,
  .feature-grid-3,
  .category-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 32px 24px;
  }

  .section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .cta-banner {
    padding: 56px 28px;
    border-radius: var(--radius-lg);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    justify-content: center;
  }

  .mv-card,
  .feature-card {
    padding: 32px 28px;
  }

  /* New chatspark-style components — mobile */
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card.featured {
    grid-column: span 1;
  }

  .stat-card {
    padding: 28px 24px;
  }

  /* Mobile process: vertical timeline */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-left: 28px;
    position: relative;
  }

  .process-grid::before {
    content: '';
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 9px;
    width: 2px;
    background: linear-gradient(180deg, var(--rose-on-dark), rgba(240, 138, 160, 0.1));
    opacity: 0.4;
  }

  .process-card {
    position: relative;
    padding: 24px 24px 24px 28px;
  }

  .process-card::before {
    content: '';
    position: absolute;
    left: -23px;
    top: 32px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--rose-on-dark);
    border: 3px solid var(--navy);
    box-shadow: 0 0 0 2px var(--rose-on-dark);
  }

  .process-flow {
    margin-bottom: 40px;
    gap: 8px;
  }

  .process-flow-item {
    font-size: 11px;
  }

  .platform-feature {
    padding: 20px 22px;
  }

  .trusted-strip {
    padding: 40px 0 0;
  }

  .brand-marquee-item {
    min-width: 110px;
    font-size: 16px;
  }

  /* Carousel mobile */
  .hero-carousel {
    padding: 120px 0 70px;
    min-height: auto;
  }

  .hero-controls {
    position: relative;
    bottom: auto;
    margin-top: 32px;
  }

  /* Brand tabs mobile — scroll horizontally */
  .brand-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    border-radius: var(--radius-md);
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px;
  }

  .brand-tabs::-webkit-scrollbar {
    display: none;
  }

  .brand-tab {
    flex-shrink: 0;
    padding: 10px 18px;
    font-size: 13px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
