/* ═══════════════════════════════════════
   SMARTMAIL — Find. Keep. Grow.
   Shared Stylesheet
   ═══════════════════════════════════════ */

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

:root {
  /* Primary brand */
  --purple: #244A94;
  --purple-light: #3B67B8;

  /* Support accent */
  --cyan: #16A3C4;
  --cyan-dark: #11859D;

  /* CTA only */
  --pink: #18356B;
  --pink-dark: #122A57;

  /* Neutrals */
  --dark: #1E2633;
  --gray: #5F6F86;
  --light: #F7F8FB;
  --white: #FFFFFF;
  --border: #E6EAF0;

  /* Derived colours */
  --nav-bg: rgba(24, 53, 107, 0.90);
  --nav-bg-scrolled: rgba(24, 53, 107, 0.97);
  --mobile-menu-bg: rgba(24, 53, 107, 0.98);

  --pink-shadow: rgba(24, 53, 107, 0.28);
  --pink-shadow-hover: rgba(24, 53, 107, 0.38);
  --cyan-shadow: rgba(22, 163, 196, 0.28);

  --highlight-purple: #8FB3FF;
  --highlight-pink: #B7D2FF;

  --gradient-dark-start: #18356B;
  --gradient-dark-end: #244A94;

  --gradient-purple-end: #18356B;
  --gradient-cyan-start: #16A3C4;
  --gradient-cyan-end: #11859D;

  --dropdown-shadow: rgba(0, 0, 0, 0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--cyan); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--cyan-dark); }

img { max-width: 100%; height: auto; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp   { from { opacity:0; transform:translateY(30px);  } to { opacity:1; transform:translateY(0); } }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: var(--nav-bg-scrolled);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; transition: padding 0.3s;
}
.nav.scrolled .nav-inner { padding: 10px 24px; }

.logo-text {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 900; font-size: 28px; color: #fff;
  letter-spacing: -0.5px; text-decoration: none;
  display: inline-flex; align-items: center;
}
.logo-text .at {
  font-size: 0.72em; color: #fff; font-weight: 900;
  display: inline-block; vertical-align: middle;
  line-height: 1; position: relative; top: 0px;
  margin: 0 1px; letter-spacing: 0;
}

/* Nav phone */
.nav-phone {
  color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 600;
  text-decoration: none; margin-right: 12px; white-space: nowrap;
}
.nav-phone:hover { color: var(--cyan); }

.nav-links { display: flex; gap: 20px; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.9); text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan); }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' \25BE'; font-size: 10px; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: -12px;
  background: var(--purple); border-radius: 8px;
  padding: 12px 0; min-width: 200px;
  box-shadow: 0 8px 24px var(--dropdown-shadow);
  z-index: 1001;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 8px 20px;
  font-size: 13px; white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.08); }

.nav-cta {
  background: var(--cyan); color: #fff !important;
  padding: 10px 22px; border-radius: 6px;
  font-weight: 600 !important; font-size: 13px !important;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: all 0.2s !important;
}
.nav-cta:hover { background: var(--cyan-dark); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: #fff; display: block; transition: all 0.3s; border-radius: 2px; }

.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--mobile-menu-bg); backdrop-filter: blur(16px);
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; text-decoration: none; font-size: 22px; font-weight: 500; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--cyan); }
.mobile-close { position: absolute; top: 20px; right: 24px; font-size: 32px; color: #fff; background: none; border: none; cursor: pointer; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--pink); color: #fff;
  padding: 14px 32px; border-radius: 6px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  letter-spacing: 0.3px; transition: all 0.3s;
  border: none; cursor: pointer;
  box-shadow: 0 4px 16px var(--pink-shadow);
  font-family: inherit;
}
.btn-primary:hover { background: var(--pink-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 24px var(--pink-shadow-hover); }

.btn-cyan {
  display: inline-block; background: var(--cyan); color: #fff;
  padding: 14px 32px; border-radius: 6px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  letter-spacing: 0.3px; transition: all 0.3s;
  border: none; cursor: pointer;
  box-shadow: 0 4px 16px var(--cyan-shadow);
  font-family: inherit;
}
.btn-cyan:hover { background: var(--cyan-dark); color: #fff; transform: translateY(-2px); }

.btn-secondary {
  display: inline-block; background: transparent; color: #fff;
  padding: 14px 32px; border-radius: 6px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.3s; cursor: pointer; font-family: inherit;
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }

.btn-white {
  display: inline-block; background: #fff; color: var(--dark);
  padding: 16px 40px; border-radius: 8px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  text-transform: uppercase; letter-spacing: 1px;
  transition: all 0.3s; border: none; cursor: pointer; font-family: inherit;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ── HERO (Split Layout) ── */
.hero {
  position: relative; min-height: 520px; height: 65vh;
  max-height: 680px; display: flex; overflow: hidden;
}
.hero-left {
  position: relative; width: 48%; background: var(--purple);
  display: flex; align-items: center;
  padding: 100px 60px 60px 60px; z-index: 2;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 540px; text-align: left; }

.hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(22px, 2.8vw, 34px); font-weight: 500;
  color: #fff; line-height: 1.35; margin-bottom: 8px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero h1 .highlight-cyan { color: var(--cyan); font-weight: 700; }
.hero h1 .highlight-purple { color: var(--highlight-purple); font-weight: 700; }
.hero h1 .highlight-pink { color: var(--highlight-pink); font-weight: 700; }

.hero-sub {
  font-size: 15px; color: rgba(255,255,255,0.75);
  line-height: 1.6; margin-top: 12px; margin-bottom: 4px;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; animation: fadeInUp 0.8s 0.5s ease both; }

.hero-right { position: absolute; top: 0; right: 0; width: 62%; height: 100%; z-index: 1; }
.hero-video-container { width: 100%; height: 100%; position: relative; overflow: hidden; }
.hero-video-container img { width: 100%; height: 100%; object-fit: cover; }
.hero-right::before {
  content: ''; position: absolute; top: 0; left: -1px; bottom: 0;
  width: 120px; background: linear-gradient(to right, var(--purple) 0%, transparent 100%); z-index: 2;
}
.hero-clip { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-clip.active { opacity: 1; }
.hero-clip img { width: 100%; height: 100%; object-fit: cover; }

.hero-bottom-stripe { position: absolute; bottom: 0; left: 0; right: 0; height: 60px; z-index: 5; overflow: hidden; }
.hero-bottom-stripe svg { display: block; width: 100%; height: 100%; }

@media (max-width: 900px) {
  .hero { flex-direction: column; height: auto; min-height: auto; max-height: none; }
  .hero-left { width: 100%; clip-path: none; padding: 100px 24px 48px; }
  .hero-right { position: relative; width: 100%; height: 280px; }
  .hero-right::before { display: none; }
}

/* ── PAGE HERO (for inner pages — shorter split layout) ── */
.page-hero {
  position: relative; min-height: 340px; height: 45vh;
  max-height: 440px; display: flex; overflow: hidden;
}
.page-hero .hero-left {
  position: relative; width: 48%; background: var(--purple);
  display: flex; align-items: center;
  padding: 90px 48px 48px 48px; z-index: 2;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}
.page-hero .hero-content { position: relative; z-index: 2; max-width: 500px; text-align: left; }
.page-hero .breadcrumb { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.5); }
.page-hero .breadcrumb a:hover { color: var(--cyan); }
.page-hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(20px, 2.4vw, 30px); font-weight: 600;
  color: #fff; line-height: 1.35; margin-bottom: 14px;
}
.page-hero p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 10px; max-width: 460px; }
.page-hero .btn-primary { margin-top: 8px; padding: 12px 28px; font-size: 13px; }
.page-hero .hero-right { position: absolute; top: 0; right: 0; width: 62%; height: 100%; z-index: 1; }
.page-hero .hero-right::before {
  content: ''; position: absolute; top: 0; left: -1px; bottom: 0;
  width: 100px; background: linear-gradient(to right, var(--purple) 0%, transparent 100%); z-index: 2;
}
.page-hero .hero-clip { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.page-hero .hero-clip.active { opacity: 1; }
.page-hero .hero-clip img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .hero-bottom-stripe { position: absolute; bottom: 0; left: 0; right: 0; height: 40px; z-index: 5; overflow: hidden; }
.page-hero .hero-bottom-stripe svg { display: block; width: 100%; height: 100%; }

@media (max-width: 900px) {
  .page-hero { flex-direction: column; height: auto; min-height: auto; max-height: none; }
  .page-hero .hero-left { width: 100%; clip-path: none; padding: 90px 24px 36px; }
  .page-hero .hero-right { position: relative; width: 100%; height: 200px; }
  .page-hero .hero-right::before { display: none; }
}

/* ── SECTIONS ── */
.section { padding: 80px 24px; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  color: var(--dark); line-height: 1.2; margin-bottom: 18px;
}
.section-subtitle {
  font-size: 17px; color: var(--gray);
  max-width: 680px; margin: 0 auto; line-height: 1.7;
}

/* ── PILLARS (3-column cards) ── */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pillar-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 36px 28px; transition: all 0.35s ease;
  display: flex; flex-direction: column;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.pillar-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.pillar-card p { font-size: 15px; color: var(--gray); line-height: 1.7; flex: 1; }
.pillar-card .pillar-link { display: inline-block; margin-top: 18px; font-weight: 600; font-size: 14px; }
.pillar-card--cyan { border-top: 4px solid var(--cyan); }
.pillar-card--cyan h3 { color: var(--cyan); }
.pillar-card--cyan .pillar-link { color: var(--cyan); }
.pillar-card--purple { border-top: 4px solid var(--purple); }
.pillar-card--purple h3 { color: var(--purple); }
.pillar-card--purple .pillar-link { color: var(--purple); }
.pillar-card--pink { border-top: 4px solid var(--pink); }
.pillar-card--pink h3 { color: var(--pink); }
.pillar-card--pink .pillar-link { color: var(--pink); }

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

/* ── INDUSTRY CARDS ── */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.industry-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 0; text-align: center; transition: all 0.35s ease; cursor: pointer; overflow: hidden;
  text-decoration: none; color: var(--dark); display: block;
}
.industry-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,61,122,0.12); border-color: var(--cyan); }
.industry-img { width: 100%; height: 200px; overflow: hidden; border-radius: 10px 10px 0 0; }
.industry-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.industry-card:hover .industry-img img { transform: scale(1.06); }
.industry-card h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin: 16px 16px 6px; }
.industry-card p { font-size: 13px; color: var(--gray); line-height: 1.5; padding: 0 16px; }
.industry-link { display: inline-block; margin: 12px 0 18px; color: var(--cyan); font-size: 13px; font-weight: 600; }

@media (max-width: 1024px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .industry-grid { grid-template-columns: 1fr; } }

/* ── SERVICE CARDS (dark purple) ── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  background: var(--purple); border-radius: 14px; overflow: hidden;
  transition: all 0.35s ease; display: flex; flex-direction: column;
  border: 1px solid var(--purple-light); text-decoration: none;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.service-img { width: 100%; height: 200px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-body { padding: 24px 20px; flex: 1; display: flex; flex-direction: column; text-align: center; }
.service-body h3 { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.service-body p { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.6; flex: 1; font-weight: 600; }
.service-btn {
  display: inline-block; margin-top: 18px; background: var(--cyan); color: #fff;
  padding: 10px 24px; border-radius: 6px; font-size: 13px; font-weight: 700;
  text-decoration: none; transition: all 0.2s; align-self: center;
}
.service-btn:hover { background: var(--cyan-dark); color: #fff; transform: translateY(-1px); }
.service-btn--cyan { background: var(--cyan); }
.service-btn--cyan:hover { background: var(--cyan-dark); }

@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ── BENEFITS (dark background) ── */
.benefits-section { background: linear-gradient(135deg, var(--gradient-dark-start) 0%, var(--gradient-dark-end) 100%); }
.benefits-section .section-title { color: #fff; }
.benefits-section .section-subtitle { color: rgba(255,255,255,0.7); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.benefit-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 24px; transition: all 0.3s;
}
.benefit-card:hover { background: rgba(255,255,255,0.1); transform: translateX(6px); }
.benefit-icon { font-size: 28px; flex-shrink: 0; }
.benefit-card h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.benefit-card p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; }

/* ── TRUST BADGES ── */
.trust-strip {
  background: var(--light); padding: 40px 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.trust-badge {
  display: flex; align-items: center; gap: 10px;
  background: #fff; padding: 14px 24px; border-radius: 10px;
  font-size: 13px; font-weight: 600; color: var(--dark);
  border: 1px solid var(--border);
}
.trust-badge span { font-size: 20px; }

/* ── CTA SECTIONS ── */
.cta-section {
  text-align: center; color: #fff; padding: 80px 24px;
}
.cta-section--pink {background: linear-gradient(135deg, var(--gradient-cyan-start) 0%, var(--gradient-cyan-end) 100%); }
.cta-section--purple { background: linear-gradient(135deg, var(--purple) 0%, var(--gradient-purple-end) 100%); }
.cta-section--cyan { background: linear-gradient(135deg, var(--gradient-cyan-start) 0%, var(--gradient-cyan-end) 100%); }
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 16px;
}
.cta-section p { font-size: 17px; opacity: 0.9; max-width: 600px; margin: 0 auto 32px; line-height: 1.6; }

/* ── CONTENT SECTIONS (for pillar pages) ── */
.content-section { padding: 60px 24px; }
.content-inner { max-width: 800px; margin: 0 auto; }
.content-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 32px); font-weight: 800;
  color: var(--dark); margin-bottom: 20px; line-height: 1.2;
}
.content-inner h3 { font-size: 20px; font-weight: 700; color: var(--cyan); margin: 32px 0 12px; }
.content-inner p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.content-inner ul { margin: 0 0 20px 24px; }
.content-inner li { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 8px; }
.content-inner .highlight { font-weight: 700; color: var(--dark); }

/* Coloured content sections */
.content-section--light { background: var(--light); }
.content-section--purple { background: var(--purple); }
.content-section--purple h2, .content-section--purple h3, .content-section--purple p, .content-section--purple li { color: rgba(255,255,255,0.9); }
.content-section--purple h2 { color: #fff; }
.content-section--purple h3 { color: var(--cyan); }

/* ── PROCESS STEPS ── */
.process-steps { max-width: 800px; margin: 0 auto; }
.process-step { display: flex; gap: 20px; margin-bottom: 28px; }
.process-num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; color: #fff;
}
.process-num--cyan { background: var(--cyan); }
.process-num--purple { background: var(--purple); }
.process-num--pink { background: var(--pink); }
.process-step h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.process-step p { font-size: 15px; color: var(--gray); line-height: 1.7; }

/* ── FAQ ACCORDION ── */
.faq-category { margin-bottom: 40px; }
.faq-category h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 800; color: var(--dark);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer; font-size: 16px; font-weight: 600;
  color: var(--dark); background: none; border: none; width: 100%;
  text-align: left; font-family: inherit; transition: color 0.2s;
}
.faq-question:hover { color: var(--cyan); }
.faq-question::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--gray); transition: transform 0.3s; }
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer { display: none; padding: 0 0 18px; font-size: 15px; color: var(--gray); line-height: 1.8; }
.faq-item.open .faq-answer { display: block; }

/* ── CONTACT FORM ── */
.contact-form { max-width: 640px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 15px; font-family: inherit; color: var(--dark);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--cyan);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-full { grid-column: 1 / -1; }

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ── RELATED LINKS ── */
.related-links { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.related-card {
  background: var(--light); border-radius: 12px; padding: 24px;
  transition: all 0.3s; text-decoration: none; color: var(--dark);
  border: 1px solid var(--border);
}
.related-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); border-color: var(--cyan); }
.related-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--cyan); }
.related-card p { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ── INDUSTRY PAGE: Find/Keep/Grow sections ── */
.fkg-section { padding: 48px 24px; }
.fkg-inner { max-width: 800px; margin: 0 auto; }
.fkg-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.fkg-tag {
  font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
}
.fkg-tag--cyan { color: var(--cyan); }
.fkg-tag--purple { color: var(--purple); }
.fkg-tag--pink { color: var(--pink); }
.fkg-header h3 { font-size: 20px; font-weight: 700; color: var(--dark); }
.fkg-section p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 14px; }
.fkg-section ul { margin: 0 0 20px 24px; }
.fkg-section li { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 6px; }
.fkg-section--light { background: var(--light); }

/* ── FOOTER ── */
.footer { background: var(--pink); color: rgba(255,255,255,0.7); padding: 64px 24px 32px; }
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand h3 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 24px; font-weight: 900; color: #fff; margin-bottom: 16px;
}
.footer-brand h3 .at { font-size: 0.72em; color: #fff; font-weight: 900; position: relative; top: 0px; margin: 0 1px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 8px; }
.footer-col h4 {
  font-size: 14px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.6);
  text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  max-width: 1140px; margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; margin-left: 16px; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--cyan); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ── UTILITY ── */
.text-cyan { color: var(--cyan); }
.text-purple { color: var(--purple); }
.text-pink { color: var(--pink); }
.text-white { color: #fff; }
.bg-light { background: var(--light); }
.bg-white { background: #fff; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }